Rename `MonitorEvent::CommitmentTxConfirmed` to `HolderForceClosed`
[rust-lightning] / lightning / src / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The [`ChannelManager`] is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see [`Router`] for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19
20 use bitcoin::blockdata::block::BlockHeader;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::{genesis_block, ChainHash};
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::Bolt11InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
49 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::onion_utils::HTLCFailReason;
53 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, ProbeSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
114                 custom_tlvs: Vec<(u64, Vec<u8>)>,
115         },
116         ReceiveKeysend {
117                 /// This was added in 0.0.116 and will break deserialization on downgrades.
118                 payment_data: Option<msgs::FinalOnionHopData>,
119                 payment_preimage: PaymentPreimage,
120                 payment_metadata: Option<Vec<u8>>,
121                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
122                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
123                 custom_tlvs: Vec<(u64, Vec<u8>)>,
124         },
125 }
126
127 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
128 pub(super) struct PendingHTLCInfo {
129         pub(super) routing: PendingHTLCRouting,
130         pub(super) incoming_shared_secret: [u8; 32],
131         payment_hash: PaymentHash,
132         /// Amount received
133         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
134         /// Sender intended amount to forward or receive (actual amount received
135         /// may overshoot this in either case)
136         pub(super) outgoing_amt_msat: u64,
137         pub(super) outgoing_cltv_value: u32,
138         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
139         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
140         pub(super) skimmed_fee_msat: Option<u64>,
141 }
142
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum HTLCFailureMsg {
145         Relay(msgs::UpdateFailHTLC),
146         Malformed(msgs::UpdateFailMalformedHTLC),
147 }
148
149 /// Stores whether we can't forward an HTLC or relevant forwarding info
150 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
151 pub(super) enum PendingHTLCStatus {
152         Forward(PendingHTLCInfo),
153         Fail(HTLCFailureMsg),
154 }
155
156 pub(super) struct PendingAddHTLCInfo {
157         pub(super) forward_info: PendingHTLCInfo,
158
159         // These fields are produced in `forward_htlcs()` and consumed in
160         // `process_pending_htlc_forwards()` for constructing the
161         // `HTLCSource::PreviousHopData` for failed and forwarded
162         // HTLCs.
163         //
164         // Note that this may be an outbound SCID alias for the associated channel.
165         prev_short_channel_id: u64,
166         prev_htlc_id: u64,
167         prev_funding_outpoint: OutPoint,
168         prev_user_channel_id: u128,
169 }
170
171 pub(super) enum HTLCForwardInfo {
172         AddHTLC(PendingAddHTLCInfo),
173         FailHTLC {
174                 htlc_id: u64,
175                 err_packet: msgs::OnionErrorPacket,
176         },
177 }
178
179 /// Tracks the inbound corresponding to an outbound HTLC
180 #[derive(Clone, Debug, Hash, PartialEq, Eq)]
181 pub(crate) struct HTLCPreviousHopData {
182         // Note that this may be an outbound SCID alias for the associated channel.
183         short_channel_id: u64,
184         user_channel_id: Option<u128>,
185         htlc_id: u64,
186         incoming_packet_shared_secret: [u8; 32],
187         phantom_shared_secret: Option<[u8; 32]>,
188
189         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
190         // channel with a preimage provided by the forward channel.
191         outpoint: OutPoint,
192 }
193
194 enum OnionPayload {
195         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
196         Invoice {
197                 /// This is only here for backwards-compatibility in serialization, in the future it can be
198                 /// removed, breaking clients running 0.0.106 and earlier.
199                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
200         },
201         /// Contains the payer-provided preimage.
202         Spontaneous(PaymentPreimage),
203 }
204
205 /// HTLCs that are to us and can be failed/claimed by the user
206 struct ClaimableHTLC {
207         prev_hop: HTLCPreviousHopData,
208         cltv_expiry: u32,
209         /// The amount (in msats) of this MPP part
210         value: u64,
211         /// The amount (in msats) that the sender intended to be sent in this MPP
212         /// part (used for validating total MPP amount)
213         sender_intended_value: u64,
214         onion_payload: OnionPayload,
215         timer_ticks: u8,
216         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
217         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
218         total_value_received: Option<u64>,
219         /// The sender intended sum total of all MPP parts specified in the onion
220         total_msat: u64,
221         /// The extra fee our counterparty skimmed off the top of this HTLC.
222         counterparty_skimmed_fee_msat: Option<u64>,
223 }
224
225 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
226         fn from(val: &ClaimableHTLC) -> Self {
227                 events::ClaimedHTLC {
228                         channel_id: val.prev_hop.outpoint.to_channel_id(),
229                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
230                         cltv_expiry: val.cltv_expiry,
231                         value_msat: val.value,
232                 }
233         }
234 }
235
236 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
237 /// a payment and ensure idempotency in LDK.
238 ///
239 /// This is not exported to bindings users as we just use [u8; 32] directly
240 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
241 pub struct PaymentId(pub [u8; Self::LENGTH]);
242
243 impl PaymentId {
244         /// Number of bytes in the id.
245         pub const LENGTH: usize = 32;
246 }
247
248 impl Writeable for PaymentId {
249         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
250                 self.0.write(w)
251         }
252 }
253
254 impl Readable for PaymentId {
255         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
256                 let buf: [u8; 32] = Readable::read(r)?;
257                 Ok(PaymentId(buf))
258         }
259 }
260
261 impl core::fmt::Display for PaymentId {
262         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
263                 crate::util::logger::DebugBytes(&self.0).fmt(f)
264         }
265 }
266
267 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
268 ///
269 /// This is not exported to bindings users as we just use [u8; 32] directly
270 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
271 pub struct InterceptId(pub [u8; 32]);
272
273 impl Writeable for InterceptId {
274         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
275                 self.0.write(w)
276         }
277 }
278
279 impl Readable for InterceptId {
280         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
281                 let buf: [u8; 32] = Readable::read(r)?;
282                 Ok(InterceptId(buf))
283         }
284 }
285
286 #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
287 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
288 pub(crate) enum SentHTLCId {
289         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
290         OutboundRoute { session_priv: SecretKey },
291 }
292 impl SentHTLCId {
293         pub(crate) fn from_source(source: &HTLCSource) -> Self {
294                 match source {
295                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
296                                 short_channel_id: hop_data.short_channel_id,
297                                 htlc_id: hop_data.htlc_id,
298                         },
299                         HTLCSource::OutboundRoute { session_priv, .. } =>
300                                 Self::OutboundRoute { session_priv: *session_priv },
301                 }
302         }
303 }
304 impl_writeable_tlv_based_enum!(SentHTLCId,
305         (0, PreviousHopData) => {
306                 (0, short_channel_id, required),
307                 (2, htlc_id, required),
308         },
309         (2, OutboundRoute) => {
310                 (0, session_priv, required),
311         };
312 );
313
314
315 /// Tracks the inbound corresponding to an outbound HTLC
316 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
317 #[derive(Clone, Debug, PartialEq, Eq)]
318 pub(crate) enum HTLCSource {
319         PreviousHopData(HTLCPreviousHopData),
320         OutboundRoute {
321                 path: Path,
322                 session_priv: SecretKey,
323                 /// Technically we can recalculate this from the route, but we cache it here to avoid
324                 /// doing a double-pass on route when we get a failure back
325                 first_hop_htlc_msat: u64,
326                 payment_id: PaymentId,
327         },
328 }
329 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
330 impl core::hash::Hash for HTLCSource {
331         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
332                 match self {
333                         HTLCSource::PreviousHopData(prev_hop_data) => {
334                                 0u8.hash(hasher);
335                                 prev_hop_data.hash(hasher);
336                         },
337                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
338                                 1u8.hash(hasher);
339                                 path.hash(hasher);
340                                 session_priv[..].hash(hasher);
341                                 payment_id.hash(hasher);
342                                 first_hop_htlc_msat.hash(hasher);
343                         },
344                 }
345         }
346 }
347 impl HTLCSource {
348         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
349         #[cfg(test)]
350         pub fn dummy() -> Self {
351                 HTLCSource::OutboundRoute {
352                         path: Path { hops: Vec::new(), blinded_tail: None },
353                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
354                         first_hop_htlc_msat: 0,
355                         payment_id: PaymentId([2; 32]),
356                 }
357         }
358
359         #[cfg(debug_assertions)]
360         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
361         /// transaction. Useful to ensure different datastructures match up.
362         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
363                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
364                         *first_hop_htlc_msat == htlc.amount_msat
365                 } else {
366                         // There's nothing we can check for forwarded HTLCs
367                         true
368                 }
369         }
370 }
371
372 struct InboundOnionErr {
373         err_code: u16,
374         err_data: Vec<u8>,
375         msg: &'static str,
376 }
377
378 /// This enum is used to specify which error data to send to peers when failing back an HTLC
379 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
380 ///
381 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
382 #[derive(Clone, Copy)]
383 pub enum FailureCode {
384         /// We had a temporary error processing the payment. Useful if no other error codes fit
385         /// and you want to indicate that the payer may want to retry.
386         TemporaryNodeFailure,
387         /// We have a required feature which was not in this onion. For example, you may require
388         /// some additional metadata that was not provided with this payment.
389         RequiredNodeFeatureMissing,
390         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
391         /// the HTLC is too close to the current block height for safe handling.
392         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
393         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
394         IncorrectOrUnknownPaymentDetails,
395         /// We failed to process the payload after the onion was decrypted. You may wish to
396         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
397         ///
398         /// If available, the tuple data may include the type number and byte offset in the
399         /// decrypted byte stream where the failure occurred.
400         InvalidOnionPayload(Option<(u64, u16)>),
401 }
402
403 impl Into<u16> for FailureCode {
404     fn into(self) -> u16 {
405                 match self {
406                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
407                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
408                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
409                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
410                 }
411         }
412 }
413
414 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
415 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
416 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
417 /// peer_state lock. We then return the set of things that need to be done outside the lock in
418 /// this struct and call handle_error!() on it.
419
420 struct MsgHandleErrInternal {
421         err: msgs::LightningError,
422         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
423         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
424         channel_capacity: Option<u64>,
425 }
426 impl MsgHandleErrInternal {
427         #[inline]
428         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
429                 Self {
430                         err: LightningError {
431                                 err: err.clone(),
432                                 action: msgs::ErrorAction::SendErrorMessage {
433                                         msg: msgs::ErrorMessage {
434                                                 channel_id,
435                                                 data: err
436                                         },
437                                 },
438                         },
439                         chan_id: None,
440                         shutdown_finish: None,
441                         channel_capacity: None,
442                 }
443         }
444         #[inline]
445         fn from_no_close(err: msgs::LightningError) -> Self {
446                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
447         }
448         #[inline]
449         fn from_finish_shutdown(err: String, channel_id: ChannelId, user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
450                 Self {
451                         err: LightningError {
452                                 err: err.clone(),
453                                 action: msgs::ErrorAction::SendErrorMessage {
454                                         msg: msgs::ErrorMessage {
455                                                 channel_id,
456                                                 data: err
457                                         },
458                                 },
459                         },
460                         chan_id: Some((channel_id, user_channel_id)),
461                         shutdown_finish: Some((shutdown_res, channel_update)),
462                         channel_capacity: Some(channel_capacity)
463                 }
464         }
465         #[inline]
466         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
467                 Self {
468                         err: match err {
469                                 ChannelError::Warn(msg) =>  LightningError {
470                                         err: msg.clone(),
471                                         action: msgs::ErrorAction::SendWarningMessage {
472                                                 msg: msgs::WarningMessage {
473                                                         channel_id,
474                                                         data: msg
475                                                 },
476                                                 log_level: Level::Warn,
477                                         },
478                                 },
479                                 ChannelError::Ignore(msg) => LightningError {
480                                         err: msg,
481                                         action: msgs::ErrorAction::IgnoreError,
482                                 },
483                                 ChannelError::Close(msg) => LightningError {
484                                         err: msg.clone(),
485                                         action: msgs::ErrorAction::SendErrorMessage {
486                                                 msg: msgs::ErrorMessage {
487                                                         channel_id,
488                                                         data: msg
489                                                 },
490                                         },
491                                 },
492                         },
493                         chan_id: None,
494                         shutdown_finish: None,
495                         channel_capacity: None,
496                 }
497         }
498
499         fn closes_channel(&self) -> bool {
500                 self.chan_id.is_some()
501         }
502 }
503
504 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
505 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
506 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
507 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
508 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
509
510 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
511 /// be sent in the order they appear in the return value, however sometimes the order needs to be
512 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
513 /// they were originally sent). In those cases, this enum is also returned.
514 #[derive(Clone, PartialEq)]
515 pub(super) enum RAACommitmentOrder {
516         /// Send the CommitmentUpdate messages first
517         CommitmentFirst,
518         /// Send the RevokeAndACK message first
519         RevokeAndACKFirst,
520 }
521
522 /// Information about a payment which is currently being claimed.
523 struct ClaimingPayment {
524         amount_msat: u64,
525         payment_purpose: events::PaymentPurpose,
526         receiver_node_id: PublicKey,
527         htlcs: Vec<events::ClaimedHTLC>,
528         sender_intended_value: Option<u64>,
529 }
530 impl_writeable_tlv_based!(ClaimingPayment, {
531         (0, amount_msat, required),
532         (2, payment_purpose, required),
533         (4, receiver_node_id, required),
534         (5, htlcs, optional_vec),
535         (7, sender_intended_value, option),
536 });
537
538 struct ClaimablePayment {
539         purpose: events::PaymentPurpose,
540         onion_fields: Option<RecipientOnionFields>,
541         htlcs: Vec<ClaimableHTLC>,
542 }
543
544 /// Information about claimable or being-claimed payments
545 struct ClaimablePayments {
546         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
547         /// failed/claimed by the user.
548         ///
549         /// Note that, no consistency guarantees are made about the channels given here actually
550         /// existing anymore by the time you go to read them!
551         ///
552         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
553         /// we don't get a duplicate payment.
554         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
555
556         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
557         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
558         /// as an [`events::Event::PaymentClaimed`].
559         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
560 }
561
562 /// Events which we process internally but cannot be processed immediately at the generation site
563 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
564 /// running normally, and specifically must be processed before any other non-background
565 /// [`ChannelMonitorUpdate`]s are applied.
566 enum BackgroundEvent {
567         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
568         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
569         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
570         /// channel has been force-closed we do not need the counterparty node_id.
571         ///
572         /// Note that any such events are lost on shutdown, so in general they must be updates which
573         /// are regenerated on startup.
574         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
575         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
576         /// channel to continue normal operation.
577         ///
578         /// In general this should be used rather than
579         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
580         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
581         /// error the other variant is acceptable.
582         ///
583         /// Note that any such events are lost on shutdown, so in general they must be updates which
584         /// are regenerated on startup.
585         MonitorUpdateRegeneratedOnStartup {
586                 counterparty_node_id: PublicKey,
587                 funding_txo: OutPoint,
588                 update: ChannelMonitorUpdate
589         },
590         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
591         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
592         /// on a channel.
593         MonitorUpdatesComplete {
594                 counterparty_node_id: PublicKey,
595                 channel_id: ChannelId,
596         },
597 }
598
599 #[derive(Debug)]
600 pub(crate) enum MonitorUpdateCompletionAction {
601         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
602         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
603         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
604         /// event can be generated.
605         PaymentClaimed { payment_hash: PaymentHash },
606         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
607         /// operation of another channel.
608         ///
609         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
610         /// from completing a monitor update which removes the payment preimage until the inbound edge
611         /// completes a monitor update containing the payment preimage. In that case, after the inbound
612         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
613         /// outbound edge.
614         EmitEventAndFreeOtherChannel {
615                 event: events::Event,
616                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
617         },
618 }
619
620 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
621         (0, PaymentClaimed) => { (0, payment_hash, required) },
622         (2, EmitEventAndFreeOtherChannel) => {
623                 (0, event, upgradable_required),
624                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
625                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
626                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
627                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
628                 // downgrades to prior versions.
629                 (1, downstream_counterparty_and_funding_outpoint, option),
630         },
631 );
632
633 #[derive(Clone, Debug, PartialEq, Eq)]
634 pub(crate) enum EventCompletionAction {
635         ReleaseRAAChannelMonitorUpdate {
636                 counterparty_node_id: PublicKey,
637                 channel_funding_outpoint: OutPoint,
638         },
639 }
640 impl_writeable_tlv_based_enum!(EventCompletionAction,
641         (0, ReleaseRAAChannelMonitorUpdate) => {
642                 (0, channel_funding_outpoint, required),
643                 (2, counterparty_node_id, required),
644         };
645 );
646
647 #[derive(Clone, PartialEq, Eq, Debug)]
648 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
649 /// the blocked action here. See enum variants for more info.
650 pub(crate) enum RAAMonitorUpdateBlockingAction {
651         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
652         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
653         /// durably to disk.
654         ForwardedPaymentInboundClaim {
655                 /// The upstream channel ID (i.e. the inbound edge).
656                 channel_id: ChannelId,
657                 /// The HTLC ID on the inbound edge.
658                 htlc_id: u64,
659         },
660 }
661
662 impl RAAMonitorUpdateBlockingAction {
663         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
664                 Self::ForwardedPaymentInboundClaim {
665                         channel_id: prev_hop.outpoint.to_channel_id(),
666                         htlc_id: prev_hop.htlc_id,
667                 }
668         }
669 }
670
671 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
672         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
673 ;);
674
675
676 /// State we hold per-peer.
677 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
678         /// `channel_id` -> `ChannelPhase`
679         ///
680         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
681         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
682         /// `temporary_channel_id` -> `InboundChannelRequest`.
683         ///
684         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
685         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
686         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
687         /// the channel is rejected, then the entry is simply removed.
688         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
689         /// The latest `InitFeatures` we heard from the peer.
690         latest_features: InitFeatures,
691         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
692         /// for broadcast messages, where ordering isn't as strict).
693         pub(super) pending_msg_events: Vec<MessageSendEvent>,
694         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
695         /// user but which have not yet completed.
696         ///
697         /// Note that the channel may no longer exist. For example if the channel was closed but we
698         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
699         /// for a missing channel.
700         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
701         /// Map from a specific channel to some action(s) that should be taken when all pending
702         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
703         ///
704         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
705         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
706         /// channels with a peer this will just be one allocation and will amount to a linear list of
707         /// channels to walk, avoiding the whole hashing rigmarole.
708         ///
709         /// Note that the channel may no longer exist. For example, if a channel was closed but we
710         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
711         /// for a missing channel. While a malicious peer could construct a second channel with the
712         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
713         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
714         /// duplicates do not occur, so such channels should fail without a monitor update completing.
715         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
716         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
717         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
718         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
719         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
720         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
721         /// The peer is currently connected (i.e. we've seen a
722         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
723         /// [`ChannelMessageHandler::peer_disconnected`].
724         is_connected: bool,
725 }
726
727 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
728         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
729         /// If true is passed for `require_disconnected`, the function will return false if we haven't
730         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
731         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
732                 if require_disconnected && self.is_connected {
733                         return false
734                 }
735                 self.channel_by_id.iter().filter(|(_, phase)| matches!(phase, ChannelPhase::Funded(_))).count() == 0
736                         && self.monitor_update_blocked_actions.is_empty()
737                         && self.in_flight_monitor_updates.is_empty()
738         }
739
740         // Returns a count of all channels we have with this peer, including unfunded channels.
741         fn total_channel_count(&self) -> usize {
742                 self.channel_by_id.len() + self.inbound_channel_request_by_id.len()
743         }
744
745         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
746         fn has_channel(&self, channel_id: &ChannelId) -> bool {
747                 self.channel_by_id.contains_key(channel_id) ||
748                         self.inbound_channel_request_by_id.contains_key(channel_id)
749         }
750 }
751
752 /// A not-yet-accepted inbound (from counterparty) channel. Once
753 /// accepted, the parameters will be used to construct a channel.
754 pub(super) struct InboundChannelRequest {
755         /// The original OpenChannel message.
756         pub open_channel_msg: msgs::OpenChannel,
757         /// The number of ticks remaining before the request expires.
758         pub ticks_remaining: i32,
759 }
760
761 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
762 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
763 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
764
765 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
766 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
767 ///
768 /// For users who don't want to bother doing their own payment preimage storage, we also store that
769 /// here.
770 ///
771 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
772 /// and instead encoding it in the payment secret.
773 struct PendingInboundPayment {
774         /// The payment secret that the sender must use for us to accept this payment
775         payment_secret: PaymentSecret,
776         /// Time at which this HTLC expires - blocks with a header time above this value will result in
777         /// this payment being removed.
778         expiry_time: u64,
779         /// Arbitrary identifier the user specifies (or not)
780         user_payment_id: u64,
781         // Other required attributes of the payment, optionally enforced:
782         payment_preimage: Option<PaymentPreimage>,
783         min_value_msat: Option<u64>,
784 }
785
786 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
787 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
788 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
789 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
790 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
791 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
792 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
793 /// of [`KeysManager`] and [`DefaultRouter`].
794 ///
795 /// This is not exported to bindings users as Arcs don't make sense in bindings
796 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
797         Arc<M>,
798         Arc<T>,
799         Arc<KeysManager>,
800         Arc<KeysManager>,
801         Arc<KeysManager>,
802         Arc<F>,
803         Arc<DefaultRouter<
804                 Arc<NetworkGraph<Arc<L>>>,
805                 Arc<L>,
806                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
807                 ProbabilisticScoringFeeParameters,
808                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
809         >>,
810         Arc<L>
811 >;
812
813 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
814 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
815 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
816 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
817 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
818 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
819 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
820 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
821 /// of [`KeysManager`] and [`DefaultRouter`].
822 ///
823 /// This is not exported to bindings users as Arcs don't make sense in bindings
824 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
825         ChannelManager<
826                 &'a M,
827                 &'b T,
828                 &'c KeysManager,
829                 &'c KeysManager,
830                 &'c KeysManager,
831                 &'d F,
832                 &'e DefaultRouter<
833                         &'f NetworkGraph<&'g L>,
834                         &'g L,
835                         &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
836                         ProbabilisticScoringFeeParameters,
837                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
838                 >,
839                 &'g L
840         >;
841
842 /// A trivial trait which describes any [`ChannelManager`].
843 pub trait AChannelManager {
844         /// A type implementing [`chain::Watch`].
845         type Watch: chain::Watch<Self::Signer> + ?Sized;
846         /// A type that may be dereferenced to [`Self::Watch`].
847         type M: Deref<Target = Self::Watch>;
848         /// A type implementing [`BroadcasterInterface`].
849         type Broadcaster: BroadcasterInterface + ?Sized;
850         /// A type that may be dereferenced to [`Self::Broadcaster`].
851         type T: Deref<Target = Self::Broadcaster>;
852         /// A type implementing [`EntropySource`].
853         type EntropySource: EntropySource + ?Sized;
854         /// A type that may be dereferenced to [`Self::EntropySource`].
855         type ES: Deref<Target = Self::EntropySource>;
856         /// A type implementing [`NodeSigner`].
857         type NodeSigner: NodeSigner + ?Sized;
858         /// A type that may be dereferenced to [`Self::NodeSigner`].
859         type NS: Deref<Target = Self::NodeSigner>;
860         /// A type implementing [`WriteableEcdsaChannelSigner`].
861         type Signer: WriteableEcdsaChannelSigner + Sized;
862         /// A type implementing [`SignerProvider`] for [`Self::Signer`].
863         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
864         /// A type that may be dereferenced to [`Self::SignerProvider`].
865         type SP: Deref<Target = Self::SignerProvider>;
866         /// A type implementing [`FeeEstimator`].
867         type FeeEstimator: FeeEstimator + ?Sized;
868         /// A type that may be dereferenced to [`Self::FeeEstimator`].
869         type F: Deref<Target = Self::FeeEstimator>;
870         /// A type implementing [`Router`].
871         type Router: Router + ?Sized;
872         /// A type that may be dereferenced to [`Self::Router`].
873         type R: Deref<Target = Self::Router>;
874         /// A type implementing [`Logger`].
875         type Logger: Logger + ?Sized;
876         /// A type that may be dereferenced to [`Self::Logger`].
877         type L: Deref<Target = Self::Logger>;
878         /// Returns a reference to the actual [`ChannelManager`] object.
879         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
880 }
881
882 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
883 for ChannelManager<M, T, ES, NS, SP, F, R, L>
884 where
885         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
886         T::Target: BroadcasterInterface,
887         ES::Target: EntropySource,
888         NS::Target: NodeSigner,
889         SP::Target: SignerProvider,
890         F::Target: FeeEstimator,
891         R::Target: Router,
892         L::Target: Logger,
893 {
894         type Watch = M::Target;
895         type M = M;
896         type Broadcaster = T::Target;
897         type T = T;
898         type EntropySource = ES::Target;
899         type ES = ES;
900         type NodeSigner = NS::Target;
901         type NS = NS;
902         type Signer = <SP::Target as SignerProvider>::Signer;
903         type SignerProvider = SP::Target;
904         type SP = SP;
905         type FeeEstimator = F::Target;
906         type F = F;
907         type Router = R::Target;
908         type R = R;
909         type Logger = L::Target;
910         type L = L;
911         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
912 }
913
914 /// Manager which keeps track of a number of channels and sends messages to the appropriate
915 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
916 ///
917 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
918 /// to individual Channels.
919 ///
920 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
921 /// all peers during write/read (though does not modify this instance, only the instance being
922 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
923 /// called [`funding_transaction_generated`] for outbound channels) being closed.
924 ///
925 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
926 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
927 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
928 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
929 /// the serialization process). If the deserialized version is out-of-date compared to the
930 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
931 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
932 ///
933 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
934 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
935 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
936 ///
937 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
938 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
939 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
940 /// offline for a full minute. In order to track this, you must call
941 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
942 ///
943 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
944 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
945 /// not have a channel with being unable to connect to us or open new channels with us if we have
946 /// many peers with unfunded channels.
947 ///
948 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
949 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
950 /// never limited. Please ensure you limit the count of such channels yourself.
951 ///
952 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
953 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
954 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
955 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
956 /// you're using lightning-net-tokio.
957 ///
958 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
959 /// [`funding_created`]: msgs::FundingCreated
960 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
961 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
962 /// [`update_channel`]: chain::Watch::update_channel
963 /// [`ChannelUpdate`]: msgs::ChannelUpdate
964 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
965 /// [`read`]: ReadableArgs::read
966 //
967 // Lock order:
968 // The tree structure below illustrates the lock order requirements for the different locks of the
969 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
970 // and should then be taken in the order of the lowest to the highest level in the tree.
971 // Note that locks on different branches shall not be taken at the same time, as doing so will
972 // create a new lock order for those specific locks in the order they were taken.
973 //
974 // Lock order tree:
975 //
976 // `total_consistency_lock`
977 //  |
978 //  |__`forward_htlcs`
979 //  |   |
980 //  |   |__`pending_intercepted_htlcs`
981 //  |
982 //  |__`per_peer_state`
983 //  |   |
984 //  |   |__`pending_inbound_payments`
985 //  |       |
986 //  |       |__`claimable_payments`
987 //  |       |
988 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
989 //  |           |
990 //  |           |__`peer_state`
991 //  |               |
992 //  |               |__`id_to_peer`
993 //  |               |
994 //  |               |__`short_to_chan_info`
995 //  |               |
996 //  |               |__`outbound_scid_aliases`
997 //  |               |
998 //  |               |__`best_block`
999 //  |               |
1000 //  |               |__`pending_events`
1001 //  |                   |
1002 //  |                   |__`pending_background_events`
1003 //
1004 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
1005 where
1006         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1007         T::Target: BroadcasterInterface,
1008         ES::Target: EntropySource,
1009         NS::Target: NodeSigner,
1010         SP::Target: SignerProvider,
1011         F::Target: FeeEstimator,
1012         R::Target: Router,
1013         L::Target: Logger,
1014 {
1015         default_configuration: UserConfig,
1016         genesis_hash: BlockHash,
1017         fee_estimator: LowerBoundedFeeEstimator<F>,
1018         chain_monitor: M,
1019         tx_broadcaster: T,
1020         #[allow(unused)]
1021         router: R,
1022
1023         /// See `ChannelManager` struct-level documentation for lock order requirements.
1024         #[cfg(test)]
1025         pub(super) best_block: RwLock<BestBlock>,
1026         #[cfg(not(test))]
1027         best_block: RwLock<BestBlock>,
1028         secp_ctx: Secp256k1<secp256k1::All>,
1029
1030         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1031         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1032         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1033         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1034         ///
1035         /// See `ChannelManager` struct-level documentation for lock order requirements.
1036         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1037
1038         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1039         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1040         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1041         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1042         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1043         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1044         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1045         /// after reloading from disk while replaying blocks against ChannelMonitors.
1046         ///
1047         /// See `PendingOutboundPayment` documentation for more info.
1048         ///
1049         /// See `ChannelManager` struct-level documentation for lock order requirements.
1050         pending_outbound_payments: OutboundPayments,
1051
1052         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1053         ///
1054         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1055         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1056         /// and via the classic SCID.
1057         ///
1058         /// Note that no consistency guarantees are made about the existence of a channel with the
1059         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1060         ///
1061         /// See `ChannelManager` struct-level documentation for lock order requirements.
1062         #[cfg(test)]
1063         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1064         #[cfg(not(test))]
1065         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1066         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1067         /// until the user tells us what we should do with them.
1068         ///
1069         /// See `ChannelManager` struct-level documentation for lock order requirements.
1070         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1071
1072         /// The sets of payments which are claimable or currently being claimed. See
1073         /// [`ClaimablePayments`]' individual field docs for more info.
1074         ///
1075         /// See `ChannelManager` struct-level documentation for lock order requirements.
1076         claimable_payments: Mutex<ClaimablePayments>,
1077
1078         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1079         /// and some closed channels which reached a usable state prior to being closed. This is used
1080         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1081         /// active channel list on load.
1082         ///
1083         /// See `ChannelManager` struct-level documentation for lock order requirements.
1084         outbound_scid_aliases: Mutex<HashSet<u64>>,
1085
1086         /// `channel_id` -> `counterparty_node_id`.
1087         ///
1088         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1089         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1090         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1091         ///
1092         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1093         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1094         /// the handling of the events.
1095         ///
1096         /// Note that no consistency guarantees are made about the existence of a peer with the
1097         /// `counterparty_node_id` in our other maps.
1098         ///
1099         /// TODO:
1100         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1101         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1102         /// would break backwards compatability.
1103         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1104         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1105         /// required to access the channel with the `counterparty_node_id`.
1106         ///
1107         /// See `ChannelManager` struct-level documentation for lock order requirements.
1108         id_to_peer: Mutex<HashMap<ChannelId, PublicKey>>,
1109
1110         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1111         ///
1112         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1113         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1114         /// confirmation depth.
1115         ///
1116         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1117         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1118         /// channel with the `channel_id` in our other maps.
1119         ///
1120         /// See `ChannelManager` struct-level documentation for lock order requirements.
1121         #[cfg(test)]
1122         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1123         #[cfg(not(test))]
1124         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1125
1126         our_network_pubkey: PublicKey,
1127
1128         inbound_payment_key: inbound_payment::ExpandedKey,
1129
1130         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1131         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1132         /// we encrypt the namespace identifier using these bytes.
1133         ///
1134         /// [fake scids]: crate::util::scid_utils::fake_scid
1135         fake_scid_rand_bytes: [u8; 32],
1136
1137         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1138         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1139         /// keeping additional state.
1140         probing_cookie_secret: [u8; 32],
1141
1142         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1143         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1144         /// very far in the past, and can only ever be up to two hours in the future.
1145         highest_seen_timestamp: AtomicUsize,
1146
1147         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1148         /// basis, as well as the peer's latest features.
1149         ///
1150         /// If we are connected to a peer we always at least have an entry here, even if no channels
1151         /// are currently open with that peer.
1152         ///
1153         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1154         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1155         /// channels.
1156         ///
1157         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1158         ///
1159         /// See `ChannelManager` struct-level documentation for lock order requirements.
1160         #[cfg(not(any(test, feature = "_test_utils")))]
1161         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1162         #[cfg(any(test, feature = "_test_utils"))]
1163         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1164
1165         /// The set of events which we need to give to the user to handle. In some cases an event may
1166         /// require some further action after the user handles it (currently only blocking a monitor
1167         /// update from being handed to the user to ensure the included changes to the channel state
1168         /// are handled by the user before they're persisted durably to disk). In that case, the second
1169         /// element in the tuple is set to `Some` with further details of the action.
1170         ///
1171         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1172         /// could be in the middle of being processed without the direct mutex held.
1173         ///
1174         /// See `ChannelManager` struct-level documentation for lock order requirements.
1175         #[cfg(not(any(test, feature = "_test_utils")))]
1176         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1177         #[cfg(any(test, feature = "_test_utils"))]
1178         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1179
1180         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1181         pending_events_processor: AtomicBool,
1182
1183         /// If we are running during init (either directly during the deserialization method or in
1184         /// block connection methods which run after deserialization but before normal operation) we
1185         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1186         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1187         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1188         ///
1189         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1190         ///
1191         /// See `ChannelManager` struct-level documentation for lock order requirements.
1192         ///
1193         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1194         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1195         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1196         /// Essentially just when we're serializing ourselves out.
1197         /// Taken first everywhere where we are making changes before any other locks.
1198         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1199         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1200         /// Notifier the lock contains sends out a notification when the lock is released.
1201         total_consistency_lock: RwLock<()>,
1202
1203         background_events_processed_since_startup: AtomicBool,
1204
1205         event_persist_notifier: Notifier,
1206         needs_persist_flag: AtomicBool,
1207
1208         entropy_source: ES,
1209         node_signer: NS,
1210         signer_provider: SP,
1211
1212         logger: L,
1213 }
1214
1215 /// Chain-related parameters used to construct a new `ChannelManager`.
1216 ///
1217 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1218 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1219 /// are not needed when deserializing a previously constructed `ChannelManager`.
1220 #[derive(Clone, Copy, PartialEq)]
1221 pub struct ChainParameters {
1222         /// The network for determining the `chain_hash` in Lightning messages.
1223         pub network: Network,
1224
1225         /// The hash and height of the latest block successfully connected.
1226         ///
1227         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1228         pub best_block: BestBlock,
1229 }
1230
1231 #[derive(Copy, Clone, PartialEq)]
1232 #[must_use]
1233 enum NotifyOption {
1234         DoPersist,
1235         SkipPersistHandleEvents,
1236         SkipPersistNoEvents,
1237 }
1238
1239 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1240 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1241 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1242 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1243 /// sending the aforementioned notification (since the lock being released indicates that the
1244 /// updates are ready for persistence).
1245 ///
1246 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1247 /// notify or not based on whether relevant changes have been made, providing a closure to
1248 /// `optionally_notify` which returns a `NotifyOption`.
1249 struct PersistenceNotifierGuard<'a, F: FnMut() -> NotifyOption> {
1250         event_persist_notifier: &'a Notifier,
1251         needs_persist_flag: &'a AtomicBool,
1252         should_persist: F,
1253         // We hold onto this result so the lock doesn't get released immediately.
1254         _read_guard: RwLockReadGuard<'a, ()>,
1255 }
1256
1257 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1258         /// Notifies any waiters and indicates that we need to persist, in addition to possibly having
1259         /// events to handle.
1260         ///
1261         /// This must always be called if the changes included a `ChannelMonitorUpdate`, as well as in
1262         /// other cases where losing the changes on restart may result in a force-close or otherwise
1263         /// isn't ideal.
1264         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1265                 Self::optionally_notify(cm, || -> NotifyOption { NotifyOption::DoPersist })
1266         }
1267
1268         fn optionally_notify<F: FnMut() -> NotifyOption, C: AChannelManager>(cm: &'a C, mut persist_check: F)
1269         -> PersistenceNotifierGuard<'a, impl FnMut() -> NotifyOption> {
1270                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1271                 let force_notify = cm.get_cm().process_background_events();
1272
1273                 PersistenceNotifierGuard {
1274                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1275                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1276                         should_persist: move || {
1277                                 // Pick the "most" action between `persist_check` and the background events
1278                                 // processing and return that.
1279                                 let notify = persist_check();
1280                                 match (notify, force_notify) {
1281                                         (NotifyOption::DoPersist, _) => NotifyOption::DoPersist,
1282                                         (_, NotifyOption::DoPersist) => NotifyOption::DoPersist,
1283                                         (NotifyOption::SkipPersistHandleEvents, _) => NotifyOption::SkipPersistHandleEvents,
1284                                         (_, NotifyOption::SkipPersistHandleEvents) => NotifyOption::SkipPersistHandleEvents,
1285                                         _ => NotifyOption::SkipPersistNoEvents,
1286                                 }
1287                         },
1288                         _read_guard: read_guard,
1289                 }
1290         }
1291
1292         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1293         /// [`ChannelManager::process_background_events`] MUST be called first (or
1294         /// [`Self::optionally_notify`] used).
1295         fn optionally_notify_skipping_background_events<F: Fn() -> NotifyOption, C: AChannelManager>
1296         (cm: &'a C, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1297                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1298
1299                 PersistenceNotifierGuard {
1300                         event_persist_notifier: &cm.get_cm().event_persist_notifier,
1301                         needs_persist_flag: &cm.get_cm().needs_persist_flag,
1302                         should_persist: persist_check,
1303                         _read_guard: read_guard,
1304                 }
1305         }
1306 }
1307
1308 impl<'a, F: FnMut() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1309         fn drop(&mut self) {
1310                 match (self.should_persist)() {
1311                         NotifyOption::DoPersist => {
1312                                 self.needs_persist_flag.store(true, Ordering::Release);
1313                                 self.event_persist_notifier.notify()
1314                         },
1315                         NotifyOption::SkipPersistHandleEvents =>
1316                                 self.event_persist_notifier.notify(),
1317                         NotifyOption::SkipPersistNoEvents => {},
1318                 }
1319         }
1320 }
1321
1322 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1323 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1324 ///
1325 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1326 ///
1327 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1328 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1329 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1330 /// the maximum required amount in lnd as of March 2021.
1331 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1332
1333 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1334 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1335 ///
1336 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1337 ///
1338 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1339 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1340 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1341 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1342 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1343 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1344 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1345 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1346 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1347 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1348 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1349 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1350 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1351
1352 /// Minimum CLTV difference between the current block height and received inbound payments.
1353 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1354 /// this value.
1355 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1356 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1357 // a payment was being routed, so we add an extra block to be safe.
1358 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1359
1360 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1361 // ie that if the next-hop peer fails the HTLC within
1362 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1363 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1364 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1365 // LATENCY_GRACE_PERIOD_BLOCKS.
1366 #[deny(const_err)]
1367 #[allow(dead_code)]
1368 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;
1369
1370 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1371 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1372 #[deny(const_err)]
1373 #[allow(dead_code)]
1374 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1375
1376 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1377 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1378
1379 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1380 /// until we mark the channel disabled and gossip the update.
1381 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1382
1383 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1384 /// we mark the channel enabled and gossip the update.
1385 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1386
1387 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1388 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1389 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1390 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1391
1392 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1393 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1394 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1395
1396 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1397 /// many peers we reject new (inbound) connections.
1398 const MAX_NO_CHANNEL_PEERS: usize = 250;
1399
1400 /// Information needed for constructing an invoice route hint for this channel.
1401 #[derive(Clone, Debug, PartialEq)]
1402 pub struct CounterpartyForwardingInfo {
1403         /// Base routing fee in millisatoshis.
1404         pub fee_base_msat: u32,
1405         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1406         pub fee_proportional_millionths: u32,
1407         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1408         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1409         /// `cltv_expiry_delta` for more details.
1410         pub cltv_expiry_delta: u16,
1411 }
1412
1413 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1414 /// to better separate parameters.
1415 #[derive(Clone, Debug, PartialEq)]
1416 pub struct ChannelCounterparty {
1417         /// The node_id of our counterparty
1418         pub node_id: PublicKey,
1419         /// The Features the channel counterparty provided upon last connection.
1420         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1421         /// many routing-relevant features are present in the init context.
1422         pub features: InitFeatures,
1423         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1424         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1425         /// claiming at least this value on chain.
1426         ///
1427         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1428         ///
1429         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1430         pub unspendable_punishment_reserve: u64,
1431         /// Information on the fees and requirements that the counterparty requires when forwarding
1432         /// payments to us through this channel.
1433         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1434         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1435         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1436         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1437         pub outbound_htlc_minimum_msat: Option<u64>,
1438         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1439         pub outbound_htlc_maximum_msat: Option<u64>,
1440 }
1441
1442 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1443 ///
1444 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1445 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1446 /// transactions.
1447 ///
1448 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1449 #[derive(Clone, Debug, PartialEq)]
1450 pub struct ChannelDetails {
1451         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1452         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1453         /// Note that this means this value is *not* persistent - it can change once during the
1454         /// lifetime of the channel.
1455         pub channel_id: ChannelId,
1456         /// Parameters which apply to our counterparty. See individual fields for more information.
1457         pub counterparty: ChannelCounterparty,
1458         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1459         /// our counterparty already.
1460         ///
1461         /// Note that, if this has been set, `channel_id` will be equivalent to
1462         /// `funding_txo.unwrap().to_channel_id()`.
1463         pub funding_txo: Option<OutPoint>,
1464         /// The features which this channel operates with. See individual features for more info.
1465         ///
1466         /// `None` until negotiation completes and the channel type is finalized.
1467         pub channel_type: Option<ChannelTypeFeatures>,
1468         /// The position of the funding transaction in the chain. None if the funding transaction has
1469         /// not yet been confirmed and the channel fully opened.
1470         ///
1471         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1472         /// payments instead of this. See [`get_inbound_payment_scid`].
1473         ///
1474         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1475         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1476         ///
1477         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1478         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1479         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1480         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1481         /// [`confirmations_required`]: Self::confirmations_required
1482         pub short_channel_id: Option<u64>,
1483         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1484         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1485         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1486         /// `Some(0)`).
1487         ///
1488         /// This will be `None` as long as the channel is not available for routing outbound payments.
1489         ///
1490         /// [`short_channel_id`]: Self::short_channel_id
1491         /// [`confirmations_required`]: Self::confirmations_required
1492         pub outbound_scid_alias: Option<u64>,
1493         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1494         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1495         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1496         /// when they see a payment to be routed to us.
1497         ///
1498         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1499         /// previous values for inbound payment forwarding.
1500         ///
1501         /// [`short_channel_id`]: Self::short_channel_id
1502         pub inbound_scid_alias: Option<u64>,
1503         /// The value, in satoshis, of this channel as appears in the funding output
1504         pub channel_value_satoshis: u64,
1505         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1506         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1507         /// this value on chain.
1508         ///
1509         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1510         ///
1511         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1512         ///
1513         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1514         pub unspendable_punishment_reserve: Option<u64>,
1515         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1516         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1517         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1518         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1519         /// serialized with LDK versions prior to 0.0.113.
1520         ///
1521         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1522         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1523         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1524         pub user_channel_id: u128,
1525         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1526         /// which is applied to commitment and HTLC transactions.
1527         ///
1528         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1529         pub feerate_sat_per_1000_weight: Option<u32>,
1530         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1531         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1532         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1533         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1534         ///
1535         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1536         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1537         /// should be able to spend nearly this amount.
1538         pub outbound_capacity_msat: u64,
1539         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1540         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1541         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1542         /// to use a limit as close as possible to the HTLC limit we can currently send.
1543         ///
1544         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1545         /// [`ChannelDetails::outbound_capacity_msat`].
1546         pub next_outbound_htlc_limit_msat: u64,
1547         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1548         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1549         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1550         /// route which is valid.
1551         pub next_outbound_htlc_minimum_msat: u64,
1552         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1553         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1554         /// available for inclusion in new inbound HTLCs).
1555         /// Note that there are some corner cases not fully handled here, so the actual available
1556         /// inbound capacity may be slightly higher than this.
1557         ///
1558         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1559         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1560         /// However, our counterparty should be able to spend nearly this amount.
1561         pub inbound_capacity_msat: u64,
1562         /// The number of required confirmations on the funding transaction before the funding will be
1563         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1564         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1565         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1566         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1567         ///
1568         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1569         ///
1570         /// [`is_outbound`]: ChannelDetails::is_outbound
1571         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1572         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1573         pub confirmations_required: Option<u32>,
1574         /// The current number of confirmations on the funding transaction.
1575         ///
1576         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1577         pub confirmations: Option<u32>,
1578         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1579         /// until we can claim our funds after we force-close the channel. During this time our
1580         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1581         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1582         /// time to claim our non-HTLC-encumbered funds.
1583         ///
1584         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1585         pub force_close_spend_delay: Option<u16>,
1586         /// True if the channel was initiated (and thus funded) by us.
1587         pub is_outbound: bool,
1588         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1589         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1590         /// required confirmation count has been reached (and we were connected to the peer at some
1591         /// point after the funding transaction received enough confirmations). The required
1592         /// confirmation count is provided in [`confirmations_required`].
1593         ///
1594         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1595         pub is_channel_ready: bool,
1596         /// The stage of the channel's shutdown.
1597         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1598         pub channel_shutdown_state: Option<ChannelShutdownState>,
1599         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1600         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1601         ///
1602         /// This is a strict superset of `is_channel_ready`.
1603         pub is_usable: bool,
1604         /// True if this channel is (or will be) publicly-announced.
1605         pub is_public: bool,
1606         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1607         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1608         pub inbound_htlc_minimum_msat: Option<u64>,
1609         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1610         pub inbound_htlc_maximum_msat: Option<u64>,
1611         /// Set of configurable parameters that affect channel operation.
1612         ///
1613         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1614         pub config: Option<ChannelConfig>,
1615 }
1616
1617 impl ChannelDetails {
1618         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1619         /// This should be used for providing invoice hints or in any other context where our
1620         /// counterparty will forward a payment to us.
1621         ///
1622         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1623         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1624         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1625                 self.inbound_scid_alias.or(self.short_channel_id)
1626         }
1627
1628         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1629         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1630         /// we're sending or forwarding a payment outbound over this channel.
1631         ///
1632         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1633         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1634         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1635                 self.short_channel_id.or(self.outbound_scid_alias)
1636         }
1637
1638         fn from_channel_context<SP: Deref, F: Deref>(
1639                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1640                 fee_estimator: &LowerBoundedFeeEstimator<F>
1641         ) -> Self
1642         where
1643                 SP::Target: SignerProvider,
1644                 F::Target: FeeEstimator
1645         {
1646                 let balance = context.get_available_balances(fee_estimator);
1647                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1648                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1649                 ChannelDetails {
1650                         channel_id: context.channel_id(),
1651                         counterparty: ChannelCounterparty {
1652                                 node_id: context.get_counterparty_node_id(),
1653                                 features: latest_features,
1654                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1655                                 forwarding_info: context.counterparty_forwarding_info(),
1656                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1657                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1658                                 // message (as they are always the first message from the counterparty).
1659                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1660                                 // default `0` value set by `Channel::new_outbound`.
1661                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1662                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1663                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1664                         },
1665                         funding_txo: context.get_funding_txo(),
1666                         // Note that accept_channel (or open_channel) is always the first message, so
1667                         // `have_received_message` indicates that type negotiation has completed.
1668                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1669                         short_channel_id: context.get_short_channel_id(),
1670                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1671                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1672                         channel_value_satoshis: context.get_value_satoshis(),
1673                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1674                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1675                         inbound_capacity_msat: balance.inbound_capacity_msat,
1676                         outbound_capacity_msat: balance.outbound_capacity_msat,
1677                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1678                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1679                         user_channel_id: context.get_user_id(),
1680                         confirmations_required: context.minimum_depth(),
1681                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1682                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1683                         is_outbound: context.is_outbound(),
1684                         is_channel_ready: context.is_usable(),
1685                         is_usable: context.is_live(),
1686                         is_public: context.should_announce(),
1687                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1688                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1689                         config: Some(context.config()),
1690                         channel_shutdown_state: Some(context.shutdown_state()),
1691                 }
1692         }
1693 }
1694
1695 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1696 /// Further information on the details of the channel shutdown.
1697 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1698 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1699 /// the channel will be removed shortly.
1700 /// Also note, that in normal operation, peers could disconnect at any of these states
1701 /// and require peer re-connection before making progress onto other states
1702 pub enum ChannelShutdownState {
1703         /// Channel has not sent or received a shutdown message.
1704         NotShuttingDown,
1705         /// Local node has sent a shutdown message for this channel.
1706         ShutdownInitiated,
1707         /// Shutdown message exchanges have concluded and the channels are in the midst of
1708         /// resolving all existing open HTLCs before closing can continue.
1709         ResolvingHTLCs,
1710         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1711         NegotiatingClosingFee,
1712         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1713         /// to drop the channel.
1714         ShutdownComplete,
1715 }
1716
1717 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1718 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1719 #[derive(Debug, PartialEq)]
1720 pub enum RecentPaymentDetails {
1721         /// When an invoice was requested and thus a payment has not yet been sent.
1722         AwaitingInvoice {
1723                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1724                 /// a payment and ensure idempotency in LDK.
1725                 payment_id: PaymentId,
1726         },
1727         /// When a payment is still being sent and awaiting successful delivery.
1728         Pending {
1729                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1730                 /// a payment and ensure idempotency in LDK.
1731                 payment_id: PaymentId,
1732                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1733                 /// abandoned.
1734                 payment_hash: PaymentHash,
1735                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1736                 /// not just the amount currently inflight.
1737                 total_msat: u64,
1738         },
1739         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1740         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1741         /// payment is removed from tracking.
1742         Fulfilled {
1743                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1744                 /// a payment and ensure idempotency in LDK.
1745                 payment_id: PaymentId,
1746                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1747                 /// made before LDK version 0.0.104.
1748                 payment_hash: Option<PaymentHash>,
1749         },
1750         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1751         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1752         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1753         Abandoned {
1754                 /// A user-provided identifier in [`ChannelManager::send_payment`] used to uniquely identify
1755                 /// a payment and ensure idempotency in LDK.
1756                 payment_id: PaymentId,
1757                 /// Hash of the payment that we have given up trying to send.
1758                 payment_hash: PaymentHash,
1759         },
1760 }
1761
1762 /// Route hints used in constructing invoices for [phantom node payents].
1763 ///
1764 /// [phantom node payments]: crate::sign::PhantomKeysManager
1765 #[derive(Clone)]
1766 pub struct PhantomRouteHints {
1767         /// The list of channels to be included in the invoice route hints.
1768         pub channels: Vec<ChannelDetails>,
1769         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1770         /// route hints.
1771         pub phantom_scid: u64,
1772         /// The pubkey of the real backing node that would ultimately receive the payment.
1773         pub real_node_pubkey: PublicKey,
1774 }
1775
1776 macro_rules! handle_error {
1777         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1778                 // In testing, ensure there are no deadlocks where the lock is already held upon
1779                 // entering the macro.
1780                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1781                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1782
1783                 match $internal {
1784                         Ok(msg) => Ok(msg),
1785                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1786                                 let mut msg_events = Vec::with_capacity(2);
1787
1788                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1789                                         $self.finish_force_close_channel(shutdown_res);
1790                                         if let Some(update) = update_option {
1791                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1792                                                         msg: update
1793                                                 });
1794                                         }
1795                                         if let Some((channel_id, user_channel_id)) = chan_id {
1796                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1797                                                         channel_id, user_channel_id,
1798                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1799                                                         counterparty_node_id: Some($counterparty_node_id),
1800                                                         channel_capacity_sats: channel_capacity,
1801                                                 }, None));
1802                                         }
1803                                 }
1804
1805                                 log_error!($self.logger, "{}", err.err);
1806                                 if let msgs::ErrorAction::IgnoreError = err.action {
1807                                 } else {
1808                                         msg_events.push(events::MessageSendEvent::HandleError {
1809                                                 node_id: $counterparty_node_id,
1810                                                 action: err.action.clone()
1811                                         });
1812                                 }
1813
1814                                 if !msg_events.is_empty() {
1815                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1816                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1817                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1818                                                 peer_state.pending_msg_events.append(&mut msg_events);
1819                                         }
1820                                 }
1821
1822                                 // Return error in case higher-API need one
1823                                 Err(err)
1824                         },
1825                 }
1826         } };
1827         ($self: ident, $internal: expr) => {
1828                 match $internal {
1829                         Ok(res) => Ok(res),
1830                         Err((chan, msg_handle_err)) => {
1831                                 let counterparty_node_id = chan.get_counterparty_node_id();
1832                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1833                         },
1834                 }
1835         };
1836 }
1837
1838 macro_rules! update_maps_on_chan_removal {
1839         ($self: expr, $channel_context: expr) => {{
1840                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1841                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1842                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1843                         short_to_chan_info.remove(&short_id);
1844                 } else {
1845                         // If the channel was never confirmed on-chain prior to its closure, remove the
1846                         // outbound SCID alias we used for it from the collision-prevention set. While we
1847                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1848                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1849                         // opening a million channels with us which are closed before we ever reach the funding
1850                         // stage.
1851                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1852                         debug_assert!(alias_removed);
1853                 }
1854                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1855         }}
1856 }
1857
1858 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1859 macro_rules! convert_chan_phase_err {
1860         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1861                 match $err {
1862                         ChannelError::Warn(msg) => {
1863                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1864                         },
1865                         ChannelError::Ignore(msg) => {
1866                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1867                         },
1868                         ChannelError::Close(msg) => {
1869                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1870                                 update_maps_on_chan_removal!($self, $channel.context);
1871                                 let shutdown_res = $channel.context.force_shutdown(true);
1872                                 let user_id = $channel.context.get_user_id();
1873                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1874
1875                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1876                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1877                         },
1878                 }
1879         };
1880         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1881                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1882         };
1883         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1884                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1885         };
1886         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1887                 match $channel_phase {
1888                         ChannelPhase::Funded(channel) => {
1889                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1890                         },
1891                         ChannelPhase::UnfundedOutboundV1(channel) => {
1892                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1893                         },
1894                         ChannelPhase::UnfundedInboundV1(channel) => {
1895                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1896                         },
1897                 }
1898         };
1899 }
1900
1901 macro_rules! break_chan_phase_entry {
1902         ($self: ident, $res: expr, $entry: expr) => {
1903                 match $res {
1904                         Ok(res) => res,
1905                         Err(e) => {
1906                                 let key = *$entry.key();
1907                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1908                                 if drop {
1909                                         $entry.remove_entry();
1910                                 }
1911                                 break Err(res);
1912                         }
1913                 }
1914         }
1915 }
1916
1917 macro_rules! try_chan_phase_entry {
1918         ($self: ident, $res: expr, $entry: expr) => {
1919                 match $res {
1920                         Ok(res) => res,
1921                         Err(e) => {
1922                                 let key = *$entry.key();
1923                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1924                                 if drop {
1925                                         $entry.remove_entry();
1926                                 }
1927                                 return Err(res);
1928                         }
1929                 }
1930         }
1931 }
1932
1933 macro_rules! remove_channel_phase {
1934         ($self: expr, $entry: expr) => {
1935                 {
1936                         let channel = $entry.remove_entry().1;
1937                         update_maps_on_chan_removal!($self, &channel.context());
1938                         channel
1939                 }
1940         }
1941 }
1942
1943 macro_rules! send_channel_ready {
1944         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1945                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1946                         node_id: $channel.context.get_counterparty_node_id(),
1947                         msg: $channel_ready_msg,
1948                 });
1949                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1950                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1951                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1952                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1953                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1954                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1955                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1956                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1957                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1958                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1959                 }
1960         }}
1961 }
1962
1963 macro_rules! emit_channel_pending_event {
1964         ($locked_events: expr, $channel: expr) => {
1965                 if $channel.context.should_emit_channel_pending_event() {
1966                         $locked_events.push_back((events::Event::ChannelPending {
1967                                 channel_id: $channel.context.channel_id(),
1968                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1969                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1970                                 user_channel_id: $channel.context.get_user_id(),
1971                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1972                         }, None));
1973                         $channel.context.set_channel_pending_event_emitted();
1974                 }
1975         }
1976 }
1977
1978 macro_rules! emit_channel_ready_event {
1979         ($locked_events: expr, $channel: expr) => {
1980                 if $channel.context.should_emit_channel_ready_event() {
1981                         debug_assert!($channel.context.channel_pending_event_emitted());
1982                         $locked_events.push_back((events::Event::ChannelReady {
1983                                 channel_id: $channel.context.channel_id(),
1984                                 user_channel_id: $channel.context.get_user_id(),
1985                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1986                                 channel_type: $channel.context.get_channel_type().clone(),
1987                         }, None));
1988                         $channel.context.set_channel_ready_event_emitted();
1989                 }
1990         }
1991 }
1992
1993 macro_rules! handle_monitor_update_completion {
1994         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1995                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1996                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1997                         $self.best_block.read().unwrap().height());
1998                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1999                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
2000                         // We only send a channel_update in the case where we are just now sending a
2001                         // channel_ready and the channel is in a usable state. We may re-send a
2002                         // channel_update later through the announcement_signatures process for public
2003                         // channels, but there's no reason not to just inform our counterparty of our fees
2004                         // now.
2005                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
2006                                 Some(events::MessageSendEvent::SendChannelUpdate {
2007                                         node_id: counterparty_node_id,
2008                                         msg,
2009                                 })
2010                         } else { None }
2011                 } else { None };
2012
2013                 let update_actions = $peer_state.monitor_update_blocked_actions
2014                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
2015
2016                 let htlc_forwards = $self.handle_channel_resumption(
2017                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
2018                         updates.commitment_update, updates.order, updates.accepted_htlcs,
2019                         updates.funding_broadcastable, updates.channel_ready,
2020                         updates.announcement_sigs);
2021                 if let Some(upd) = channel_update {
2022                         $peer_state.pending_msg_events.push(upd);
2023                 }
2024
2025                 let channel_id = $chan.context.channel_id();
2026                 core::mem::drop($peer_state_lock);
2027                 core::mem::drop($per_peer_state_lock);
2028
2029                 $self.handle_monitor_update_completion_actions(update_actions);
2030
2031                 if let Some(forwards) = htlc_forwards {
2032                         $self.forward_htlcs(&mut [forwards][..]);
2033                 }
2034                 $self.finalize_claims(updates.finalized_claimed_htlcs);
2035                 for failure in updates.failed_htlcs.drain(..) {
2036                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2037                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
2038                 }
2039         } }
2040 }
2041
2042 macro_rules! handle_new_monitor_update {
2043         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
2044                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
2045                 // any case so that it won't deadlock.
2046                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
2047                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
2048                 match $update_res {
2049                         ChannelMonitorUpdateStatus::InProgress => {
2050                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
2051                                         &$chan.context.channel_id());
2052                                 Ok(false)
2053                         },
2054                         ChannelMonitorUpdateStatus::Completed => {
2055                                 $completed;
2056                                 Ok(true)
2057                         },
2058                 }
2059         } };
2060         ($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) => {
2061                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2062                         $per_peer_state_lock, $chan, _internal, $remove,
2063                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2064         };
2065         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2066                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2067                         handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2068                                 $per_peer_state_lock, chan, MANUALLY_REMOVING_INITIAL_MONITOR, { $chan_entry.remove() })
2069                 } else {
2070                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2071                         // update).
2072                         debug_assert!(false);
2073                         let channel_id = *$chan_entry.key();
2074                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2075                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2076                                 $chan_entry.get_mut(), &channel_id);
2077                         $chan_entry.remove();
2078                         Err(err)
2079                 }
2080         };
2081         ($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) => { {
2082                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2083                         .or_insert_with(Vec::new);
2084                 // During startup, we push monitor updates as background events through to here in
2085                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2086                 // filter for uniqueness here.
2087                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2088                         .unwrap_or_else(|| {
2089                                 in_flight_updates.push($update);
2090                                 in_flight_updates.len() - 1
2091                         });
2092                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2093                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2094                         $per_peer_state_lock, $chan, _internal, $remove,
2095                         {
2096                                 let _ = in_flight_updates.remove(idx);
2097                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2098                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2099                                 }
2100                         })
2101         } };
2102         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2103                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2104                         handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state,
2105                                 $per_peer_state_lock, chan, MANUALLY_REMOVING, { $chan_entry.remove() })
2106                 } else {
2107                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2108                         // update).
2109                         debug_assert!(false);
2110                         let channel_id = *$chan_entry.key();
2111                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2112                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2113                                 $chan_entry.get_mut(), &channel_id);
2114                         $chan_entry.remove();
2115                         Err(err)
2116                 }
2117         }
2118 }
2119
2120 macro_rules! process_events_body {
2121         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2122                 let mut processed_all_events = false;
2123                 while !processed_all_events {
2124                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2125                                 return;
2126                         }
2127
2128                         let mut result;
2129
2130                         {
2131                                 // We'll acquire our total consistency lock so that we can be sure no other
2132                                 // persists happen while processing monitor events.
2133                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2134
2135                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2136                                 // ensure any startup-generated background events are handled first.
2137                                 result = $self.process_background_events();
2138
2139                                 // TODO: This behavior should be documented. It's unintuitive that we query
2140                                 // ChannelMonitors when clearing other events.
2141                                 if $self.process_pending_monitor_events() {
2142                                         result = NotifyOption::DoPersist;
2143                                 }
2144                         }
2145
2146                         let pending_events = $self.pending_events.lock().unwrap().clone();
2147                         let num_events = pending_events.len();
2148                         if !pending_events.is_empty() {
2149                                 result = NotifyOption::DoPersist;
2150                         }
2151
2152                         let mut post_event_actions = Vec::new();
2153
2154                         for (event, action_opt) in pending_events {
2155                                 $event_to_handle = event;
2156                                 $handle_event;
2157                                 if let Some(action) = action_opt {
2158                                         post_event_actions.push(action);
2159                                 }
2160                         }
2161
2162                         {
2163                                 let mut pending_events = $self.pending_events.lock().unwrap();
2164                                 pending_events.drain(..num_events);
2165                                 processed_all_events = pending_events.is_empty();
2166                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2167                                 // updated here with the `pending_events` lock acquired.
2168                                 $self.pending_events_processor.store(false, Ordering::Release);
2169                         }
2170
2171                         if !post_event_actions.is_empty() {
2172                                 $self.handle_post_event_actions(post_event_actions);
2173                                 // If we had some actions, go around again as we may have more events now
2174                                 processed_all_events = false;
2175                         }
2176
2177                         match result {
2178                                 NotifyOption::DoPersist => {
2179                                         $self.needs_persist_flag.store(true, Ordering::Release);
2180                                         $self.event_persist_notifier.notify();
2181                                 },
2182                                 NotifyOption::SkipPersistHandleEvents =>
2183                                         $self.event_persist_notifier.notify(),
2184                                 NotifyOption::SkipPersistNoEvents => {},
2185                         }
2186                 }
2187         }
2188 }
2189
2190 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>
2191 where
2192         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2193         T::Target: BroadcasterInterface,
2194         ES::Target: EntropySource,
2195         NS::Target: NodeSigner,
2196         SP::Target: SignerProvider,
2197         F::Target: FeeEstimator,
2198         R::Target: Router,
2199         L::Target: Logger,
2200 {
2201         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2202         ///
2203         /// The current time or latest block header time can be provided as the `current_timestamp`.
2204         ///
2205         /// This is the main "logic hub" for all channel-related actions, and implements
2206         /// [`ChannelMessageHandler`].
2207         ///
2208         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2209         ///
2210         /// Users need to notify the new `ChannelManager` when a new block is connected or
2211         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2212         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2213         /// more details.
2214         ///
2215         /// [`block_connected`]: chain::Listen::block_connected
2216         /// [`block_disconnected`]: chain::Listen::block_disconnected
2217         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2218         pub fn new(
2219                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2220                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2221                 current_timestamp: u32,
2222         ) -> Self {
2223                 let mut secp_ctx = Secp256k1::new();
2224                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2225                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2226                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2227                 ChannelManager {
2228                         default_configuration: config.clone(),
2229                         genesis_hash: genesis_block(params.network).header.block_hash(),
2230                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2231                         chain_monitor,
2232                         tx_broadcaster,
2233                         router,
2234
2235                         best_block: RwLock::new(params.best_block),
2236
2237                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2238                         pending_inbound_payments: Mutex::new(HashMap::new()),
2239                         pending_outbound_payments: OutboundPayments::new(),
2240                         forward_htlcs: Mutex::new(HashMap::new()),
2241                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2242                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2243                         id_to_peer: Mutex::new(HashMap::new()),
2244                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2245
2246                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2247                         secp_ctx,
2248
2249                         inbound_payment_key: expanded_inbound_key,
2250                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2251
2252                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2253
2254                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2255
2256                         per_peer_state: FairRwLock::new(HashMap::new()),
2257
2258                         pending_events: Mutex::new(VecDeque::new()),
2259                         pending_events_processor: AtomicBool::new(false),
2260                         pending_background_events: Mutex::new(Vec::new()),
2261                         total_consistency_lock: RwLock::new(()),
2262                         background_events_processed_since_startup: AtomicBool::new(false),
2263
2264                         event_persist_notifier: Notifier::new(),
2265                         needs_persist_flag: AtomicBool::new(false),
2266
2267                         entropy_source,
2268                         node_signer,
2269                         signer_provider,
2270
2271                         logger,
2272                 }
2273         }
2274
2275         /// Gets the current configuration applied to all new channels.
2276         pub fn get_current_default_configuration(&self) -> &UserConfig {
2277                 &self.default_configuration
2278         }
2279
2280         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2281                 let height = self.best_block.read().unwrap().height();
2282                 let mut outbound_scid_alias = 0;
2283                 let mut i = 0;
2284                 loop {
2285                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2286                                 outbound_scid_alias += 1;
2287                         } else {
2288                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2289                         }
2290                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2291                                 break;
2292                         }
2293                         i += 1;
2294                         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"); }
2295                 }
2296                 outbound_scid_alias
2297         }
2298
2299         /// Creates a new outbound channel to the given remote node and with the given value.
2300         ///
2301         /// `user_channel_id` will be provided back as in
2302         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2303         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2304         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2305         /// is simply copied to events and otherwise ignored.
2306         ///
2307         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2308         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2309         ///
2310         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2311         /// generate a shutdown scriptpubkey or destination script set by
2312         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2313         ///
2314         /// Note that we do not check if you are currently connected to the given peer. If no
2315         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2316         /// the channel eventually being silently forgotten (dropped on reload).
2317         ///
2318         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2319         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2320         /// [`ChannelDetails::channel_id`] until after
2321         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2322         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2323         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2324         ///
2325         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2326         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2327         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2328         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> {
2329                 if channel_value_satoshis < 1000 {
2330                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2331                 }
2332
2333                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2334                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2335                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2336
2337                 let per_peer_state = self.per_peer_state.read().unwrap();
2338
2339                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2340                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2341
2342                 let mut peer_state = peer_state_mutex.lock().unwrap();
2343                 let channel = {
2344                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2345                         let their_features = &peer_state.latest_features;
2346                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2347                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2348                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2349                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2350                         {
2351                                 Ok(res) => res,
2352                                 Err(e) => {
2353                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2354                                         return Err(e);
2355                                 },
2356                         }
2357                 };
2358                 let res = channel.get_open_channel(self.genesis_hash.clone());
2359
2360                 let temporary_channel_id = channel.context.channel_id();
2361                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2362                         hash_map::Entry::Occupied(_) => {
2363                                 if cfg!(fuzzing) {
2364                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2365                                 } else {
2366                                         panic!("RNG is bad???");
2367                                 }
2368                         },
2369                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2370                 }
2371
2372                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2373                         node_id: their_network_key,
2374                         msg: res,
2375                 });
2376                 Ok(temporary_channel_id)
2377         }
2378
2379         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2380                 // Allocate our best estimate of the number of channels we have in the `res`
2381                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2382                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2383                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2384                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2385                 // the same channel.
2386                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2387                 {
2388                         let best_block_height = self.best_block.read().unwrap().height();
2389                         let per_peer_state = self.per_peer_state.read().unwrap();
2390                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2391                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2392                                 let peer_state = &mut *peer_state_lock;
2393                                 res.extend(peer_state.channel_by_id.iter()
2394                                         .filter_map(|(chan_id, phase)| match phase {
2395                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2396                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2397                                                 _ => None,
2398                                         })
2399                                         .filter(f)
2400                                         .map(|(_channel_id, channel)| {
2401                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2402                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2403                                         })
2404                                 );
2405                         }
2406                 }
2407                 res
2408         }
2409
2410         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2411         /// more information.
2412         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2413                 // Allocate our best estimate of the number of channels we have in the `res`
2414                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2415                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2416                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2417                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2418                 // the same channel.
2419                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2420                 {
2421                         let best_block_height = self.best_block.read().unwrap().height();
2422                         let per_peer_state = self.per_peer_state.read().unwrap();
2423                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2424                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2425                                 let peer_state = &mut *peer_state_lock;
2426                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2427                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2428                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2429                                         res.push(details);
2430                                 }
2431                         }
2432                 }
2433                 res
2434         }
2435
2436         /// Gets the list of usable channels, in random order. Useful as an argument to
2437         /// [`Router::find_route`] to ensure non-announced channels are used.
2438         ///
2439         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2440         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2441         /// are.
2442         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2443                 // Note we use is_live here instead of usable which leads to somewhat confused
2444                 // internal/external nomenclature, but that's ok cause that's probably what the user
2445                 // really wanted anyway.
2446                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2447         }
2448
2449         /// Gets the list of channels we have with a given counterparty, in random order.
2450         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2451                 let best_block_height = self.best_block.read().unwrap().height();
2452                 let per_peer_state = self.per_peer_state.read().unwrap();
2453
2454                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2455                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2456                         let peer_state = &mut *peer_state_lock;
2457                         let features = &peer_state.latest_features;
2458                         let context_to_details = |context| {
2459                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2460                         };
2461                         return peer_state.channel_by_id
2462                                 .iter()
2463                                 .map(|(_, phase)| phase.context())
2464                                 .map(context_to_details)
2465                                 .collect();
2466                 }
2467                 vec![]
2468         }
2469
2470         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2471         /// successful path, or have unresolved HTLCs.
2472         ///
2473         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2474         /// result of a crash. If such a payment exists, is not listed here, and an
2475         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2476         ///
2477         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2478         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2479                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2480                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2481                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2482                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2483                                 },
2484                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2485                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2486                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2487                                 },
2488                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2489                                         Some(RecentPaymentDetails::Pending {
2490                                                 payment_id: *payment_id,
2491                                                 payment_hash: *payment_hash,
2492                                                 total_msat: *total_msat,
2493                                         })
2494                                 },
2495                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2496                                         Some(RecentPaymentDetails::Abandoned { payment_id: *payment_id, payment_hash: *payment_hash })
2497                                 },
2498                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2499                                         Some(RecentPaymentDetails::Fulfilled { payment_id: *payment_id, payment_hash: *payment_hash })
2500                                 },
2501                                 PendingOutboundPayment::Legacy { .. } => None
2502                         })
2503                         .collect()
2504         }
2505
2506         /// Helper function that issues the channel close events
2507         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2508                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2509                 match context.unbroadcasted_funding() {
2510                         Some(transaction) => {
2511                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2512                                         channel_id: context.channel_id(), transaction
2513                                 }, None));
2514                         },
2515                         None => {},
2516                 }
2517                 pending_events_lock.push_back((events::Event::ChannelClosed {
2518                         channel_id: context.channel_id(),
2519                         user_channel_id: context.get_user_id(),
2520                         reason: closure_reason,
2521                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2522                         channel_capacity_sats: Some(context.get_value_satoshis()),
2523                 }, None));
2524         }
2525
2526         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> {
2527                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2528
2529                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2530                 let result: Result<(), _> = loop {
2531                         {
2532                                 let per_peer_state = self.per_peer_state.read().unwrap();
2533
2534                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2535                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2536
2537                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2538                                 let peer_state = &mut *peer_state_lock;
2539
2540                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2541                                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
2542                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2543                                                         let funding_txo_opt = chan.context.get_funding_txo();
2544                                                         let their_features = &peer_state.latest_features;
2545                                                         let (shutdown_msg, mut monitor_update_opt, htlcs) =
2546                                                                 chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2547                                                         failed_htlcs = htlcs;
2548
2549                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2550                                                         // here as we don't need the monitor update to complete until we send a
2551                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2552                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2553                                                                 node_id: *counterparty_node_id,
2554                                                                 msg: shutdown_msg,
2555                                                         });
2556
2557                                                         // Update the monitor with the shutdown script if necessary.
2558                                                         if let Some(monitor_update) = monitor_update_opt.take() {
2559                                                                 break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2560                                                                         peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
2561                                                         }
2562
2563                                                         if chan.is_shutdown() {
2564                                                                 if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2565                                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2566                                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2567                                                                                         msg: channel_update
2568                                                                                 });
2569                                                                         }
2570                                                                         self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2571                                                                 }
2572                                                         }
2573                                                         break Ok(());
2574                                                 }
2575                                         },
2576                                         hash_map::Entry::Vacant(_) => (),
2577                                 }
2578                         }
2579                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2580                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2581                         //
2582                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2583                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2584                 };
2585
2586                 for htlc_source in failed_htlcs.drain(..) {
2587                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2588                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2589                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2590                 }
2591
2592                 let _ = handle_error!(self, result, *counterparty_node_id);
2593                 Ok(())
2594         }
2595
2596         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2597         /// will be accepted on the given channel, and after additional timeout/the closing of all
2598         /// pending HTLCs, the channel will be closed on chain.
2599         ///
2600         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2601         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2602         ///    estimate.
2603         ///  * If our counterparty is the channel initiator, we will require a channel closing
2604         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2605         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2606         ///    counterparty to pay as much fee as they'd like, however.
2607         ///
2608         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2609         ///
2610         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2611         /// generate a shutdown scriptpubkey or destination script set by
2612         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2613         /// channel.
2614         ///
2615         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2616         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2617         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2618         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2619         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2620                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2621         }
2622
2623         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2624         /// will be accepted on the given channel, and after additional timeout/the closing of all
2625         /// pending HTLCs, the channel will be closed on chain.
2626         ///
2627         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2628         /// the channel being closed or not:
2629         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2630         ///    transaction. The upper-bound is set by
2631         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2632         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2633         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2634         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2635         ///    will appear on a force-closure transaction, whichever is lower).
2636         ///
2637         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2638         /// Will fail if a shutdown script has already been set for this channel by
2639         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2640         /// also be compatible with our and the counterparty's features.
2641         ///
2642         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2643         ///
2644         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2645         /// generate a shutdown scriptpubkey or destination script set by
2646         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2647         /// channel.
2648         ///
2649         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2650         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2651         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2652         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2653         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> {
2654                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2655         }
2656
2657         #[inline]
2658         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2659                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2660                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2661                 for htlc_source in failed_htlcs.drain(..) {
2662                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2663                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2664                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2665                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2666                 }
2667                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2668                         // There isn't anything we can do if we get an update failure - we're already
2669                         // force-closing. The monitor update on the required in-memory copy should broadcast
2670                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2671                         // ignore the result here.
2672                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2673                 }
2674         }
2675
2676         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2677         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2678         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2679         -> Result<PublicKey, APIError> {
2680                 let per_peer_state = self.per_peer_state.read().unwrap();
2681                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2682                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2683                 let (update_opt, counterparty_node_id) = {
2684                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2685                         let peer_state = &mut *peer_state_lock;
2686                         let closure_reason = if let Some(peer_msg) = peer_msg {
2687                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2688                         } else {
2689                                 ClosureReason::HolderForceClosed
2690                         };
2691                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2692                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2693                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2694                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2695                                 match chan_phase {
2696                                         ChannelPhase::Funded(mut chan) => {
2697                                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2698                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2699                                         },
2700                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2701                                                 self.finish_force_close_channel(chan_phase.context_mut().force_shutdown(false));
2702                                                 // Unfunded channel has no update
2703                                                 (None, chan_phase.context().get_counterparty_node_id())
2704                                         },
2705                                 }
2706                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2707                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2708                                 // N.B. that we don't send any channel close event here: we
2709                                 // don't have a user_channel_id, and we never sent any opening
2710                                 // events anyway.
2711                                 (None, *peer_node_id)
2712                         } else {
2713                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2714                         }
2715                 };
2716                 if let Some(update) = update_opt {
2717                         let mut peer_state = peer_state_mutex.lock().unwrap();
2718                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2719                                 msg: update
2720                         });
2721                 }
2722
2723                 Ok(counterparty_node_id)
2724         }
2725
2726         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2727                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2728                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2729                         Ok(counterparty_node_id) => {
2730                                 let per_peer_state = self.per_peer_state.read().unwrap();
2731                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2732                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2733                                         peer_state.pending_msg_events.push(
2734                                                 events::MessageSendEvent::HandleError {
2735                                                         node_id: counterparty_node_id,
2736                                                         action: msgs::ErrorAction::SendErrorMessage {
2737                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2738                                                         },
2739                                                 }
2740                                         );
2741                                 }
2742                                 Ok(())
2743                         },
2744                         Err(e) => Err(e)
2745                 }
2746         }
2747
2748         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2749         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2750         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2751         /// channel.
2752         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2753         -> Result<(), APIError> {
2754                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2755         }
2756
2757         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2758         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2759         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2760         ///
2761         /// You can always get the latest local transaction(s) to broadcast from
2762         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2763         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2764         -> Result<(), APIError> {
2765                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2766         }
2767
2768         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2769         /// for each to the chain and rejecting new HTLCs on each.
2770         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2771                 for chan in self.list_channels() {
2772                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2773                 }
2774         }
2775
2776         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2777         /// local transaction(s).
2778         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2779                 for chan in self.list_channels() {
2780                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2781                 }
2782         }
2783
2784         fn construct_fwd_pending_htlc_info(
2785                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2786                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2787                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2788         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2789                 debug_assert!(next_packet_pubkey_opt.is_some());
2790                 let outgoing_packet = msgs::OnionPacket {
2791                         version: 0,
2792                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2793                         hop_data: new_packet_bytes,
2794                         hmac: hop_hmac,
2795                 };
2796
2797                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2798                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2799                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2800                         msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
2801                                 return Err(InboundOnionErr {
2802                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2803                                         err_code: 0x4000 | 22,
2804                                         err_data: Vec::new(),
2805                                 }),
2806                 };
2807
2808                 Ok(PendingHTLCInfo {
2809                         routing: PendingHTLCRouting::Forward {
2810                                 onion_packet: outgoing_packet,
2811                                 short_channel_id,
2812                         },
2813                         payment_hash: msg.payment_hash,
2814                         incoming_shared_secret: shared_secret,
2815                         incoming_amt_msat: Some(msg.amount_msat),
2816                         outgoing_amt_msat: amt_to_forward,
2817                         outgoing_cltv_value,
2818                         skimmed_fee_msat: None,
2819                 })
2820         }
2821
2822         fn construct_recv_pending_htlc_info(
2823                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2824                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2825                 counterparty_skimmed_fee_msat: Option<u64>,
2826         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2827                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2828                         msgs::InboundOnionPayload::Receive {
2829                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2830                         } =>
2831                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2832                         msgs::InboundOnionPayload::BlindedReceive {
2833                                 amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
2834                         } => {
2835                                 let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
2836                                 (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
2837                         }
2838                         msgs::InboundOnionPayload::Forward { .. } => {
2839                                 return Err(InboundOnionErr {
2840                                         err_code: 0x4000|22,
2841                                         err_data: Vec::new(),
2842                                         msg: "Got non final data with an HMAC of 0",
2843                                 })
2844                         },
2845                 };
2846                 // final_incorrect_cltv_expiry
2847                 if outgoing_cltv_value > cltv_expiry {
2848                         return Err(InboundOnionErr {
2849                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2850                                 err_code: 18,
2851                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2852                         })
2853                 }
2854                 // final_expiry_too_soon
2855                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2856                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2857                 //
2858                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2859                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2860                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2861                 let current_height: u32 = self.best_block.read().unwrap().height();
2862                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2863                         let mut err_data = Vec::with_capacity(12);
2864                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2865                         err_data.extend_from_slice(&current_height.to_be_bytes());
2866                         return Err(InboundOnionErr {
2867                                 err_code: 0x4000 | 15, err_data,
2868                                 msg: "The final CLTV expiry is too soon to handle",
2869                         });
2870                 }
2871                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2872                         (allow_underpay && onion_amt_msat >
2873                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2874                 {
2875                         return Err(InboundOnionErr {
2876                                 err_code: 19,
2877                                 err_data: amt_msat.to_be_bytes().to_vec(),
2878                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2879                         });
2880                 }
2881
2882                 let routing = if let Some(payment_preimage) = keysend_preimage {
2883                         // We need to check that the sender knows the keysend preimage before processing this
2884                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2885                         // could discover the final destination of X, by probing the adjacent nodes on the route
2886                         // with a keysend payment of identical payment hash to X and observing the processing
2887                         // time discrepancies due to a hash collision with X.
2888                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2889                         if hashed_preimage != payment_hash {
2890                                 return Err(InboundOnionErr {
2891                                         err_code: 0x4000|22,
2892                                         err_data: Vec::new(),
2893                                         msg: "Payment preimage didn't match payment hash",
2894                                 });
2895                         }
2896                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2897                                 return Err(InboundOnionErr {
2898                                         err_code: 0x4000|22,
2899                                         err_data: Vec::new(),
2900                                         msg: "We don't support MPP keysend payments",
2901                                 });
2902                         }
2903                         PendingHTLCRouting::ReceiveKeysend {
2904                                 payment_data,
2905                                 payment_preimage,
2906                                 payment_metadata,
2907                                 incoming_cltv_expiry: outgoing_cltv_value,
2908                                 custom_tlvs,
2909                         }
2910                 } else if let Some(data) = payment_data {
2911                         PendingHTLCRouting::Receive {
2912                                 payment_data: data,
2913                                 payment_metadata,
2914                                 incoming_cltv_expiry: outgoing_cltv_value,
2915                                 phantom_shared_secret,
2916                                 custom_tlvs,
2917                         }
2918                 } else {
2919                         return Err(InboundOnionErr {
2920                                 err_code: 0x4000|0x2000|3,
2921                                 err_data: Vec::new(),
2922                                 msg: "We require payment_secrets",
2923                         });
2924                 };
2925                 Ok(PendingHTLCInfo {
2926                         routing,
2927                         payment_hash,
2928                         incoming_shared_secret: shared_secret,
2929                         incoming_amt_msat: Some(amt_msat),
2930                         outgoing_amt_msat: onion_amt_msat,
2931                         outgoing_cltv_value,
2932                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2933                 })
2934         }
2935
2936         fn decode_update_add_htlc_onion(
2937                 &self, msg: &msgs::UpdateAddHTLC
2938         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2939                 macro_rules! return_malformed_err {
2940                         ($msg: expr, $err_code: expr) => {
2941                                 {
2942                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2943                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2944                                                 channel_id: msg.channel_id,
2945                                                 htlc_id: msg.htlc_id,
2946                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2947                                                 failure_code: $err_code,
2948                                         }));
2949                                 }
2950                         }
2951                 }
2952
2953                 if let Err(_) = msg.onion_routing_packet.public_key {
2954                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2955                 }
2956
2957                 let shared_secret = self.node_signer.ecdh(
2958                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2959                 ).unwrap().secret_bytes();
2960
2961                 if msg.onion_routing_packet.version != 0 {
2962                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2963                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2964                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2965                         //receiving node would have to brute force to figure out which version was put in the
2966                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2967                         //node knows the HMAC matched, so they already know what is there...
2968                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2969                 }
2970                 macro_rules! return_err {
2971                         ($msg: expr, $err_code: expr, $data: expr) => {
2972                                 {
2973                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2974                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2975                                                 channel_id: msg.channel_id,
2976                                                 htlc_id: msg.htlc_id,
2977                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2978                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2979                                         }));
2980                                 }
2981                         }
2982                 }
2983
2984                 let next_hop = match onion_utils::decode_next_payment_hop(
2985                         shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
2986                         msg.payment_hash, &self.node_signer
2987                 ) {
2988                         Ok(res) => res,
2989                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2990                                 return_malformed_err!(err_msg, err_code);
2991                         },
2992                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2993                                 return_err!(err_msg, err_code, &[0; 0]);
2994                         },
2995                 };
2996                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2997                         onion_utils::Hop::Forward {
2998                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2999                                         short_channel_id, amt_to_forward, outgoing_cltv_value
3000                                 }, ..
3001                         } => {
3002                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
3003                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
3004                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
3005                         },
3006                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
3007                         // inbound channel's state.
3008                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
3009                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
3010                                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
3011                         {
3012                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
3013                         }
3014                 };
3015
3016                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
3017                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
3018                 if let Some((err, mut code, chan_update)) = loop {
3019                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
3020                         let forwarding_chan_info_opt = match id_option {
3021                                 None => { // unknown_next_peer
3022                                         // Note that this is likely a timing oracle for detecting whether an scid is a
3023                                         // phantom or an intercept.
3024                                         if (self.default_configuration.accept_intercept_htlcs &&
3025                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
3026                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
3027                                         {
3028                                                 None
3029                                         } else {
3030                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3031                                         }
3032                                 },
3033                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
3034                         };
3035                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
3036                                 let per_peer_state = self.per_peer_state.read().unwrap();
3037                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3038                                 if peer_state_mutex_opt.is_none() {
3039                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3040                                 }
3041                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3042                                 let peer_state = &mut *peer_state_lock;
3043                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
3044                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
3045                                 ).flatten() {
3046                                         None => {
3047                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
3048                                                 // have no consistency guarantees.
3049                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
3050                                         },
3051                                         Some(chan) => chan
3052                                 };
3053                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
3054                                         // Note that the behavior here should be identical to the above block - we
3055                                         // should NOT reveal the existence or non-existence of a private channel if
3056                                         // we don't allow forwards outbound over them.
3057                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
3058                                 }
3059                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3060                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3061                                         // "refuse to forward unless the SCID alias was used", so we pretend
3062                                         // we don't have the channel here.
3063                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3064                                 }
3065                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3066
3067                                 // Note that we could technically not return an error yet here and just hope
3068                                 // that the connection is reestablished or monitor updated by the time we get
3069                                 // around to doing the actual forward, but better to fail early if we can and
3070                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3071                                 // on a small/per-node/per-channel scale.
3072                                 if !chan.context.is_live() { // channel_disabled
3073                                         // If the channel_update we're going to return is disabled (i.e. the
3074                                         // peer has been disabled for some time), return `channel_disabled`,
3075                                         // otherwise return `temporary_channel_failure`.
3076                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3077                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3078                                         } else {
3079                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3080                                         }
3081                                 }
3082                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3083                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3084                                 }
3085                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3086                                         break Some((err, code, chan_update_opt));
3087                                 }
3088                                 chan_update_opt
3089                         } else {
3090                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3091                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3092                                         // forwarding over a real channel we can't generate a channel_update
3093                                         // for it. Instead we just return a generic temporary_node_failure.
3094                                         break Some((
3095                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3096                                                         0x2000 | 2, None,
3097                                         ));
3098                                 }
3099                                 None
3100                         };
3101
3102                         let cur_height = self.best_block.read().unwrap().height() + 1;
3103                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3104                         // but we want to be robust wrt to counterparty packet sanitization (see
3105                         // HTLC_FAIL_BACK_BUFFER rationale).
3106                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3107                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3108                         }
3109                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3110                                 break Some(("CLTV expiry is too far in the future", 21, None));
3111                         }
3112                         // If the HTLC expires ~now, don't bother trying to forward it to our
3113                         // counterparty. They should fail it anyway, but we don't want to bother with
3114                         // the round-trips or risk them deciding they definitely want the HTLC and
3115                         // force-closing to ensure they get it if we're offline.
3116                         // We previously had a much more aggressive check here which tried to ensure
3117                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3118                         // but there is no need to do that, and since we're a bit conservative with our
3119                         // risk threshold it just results in failing to forward payments.
3120                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3121                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3122                         }
3123
3124                         break None;
3125                 }
3126                 {
3127                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3128                         if let Some(chan_update) = chan_update {
3129                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3130                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3131                                 }
3132                                 else if code == 0x1000 | 13 {
3133                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3134                                 }
3135                                 else if code == 0x1000 | 20 {
3136                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3137                                         0u16.write(&mut res).expect("Writes cannot fail");
3138                                 }
3139                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3140                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3141                                 chan_update.write(&mut res).expect("Writes cannot fail");
3142                         } else if code & 0x1000 == 0x1000 {
3143                                 // If we're trying to return an error that requires a `channel_update` but
3144                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3145                                 // generate an update), just use the generic "temporary_node_failure"
3146                                 // instead.
3147                                 code = 0x2000 | 2;
3148                         }
3149                         return_err!(err, code, &res.0[..]);
3150                 }
3151                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3152         }
3153
3154         fn construct_pending_htlc_status<'a>(
3155                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3156                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3157         ) -> PendingHTLCStatus {
3158                 macro_rules! return_err {
3159                         ($msg: expr, $err_code: expr, $data: expr) => {
3160                                 {
3161                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3162                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3163                                                 channel_id: msg.channel_id,
3164                                                 htlc_id: msg.htlc_id,
3165                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3166                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3167                                         }));
3168                                 }
3169                         }
3170                 }
3171                 match decoded_hop {
3172                         onion_utils::Hop::Receive(next_hop_data) => {
3173                                 // OUR PAYMENT!
3174                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3175                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3176                                 {
3177                                         Ok(info) => {
3178                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3179                                                 // message, however that would leak that we are the recipient of this payment, so
3180                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3181                                                 // delay) once they've send us a commitment_signed!
3182                                                 PendingHTLCStatus::Forward(info)
3183                                         },
3184                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3185                                 }
3186                         },
3187                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3188                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3189                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3190                                         Ok(info) => PendingHTLCStatus::Forward(info),
3191                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3192                                 }
3193                         }
3194                 }
3195         }
3196
3197         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3198         /// public, and thus should be called whenever the result is going to be passed out in a
3199         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3200         ///
3201         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3202         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3203         /// storage and the `peer_state` lock has been dropped.
3204         ///
3205         /// [`channel_update`]: msgs::ChannelUpdate
3206         /// [`internal_closing_signed`]: Self::internal_closing_signed
3207         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3208                 if !chan.context.should_announce() {
3209                         return Err(LightningError {
3210                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3211                                 action: msgs::ErrorAction::IgnoreError
3212                         });
3213                 }
3214                 if chan.context.get_short_channel_id().is_none() {
3215                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3216                 }
3217                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3218                 self.get_channel_update_for_unicast(chan)
3219         }
3220
3221         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3222         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3223         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3224         /// provided evidence that they know about the existence of the channel.
3225         ///
3226         /// Note that through [`internal_closing_signed`], this function is called without the
3227         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3228         /// removed from the storage and the `peer_state` lock has been dropped.
3229         ///
3230         /// [`channel_update`]: msgs::ChannelUpdate
3231         /// [`internal_closing_signed`]: Self::internal_closing_signed
3232         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3233                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3234                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3235                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3236                         Some(id) => id,
3237                 };
3238
3239                 self.get_channel_update_for_onion(short_channel_id, chan)
3240         }
3241
3242         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3243                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3244                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3245
3246                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3247                         ChannelUpdateStatus::Enabled => true,
3248                         ChannelUpdateStatus::DisabledStaged(_) => true,
3249                         ChannelUpdateStatus::Disabled => false,
3250                         ChannelUpdateStatus::EnabledStaged(_) => false,
3251                 };
3252
3253                 let unsigned = msgs::UnsignedChannelUpdate {
3254                         chain_hash: self.genesis_hash,
3255                         short_channel_id,
3256                         timestamp: chan.context.get_update_time_counter(),
3257                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3258                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3259                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3260                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3261                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3262                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3263                         excess_data: Vec::new(),
3264                 };
3265                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3266                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3267                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3268                 // channel.
3269                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3270
3271                 Ok(msgs::ChannelUpdate {
3272                         signature: sig,
3273                         contents: unsigned
3274                 })
3275         }
3276
3277         #[cfg(test)]
3278         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> {
3279                 let _lck = self.total_consistency_lock.read().unwrap();
3280                 self.send_payment_along_path(SendAlongPathArgs {
3281                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3282                         session_priv_bytes
3283                 })
3284         }
3285
3286         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3287                 let SendAlongPathArgs {
3288                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3289                         session_priv_bytes
3290                 } = args;
3291                 // The top-level caller should hold the total_consistency_lock read lock.
3292                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3293
3294                 log_trace!(self.logger,
3295                         "Attempting to send payment with payment hash {} along path with next hop {}",
3296                         payment_hash, path.hops.first().unwrap().short_channel_id);
3297                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3298                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3299
3300                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3301                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3302                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3303
3304                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3305                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3306
3307                 let err: Result<(), _> = loop {
3308                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3309                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3310                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3311                         };
3312
3313                         let per_peer_state = self.per_peer_state.read().unwrap();
3314                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3315                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3316                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3317                         let peer_state = &mut *peer_state_lock;
3318                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3319                                 match chan_phase_entry.get_mut() {
3320                                         ChannelPhase::Funded(chan) => {
3321                                                 if !chan.context.is_live() {
3322                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3323                                                 }
3324                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3325                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3326                                                         htlc_cltv, HTLCSource::OutboundRoute {
3327                                                                 path: path.clone(),
3328                                                                 session_priv: session_priv.clone(),
3329                                                                 first_hop_htlc_msat: htlc_msat,
3330                                                                 payment_id,
3331                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3332                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3333                                                         Some(monitor_update) => {
3334                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan_phase_entry) {
3335                                                                         Err(e) => break Err(e),
3336                                                                         Ok(false) => {
3337                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3338                                                                                 // docs) that we will resend the commitment update once monitor
3339                                                                                 // updating completes. Therefore, we must return an error
3340                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3341                                                                                 // which we do in the send_payment check for
3342                                                                                 // MonitorUpdateInProgress, below.
3343                                                                                 return Err(APIError::MonitorUpdateInProgress);
3344                                                                         },
3345                                                                         Ok(true) => {},
3346                                                                 }
3347                                                         },
3348                                                         None => {},
3349                                                 }
3350                                         },
3351                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3352                                 };
3353                         } else {
3354                                 // The channel was likely removed after we fetched the id from the
3355                                 // `short_to_chan_info` map, but before we successfully locked the
3356                                 // `channel_by_id` map.
3357                                 // This can occur as no consistency guarantees exists between the two maps.
3358                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3359                         }
3360                         return Ok(());
3361                 };
3362
3363                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3364                         Ok(_) => unreachable!(),
3365                         Err(e) => {
3366                                 Err(APIError::ChannelUnavailable { err: e.err })
3367                         },
3368                 }
3369         }
3370
3371         /// Sends a payment along a given route.
3372         ///
3373         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3374         /// fields for more info.
3375         ///
3376         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3377         /// [`PeerManager::process_events`]).
3378         ///
3379         /// # Avoiding Duplicate Payments
3380         ///
3381         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3382         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3383         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3384         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3385         /// second payment with the same [`PaymentId`].
3386         ///
3387         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3388         /// tracking of payments, including state to indicate once a payment has completed. Because you
3389         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3390         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3391         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3392         ///
3393         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3394         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3395         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3396         /// [`ChannelManager::list_recent_payments`] for more information.
3397         ///
3398         /// # Possible Error States on [`PaymentSendFailure`]
3399         ///
3400         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3401         /// each entry matching the corresponding-index entry in the route paths, see
3402         /// [`PaymentSendFailure`] for more info.
3403         ///
3404         /// In general, a path may raise:
3405         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3406         ///    node public key) is specified.
3407         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3408         ///    (including due to previous monitor update failure or new permanent monitor update
3409         ///    failure).
3410         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3411         ///    relevant updates.
3412         ///
3413         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3414         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3415         /// different route unless you intend to pay twice!
3416         ///
3417         /// [`RouteHop`]: crate::routing::router::RouteHop
3418         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3419         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3420         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3421         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3422         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3423         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3424                 let best_block_height = self.best_block.read().unwrap().height();
3425                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3426                 self.pending_outbound_payments
3427                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3428                                 &self.entropy_source, &self.node_signer, best_block_height,
3429                                 |args| self.send_payment_along_path(args))
3430         }
3431
3432         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3433         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3434         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3435                 let best_block_height = self.best_block.read().unwrap().height();
3436                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3437                 self.pending_outbound_payments
3438                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3439                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3440                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3441                                 &self.pending_events, |args| self.send_payment_along_path(args))
3442         }
3443
3444         #[cfg(test)]
3445         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> {
3446                 let best_block_height = self.best_block.read().unwrap().height();
3447                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3448                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3449                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3450                         best_block_height, |args| self.send_payment_along_path(args))
3451         }
3452
3453         #[cfg(test)]
3454         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> {
3455                 let best_block_height = self.best_block.read().unwrap().height();
3456                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3457         }
3458
3459         #[cfg(test)]
3460         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3461                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3462         }
3463
3464
3465         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3466         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3467         /// retries are exhausted.
3468         ///
3469         /// # Event Generation
3470         ///
3471         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3472         /// as there are no remaining pending HTLCs for this payment.
3473         ///
3474         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3475         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3476         /// determine the ultimate status of a payment.
3477         ///
3478         /// # Requested Invoices
3479         ///
3480         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3481         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3482         /// it once received. The other events may only be generated once the invoice has been received.
3483         ///
3484         /// # Restart Behavior
3485         ///
3486         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3487         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3488         /// [`Event::InvoiceRequestFailed`].
3489         ///
3490         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3491         pub fn abandon_payment(&self, payment_id: PaymentId) {
3492                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3493                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3494         }
3495
3496         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3497         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3498         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3499         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3500         /// never reach the recipient.
3501         ///
3502         /// See [`send_payment`] documentation for more details on the return value of this function
3503         /// and idempotency guarantees provided by the [`PaymentId`] key.
3504         ///
3505         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3506         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3507         ///
3508         /// [`send_payment`]: Self::send_payment
3509         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3510                 let best_block_height = self.best_block.read().unwrap().height();
3511                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3512                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3513                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3514                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3515         }
3516
3517         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3518         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3519         ///
3520         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3521         /// payments.
3522         ///
3523         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3524         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> {
3525                 let best_block_height = self.best_block.read().unwrap().height();
3526                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3527                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3528                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3529                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3530                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3531         }
3532
3533         /// Send a payment that is probing the given route for liquidity. We calculate the
3534         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3535         /// us to easily discern them from real payments.
3536         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3537                 let best_block_height = self.best_block.read().unwrap().height();
3538                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3539                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3540                         &self.entropy_source, &self.node_signer, best_block_height,
3541                         |args| self.send_payment_along_path(args))
3542         }
3543
3544         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3545         /// payment probe.
3546         #[cfg(test)]
3547         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3548                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3549         }
3550
3551         /// Sends payment probes over all paths of a route that would be used to pay the given
3552         /// amount to the given `node_id`.
3553         ///
3554         /// See [`ChannelManager::send_preflight_probes`] for more information.
3555         pub fn send_spontaneous_preflight_probes(
3556                 &self, node_id: PublicKey, amount_msat: u64, final_cltv_expiry_delta: u32, 
3557                 liquidity_limit_multiplier: Option<u64>,
3558         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3559                 let payment_params =
3560                         PaymentParameters::from_node_id(node_id, final_cltv_expiry_delta);
3561
3562                 let route_params = RouteParameters { payment_params, final_value_msat: amount_msat };
3563
3564                 self.send_preflight_probes(route_params, liquidity_limit_multiplier)
3565         }
3566
3567         /// Sends payment probes over all paths of a route that would be used to pay a route found
3568         /// according to the given [`RouteParameters`].
3569         ///
3570         /// This may be used to send "pre-flight" probes, i.e., to train our scorer before conducting
3571         /// the actual payment. Note this is only useful if there likely is sufficient time for the
3572         /// probe to settle before sending out the actual payment, e.g., when waiting for user
3573         /// confirmation in a wallet UI.
3574         ///
3575         /// Otherwise, there is a chance the probe could take up some liquidity needed to complete the
3576         /// actual payment. Users should therefore be cautious and might avoid sending probes if
3577         /// liquidity is scarce and/or they don't expect the probe to return before they send the
3578         /// payment. To mitigate this issue, channels with available liquidity less than the required
3579         /// amount times the given `liquidity_limit_multiplier` won't be used to send pre-flight
3580         /// probes. If `None` is given as `liquidity_limit_multiplier`, it defaults to `3`.
3581         pub fn send_preflight_probes(
3582                 &self, route_params: RouteParameters, liquidity_limit_multiplier: Option<u64>,
3583         ) -> Result<Vec<(PaymentHash, PaymentId)>, ProbeSendFailure> {
3584                 let liquidity_limit_multiplier = liquidity_limit_multiplier.unwrap_or(3);
3585
3586                 let payer = self.get_our_node_id();
3587                 let usable_channels = self.list_usable_channels();
3588                 let first_hops = usable_channels.iter().collect::<Vec<_>>();
3589                 let inflight_htlcs = self.compute_inflight_htlcs();
3590
3591                 let route = self
3592                         .router
3593                         .find_route(&payer, &route_params, Some(&first_hops), inflight_htlcs)
3594                         .map_err(|e| {
3595                                 log_error!(self.logger, "Failed to find path for payment probe: {:?}", e);
3596                                 ProbeSendFailure::RouteNotFound
3597                         })?;
3598
3599                 let mut used_liquidity_map = HashMap::with_capacity(first_hops.len());
3600
3601                 let mut res = Vec::new();
3602
3603                 for mut path in route.paths {
3604                         // If the last hop is probably an unannounced channel we refrain from probing all the
3605                         // way through to the end and instead probe up to the second-to-last channel.
3606                         while let Some(last_path_hop) = path.hops.last() {
3607                                 if last_path_hop.maybe_announced_channel {
3608                                         // We found a potentially announced last hop.
3609                                         break;
3610                                 } else {
3611                                         // Drop the last hop, as it's likely unannounced.
3612                                         log_debug!(
3613                                                 self.logger,
3614                                                 "Avoided sending payment probe all the way to last hop {} as it is likely unannounced.",
3615                                                 last_path_hop.short_channel_id
3616                                         );
3617                                         let final_value_msat = path.final_value_msat();
3618                                         path.hops.pop();
3619                                         if let Some(new_last) = path.hops.last_mut() {
3620                                                 new_last.fee_msat += final_value_msat;
3621                                         }
3622                                 }
3623                         }
3624
3625                         if path.hops.len() < 2 {
3626                                 log_debug!(
3627                                         self.logger,
3628                                         "Skipped sending payment probe over path with less than two hops."
3629                                 );
3630                                 continue;
3631                         }
3632
3633                         if let Some(first_path_hop) = path.hops.first() {
3634                                 if let Some(first_hop) = first_hops.iter().find(|h| {
3635                                         h.get_outbound_payment_scid() == Some(first_path_hop.short_channel_id)
3636                                 }) {
3637                                         let path_value = path.final_value_msat() + path.fee_msat();
3638                                         let used_liquidity =
3639                                                 used_liquidity_map.entry(first_path_hop.short_channel_id).or_insert(0);
3640
3641                                         if first_hop.next_outbound_htlc_limit_msat
3642                                                 < (*used_liquidity + path_value) * liquidity_limit_multiplier
3643                                         {
3644                                                 log_debug!(self.logger, "Skipped sending payment probe to avoid putting channel {} under the liquidity limit.", first_path_hop.short_channel_id);
3645                                                 continue;
3646                                         } else {
3647                                                 *used_liquidity += path_value;
3648                                         }
3649                                 }
3650                         }
3651
3652                         res.push(self.send_probe(path).map_err(|e| {
3653                                 log_error!(self.logger, "Failed to send pre-flight probe: {:?}", e);
3654                                 ProbeSendFailure::SendingFailed(e)
3655                         })?);
3656                 }
3657
3658                 Ok(res)
3659         }
3660
3661         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3662         /// which checks the correctness of the funding transaction given the associated channel.
3663         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3664                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3665         ) -> Result<(), APIError> {
3666                 let per_peer_state = self.per_peer_state.read().unwrap();
3667                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3668                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3669
3670                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3671                 let peer_state = &mut *peer_state_lock;
3672                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3673                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3674                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3675
3676                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3677                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3678                                                 let channel_id = chan.context.channel_id();
3679                                                 let user_id = chan.context.get_user_id();
3680                                                 let shutdown_res = chan.context.force_shutdown(false);
3681                                                 let channel_capacity = chan.context.get_value_satoshis();
3682                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3683                                         } else { unreachable!(); });
3684                                 match funding_res {
3685                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3686                                         Err((chan, err)) => {
3687                                                 mem::drop(peer_state_lock);
3688                                                 mem::drop(per_peer_state);
3689
3690                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3691                                                 return Err(APIError::ChannelUnavailable {
3692                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3693                                                 });
3694                                         },
3695                                 }
3696                         },
3697                         Some(phase) => {
3698                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3699                                 return Err(APIError::APIMisuseError {
3700                                         err: format!(
3701                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3702                                                 temporary_channel_id, counterparty_node_id),
3703                                 })
3704                         },
3705                         None => return Err(APIError::ChannelUnavailable {err: format!(
3706                                 "Channel with id {} not found for the passed counterparty node_id {}",
3707                                 temporary_channel_id, counterparty_node_id),
3708                                 }),
3709                 };
3710
3711                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3712                         node_id: chan.context.get_counterparty_node_id(),
3713                         msg,
3714                 });
3715                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3716                         hash_map::Entry::Occupied(_) => {
3717                                 panic!("Generated duplicate funding txid?");
3718                         },
3719                         hash_map::Entry::Vacant(e) => {
3720                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3721                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3722                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3723                                 }
3724                                 e.insert(ChannelPhase::Funded(chan));
3725                         }
3726                 }
3727                 Ok(())
3728         }
3729
3730         #[cfg(test)]
3731         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3732                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3733                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3734                 })
3735         }
3736
3737         /// Call this upon creation of a funding transaction for the given channel.
3738         ///
3739         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3740         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3741         ///
3742         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3743         /// across the p2p network.
3744         ///
3745         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3746         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3747         ///
3748         /// May panic if the output found in the funding transaction is duplicative with some other
3749         /// channel (note that this should be trivially prevented by using unique funding transaction
3750         /// keys per-channel).
3751         ///
3752         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3753         /// counterparty's signature the funding transaction will automatically be broadcast via the
3754         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3755         ///
3756         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3757         /// not currently support replacing a funding transaction on an existing channel. Instead,
3758         /// create a new channel with a conflicting funding transaction.
3759         ///
3760         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3761         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3762         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3763         /// for more details.
3764         ///
3765         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3766         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3767         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3768                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3769
3770                 if !funding_transaction.is_coin_base() {
3771                         for inp in funding_transaction.input.iter() {
3772                                 if inp.witness.is_empty() {
3773                                         return Err(APIError::APIMisuseError {
3774                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3775                                         });
3776                                 }
3777                         }
3778                 }
3779                 {
3780                         let height = self.best_block.read().unwrap().height();
3781                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3782                         // lower than the next block height. However, the modules constituting our Lightning
3783                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3784                         // module is ahead of LDK, only allow one more block of headroom.
3785                         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 {
3786                                 return Err(APIError::APIMisuseError {
3787                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3788                                 });
3789                         }
3790                 }
3791                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3792                         if tx.output.len() > u16::max_value() as usize {
3793                                 return Err(APIError::APIMisuseError {
3794                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3795                                 });
3796                         }
3797
3798                         let mut output_index = None;
3799                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3800                         for (idx, outp) in tx.output.iter().enumerate() {
3801                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3802                                         if output_index.is_some() {
3803                                                 return Err(APIError::APIMisuseError {
3804                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3805                                                 });
3806                                         }
3807                                         output_index = Some(idx as u16);
3808                                 }
3809                         }
3810                         if output_index.is_none() {
3811                                 return Err(APIError::APIMisuseError {
3812                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3813                                 });
3814                         }
3815                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3816                 })
3817         }
3818
3819         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3820         ///
3821         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3822         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3823         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3824         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3825         ///
3826         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3827         /// `counterparty_node_id` is provided.
3828         ///
3829         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3830         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3831         ///
3832         /// If an error is returned, none of the updates should be considered applied.
3833         ///
3834         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3835         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3836         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3837         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3838         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3839         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3840         /// [`APIMisuseError`]: APIError::APIMisuseError
3841         pub fn update_partial_channel_config(
3842                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3843         ) -> Result<(), APIError> {
3844                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3845                         return Err(APIError::APIMisuseError {
3846                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3847                         });
3848                 }
3849
3850                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3851                 let per_peer_state = self.per_peer_state.read().unwrap();
3852                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3853                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3854                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3855                 let peer_state = &mut *peer_state_lock;
3856                 for channel_id in channel_ids {
3857                         if !peer_state.has_channel(channel_id) {
3858                                 return Err(APIError::ChannelUnavailable {
3859                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
3860                                 });
3861                         };
3862                 }
3863                 for channel_id in channel_ids {
3864                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3865                                 let mut config = channel_phase.context().config();
3866                                 config.apply(config_update);
3867                                 if !channel_phase.context_mut().update_config(&config) {
3868                                         continue;
3869                                 }
3870                                 if let ChannelPhase::Funded(channel) = channel_phase {
3871                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3872                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3873                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3874                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3875                                                         node_id: channel.context.get_counterparty_node_id(),
3876                                                         msg,
3877                                                 });
3878                                         }
3879                                 }
3880                                 continue;
3881                         } else {
3882                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3883                                 debug_assert!(false);
3884                                 return Err(APIError::ChannelUnavailable {
3885                                         err: format!(
3886                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3887                                                 channel_id, counterparty_node_id),
3888                                 });
3889                         };
3890                 }
3891                 Ok(())
3892         }
3893
3894         /// Atomically updates the [`ChannelConfig`] for the given channels.
3895         ///
3896         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3897         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3898         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3899         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3900         ///
3901         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3902         /// `counterparty_node_id` is provided.
3903         ///
3904         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3905         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3906         ///
3907         /// If an error is returned, none of the updates should be considered applied.
3908         ///
3909         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3910         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3911         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3912         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3913         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3914         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3915         /// [`APIMisuseError`]: APIError::APIMisuseError
3916         pub fn update_channel_config(
3917                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3918         ) -> Result<(), APIError> {
3919                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3920         }
3921
3922         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3923         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3924         ///
3925         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3926         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3927         ///
3928         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3929         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3930         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3931         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3932         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3933         ///
3934         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3935         /// you from forwarding more than you received. See
3936         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3937         /// than expected.
3938         ///
3939         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3940         /// backwards.
3941         ///
3942         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3943         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3944         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3945         // TODO: when we move to deciding the best outbound channel at forward time, only take
3946         // `next_node_id` and not `next_hop_channel_id`
3947         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> {
3948                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3949
3950                 let next_hop_scid = {
3951                         let peer_state_lock = self.per_peer_state.read().unwrap();
3952                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3953                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3954                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3955                         let peer_state = &mut *peer_state_lock;
3956                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3957                                 Some(ChannelPhase::Funded(chan)) => {
3958                                         if !chan.context.is_usable() {
3959                                                 return Err(APIError::ChannelUnavailable {
3960                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3961                                                 })
3962                                         }
3963                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3964                                 },
3965                                 Some(_) => return Err(APIError::ChannelUnavailable {
3966                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3967                                                 next_hop_channel_id, next_node_id)
3968                                 }),
3969                                 None => return Err(APIError::ChannelUnavailable {
3970                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
3971                                                 next_hop_channel_id, next_node_id)
3972                                 })
3973                         }
3974                 };
3975
3976                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3977                         .ok_or_else(|| APIError::APIMisuseError {
3978                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3979                         })?;
3980
3981                 let routing = match payment.forward_info.routing {
3982                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3983                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3984                         },
3985                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3986                 };
3987                 let skimmed_fee_msat =
3988                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3989                 let pending_htlc_info = PendingHTLCInfo {
3990                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3991                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3992                 };
3993
3994                 let mut per_source_pending_forward = [(
3995                         payment.prev_short_channel_id,
3996                         payment.prev_funding_outpoint,
3997                         payment.prev_user_channel_id,
3998                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3999                 )];
4000                 self.forward_htlcs(&mut per_source_pending_forward);
4001                 Ok(())
4002         }
4003
4004         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
4005         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
4006         ///
4007         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
4008         /// backwards.
4009         ///
4010         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
4011         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
4012                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4013
4014                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
4015                         .ok_or_else(|| APIError::APIMisuseError {
4016                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
4017                         })?;
4018
4019                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
4020                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4021                                 short_channel_id: payment.prev_short_channel_id,
4022                                 user_channel_id: Some(payment.prev_user_channel_id),
4023                                 outpoint: payment.prev_funding_outpoint,
4024                                 htlc_id: payment.prev_htlc_id,
4025                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
4026                                 phantom_shared_secret: None,
4027                         });
4028
4029                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
4030                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
4031                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
4032                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
4033
4034                 Ok(())
4035         }
4036
4037         /// Processes HTLCs which are pending waiting on random forward delay.
4038         ///
4039         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
4040         /// Will likely generate further events.
4041         pub fn process_pending_htlc_forwards(&self) {
4042                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4043
4044                 let mut new_events = VecDeque::new();
4045                 let mut failed_forwards = Vec::new();
4046                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
4047                 {
4048                         let mut forward_htlcs = HashMap::new();
4049                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
4050
4051                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
4052                                 if short_chan_id != 0 {
4053                                         macro_rules! forwarding_channel_not_found {
4054                                                 () => {
4055                                                         for forward_info in pending_forwards.drain(..) {
4056                                                                 match forward_info {
4057                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4058                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4059                                                                                 forward_info: PendingHTLCInfo {
4060                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
4061                                                                                         outgoing_cltv_value, ..
4062                                                                                 }
4063                                                                         }) => {
4064                                                                                 macro_rules! failure_handler {
4065                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
4066                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
4067
4068                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4069                                                                                                         short_channel_id: prev_short_channel_id,
4070                                                                                                         user_channel_id: Some(prev_user_channel_id),
4071                                                                                                         outpoint: prev_funding_outpoint,
4072                                                                                                         htlc_id: prev_htlc_id,
4073                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
4074                                                                                                         phantom_shared_secret: $phantom_ss,
4075                                                                                                 });
4076
4077                                                                                                 let reason = if $next_hop_unknown {
4078                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
4079                                                                                                 } else {
4080                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
4081                                                                                                 };
4082
4083                                                                                                 failed_forwards.push((htlc_source, payment_hash,
4084                                                                                                         HTLCFailReason::reason($err_code, $err_data),
4085                                                                                                         reason
4086                                                                                                 ));
4087                                                                                                 continue;
4088                                                                                         }
4089                                                                                 }
4090                                                                                 macro_rules! fail_forward {
4091                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4092                                                                                                 {
4093                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
4094                                                                                                 }
4095                                                                                         }
4096                                                                                 }
4097                                                                                 macro_rules! failed_payment {
4098                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
4099                                                                                                 {
4100                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
4101                                                                                                 }
4102                                                                                         }
4103                                                                                 }
4104                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
4105                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
4106                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
4107                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
4108                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
4109                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
4110                                                                                                         payment_hash, &self.node_signer
4111                                                                                                 ) {
4112                                                                                                         Ok(res) => res,
4113                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
4114                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
4115                                                                                                                 // In this scenario, the phantom would have sent us an
4116                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
4117                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
4118                                                                                                                 // of the onion.
4119                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
4120                                                                                                         },
4121                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
4122                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
4123                                                                                                         },
4124                                                                                                 };
4125                                                                                                 match next_hop {
4126                                                                                                         onion_utils::Hop::Receive(hop_data) => {
4127                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
4128                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
4129                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
4130                                                                                                                 {
4131                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
4132                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
4133                                                                                                                 }
4134                                                                                                         },
4135                                                                                                         _ => panic!(),
4136                                                                                                 }
4137                                                                                         } else {
4138                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4139                                                                                         }
4140                                                                                 } else {
4141                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
4142                                                                                 }
4143                                                                         },
4144                                                                         HTLCForwardInfo::FailHTLC { .. } => {
4145                                                                                 // Channel went away before we could fail it. This implies
4146                                                                                 // the channel is now on chain and our counterparty is
4147                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
4148                                                                                 // problem, not ours.
4149                                                                         }
4150                                                                 }
4151                                                         }
4152                                                 }
4153                                         }
4154                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
4155                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
4156                                                 None => {
4157                                                         forwarding_channel_not_found!();
4158                                                         continue;
4159                                                 }
4160                                         };
4161                                         let per_peer_state = self.per_peer_state.read().unwrap();
4162                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4163                                         if peer_state_mutex_opt.is_none() {
4164                                                 forwarding_channel_not_found!();
4165                                                 continue;
4166                                         }
4167                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4168                                         let peer_state = &mut *peer_state_lock;
4169                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4170                                                 for forward_info in pending_forwards.drain(..) {
4171                                                         match forward_info {
4172                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4173                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4174                                                                         forward_info: PendingHTLCInfo {
4175                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4176                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4177                                                                         },
4178                                                                 }) => {
4179                                                                         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);
4180                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4181                                                                                 short_channel_id: prev_short_channel_id,
4182                                                                                 user_channel_id: Some(prev_user_channel_id),
4183                                                                                 outpoint: prev_funding_outpoint,
4184                                                                                 htlc_id: prev_htlc_id,
4185                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4186                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4187                                                                                 phantom_shared_secret: None,
4188                                                                         });
4189                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4190                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4191                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4192                                                                                 &self.logger)
4193                                                                         {
4194                                                                                 if let ChannelError::Ignore(msg) = e {
4195                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4196                                                                                 } else {
4197                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4198                                                                                 }
4199                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4200                                                                                 failed_forwards.push((htlc_source, payment_hash,
4201                                                                                         HTLCFailReason::reason(failure_code, data),
4202                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4203                                                                                 ));
4204                                                                                 continue;
4205                                                                         }
4206                                                                 },
4207                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4208                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4209                                                                 },
4210                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4211                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4212                                                                         if let Err(e) = chan.queue_fail_htlc(
4213                                                                                 htlc_id, err_packet, &self.logger
4214                                                                         ) {
4215                                                                                 if let ChannelError::Ignore(msg) = e {
4216                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4217                                                                                 } else {
4218                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4219                                                                                 }
4220                                                                                 // fail-backs are best-effort, we probably already have one
4221                                                                                 // pending, and if not that's OK, if not, the channel is on
4222                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4223                                                                                 continue;
4224                                                                         }
4225                                                                 },
4226                                                         }
4227                                                 }
4228                                         } else {
4229                                                 forwarding_channel_not_found!();
4230                                                 continue;
4231                                         }
4232                                 } else {
4233                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4234                                                 match forward_info {
4235                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4236                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4237                                                                 forward_info: PendingHTLCInfo {
4238                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4239                                                                         skimmed_fee_msat, ..
4240                                                                 }
4241                                                         }) => {
4242                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4243                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4244                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4245                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4246                                                                                                 payment_metadata, custom_tlvs };
4247                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4248                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4249                                                                         },
4250                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4251                                                                                 let onion_fields = RecipientOnionFields {
4252                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4253                                                                                         payment_metadata,
4254                                                                                         custom_tlvs,
4255                                                                                 };
4256                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4257                                                                                         payment_data, None, onion_fields)
4258                                                                         },
4259                                                                         _ => {
4260                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4261                                                                         }
4262                                                                 };
4263                                                                 let claimable_htlc = ClaimableHTLC {
4264                                                                         prev_hop: HTLCPreviousHopData {
4265                                                                                 short_channel_id: prev_short_channel_id,
4266                                                                                 user_channel_id: Some(prev_user_channel_id),
4267                                                                                 outpoint: prev_funding_outpoint,
4268                                                                                 htlc_id: prev_htlc_id,
4269                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4270                                                                                 phantom_shared_secret,
4271                                                                         },
4272                                                                         // We differentiate the received value from the sender intended value
4273                                                                         // if possible so that we don't prematurely mark MPP payments complete
4274                                                                         // if routing nodes overpay
4275                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4276                                                                         sender_intended_value: outgoing_amt_msat,
4277                                                                         timer_ticks: 0,
4278                                                                         total_value_received: None,
4279                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4280                                                                         cltv_expiry,
4281                                                                         onion_payload,
4282                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4283                                                                 };
4284
4285                                                                 let mut committed_to_claimable = false;
4286
4287                                                                 macro_rules! fail_htlc {
4288                                                                         ($htlc: expr, $payment_hash: expr) => {
4289                                                                                 debug_assert!(!committed_to_claimable);
4290                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4291                                                                                 htlc_msat_height_data.extend_from_slice(
4292                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4293                                                                                 );
4294                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4295                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4296                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4297                                                                                                 outpoint: prev_funding_outpoint,
4298                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4299                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4300                                                                                                 phantom_shared_secret,
4301                                                                                         }), payment_hash,
4302                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4303                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4304                                                                                 ));
4305                                                                                 continue 'next_forwardable_htlc;
4306                                                                         }
4307                                                                 }
4308                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4309                                                                 let mut receiver_node_id = self.our_network_pubkey;
4310                                                                 if phantom_shared_secret.is_some() {
4311                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4312                                                                                 .expect("Failed to get node_id for phantom node recipient");
4313                                                                 }
4314
4315                                                                 macro_rules! check_total_value {
4316                                                                         ($purpose: expr) => {{
4317                                                                                 let mut payment_claimable_generated = false;
4318                                                                                 let is_keysend = match $purpose {
4319                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4320                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4321                                                                                 };
4322                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4323                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4324                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4325                                                                                 }
4326                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4327                                                                                         .entry(payment_hash)
4328                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4329                                                                                         .or_insert_with(|| {
4330                                                                                                 committed_to_claimable = true;
4331                                                                                                 ClaimablePayment {
4332                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4333                                                                                                 }
4334                                                                                         });
4335                                                                                 if $purpose != claimable_payment.purpose {
4336                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4337                                                                                         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));
4338                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4339                                                                                 }
4340                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4341                                                                                         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);
4342                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4343                                                                                 }
4344                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4345                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4346                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4347                                                                                         }
4348                                                                                 } else {
4349                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4350                                                                                 }
4351                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4352                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4353                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4354                                                                                 for htlc in htlcs.iter() {
4355                                                                                         total_value += htlc.sender_intended_value;
4356                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4357                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4358                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4359                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4360                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4361                                                                                         }
4362                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4363                                                                                 }
4364                                                                                 // The condition determining whether an MPP is complete must
4365                                                                                 // match exactly the condition used in `timer_tick_occurred`
4366                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4367                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4368                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4369                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4370                                                                                                 &payment_hash);
4371                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4372                                                                                 } else if total_value >= claimable_htlc.total_msat {
4373                                                                                         #[allow(unused_assignments)] {
4374                                                                                                 committed_to_claimable = true;
4375                                                                                         }
4376                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4377                                                                                         htlcs.push(claimable_htlc);
4378                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4379                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4380                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4381                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4382                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4383                                                                                                 counterparty_skimmed_fee_msat);
4384                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4385                                                                                                 receiver_node_id: Some(receiver_node_id),
4386                                                                                                 payment_hash,
4387                                                                                                 purpose: $purpose,
4388                                                                                                 amount_msat,
4389                                                                                                 counterparty_skimmed_fee_msat,
4390                                                                                                 via_channel_id: Some(prev_channel_id),
4391                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4392                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4393                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4394                                                                                         }, None));
4395                                                                                         payment_claimable_generated = true;
4396                                                                                 } else {
4397                                                                                         // Nothing to do - we haven't reached the total
4398                                                                                         // payment value yet, wait until we receive more
4399                                                                                         // MPP parts.
4400                                                                                         htlcs.push(claimable_htlc);
4401                                                                                         #[allow(unused_assignments)] {
4402                                                                                                 committed_to_claimable = true;
4403                                                                                         }
4404                                                                                 }
4405                                                                                 payment_claimable_generated
4406                                                                         }}
4407                                                                 }
4408
4409                                                                 // Check that the payment hash and secret are known. Note that we
4410                                                                 // MUST take care to handle the "unknown payment hash" and
4411                                                                 // "incorrect payment secret" cases here identically or we'd expose
4412                                                                 // that we are the ultimate recipient of the given payment hash.
4413                                                                 // Further, we must not expose whether we have any other HTLCs
4414                                                                 // associated with the same payment_hash pending or not.
4415                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4416                                                                 match payment_secrets.entry(payment_hash) {
4417                                                                         hash_map::Entry::Vacant(_) => {
4418                                                                                 match claimable_htlc.onion_payload {
4419                                                                                         OnionPayload::Invoice { .. } => {
4420                                                                                                 let payment_data = payment_data.unwrap();
4421                                                                                                 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) {
4422                                                                                                         Ok(result) => result,
4423                                                                                                         Err(()) => {
4424                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4425                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4426                                                                                                         }
4427                                                                                                 };
4428                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4429                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4430                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4431                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4432                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4433                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4434                                                                                                         }
4435                                                                                                 }
4436                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4437                                                                                                         payment_preimage: payment_preimage.clone(),
4438                                                                                                         payment_secret: payment_data.payment_secret,
4439                                                                                                 };
4440                                                                                                 check_total_value!(purpose);
4441                                                                                         },
4442                                                                                         OnionPayload::Spontaneous(preimage) => {
4443                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4444                                                                                                 check_total_value!(purpose);
4445                                                                                         }
4446                                                                                 }
4447                                                                         },
4448                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4449                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4450                                                                                         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);
4451                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4452                                                                                 }
4453                                                                                 let payment_data = payment_data.unwrap();
4454                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4455                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4456                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4457                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4458                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4459                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4460                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4461                                                                                 } else {
4462                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4463                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4464                                                                                                 payment_secret: payment_data.payment_secret,
4465                                                                                         };
4466                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4467                                                                                         if payment_claimable_generated {
4468                                                                                                 inbound_payment.remove_entry();
4469                                                                                         }
4470                                                                                 }
4471                                                                         },
4472                                                                 };
4473                                                         },
4474                                                         HTLCForwardInfo::FailHTLC { .. } => {
4475                                                                 panic!("Got pending fail of our own HTLC");
4476                                                         }
4477                                                 }
4478                                         }
4479                                 }
4480                         }
4481                 }
4482
4483                 let best_block_height = self.best_block.read().unwrap().height();
4484                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4485                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4486                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4487
4488                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4489                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4490                 }
4491                 self.forward_htlcs(&mut phantom_receives);
4492
4493                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4494                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4495                 // nice to do the work now if we can rather than while we're trying to get messages in the
4496                 // network stack.
4497                 self.check_free_holding_cells();
4498
4499                 if new_events.is_empty() { return }
4500                 let mut events = self.pending_events.lock().unwrap();
4501                 events.append(&mut new_events);
4502         }
4503
4504         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4505         ///
4506         /// Expects the caller to have a total_consistency_lock read lock.
4507         fn process_background_events(&self) -> NotifyOption {
4508                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4509
4510                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4511
4512                 let mut background_events = Vec::new();
4513                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4514                 if background_events.is_empty() {
4515                         return NotifyOption::SkipPersistNoEvents;
4516                 }
4517
4518                 for event in background_events.drain(..) {
4519                         match event {
4520                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4521                                         // The channel has already been closed, so no use bothering to care about the
4522                                         // monitor updating completing.
4523                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4524                                 },
4525                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4526                                         let mut updated_chan = false;
4527                                         let res = {
4528                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4529                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4530                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4531                                                         let peer_state = &mut *peer_state_lock;
4532                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4533                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4534                                                                         updated_chan = true;
4535                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4536                                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase).map(|_| ())
4537                                                                 },
4538                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4539                                                         }
4540                                                 } else { Ok(()) }
4541                                         };
4542                                         if !updated_chan {
4543                                                 // TODO: Track this as in-flight even though the channel is closed.
4544                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4545                                         }
4546                                         // TODO: If this channel has since closed, we're likely providing a payment
4547                                         // preimage update, which we must ensure is durable! We currently don't,
4548                                         // however, ensure that.
4549                                         if res.is_err() {
4550                                                 log_error!(self.logger,
4551                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4552                                         }
4553                                         let _ = handle_error!(self, res, counterparty_node_id);
4554                                 },
4555                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4556                                         let per_peer_state = self.per_peer_state.read().unwrap();
4557                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4558                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4559                                                 let peer_state = &mut *peer_state_lock;
4560                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4561                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4562                                                 } else {
4563                                                         let update_actions = peer_state.monitor_update_blocked_actions
4564                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4565                                                         mem::drop(peer_state_lock);
4566                                                         mem::drop(per_peer_state);
4567                                                         self.handle_monitor_update_completion_actions(update_actions);
4568                                                 }
4569                                         }
4570                                 },
4571                         }
4572                 }
4573                 NotifyOption::DoPersist
4574         }
4575
4576         #[cfg(any(test, feature = "_test_utils"))]
4577         /// Process background events, for functional testing
4578         pub fn test_process_background_events(&self) {
4579                 let _lck = self.total_consistency_lock.read().unwrap();
4580                 let _ = self.process_background_events();
4581         }
4582
4583         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4584                 if !chan.context.is_outbound() { return NotifyOption::SkipPersistNoEvents; }
4585                 // If the feerate has decreased by less than half, don't bother
4586                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4587                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4588                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4589                         return NotifyOption::SkipPersistNoEvents;
4590                 }
4591                 if !chan.context.is_live() {
4592                         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).",
4593                                 chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4594                         return NotifyOption::SkipPersistNoEvents;
4595                 }
4596                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4597                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4598
4599                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4600                 NotifyOption::DoPersist
4601         }
4602
4603         #[cfg(fuzzing)]
4604         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4605         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4606         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4607         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4608         pub fn maybe_update_chan_fees(&self) {
4609                 PersistenceNotifierGuard::optionally_notify(self, || {
4610                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4611
4612                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4613                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4614
4615                         let per_peer_state = self.per_peer_state.read().unwrap();
4616                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4617                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4618                                 let peer_state = &mut *peer_state_lock;
4619                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4620                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4621                                 ) {
4622                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4623                                                 min_mempool_feerate
4624                                         } else {
4625                                                 normal_feerate
4626                                         };
4627                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4628                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4629                                 }
4630                         }
4631
4632                         should_persist
4633                 });
4634         }
4635
4636         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4637         ///
4638         /// This currently includes:
4639         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4640         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4641         ///    than a minute, informing the network that they should no longer attempt to route over
4642         ///    the channel.
4643         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4644         ///    with the current [`ChannelConfig`].
4645         ///  * Removing peers which have disconnected but and no longer have any channels.
4646         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4647         ///
4648         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4649         /// estimate fetches.
4650         ///
4651         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4652         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4653         pub fn timer_tick_occurred(&self) {
4654                 PersistenceNotifierGuard::optionally_notify(self, || {
4655                         let mut should_persist = NotifyOption::SkipPersistNoEvents;
4656
4657                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4658                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4659
4660                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4661                         let mut timed_out_mpp_htlcs = Vec::new();
4662                         let mut pending_peers_awaiting_removal = Vec::new();
4663
4664                         let process_unfunded_channel_tick = |
4665                                 chan_id: &ChannelId,
4666                                 context: &mut ChannelContext<SP>,
4667                                 unfunded_context: &mut UnfundedChannelContext,
4668                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4669                                 counterparty_node_id: PublicKey,
4670                         | {
4671                                 context.maybe_expire_prev_config();
4672                                 if unfunded_context.should_expire_unfunded_channel() {
4673                                         log_error!(self.logger,
4674                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4675                                         update_maps_on_chan_removal!(self, &context);
4676                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4677                                         self.finish_force_close_channel(context.force_shutdown(false));
4678                                         pending_msg_events.push(MessageSendEvent::HandleError {
4679                                                 node_id: counterparty_node_id,
4680                                                 action: msgs::ErrorAction::SendErrorMessage {
4681                                                         msg: msgs::ErrorMessage {
4682                                                                 channel_id: *chan_id,
4683                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4684                                                         },
4685                                                 },
4686                                         });
4687                                         false
4688                                 } else {
4689                                         true
4690                                 }
4691                         };
4692
4693                         {
4694                                 let per_peer_state = self.per_peer_state.read().unwrap();
4695                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4696                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4697                                         let peer_state = &mut *peer_state_lock;
4698                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4699                                         let counterparty_node_id = *counterparty_node_id;
4700                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4701                                                 match phase {
4702                                                         ChannelPhase::Funded(chan) => {
4703                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4704                                                                         min_mempool_feerate
4705                                                                 } else {
4706                                                                         normal_feerate
4707                                                                 };
4708                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4709                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4710
4711                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4712                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4713                                                                         handle_errors.push((Err(err), counterparty_node_id));
4714                                                                         if needs_close { return false; }
4715                                                                 }
4716
4717                                                                 match chan.channel_update_status() {
4718                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4719                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4720                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4721                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4722                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4723                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4724                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4725                                                                                 n += 1;
4726                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4727                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4728                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4729                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4730                                                                                                         msg: update
4731                                                                                                 });
4732                                                                                         }
4733                                                                                         should_persist = NotifyOption::DoPersist;
4734                                                                                 } else {
4735                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4736                                                                                 }
4737                                                                         },
4738                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4739                                                                                 n += 1;
4740                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4741                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4742                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4743                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4744                                                                                                         msg: update
4745                                                                                                 });
4746                                                                                         }
4747                                                                                         should_persist = NotifyOption::DoPersist;
4748                                                                                 } else {
4749                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4750                                                                                 }
4751                                                                         },
4752                                                                         _ => {},
4753                                                                 }
4754
4755                                                                 chan.context.maybe_expire_prev_config();
4756
4757                                                                 if chan.should_disconnect_peer_awaiting_response() {
4758                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4759                                                                                         counterparty_node_id, chan_id);
4760                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4761                                                                                 node_id: counterparty_node_id,
4762                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4763                                                                                         msg: msgs::WarningMessage {
4764                                                                                                 channel_id: *chan_id,
4765                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4766                                                                                         },
4767                                                                                 },
4768                                                                         });
4769                                                                 }
4770
4771                                                                 true
4772                                                         },
4773                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4774                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4775                                                                         pending_msg_events, counterparty_node_id)
4776                                                         },
4777                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4778                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4779                                                                         pending_msg_events, counterparty_node_id)
4780                                                         },
4781                                                 }
4782                                         });
4783
4784                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4785                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4786                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4787                                                         peer_state.pending_msg_events.push(
4788                                                                 events::MessageSendEvent::HandleError {
4789                                                                         node_id: counterparty_node_id,
4790                                                                         action: msgs::ErrorAction::SendErrorMessage {
4791                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4792                                                                         },
4793                                                                 }
4794                                                         );
4795                                                 }
4796                                         }
4797                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4798
4799                                         if peer_state.ok_to_remove(true) {
4800                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4801                                         }
4802                                 }
4803                         }
4804
4805                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4806                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4807                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4808                         // we therefore need to remove the peer from `peer_state` separately.
4809                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4810                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4811                         // negative effects on parallelism as much as possible.
4812                         if pending_peers_awaiting_removal.len() > 0 {
4813                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4814                                 for counterparty_node_id in pending_peers_awaiting_removal {
4815                                         match per_peer_state.entry(counterparty_node_id) {
4816                                                 hash_map::Entry::Occupied(entry) => {
4817                                                         // Remove the entry if the peer is still disconnected and we still
4818                                                         // have no channels to the peer.
4819                                                         let remove_entry = {
4820                                                                 let peer_state = entry.get().lock().unwrap();
4821                                                                 peer_state.ok_to_remove(true)
4822                                                         };
4823                                                         if remove_entry {
4824                                                                 entry.remove_entry();
4825                                                         }
4826                                                 },
4827                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4828                                         }
4829                                 }
4830                         }
4831
4832                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4833                                 if payment.htlcs.is_empty() {
4834                                         // This should be unreachable
4835                                         debug_assert!(false);
4836                                         return false;
4837                                 }
4838                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4839                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4840                                         // In this case we're not going to handle any timeouts of the parts here.
4841                                         // This condition determining whether the MPP is complete here must match
4842                                         // exactly the condition used in `process_pending_htlc_forwards`.
4843                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4844                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4845                                         {
4846                                                 return true;
4847                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4848                                                 htlc.timer_ticks += 1;
4849                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4850                                         }) {
4851                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4852                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4853                                                 return false;
4854                                         }
4855                                 }
4856                                 true
4857                         });
4858
4859                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4860                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4861                                 let reason = HTLCFailReason::from_failure_code(23);
4862                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4863                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4864                         }
4865
4866                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4867                                 let _ = handle_error!(self, err, counterparty_node_id);
4868                         }
4869
4870                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
4871
4872                         // Technically we don't need to do this here, but if we have holding cell entries in a
4873                         // channel that need freeing, it's better to do that here and block a background task
4874                         // than block the message queueing pipeline.
4875                         if self.check_free_holding_cells() {
4876                                 should_persist = NotifyOption::DoPersist;
4877                         }
4878
4879                         should_persist
4880                 });
4881         }
4882
4883         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4884         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4885         /// along the path (including in our own channel on which we received it).
4886         ///
4887         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4888         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4889         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4890         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4891         ///
4892         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4893         /// [`ChannelManager::claim_funds`]), you should still monitor for
4894         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4895         /// startup during which time claims that were in-progress at shutdown may be replayed.
4896         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4897                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4898         }
4899
4900         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4901         /// reason for the failure.
4902         ///
4903         /// See [`FailureCode`] for valid failure codes.
4904         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4905                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4906
4907                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4908                 if let Some(payment) = removed_source {
4909                         for htlc in payment.htlcs {
4910                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4911                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4912                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4913                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4914                         }
4915                 }
4916         }
4917
4918         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4919         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4920                 match failure_code {
4921                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4922                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4923                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4924                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4925                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4926                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4927                         },
4928                         FailureCode::InvalidOnionPayload(data) => {
4929                                 let fail_data = match data {
4930                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4931                                         None => Vec::new(),
4932                                 };
4933                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4934                         }
4935                 }
4936         }
4937
4938         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4939         /// that we want to return and a channel.
4940         ///
4941         /// This is for failures on the channel on which the HTLC was *received*, not failures
4942         /// forwarding
4943         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4944                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4945                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4946                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4947                 // an inbound SCID alias before the real SCID.
4948                 let scid_pref = if chan.context.should_announce() {
4949                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4950                 } else {
4951                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4952                 };
4953                 if let Some(scid) = scid_pref {
4954                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4955                 } else {
4956                         (0x4000|10, Vec::new())
4957                 }
4958         }
4959
4960
4961         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4962         /// that we want to return and a channel.
4963         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4964                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4965                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4966                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4967                         if desired_err_code == 0x1000 | 20 {
4968                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4969                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4970                                 0u16.write(&mut enc).expect("Writes cannot fail");
4971                         }
4972                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4973                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4974                         upd.write(&mut enc).expect("Writes cannot fail");
4975                         (desired_err_code, enc.0)
4976                 } else {
4977                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4978                         // which means we really shouldn't have gotten a payment to be forwarded over this
4979                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4980                         // PERM|no_such_channel should be fine.
4981                         (0x4000|10, Vec::new())
4982                 }
4983         }
4984
4985         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4986         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4987         // be surfaced to the user.
4988         fn fail_holding_cell_htlcs(
4989                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
4990                 counterparty_node_id: &PublicKey
4991         ) {
4992                 let (failure_code, onion_failure_data) = {
4993                         let per_peer_state = self.per_peer_state.read().unwrap();
4994                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4995                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4996                                 let peer_state = &mut *peer_state_lock;
4997                                 match peer_state.channel_by_id.entry(channel_id) {
4998                                         hash_map::Entry::Occupied(chan_phase_entry) => {
4999                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
5000                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
5001                                                 } else {
5002                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
5003                                                         debug_assert!(false);
5004                                                         (0x4000|10, Vec::new())
5005                                                 }
5006                                         },
5007                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
5008                                 }
5009                         } else { (0x4000|10, Vec::new()) }
5010                 };
5011
5012                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
5013                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
5014                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
5015                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
5016                 }
5017         }
5018
5019         /// Fails an HTLC backwards to the sender of it to us.
5020         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
5021         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
5022                 // Ensure that no peer state channel storage lock is held when calling this function.
5023                 // This ensures that future code doesn't introduce a lock-order requirement for
5024                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
5025                 // this function with any `per_peer_state` peer lock acquired would.
5026                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
5027                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
5028                 }
5029
5030                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
5031                 //identify whether we sent it or not based on the (I presume) very different runtime
5032                 //between the branches here. We should make this async and move it into the forward HTLCs
5033                 //timer handling.
5034
5035                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5036                 // from block_connected which may run during initialization prior to the chain_monitor
5037                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
5038                 match source {
5039                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
5040                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
5041                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
5042                                         &self.pending_events, &self.logger)
5043                                 { self.push_pending_forwards_ev(); }
5044                         },
5045                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
5046                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
5047                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
5048
5049                                 let mut push_forward_ev = false;
5050                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5051                                 if forward_htlcs.is_empty() {
5052                                         push_forward_ev = true;
5053                                 }
5054                                 match forward_htlcs.entry(*short_channel_id) {
5055                                         hash_map::Entry::Occupied(mut entry) => {
5056                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
5057                                         },
5058                                         hash_map::Entry::Vacant(entry) => {
5059                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
5060                                         }
5061                                 }
5062                                 mem::drop(forward_htlcs);
5063                                 if push_forward_ev { self.push_pending_forwards_ev(); }
5064                                 let mut pending_events = self.pending_events.lock().unwrap();
5065                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
5066                                         prev_channel_id: outpoint.to_channel_id(),
5067                                         failed_next_destination: destination,
5068                                 }, None));
5069                         },
5070                 }
5071         }
5072
5073         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
5074         /// [`MessageSendEvent`]s needed to claim the payment.
5075         ///
5076         /// This method is guaranteed to ensure the payment has been claimed but only if the current
5077         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
5078         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
5079         /// successful. It will generally be available in the next [`process_pending_events`] call.
5080         ///
5081         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
5082         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
5083         /// event matches your expectation. If you fail to do so and call this method, you may provide
5084         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
5085         ///
5086         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
5087         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
5088         /// [`claim_funds_with_known_custom_tlvs`].
5089         ///
5090         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
5091         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
5092         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
5093         /// [`process_pending_events`]: EventsProvider::process_pending_events
5094         /// [`create_inbound_payment`]: Self::create_inbound_payment
5095         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5096         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
5097         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
5098                 self.claim_payment_internal(payment_preimage, false);
5099         }
5100
5101         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
5102         /// even type numbers.
5103         ///
5104         /// # Note
5105         ///
5106         /// You MUST check you've understood all even TLVs before using this to
5107         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
5108         ///
5109         /// [`claim_funds`]: Self::claim_funds
5110         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
5111                 self.claim_payment_internal(payment_preimage, true);
5112         }
5113
5114         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
5115                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5116
5117                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5118
5119                 let mut sources = {
5120                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
5121                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
5122                                 let mut receiver_node_id = self.our_network_pubkey;
5123                                 for htlc in payment.htlcs.iter() {
5124                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
5125                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
5126                                                         .expect("Failed to get node_id for phantom node recipient");
5127                                                 receiver_node_id = phantom_pubkey;
5128                                                 break;
5129                                         }
5130                                 }
5131
5132                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
5133                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
5134                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
5135                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
5136                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
5137                                 });
5138                                 if dup_purpose.is_some() {
5139                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
5140                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
5141                                                 &payment_hash);
5142                                 }
5143
5144                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
5145                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
5146                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
5147                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
5148                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
5149                                                 mem::drop(claimable_payments);
5150                                                 for htlc in payment.htlcs {
5151                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
5152                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5153                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
5154                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5155                                                 }
5156                                                 return;
5157                                         }
5158                                 }
5159
5160                                 payment.htlcs
5161                         } else { return; }
5162                 };
5163                 debug_assert!(!sources.is_empty());
5164
5165                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
5166                 // and when we got here we need to check that the amount we're about to claim matches the
5167                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
5168                 // the MPP parts all have the same `total_msat`.
5169                 let mut claimable_amt_msat = 0;
5170                 let mut prev_total_msat = None;
5171                 let mut expected_amt_msat = None;
5172                 let mut valid_mpp = true;
5173                 let mut errs = Vec::new();
5174                 let per_peer_state = self.per_peer_state.read().unwrap();
5175                 for htlc in sources.iter() {
5176                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5177                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5178                                 debug_assert!(false);
5179                                 valid_mpp = false;
5180                                 break;
5181                         }
5182                         prev_total_msat = Some(htlc.total_msat);
5183
5184                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5185                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5186                                 debug_assert!(false);
5187                                 valid_mpp = false;
5188                                 break;
5189                         }
5190                         expected_amt_msat = htlc.total_value_received;
5191                         claimable_amt_msat += htlc.value;
5192                 }
5193                 mem::drop(per_peer_state);
5194                 if sources.is_empty() || expected_amt_msat.is_none() {
5195                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5196                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5197                         return;
5198                 }
5199                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5200                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5201                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5202                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5203                         return;
5204                 }
5205                 if valid_mpp {
5206                         for htlc in sources.drain(..) {
5207                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5208                                         htlc.prev_hop, payment_preimage,
5209                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5210                                 {
5211                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5212                                                 // We got a temporary failure updating monitor, but will claim the
5213                                                 // HTLC when the monitor updating is restored (or on chain).
5214                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5215                                         } else { errs.push((pk, err)); }
5216                                 }
5217                         }
5218                 }
5219                 if !valid_mpp {
5220                         for htlc in sources.drain(..) {
5221                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5222                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5223                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5224                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5225                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5226                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5227                         }
5228                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5229                 }
5230
5231                 // Now we can handle any errors which were generated.
5232                 for (counterparty_node_id, err) in errs.drain(..) {
5233                         let res: Result<(), _> = Err(err);
5234                         let _ = handle_error!(self, res, counterparty_node_id);
5235                 }
5236         }
5237
5238         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5239                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5240         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5241                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5242
5243                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5244                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5245                 // `BackgroundEvent`s.
5246                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5247
5248                 {
5249                         let per_peer_state = self.per_peer_state.read().unwrap();
5250                         let chan_id = prev_hop.outpoint.to_channel_id();
5251                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5252                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5253                                 None => None
5254                         };
5255
5256                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5257                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5258                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5259                         ).unwrap_or(None);
5260
5261                         if peer_state_opt.is_some() {
5262                                 let mut peer_state_lock = peer_state_opt.unwrap();
5263                                 let peer_state = &mut *peer_state_lock;
5264                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5265                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5266                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5267                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5268
5269                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5270                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5271                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5272                                                                         chan_id, action);
5273                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5274                                                         }
5275                                                         if !during_init {
5276                                                                 let res = handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5277                                                                         peer_state, per_peer_state, chan_phase_entry);
5278                                                                 if let Err(e) = res {
5279                                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
5280                                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
5281                                                                         // update over and over again until morale improves.
5282                                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
5283                                                                         return Err((counterparty_node_id, e));
5284                                                                 }
5285                                                         } else {
5286                                                                 // If we're running during init we cannot update a monitor directly -
5287                                                                 // they probably haven't actually been loaded yet. Instead, push the
5288                                                                 // monitor update as a background event.
5289                                                                 self.pending_background_events.lock().unwrap().push(
5290                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5291                                                                                 counterparty_node_id,
5292                                                                                 funding_txo: prev_hop.outpoint,
5293                                                                                 update: monitor_update.clone(),
5294                                                                         });
5295                                                         }
5296                                                 }
5297                                         }
5298                                         return Ok(());
5299                                 }
5300                         }
5301                 }
5302                 let preimage_update = ChannelMonitorUpdate {
5303                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5304                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5305                                 payment_preimage,
5306                         }],
5307                 };
5308
5309                 if !during_init {
5310                         // We update the ChannelMonitor on the backward link, after
5311                         // receiving an `update_fulfill_htlc` from the forward link.
5312                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5313                         if update_res != ChannelMonitorUpdateStatus::Completed {
5314                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5315                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5316                                 // channel, or we must have an ability to receive the same event and try
5317                                 // again on restart.
5318                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5319                                         payment_preimage, update_res);
5320                         }
5321                 } else {
5322                         // If we're running during init we cannot update a monitor directly - they probably
5323                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5324                         // event.
5325                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5326                         // channel is already closed) we need to ultimately handle the monitor update
5327                         // completion action only after we've completed the monitor update. This is the only
5328                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5329                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5330                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5331                         // complete the monitor update completion action from `completion_action`.
5332                         self.pending_background_events.lock().unwrap().push(
5333                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5334                                         prev_hop.outpoint, preimage_update,
5335                                 )));
5336                 }
5337                 // Note that we do process the completion action here. This totally could be a
5338                 // duplicate claim, but we have no way of knowing without interrogating the
5339                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5340                 // generally always allowed to be duplicative (and it's specifically noted in
5341                 // `PaymentForwarded`).
5342                 self.handle_monitor_update_completion_actions(completion_action(None));
5343                 Ok(())
5344         }
5345
5346         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5347                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5348         }
5349
5350         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage,
5351                 forwarded_htlc_value_msat: Option<u64>, from_onchain: bool,
5352                 next_channel_counterparty_node_id: Option<PublicKey>, next_channel_outpoint: OutPoint
5353         ) {
5354                 match source {
5355                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5356                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5357                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5358                                 if let Some(pubkey) = next_channel_counterparty_node_id {
5359                                         debug_assert_eq!(pubkey, path.hops[0].pubkey);
5360                                 }
5361                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5362                                         channel_funding_outpoint: next_channel_outpoint,
5363                                         counterparty_node_id: path.hops[0].pubkey,
5364                                 };
5365                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5366                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5367                                         &self.logger);
5368                         },
5369                         HTLCSource::PreviousHopData(hop_data) => {
5370                                 let prev_outpoint = hop_data.outpoint;
5371                                 let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5372                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5373                                         |htlc_claim_value_msat| {
5374                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5375                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5376                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5377                                                         } else { None };
5378
5379                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5380                                                                 event: events::Event::PaymentForwarded {
5381                                                                         fee_earned_msat,
5382                                                                         claim_from_onchain_tx: from_onchain,
5383                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5384                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5385                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5386                                                                 },
5387                                                                 downstream_counterparty_and_funding_outpoint:
5388                                                                         if let Some(node_id) = next_channel_counterparty_node_id {
5389                                                                                 Some((node_id, next_channel_outpoint, completed_blocker))
5390                                                                         } else {
5391                                                                                 // We can only get `None` here if we are processing a
5392                                                                                 // `ChannelMonitor`-originated event, in which case we
5393                                                                                 // don't care about ensuring we wake the downstream
5394                                                                                 // channel's monitor updating - the channel is already
5395                                                                                 // closed.
5396                                                                                 None
5397                                                                         },
5398                                                         })
5399                                                 } else { None }
5400                                         });
5401                                 if let Err((pk, err)) = res {
5402                                         let result: Result<(), _> = Err(err);
5403                                         let _ = handle_error!(self, result, pk);
5404                                 }
5405                         },
5406                 }
5407         }
5408
5409         /// Gets the node_id held by this ChannelManager
5410         pub fn get_our_node_id(&self) -> PublicKey {
5411                 self.our_network_pubkey.clone()
5412         }
5413
5414         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5415                 for action in actions.into_iter() {
5416                         match action {
5417                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5418                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5419                                         if let Some(ClaimingPayment {
5420                                                 amount_msat,
5421                                                 payment_purpose: purpose,
5422                                                 receiver_node_id,
5423                                                 htlcs,
5424                                                 sender_intended_value: sender_intended_total_msat,
5425                                         }) = payment {
5426                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5427                                                         payment_hash,
5428                                                         purpose,
5429                                                         amount_msat,
5430                                                         receiver_node_id: Some(receiver_node_id),
5431                                                         htlcs,
5432                                                         sender_intended_total_msat,
5433                                                 }, None));
5434                                         }
5435                                 },
5436                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5437                                         event, downstream_counterparty_and_funding_outpoint
5438                                 } => {
5439                                         self.pending_events.lock().unwrap().push_back((event, None));
5440                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5441                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5442                                         }
5443                                 },
5444                         }
5445                 }
5446         }
5447
5448         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5449         /// update completion.
5450         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5451                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5452                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5453                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5454                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5455         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5456                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5457                         &channel.context.channel_id(),
5458                         if raa.is_some() { "an" } else { "no" },
5459                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5460                         if funding_broadcastable.is_some() { "" } else { "not " },
5461                         if channel_ready.is_some() { "sending" } else { "without" },
5462                         if announcement_sigs.is_some() { "sending" } else { "without" });
5463
5464                 let mut htlc_forwards = None;
5465
5466                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5467                 if !pending_forwards.is_empty() {
5468                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5469                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5470                 }
5471
5472                 if let Some(msg) = channel_ready {
5473                         send_channel_ready!(self, pending_msg_events, channel, msg);
5474                 }
5475                 if let Some(msg) = announcement_sigs {
5476                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5477                                 node_id: counterparty_node_id,
5478                                 msg,
5479                         });
5480                 }
5481
5482                 macro_rules! handle_cs { () => {
5483                         if let Some(update) = commitment_update {
5484                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5485                                         node_id: counterparty_node_id,
5486                                         updates: update,
5487                                 });
5488                         }
5489                 } }
5490                 macro_rules! handle_raa { () => {
5491                         if let Some(revoke_and_ack) = raa {
5492                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5493                                         node_id: counterparty_node_id,
5494                                         msg: revoke_and_ack,
5495                                 });
5496                         }
5497                 } }
5498                 match order {
5499                         RAACommitmentOrder::CommitmentFirst => {
5500                                 handle_cs!();
5501                                 handle_raa!();
5502                         },
5503                         RAACommitmentOrder::RevokeAndACKFirst => {
5504                                 handle_raa!();
5505                                 handle_cs!();
5506                         },
5507                 }
5508
5509                 if let Some(tx) = funding_broadcastable {
5510                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5511                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5512                 }
5513
5514                 {
5515                         let mut pending_events = self.pending_events.lock().unwrap();
5516                         emit_channel_pending_event!(pending_events, channel);
5517                         emit_channel_ready_event!(pending_events, channel);
5518                 }
5519
5520                 htlc_forwards
5521         }
5522
5523         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5524                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5525
5526                 let counterparty_node_id = match counterparty_node_id {
5527                         Some(cp_id) => cp_id.clone(),
5528                         None => {
5529                                 // TODO: Once we can rely on the counterparty_node_id from the
5530                                 // monitor event, this and the id_to_peer map should be removed.
5531                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5532                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5533                                         Some(cp_id) => cp_id.clone(),
5534                                         None => return,
5535                                 }
5536                         }
5537                 };
5538                 let per_peer_state = self.per_peer_state.read().unwrap();
5539                 let mut peer_state_lock;
5540                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5541                 if peer_state_mutex_opt.is_none() { return }
5542                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5543                 let peer_state = &mut *peer_state_lock;
5544                 let channel =
5545                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5546                                 chan
5547                         } else {
5548                                 let update_actions = peer_state.monitor_update_blocked_actions
5549                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5550                                 mem::drop(peer_state_lock);
5551                                 mem::drop(per_peer_state);
5552                                 self.handle_monitor_update_completion_actions(update_actions);
5553                                 return;
5554                         };
5555                 let remaining_in_flight =
5556                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5557                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5558                                 pending.len()
5559                         } else { 0 };
5560                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5561                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5562                         remaining_in_flight);
5563                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5564                         return;
5565                 }
5566                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5567         }
5568
5569         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5570         ///
5571         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5572         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5573         /// the channel.
5574         ///
5575         /// The `user_channel_id` parameter will be provided back in
5576         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5577         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5578         ///
5579         /// Note that this method will return an error and reject the channel, if it requires support
5580         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5581         /// used to accept such channels.
5582         ///
5583         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5584         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5585         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5586                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5587         }
5588
5589         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5590         /// it as confirmed immediately.
5591         ///
5592         /// The `user_channel_id` parameter will be provided back in
5593         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5594         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5595         ///
5596         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5597         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5598         ///
5599         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5600         /// transaction and blindly assumes that it will eventually confirm.
5601         ///
5602         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5603         /// does not pay to the correct script the correct amount, *you will lose funds*.
5604         ///
5605         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5606         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5607         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5608                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5609         }
5610
5611         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5612                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5613
5614                 let peers_without_funded_channels =
5615                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5616                 let per_peer_state = self.per_peer_state.read().unwrap();
5617                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5618                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5619                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5620                 let peer_state = &mut *peer_state_lock;
5621                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5622
5623                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5624                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5625                 // that we can delay allocating the SCID until after we're sure that the checks below will
5626                 // succeed.
5627                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5628                         Some(unaccepted_channel) => {
5629                                 let best_block_height = self.best_block.read().unwrap().height();
5630                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5631                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5632                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5633                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5634                         }
5635                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5636                 }?;
5637
5638                 if accept_0conf {
5639                         // This should have been correctly configured by the call to InboundV1Channel::new.
5640                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5641                 } else if channel.context.get_channel_type().requires_zero_conf() {
5642                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5643                                 node_id: channel.context.get_counterparty_node_id(),
5644                                 action: msgs::ErrorAction::SendErrorMessage{
5645                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5646                                 }
5647                         };
5648                         peer_state.pending_msg_events.push(send_msg_err_event);
5649                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5650                 } else {
5651                         // If this peer already has some channels, a new channel won't increase our number of peers
5652                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5653                         // channels per-peer we can accept channels from a peer with existing ones.
5654                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5655                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5656                                         node_id: channel.context.get_counterparty_node_id(),
5657                                         action: msgs::ErrorAction::SendErrorMessage{
5658                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5659                                         }
5660                                 };
5661                                 peer_state.pending_msg_events.push(send_msg_err_event);
5662                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5663                         }
5664                 }
5665
5666                 // Now that we know we have a channel, assign an outbound SCID alias.
5667                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5668                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5669
5670                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5671                         node_id: channel.context.get_counterparty_node_id(),
5672                         msg: channel.accept_inbound_channel(),
5673                 });
5674
5675                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5676
5677                 Ok(())
5678         }
5679
5680         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5681         /// or 0-conf channels.
5682         ///
5683         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5684         /// non-0-conf channels we have with the peer.
5685         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5686         where Filter: Fn(&PeerState<SP>) -> bool {
5687                 let mut peers_without_funded_channels = 0;
5688                 let best_block_height = self.best_block.read().unwrap().height();
5689                 {
5690                         let peer_state_lock = self.per_peer_state.read().unwrap();
5691                         for (_, peer_mtx) in peer_state_lock.iter() {
5692                                 let peer = peer_mtx.lock().unwrap();
5693                                 if !maybe_count_peer(&*peer) { continue; }
5694                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5695                                 if num_unfunded_channels == peer.total_channel_count() {
5696                                         peers_without_funded_channels += 1;
5697                                 }
5698                         }
5699                 }
5700                 return peers_without_funded_channels;
5701         }
5702
5703         fn unfunded_channel_count(
5704                 peer: &PeerState<SP>, best_block_height: u32
5705         ) -> usize {
5706                 let mut num_unfunded_channels = 0;
5707                 for (_, phase) in peer.channel_by_id.iter() {
5708                         match phase {
5709                                 ChannelPhase::Funded(chan) => {
5710                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5711                                         // which have not yet had any confirmations on-chain.
5712                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5713                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5714                                         {
5715                                                 num_unfunded_channels += 1;
5716                                         }
5717                                 },
5718                                 ChannelPhase::UnfundedInboundV1(chan) => {
5719                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5720                                                 num_unfunded_channels += 1;
5721                                         }
5722                                 },
5723                                 ChannelPhase::UnfundedOutboundV1(_) => {
5724                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5725                                         continue;
5726                                 }
5727                         }
5728                 }
5729                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5730         }
5731
5732         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5733                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5734                 // likely to be lost on restart!
5735                 if msg.chain_hash != self.genesis_hash {
5736                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5737                 }
5738
5739                 if !self.default_configuration.accept_inbound_channels {
5740                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5741                 }
5742
5743                 // Get the number of peers with channels, but without funded ones. We don't care too much
5744                 // about peers that never open a channel, so we filter by peers that have at least one
5745                 // channel, and then limit the number of those with unfunded channels.
5746                 let channeled_peers_without_funding =
5747                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5748
5749                 let per_peer_state = self.per_peer_state.read().unwrap();
5750                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5751                     .ok_or_else(|| {
5752                                 debug_assert!(false);
5753                                 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())
5754                         })?;
5755                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5756                 let peer_state = &mut *peer_state_lock;
5757
5758                 // If this peer already has some channels, a new channel won't increase our number of peers
5759                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5760                 // channels per-peer we can accept channels from a peer with existing ones.
5761                 if peer_state.total_channel_count() == 0 &&
5762                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5763                         !self.default_configuration.manually_accept_inbound_channels
5764                 {
5765                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5766                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5767                                 msg.temporary_channel_id.clone()));
5768                 }
5769
5770                 let best_block_height = self.best_block.read().unwrap().height();
5771                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5772                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5773                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5774                                 msg.temporary_channel_id.clone()));
5775                 }
5776
5777                 let channel_id = msg.temporary_channel_id;
5778                 let channel_exists = peer_state.has_channel(&channel_id);
5779                 if channel_exists {
5780                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5781                 }
5782
5783                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5784                 if self.default_configuration.manually_accept_inbound_channels {
5785                         let mut pending_events = self.pending_events.lock().unwrap();
5786                         pending_events.push_back((events::Event::OpenChannelRequest {
5787                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5788                                 counterparty_node_id: counterparty_node_id.clone(),
5789                                 funding_satoshis: msg.funding_satoshis,
5790                                 push_msat: msg.push_msat,
5791                                 channel_type: msg.channel_type.clone().unwrap(),
5792                         }, None));
5793                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5794                                 open_channel_msg: msg.clone(),
5795                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5796                         });
5797                         return Ok(());
5798                 }
5799
5800                 // Otherwise create the channel right now.
5801                 let mut random_bytes = [0u8; 16];
5802                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5803                 let user_channel_id = u128::from_be_bytes(random_bytes);
5804                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5805                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5806                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5807                 {
5808                         Err(e) => {
5809                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5810                         },
5811                         Ok(res) => res
5812                 };
5813
5814                 let channel_type = channel.context.get_channel_type();
5815                 if channel_type.requires_zero_conf() {
5816                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5817                 }
5818                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5819                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5820                 }
5821
5822                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5823                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5824
5825                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5826                         node_id: counterparty_node_id.clone(),
5827                         msg: channel.accept_inbound_channel(),
5828                 });
5829                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5830                 Ok(())
5831         }
5832
5833         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5834                 // Note that the ChannelManager is NOT re-persisted on disk after this, so any changes are
5835                 // likely to be lost on restart!
5836                 let (value, output_script, user_id) = {
5837                         let per_peer_state = self.per_peer_state.read().unwrap();
5838                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5839                                 .ok_or_else(|| {
5840                                         debug_assert!(false);
5841                                         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)
5842                                 })?;
5843                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5844                         let peer_state = &mut *peer_state_lock;
5845                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5846                                 hash_map::Entry::Occupied(mut phase) => {
5847                                         match phase.get_mut() {
5848                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5849                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5850                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5851                                                 },
5852                                                 _ => {
5853                                                         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));
5854                                                 }
5855                                         }
5856                                 },
5857                                 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))
5858                         }
5859                 };
5860                 let mut pending_events = self.pending_events.lock().unwrap();
5861                 pending_events.push_back((events::Event::FundingGenerationReady {
5862                         temporary_channel_id: msg.temporary_channel_id,
5863                         counterparty_node_id: *counterparty_node_id,
5864                         channel_value_satoshis: value,
5865                         output_script,
5866                         user_channel_id: user_id,
5867                 }, None));
5868                 Ok(())
5869         }
5870
5871         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5872                 let best_block = *self.best_block.read().unwrap();
5873
5874                 let per_peer_state = self.per_peer_state.read().unwrap();
5875                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5876                         .ok_or_else(|| {
5877                                 debug_assert!(false);
5878                                 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)
5879                         })?;
5880
5881                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5882                 let peer_state = &mut *peer_state_lock;
5883                 let (chan, funding_msg, monitor) =
5884                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
5885                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
5886                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5887                                                 Ok(res) => res,
5888                                                 Err((mut inbound_chan, err)) => {
5889                                                         // We've already removed this inbound channel from the map in `PeerState`
5890                                                         // above so at this point we just need to clean up any lingering entries
5891                                                         // concerning this channel as it is safe to do so.
5892                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5893                                                         let user_id = inbound_chan.context.get_user_id();
5894                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5895                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5896                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5897                                                 },
5898                                         }
5899                                 },
5900                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
5901                                         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));
5902                                 },
5903                                 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))
5904                         };
5905
5906                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5907                         hash_map::Entry::Occupied(_) => {
5908                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5909                         },
5910                         hash_map::Entry::Vacant(e) => {
5911                                 let mut id_to_peer_lock = self.id_to_peer.lock().unwrap();
5912                                 match id_to_peer_lock.entry(chan.context.channel_id()) {
5913                                         hash_map::Entry::Occupied(_) => {
5914                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5915                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5916                                                         funding_msg.channel_id))
5917                                         },
5918                                         hash_map::Entry::Vacant(i_e) => {
5919                                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5920                                                 if let Ok(persist_state) = monitor_res {
5921                                                         i_e.insert(chan.context.get_counterparty_node_id());
5922                                                         mem::drop(id_to_peer_lock);
5923
5924                                                         // There's no problem signing a counterparty's funding transaction if our monitor
5925                                                         // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5926                                                         // accepted payment from yet. We do, however, need to wait to send our channel_ready
5927                                                         // until we have persisted our monitor.
5928                                                         let new_channel_id = funding_msg.channel_id;
5929                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5930                                                                 node_id: counterparty_node_id.clone(),
5931                                                                 msg: funding_msg,
5932                                                         });
5933
5934                                                         if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
5935                                                                 let mut res = handle_new_monitor_update!(self, persist_state, peer_state_lock, peer_state,
5936                                                                         per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5937                                                                         { peer_state.channel_by_id.remove(&new_channel_id) });
5938
5939                                                                 // Note that we reply with the new channel_id in error messages if we gave up on the
5940                                                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5941                                                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5942                                                                 // any messages referencing a previously-closed channel anyway.
5943                                                                 // We do not propagate the monitor update to the user as it would be for a monitor
5944                                                                 // that we didn't manage to store (and that we don't care about - we don't respond
5945                                                                 // with the funding_signed so the channel can never go on chain).
5946                                                                 if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5947                                                                         res.0 = None;
5948                                                                 }
5949                                                                 res.map(|_| ())
5950                                                         } else {
5951                                                                 unreachable!("This must be a funded channel as we just inserted it.");
5952                                                         }
5953                                                 } else {
5954                                                         log_error!(self.logger, "Persisting initial ChannelMonitor failed, implying the funding outpoint was duplicated");
5955                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5956                                                                 "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5957                                                                 funding_msg.channel_id));
5958                                                 }
5959                                         }
5960                                 }
5961                         }
5962                 }
5963         }
5964
5965         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5966                 let best_block = *self.best_block.read().unwrap();
5967                 let per_peer_state = self.per_peer_state.read().unwrap();
5968                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5969                         .ok_or_else(|| {
5970                                 debug_assert!(false);
5971                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5972                         })?;
5973
5974                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5975                 let peer_state = &mut *peer_state_lock;
5976                 match peer_state.channel_by_id.entry(msg.channel_id) {
5977                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5978                                 match chan_phase_entry.get_mut() {
5979                                         ChannelPhase::Funded(ref mut chan) => {
5980                                                 let monitor = try_chan_phase_entry!(self,
5981                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
5982                                                 if let Ok(persist_status) = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor) {
5983                                                         let mut res = handle_new_monitor_update!(self, persist_status, peer_state_lock, peer_state, per_peer_state, chan_phase_entry, INITIAL_MONITOR);
5984                                                         if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5985                                                                 // We weren't able to watch the channel to begin with, so no updates should be made on
5986                                                                 // it. Previously, full_stack_target found an (unreachable) panic when the
5987                                                                 // monitor update contained within `shutdown_finish` was applied.
5988                                                                 if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5989                                                                         shutdown_finish.0.take();
5990                                                                 }
5991                                                         }
5992                                                         res.map(|_| ())
5993                                                 } else {
5994                                                         try_chan_phase_entry!(self, Err(ChannelError::Close("Channel funding outpoint was a duplicate".to_owned())), chan_phase_entry)
5995                                                 }
5996                                         },
5997                                         _ => {
5998                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
5999                                         },
6000                                 }
6001                         },
6002                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
6003                 }
6004         }
6005
6006         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
6007                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6008                 // closing a channel), so any changes are likely to be lost on restart!
6009                 let per_peer_state = self.per_peer_state.read().unwrap();
6010                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6011                         .ok_or_else(|| {
6012                                 debug_assert!(false);
6013                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6014                         })?;
6015                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6016                 let peer_state = &mut *peer_state_lock;
6017                 match peer_state.channel_by_id.entry(msg.channel_id) {
6018                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6019                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6020                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
6021                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
6022                                         if let Some(announcement_sigs) = announcement_sigs_opt {
6023                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
6024                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6025                                                         node_id: counterparty_node_id.clone(),
6026                                                         msg: announcement_sigs,
6027                                                 });
6028                                         } else if chan.context.is_usable() {
6029                                                 // If we're sending an announcement_signatures, we'll send the (public)
6030                                                 // channel_update after sending a channel_announcement when we receive our
6031                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
6032                                                 // channel_update here if the channel is not public, i.e. we're not sending an
6033                                                 // announcement_signatures.
6034                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
6035                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6036                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6037                                                                 node_id: counterparty_node_id.clone(),
6038                                                                 msg,
6039                                                         });
6040                                                 }
6041                                         }
6042
6043                                         {
6044                                                 let mut pending_events = self.pending_events.lock().unwrap();
6045                                                 emit_channel_ready_event!(pending_events, chan);
6046                                         }
6047
6048                                         Ok(())
6049                                 } else {
6050                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
6051                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
6052                                 }
6053                         },
6054                         hash_map::Entry::Vacant(_) => {
6055                                 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))
6056                         }
6057                 }
6058         }
6059
6060         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
6061                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
6062                 let result: Result<(), _> = loop {
6063                         let per_peer_state = self.per_peer_state.read().unwrap();
6064                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6065                                 .ok_or_else(|| {
6066                                         debug_assert!(false);
6067                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6068                                 })?;
6069                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6070                         let peer_state = &mut *peer_state_lock;
6071                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6072                                 let phase = chan_phase_entry.get_mut();
6073                                 match phase {
6074                                         ChannelPhase::Funded(chan) => {
6075                                                 if !chan.received_shutdown() {
6076                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
6077                                                                 msg.channel_id,
6078                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
6079                                                 }
6080
6081                                                 let funding_txo_opt = chan.context.get_funding_txo();
6082                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
6083                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
6084                                                 dropped_htlcs = htlcs;
6085
6086                                                 if let Some(msg) = shutdown {
6087                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
6088                                                         // here as we don't need the monitor update to complete until we send a
6089                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
6090                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6091                                                                 node_id: *counterparty_node_id,
6092                                                                 msg,
6093                                                         });
6094                                                 }
6095                                                 // Update the monitor with the shutdown script if necessary.
6096                                                 if let Some(monitor_update) = monitor_update_opt {
6097                                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
6098                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
6099                                                 }
6100                                                 break Ok(());
6101                                         },
6102                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
6103                                                 let context = phase.context_mut();
6104                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
6105                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
6106                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
6107                                                 self.finish_force_close_channel(chan.context_mut().force_shutdown(false));
6108                                                 return Ok(());
6109                                         },
6110                                 }
6111                         } else {
6112                                 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))
6113                         }
6114                 };
6115                 for htlc_source in dropped_htlcs.drain(..) {
6116                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
6117                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6118                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
6119                 }
6120
6121                 result
6122         }
6123
6124         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
6125                 let per_peer_state = self.per_peer_state.read().unwrap();
6126                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6127                         .ok_or_else(|| {
6128                                 debug_assert!(false);
6129                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6130                         })?;
6131                 let (tx, chan_option) = {
6132                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6133                         let peer_state = &mut *peer_state_lock;
6134                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
6135                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6136                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6137                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
6138                                                 if let Some(msg) = closing_signed {
6139                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6140                                                                 node_id: counterparty_node_id.clone(),
6141                                                                 msg,
6142                                                         });
6143                                                 }
6144                                                 if tx.is_some() {
6145                                                         // We're done with this channel, we've got a signed closing transaction and
6146                                                         // will send the closing_signed back to the remote peer upon return. This
6147                                                         // also implies there are no pending HTLCs left on the channel, so we can
6148                                                         // fully delete it from tracking (the channel monitor is still around to
6149                                                         // watch for old state broadcasts)!
6150                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
6151                                                 } else { (tx, None) }
6152                                         } else {
6153                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6154                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
6155                                         }
6156                                 },
6157                                 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))
6158                         }
6159                 };
6160                 if let Some(broadcast_tx) = tx {
6161                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
6162                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
6163                 }
6164                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
6165                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6166                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6167                                 let peer_state = &mut *peer_state_lock;
6168                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6169                                         msg: update
6170                                 });
6171                         }
6172                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6173                 }
6174                 Ok(())
6175         }
6176
6177         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
6178                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
6179                 //determine the state of the payment based on our response/if we forward anything/the time
6180                 //we take to respond. We should take care to avoid allowing such an attack.
6181                 //
6182                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
6183                 //us repeatedly garbled in different ways, and compare our error messages, which are
6184                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
6185                 //but we should prevent it anyway.
6186
6187                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6188                 // closing a channel), so any changes are likely to be lost on restart!
6189
6190                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
6191                 let per_peer_state = self.per_peer_state.read().unwrap();
6192                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6193                         .ok_or_else(|| {
6194                                 debug_assert!(false);
6195                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6196                         })?;
6197                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6198                 let peer_state = &mut *peer_state_lock;
6199                 match peer_state.channel_by_id.entry(msg.channel_id) {
6200                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6201                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6202                                         let pending_forward_info = match decoded_hop_res {
6203                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
6204                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
6205                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6206                                                 Err(e) => PendingHTLCStatus::Fail(e)
6207                                         };
6208                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6209                                                 // If the update_add is completely bogus, the call will Err and we will close,
6210                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6211                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6212                                                 match pending_forward_info {
6213                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6214                                                                 let reason = if (error_code & 0x1000) != 0 {
6215                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6216                                                                         HTLCFailReason::reason(real_code, error_data)
6217                                                                 } else {
6218                                                                         HTLCFailReason::from_failure_code(error_code)
6219                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6220                                                                 let msg = msgs::UpdateFailHTLC {
6221                                                                         channel_id: msg.channel_id,
6222                                                                         htlc_id: msg.htlc_id,
6223                                                                         reason
6224                                                                 };
6225                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6226                                                         },
6227                                                         _ => pending_forward_info
6228                                                 }
6229                                         };
6230                                         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);
6231                                 } else {
6232                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6233                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6234                                 }
6235                         },
6236                         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))
6237                 }
6238                 Ok(())
6239         }
6240
6241         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6242                 let funding_txo;
6243                 let (htlc_source, forwarded_htlc_value) = {
6244                         let per_peer_state = self.per_peer_state.read().unwrap();
6245                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6246                                 .ok_or_else(|| {
6247                                         debug_assert!(false);
6248                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6249                                 })?;
6250                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6251                         let peer_state = &mut *peer_state_lock;
6252                         match peer_state.channel_by_id.entry(msg.channel_id) {
6253                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6254                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6255                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6256                                                 if let HTLCSource::PreviousHopData(prev_hop) = &res.0 {
6257                                                         peer_state.actions_blocking_raa_monitor_updates.entry(msg.channel_id)
6258                                                                 .or_insert_with(Vec::new)
6259                                                                 .push(RAAMonitorUpdateBlockingAction::from_prev_hop_data(&prev_hop));
6260                                                 }
6261                                                 // Note that we do not need to push an `actions_blocking_raa_monitor_updates`
6262                                                 // entry here, even though we *do* need to block the next RAA monitor update.
6263                                                 // We do this instead in the `claim_funds_internal` by attaching a
6264                                                 // `ReleaseRAAChannelMonitorUpdate` action to the event generated when the
6265                                                 // outbound HTLC is claimed. This is guaranteed to all complete before we
6266                                                 // process the RAA as messages are processed from single peers serially.
6267                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6268                                                 res
6269                                         } else {
6270                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6271                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6272                                         }
6273                                 },
6274                                 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))
6275                         }
6276                 };
6277                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, Some(*counterparty_node_id), funding_txo);
6278                 Ok(())
6279         }
6280
6281         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6282                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6283                 // closing a channel), so any changes are likely to be lost on restart!
6284                 let per_peer_state = self.per_peer_state.read().unwrap();
6285                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6286                         .ok_or_else(|| {
6287                                 debug_assert!(false);
6288                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6289                         })?;
6290                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6291                 let peer_state = &mut *peer_state_lock;
6292                 match peer_state.channel_by_id.entry(msg.channel_id) {
6293                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6294                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6295                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6296                                 } else {
6297                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6298                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6299                                 }
6300                         },
6301                         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))
6302                 }
6303                 Ok(())
6304         }
6305
6306         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6307                 // Note that the ChannelManager is NOT re-persisted on disk after this (unless we error
6308                 // closing a channel), so any changes are likely to be lost on restart!
6309                 let per_peer_state = self.per_peer_state.read().unwrap();
6310                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6311                         .ok_or_else(|| {
6312                                 debug_assert!(false);
6313                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6314                         })?;
6315                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6316                 let peer_state = &mut *peer_state_lock;
6317                 match peer_state.channel_by_id.entry(msg.channel_id) {
6318                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6319                                 if (msg.failure_code & 0x8000) == 0 {
6320                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6321                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6322                                 }
6323                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6324                                         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);
6325                                 } else {
6326                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6327                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6328                                 }
6329                                 Ok(())
6330                         },
6331                         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))
6332                 }
6333         }
6334
6335         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6336                 let per_peer_state = self.per_peer_state.read().unwrap();
6337                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6338                         .ok_or_else(|| {
6339                                 debug_assert!(false);
6340                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6341                         })?;
6342                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6343                 let peer_state = &mut *peer_state_lock;
6344                 match peer_state.channel_by_id.entry(msg.channel_id) {
6345                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6346                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6347                                         let funding_txo = chan.context.get_funding_txo();
6348                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6349                                         if let Some(monitor_update) = monitor_update_opt {
6350                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6351                                                         peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6352                                         } else { Ok(()) }
6353                                 } else {
6354                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6355                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6356                                 }
6357                         },
6358                         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))
6359                 }
6360         }
6361
6362         #[inline]
6363         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6364                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6365                         let mut push_forward_event = false;
6366                         let mut new_intercept_events = VecDeque::new();
6367                         let mut failed_intercept_forwards = Vec::new();
6368                         if !pending_forwards.is_empty() {
6369                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6370                                         let scid = match forward_info.routing {
6371                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6372                                                 PendingHTLCRouting::Receive { .. } => 0,
6373                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6374                                         };
6375                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6376                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6377
6378                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6379                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6380                                         match forward_htlcs.entry(scid) {
6381                                                 hash_map::Entry::Occupied(mut entry) => {
6382                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6383                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6384                                                 },
6385                                                 hash_map::Entry::Vacant(entry) => {
6386                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6387                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6388                                                         {
6389                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6390                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6391                                                                 match pending_intercepts.entry(intercept_id) {
6392                                                                         hash_map::Entry::Vacant(entry) => {
6393                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6394                                                                                         requested_next_hop_scid: scid,
6395                                                                                         payment_hash: forward_info.payment_hash,
6396                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6397                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6398                                                                                         intercept_id
6399                                                                                 }, None));
6400                                                                                 entry.insert(PendingAddHTLCInfo {
6401                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6402                                                                         },
6403                                                                         hash_map::Entry::Occupied(_) => {
6404                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6405                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6406                                                                                         short_channel_id: prev_short_channel_id,
6407                                                                                         user_channel_id: Some(prev_user_channel_id),
6408                                                                                         outpoint: prev_funding_outpoint,
6409                                                                                         htlc_id: prev_htlc_id,
6410                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6411                                                                                         phantom_shared_secret: None,
6412                                                                                 });
6413
6414                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6415                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6416                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6417                                                                                 ));
6418                                                                         }
6419                                                                 }
6420                                                         } else {
6421                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6422                                                                 // payments are being processed.
6423                                                                 if forward_htlcs_empty {
6424                                                                         push_forward_event = true;
6425                                                                 }
6426                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6427                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6428                                                         }
6429                                                 }
6430                                         }
6431                                 }
6432                         }
6433
6434                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6435                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6436                         }
6437
6438                         if !new_intercept_events.is_empty() {
6439                                 let mut events = self.pending_events.lock().unwrap();
6440                                 events.append(&mut new_intercept_events);
6441                         }
6442                         if push_forward_event { self.push_pending_forwards_ev() }
6443                 }
6444         }
6445
6446         fn push_pending_forwards_ev(&self) {
6447                 let mut pending_events = self.pending_events.lock().unwrap();
6448                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6449                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6450                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6451                 ).count();
6452                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6453                 // events is done in batches and they are not removed until we're done processing each
6454                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6455                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6456                 // payments will need an additional forwarding event before being claimed to make them look
6457                 // real by taking more time.
6458                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6459                         pending_events.push_back((Event::PendingHTLCsForwardable {
6460                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6461                         }, None));
6462                 }
6463         }
6464
6465         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6466         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6467         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6468         /// the [`ChannelMonitorUpdate`] in question.
6469         fn raa_monitor_updates_held(&self,
6470                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6471                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6472         ) -> bool {
6473                 actions_blocking_raa_monitor_updates
6474                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6475                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6476                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6477                                 channel_funding_outpoint,
6478                                 counterparty_node_id,
6479                         })
6480                 })
6481         }
6482
6483         #[cfg(any(test, feature = "_test_utils"))]
6484         pub(crate) fn test_raa_monitor_updates_held(&self,
6485                 counterparty_node_id: PublicKey, channel_id: ChannelId
6486         ) -> bool {
6487                 let per_peer_state = self.per_peer_state.read().unwrap();
6488                 if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6489                         let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6490                         let peer_state = &mut *peer_state_lck;
6491
6492                         if let Some(chan) = peer_state.channel_by_id.get(&channel_id) {
6493                                 return self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6494                                         chan.context().get_funding_txo().unwrap(), counterparty_node_id);
6495                         }
6496                 }
6497                 false
6498         }
6499
6500         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6501                 let (htlcs_to_fail, res) = {
6502                         let per_peer_state = self.per_peer_state.read().unwrap();
6503                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6504                                 .ok_or_else(|| {
6505                                         debug_assert!(false);
6506                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6507                                 }).map(|mtx| mtx.lock().unwrap())?;
6508                         let peer_state = &mut *peer_state_lock;
6509                         match peer_state.channel_by_id.entry(msg.channel_id) {
6510                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6511                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6512                                                 let funding_txo_opt = chan.context.get_funding_txo();
6513                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6514                                                         self.raa_monitor_updates_held(
6515                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6516                                                                 *counterparty_node_id)
6517                                                 } else { false };
6518                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6519                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6520                                                 let res = if let Some(monitor_update) = monitor_update_opt {
6521                                                         let funding_txo = funding_txo_opt
6522                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6523                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6524                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6525                                                 } else { Ok(()) };
6526                                                 (htlcs_to_fail, res)
6527                                         } else {
6528                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6529                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6530                                         }
6531                                 },
6532                                 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))
6533                         }
6534                 };
6535                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6536                 res
6537         }
6538
6539         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6540                 let per_peer_state = self.per_peer_state.read().unwrap();
6541                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6542                         .ok_or_else(|| {
6543                                 debug_assert!(false);
6544                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6545                         })?;
6546                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6547                 let peer_state = &mut *peer_state_lock;
6548                 match peer_state.channel_by_id.entry(msg.channel_id) {
6549                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6550                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6551                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6552                                 } else {
6553                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6554                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6555                                 }
6556                         },
6557                         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))
6558                 }
6559                 Ok(())
6560         }
6561
6562         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6563                 let per_peer_state = self.per_peer_state.read().unwrap();
6564                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6565                         .ok_or_else(|| {
6566                                 debug_assert!(false);
6567                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6568                         })?;
6569                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6570                 let peer_state = &mut *peer_state_lock;
6571                 match peer_state.channel_by_id.entry(msg.channel_id) {
6572                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6573                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6574                                         if !chan.context.is_usable() {
6575                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6576                                         }
6577
6578                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6579                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6580                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6581                                                         msg, &self.default_configuration
6582                                                 ), chan_phase_entry),
6583                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6584                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6585                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6586                                         });
6587                                 } else {
6588                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6589                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6590                                 }
6591                         },
6592                         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))
6593                 }
6594                 Ok(())
6595         }
6596
6597         /// Returns DoPersist if anything changed, otherwise either SkipPersistNoEvents or an Err.
6598         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6599                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6600                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6601                         None => {
6602                                 // It's not a local channel
6603                                 return Ok(NotifyOption::SkipPersistNoEvents)
6604                         }
6605                 };
6606                 let per_peer_state = self.per_peer_state.read().unwrap();
6607                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6608                 if peer_state_mutex_opt.is_none() {
6609                         return Ok(NotifyOption::SkipPersistNoEvents)
6610                 }
6611                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6612                 let peer_state = &mut *peer_state_lock;
6613                 match peer_state.channel_by_id.entry(chan_id) {
6614                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6615                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6616                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6617                                                 if chan.context.should_announce() {
6618                                                         // If the announcement is about a channel of ours which is public, some
6619                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6620                                                         // a scary-looking error message and return Ok instead.
6621                                                         return Ok(NotifyOption::SkipPersistNoEvents);
6622                                                 }
6623                                                 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));
6624                                         }
6625                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6626                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6627                                         if were_node_one == msg_from_node_one {
6628                                                 return Ok(NotifyOption::SkipPersistNoEvents);
6629                                         } else {
6630                                                 log_debug!(self.logger, "Received channel_update for channel {}.", chan_id);
6631                                                 try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6632                                         }
6633                                 } else {
6634                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6635                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6636                                 }
6637                         },
6638                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersistNoEvents)
6639                 }
6640                 Ok(NotifyOption::DoPersist)
6641         }
6642
6643         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<NotifyOption, MsgHandleErrInternal> {
6644                 let htlc_forwards;
6645                 let need_lnd_workaround = {
6646                         let per_peer_state = self.per_peer_state.read().unwrap();
6647
6648                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6649                                 .ok_or_else(|| {
6650                                         debug_assert!(false);
6651                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6652                                 })?;
6653                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6654                         let peer_state = &mut *peer_state_lock;
6655                         match peer_state.channel_by_id.entry(msg.channel_id) {
6656                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6657                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6658                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6659                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6660                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6661                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6662                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6663                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6664                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6665                                                 let mut channel_update = None;
6666                                                 if let Some(msg) = responses.shutdown_msg {
6667                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6668                                                                 node_id: counterparty_node_id.clone(),
6669                                                                 msg,
6670                                                         });
6671                                                 } else if chan.context.is_usable() {
6672                                                         // If the channel is in a usable state (ie the channel is not being shut
6673                                                         // down), send a unicast channel_update to our counterparty to make sure
6674                                                         // they have the latest channel parameters.
6675                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6676                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6677                                                                         node_id: chan.context.get_counterparty_node_id(),
6678                                                                         msg,
6679                                                                 });
6680                                                         }
6681                                                 }
6682                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6683                                                 htlc_forwards = self.handle_channel_resumption(
6684                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6685                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6686                                                 if let Some(upd) = channel_update {
6687                                                         peer_state.pending_msg_events.push(upd);
6688                                                 }
6689                                                 need_lnd_workaround
6690                                         } else {
6691                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6692                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6693                                         }
6694                                 },
6695                                 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))
6696                         }
6697                 };
6698
6699                 let mut persist = NotifyOption::SkipPersistHandleEvents;
6700                 if let Some(forwards) = htlc_forwards {
6701                         self.forward_htlcs(&mut [forwards][..]);
6702                         persist = NotifyOption::DoPersist;
6703                 }
6704
6705                 if let Some(channel_ready_msg) = need_lnd_workaround {
6706                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6707                 }
6708                 Ok(persist)
6709         }
6710
6711         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6712         fn process_pending_monitor_events(&self) -> bool {
6713                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6714
6715                 let mut failed_channels = Vec::new();
6716                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6717                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6718                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6719                         for monitor_event in monitor_events.drain(..) {
6720                                 match monitor_event {
6721                                         MonitorEvent::HTLCEvent(htlc_update) => {
6722                                                 if let Some(preimage) = htlc_update.payment_preimage {
6723                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", preimage);
6724                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, counterparty_node_id, funding_outpoint);
6725                                                 } else {
6726                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6727                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6728                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6729                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6730                                                 }
6731                                         },
6732                                         MonitorEvent::HolderForceClosed(funding_outpoint) => {
6733                                                 let counterparty_node_id_opt = match counterparty_node_id {
6734                                                         Some(cp_id) => Some(cp_id),
6735                                                         None => {
6736                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6737                                                                 // monitor event, this and the id_to_peer map should be removed.
6738                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6739                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6740                                                         }
6741                                                 };
6742                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6743                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6744                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6745                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6746                                                                 let peer_state = &mut *peer_state_lock;
6747                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6748                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6749                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6750                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6751                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6752                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6753                                                                                                 msg: update
6754                                                                                         });
6755                                                                                 }
6756                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
6757                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6758                                                                                         node_id: chan.context.get_counterparty_node_id(),
6759                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6760                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6761                                                                                         },
6762                                                                                 });
6763                                                                         }
6764                                                                 }
6765                                                         }
6766                                                 }
6767                                         },
6768                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6769                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6770                                         },
6771                                 }
6772                         }
6773                 }
6774
6775                 for failure in failed_channels.drain(..) {
6776                         self.finish_force_close_channel(failure);
6777                 }
6778
6779                 has_pending_monitor_events
6780         }
6781
6782         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6783         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6784         /// update events as a separate process method here.
6785         #[cfg(fuzzing)]
6786         pub fn process_monitor_events(&self) {
6787                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6788                 self.process_pending_monitor_events();
6789         }
6790
6791         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6792         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6793         /// update was applied.
6794         fn check_free_holding_cells(&self) -> bool {
6795                 let mut has_monitor_update = false;
6796                 let mut failed_htlcs = Vec::new();
6797                 let mut handle_errors = Vec::new();
6798
6799                 // Walk our list of channels and find any that need to update. Note that when we do find an
6800                 // update, if it includes actions that must be taken afterwards, we have to drop the
6801                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6802                 // manage to go through all our peers without finding a single channel to update.
6803                 'peer_loop: loop {
6804                         let per_peer_state = self.per_peer_state.read().unwrap();
6805                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6806                                 'chan_loop: loop {
6807                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6808                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6809                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6810                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6811                                         ) {
6812                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6813                                                 let funding_txo = chan.context.get_funding_txo();
6814                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6815                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6816                                                 if !holding_cell_failed_htlcs.is_empty() {
6817                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6818                                                 }
6819                                                 if let Some(monitor_update) = monitor_opt {
6820                                                         has_monitor_update = true;
6821
6822                                                         let channel_id: ChannelId = *channel_id;
6823                                                         let res = handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6824                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6825                                                                 peer_state.channel_by_id.remove(&channel_id));
6826                                                         if res.is_err() {
6827                                                                 handle_errors.push((counterparty_node_id, res));
6828                                                         }
6829                                                         continue 'peer_loop;
6830                                                 }
6831                                         }
6832                                         break 'chan_loop;
6833                                 }
6834                         }
6835                         break 'peer_loop;
6836                 }
6837
6838                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
6839                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6840                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6841                 }
6842
6843                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6844                         let _ = handle_error!(self, err, counterparty_node_id);
6845                 }
6846
6847                 has_update
6848         }
6849
6850         /// Check whether any channels have finished removing all pending updates after a shutdown
6851         /// exchange and can now send a closing_signed.
6852         /// Returns whether any closing_signed messages were generated.
6853         fn maybe_generate_initial_closing_signed(&self) -> bool {
6854                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6855                 let mut has_update = false;
6856                 {
6857                         let per_peer_state = self.per_peer_state.read().unwrap();
6858
6859                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6860                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6861                                 let peer_state = &mut *peer_state_lock;
6862                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6863                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6864                                         match phase {
6865                                                 ChannelPhase::Funded(chan) => {
6866                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6867                                                                 Ok((msg_opt, tx_opt)) => {
6868                                                                         if let Some(msg) = msg_opt {
6869                                                                                 has_update = true;
6870                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6871                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6872                                                                                 });
6873                                                                         }
6874                                                                         if let Some(tx) = tx_opt {
6875                                                                                 // We're done with this channel. We got a closing_signed and sent back
6876                                                                                 // a closing_signed with a closing transaction to broadcast.
6877                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6878                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6879                                                                                                 msg: update
6880                                                                                         });
6881                                                                                 }
6882
6883                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6884
6885                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6886                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6887                                                                                 update_maps_on_chan_removal!(self, &chan.context);
6888                                                                                 false
6889                                                                         } else { true }
6890                                                                 },
6891                                                                 Err(e) => {
6892                                                                         has_update = true;
6893                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
6894                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6895                                                                         !close_channel
6896                                                                 }
6897                                                         }
6898                                                 },
6899                                                 _ => true, // Retain unfunded channels if present.
6900                                         }
6901                                 });
6902                         }
6903                 }
6904
6905                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6906                         let _ = handle_error!(self, err, counterparty_node_id);
6907                 }
6908
6909                 has_update
6910         }
6911
6912         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6913         /// pushing the channel monitor update (if any) to the background events queue and removing the
6914         /// Channel object.
6915         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6916                 for mut failure in failed_channels.drain(..) {
6917                         // Either a commitment transactions has been confirmed on-chain or
6918                         // Channel::block_disconnected detected that the funding transaction has been
6919                         // reorganized out of the main chain.
6920                         // We cannot broadcast our latest local state via monitor update (as
6921                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6922                         // so we track the update internally and handle it when the user next calls
6923                         // timer_tick_occurred, guaranteeing we're running normally.
6924                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6925                                 assert_eq!(update.updates.len(), 1);
6926                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6927                                         assert!(should_broadcast);
6928                                 } else { unreachable!(); }
6929                                 self.pending_background_events.lock().unwrap().push(
6930                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6931                                                 counterparty_node_id, funding_txo, update
6932                                         });
6933                         }
6934                         self.finish_force_close_channel(failure);
6935                 }
6936         }
6937
6938         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6939         /// to pay us.
6940         ///
6941         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6942         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6943         ///
6944         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6945         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6946         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6947         /// passed directly to [`claim_funds`].
6948         ///
6949         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6950         ///
6951         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6952         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6953         ///
6954         /// # Note
6955         ///
6956         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6957         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6958         ///
6959         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6960         ///
6961         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6962         /// on versions of LDK prior to 0.0.114.
6963         ///
6964         /// [`claim_funds`]: Self::claim_funds
6965         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6966         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6967         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6968         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6969         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6970         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6971                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6972                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6973                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6974                         min_final_cltv_expiry_delta)
6975         }
6976
6977         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6978         /// stored external to LDK.
6979         ///
6980         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6981         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6982         /// the `min_value_msat` provided here, if one is provided.
6983         ///
6984         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6985         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6986         /// payments.
6987         ///
6988         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6989         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6990         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6991         /// sender "proof-of-payment" unless they have paid the required amount.
6992         ///
6993         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6994         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6995         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6996         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6997         /// invoices when no timeout is set.
6998         ///
6999         /// Note that we use block header time to time-out pending inbound payments (with some margin
7000         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
7001         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
7002         /// If you need exact expiry semantics, you should enforce them upon receipt of
7003         /// [`PaymentClaimable`].
7004         ///
7005         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
7006         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
7007         ///
7008         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
7009         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
7010         ///
7011         /// # Note
7012         ///
7013         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
7014         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
7015         ///
7016         /// Errors if `min_value_msat` is greater than total bitcoin supply.
7017         ///
7018         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
7019         /// on versions of LDK prior to 0.0.114.
7020         ///
7021         /// [`create_inbound_payment`]: Self::create_inbound_payment
7022         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
7023         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
7024                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
7025                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
7026                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
7027                         min_final_cltv_expiry)
7028         }
7029
7030         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
7031         /// previously returned from [`create_inbound_payment`].
7032         ///
7033         /// [`create_inbound_payment`]: Self::create_inbound_payment
7034         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
7035                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
7036         }
7037
7038         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
7039         /// are used when constructing the phantom invoice's route hints.
7040         ///
7041         /// [phantom node payments]: crate::sign::PhantomKeysManager
7042         pub fn get_phantom_scid(&self) -> u64 {
7043                 let best_block_height = self.best_block.read().unwrap().height();
7044                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7045                 loop {
7046                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7047                         // Ensure the generated scid doesn't conflict with a real channel.
7048                         match short_to_chan_info.get(&scid_candidate) {
7049                                 Some(_) => continue,
7050                                 None => return scid_candidate
7051                         }
7052                 }
7053         }
7054
7055         /// Gets route hints for use in receiving [phantom node payments].
7056         ///
7057         /// [phantom node payments]: crate::sign::PhantomKeysManager
7058         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
7059                 PhantomRouteHints {
7060                         channels: self.list_usable_channels(),
7061                         phantom_scid: self.get_phantom_scid(),
7062                         real_node_pubkey: self.get_our_node_id(),
7063                 }
7064         }
7065
7066         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
7067         /// used when constructing the route hints for HTLCs intended to be intercepted. See
7068         /// [`ChannelManager::forward_intercepted_htlc`].
7069         ///
7070         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
7071         /// times to get a unique scid.
7072         pub fn get_intercept_scid(&self) -> u64 {
7073                 let best_block_height = self.best_block.read().unwrap().height();
7074                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
7075                 loop {
7076                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
7077                         // Ensure the generated scid doesn't conflict with a real channel.
7078                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
7079                         return scid_candidate
7080                 }
7081         }
7082
7083         /// Gets inflight HTLC information by processing pending outbound payments that are in
7084         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
7085         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
7086                 let mut inflight_htlcs = InFlightHtlcs::new();
7087
7088                 let per_peer_state = self.per_peer_state.read().unwrap();
7089                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7090                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7091                         let peer_state = &mut *peer_state_lock;
7092                         for chan in peer_state.channel_by_id.values().filter_map(
7093                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
7094                         ) {
7095                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
7096                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
7097                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
7098                                         }
7099                                 }
7100                         }
7101                 }
7102
7103                 inflight_htlcs
7104         }
7105
7106         #[cfg(any(test, feature = "_test_utils"))]
7107         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
7108                 let events = core::cell::RefCell::new(Vec::new());
7109                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
7110                 self.process_pending_events(&event_handler);
7111                 events.into_inner()
7112         }
7113
7114         #[cfg(feature = "_test_utils")]
7115         pub fn push_pending_event(&self, event: events::Event) {
7116                 let mut events = self.pending_events.lock().unwrap();
7117                 events.push_back((event, None));
7118         }
7119
7120         #[cfg(test)]
7121         pub fn pop_pending_event(&self) -> Option<events::Event> {
7122                 let mut events = self.pending_events.lock().unwrap();
7123                 events.pop_front().map(|(e, _)| e)
7124         }
7125
7126         #[cfg(test)]
7127         pub fn has_pending_payments(&self) -> bool {
7128                 self.pending_outbound_payments.has_pending_payments()
7129         }
7130
7131         #[cfg(test)]
7132         pub fn clear_pending_payments(&self) {
7133                 self.pending_outbound_payments.clear_pending_payments()
7134         }
7135
7136         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
7137         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
7138         /// operation. It will double-check that nothing *else* is also blocking the same channel from
7139         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
7140         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
7141                 let mut errors = Vec::new();
7142                 loop {
7143                         let per_peer_state = self.per_peer_state.read().unwrap();
7144                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
7145                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
7146                                 let peer_state = &mut *peer_state_lck;
7147
7148                                 if let Some(blocker) = completed_blocker.take() {
7149                                         // Only do this on the first iteration of the loop.
7150                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
7151                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
7152                                         {
7153                                                 blockers.retain(|iter| iter != &blocker);
7154                                         }
7155                                 }
7156
7157                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
7158                                         channel_funding_outpoint, counterparty_node_id) {
7159                                         // Check that, while holding the peer lock, we don't have anything else
7160                                         // blocking monitor updates for this channel. If we do, release the monitor
7161                                         // update(s) when those blockers complete.
7162                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
7163                                                 &channel_funding_outpoint.to_channel_id());
7164                                         break;
7165                                 }
7166
7167                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
7168                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
7169                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
7170                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
7171                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
7172                                                                 channel_funding_outpoint.to_channel_id());
7173                                                         if let Err(e) = handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
7174                                                                 peer_state_lck, peer_state, per_peer_state, chan_phase_entry)
7175                                                         {
7176                                                                 errors.push((e, counterparty_node_id));
7177                                                         }
7178                                                         if further_update_exists {
7179                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
7180                                                                 // top of the loop.
7181                                                                 continue;
7182                                                         }
7183                                                 } else {
7184                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
7185                                                                 channel_funding_outpoint.to_channel_id());
7186                                                 }
7187                                         }
7188                                 }
7189                         } else {
7190                                 log_debug!(self.logger,
7191                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
7192                                         log_pubkey!(counterparty_node_id));
7193                         }
7194                         break;
7195                 }
7196                 for (err, counterparty_node_id) in errors {
7197                         let res = Err::<(), _>(err);
7198                         let _ = handle_error!(self, res, counterparty_node_id);
7199                 }
7200         }
7201
7202         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
7203                 for action in actions {
7204                         match action {
7205                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
7206                                         channel_funding_outpoint, counterparty_node_id
7207                                 } => {
7208                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
7209                                 }
7210                         }
7211                 }
7212         }
7213
7214         /// Processes any events asynchronously in the order they were generated since the last call
7215         /// using the given event handler.
7216         ///
7217         /// See the trait-level documentation of [`EventsProvider`] for requirements.
7218         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
7219                 &self, handler: H
7220         ) {
7221                 let mut ev;
7222                 process_events_body!(self, ev, { handler(ev).await });
7223         }
7224 }
7225
7226 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>
7227 where
7228         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7229         T::Target: BroadcasterInterface,
7230         ES::Target: EntropySource,
7231         NS::Target: NodeSigner,
7232         SP::Target: SignerProvider,
7233         F::Target: FeeEstimator,
7234         R::Target: Router,
7235         L::Target: Logger,
7236 {
7237         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7238         /// The returned array will contain `MessageSendEvent`s for different peers if
7239         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7240         /// is always placed next to each other.
7241         ///
7242         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7243         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7244         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7245         /// will randomly be placed first or last in the returned array.
7246         ///
7247         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7248         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7249         /// the `MessageSendEvent`s to the specific peer they were generated under.
7250         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7251                 let events = RefCell::new(Vec::new());
7252                 PersistenceNotifierGuard::optionally_notify(self, || {
7253                         let mut result = NotifyOption::SkipPersistNoEvents;
7254
7255                         // TODO: This behavior should be documented. It's unintuitive that we query
7256                         // ChannelMonitors when clearing other events.
7257                         if self.process_pending_monitor_events() {
7258                                 result = NotifyOption::DoPersist;
7259                         }
7260
7261                         if self.check_free_holding_cells() {
7262                                 result = NotifyOption::DoPersist;
7263                         }
7264                         if self.maybe_generate_initial_closing_signed() {
7265                                 result = NotifyOption::DoPersist;
7266                         }
7267
7268                         let mut pending_events = Vec::new();
7269                         let per_peer_state = self.per_peer_state.read().unwrap();
7270                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7271                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7272                                 let peer_state = &mut *peer_state_lock;
7273                                 if peer_state.pending_msg_events.len() > 0 {
7274                                         pending_events.append(&mut peer_state.pending_msg_events);
7275                                 }
7276                         }
7277
7278                         if !pending_events.is_empty() {
7279                                 events.replace(pending_events);
7280                         }
7281
7282                         result
7283                 });
7284                 events.into_inner()
7285         }
7286 }
7287
7288 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>
7289 where
7290         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7291         T::Target: BroadcasterInterface,
7292         ES::Target: EntropySource,
7293         NS::Target: NodeSigner,
7294         SP::Target: SignerProvider,
7295         F::Target: FeeEstimator,
7296         R::Target: Router,
7297         L::Target: Logger,
7298 {
7299         /// Processes events that must be periodically handled.
7300         ///
7301         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7302         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7303         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7304                 let mut ev;
7305                 process_events_body!(self, ev, handler.handle_event(ev));
7306         }
7307 }
7308
7309 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>
7310 where
7311         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7312         T::Target: BroadcasterInterface,
7313         ES::Target: EntropySource,
7314         NS::Target: NodeSigner,
7315         SP::Target: SignerProvider,
7316         F::Target: FeeEstimator,
7317         R::Target: Router,
7318         L::Target: Logger,
7319 {
7320         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7321                 {
7322                         let best_block = self.best_block.read().unwrap();
7323                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7324                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7325                         assert_eq!(best_block.height(), height - 1,
7326                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7327                 }
7328
7329                 self.transactions_confirmed(header, txdata, height);
7330                 self.best_block_updated(header, height);
7331         }
7332
7333         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7334                 let _persistence_guard =
7335                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7336                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7337                 let new_height = height - 1;
7338                 {
7339                         let mut best_block = self.best_block.write().unwrap();
7340                         assert_eq!(best_block.block_hash(), header.block_hash(),
7341                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7342                         assert_eq!(best_block.height(), height,
7343                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7344                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7345                 }
7346
7347                 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));
7348         }
7349 }
7350
7351 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>
7352 where
7353         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7354         T::Target: BroadcasterInterface,
7355         ES::Target: EntropySource,
7356         NS::Target: NodeSigner,
7357         SP::Target: SignerProvider,
7358         F::Target: FeeEstimator,
7359         R::Target: Router,
7360         L::Target: Logger,
7361 {
7362         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7363                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7364                 // during initialization prior to the chain_monitor being fully configured in some cases.
7365                 // See the docs for `ChannelManagerReadArgs` for more.
7366
7367                 let block_hash = header.block_hash();
7368                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7369
7370                 let _persistence_guard =
7371                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7372                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7373                 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)
7374                         .map(|(a, b)| (a, Vec::new(), b)));
7375
7376                 let last_best_block_height = self.best_block.read().unwrap().height();
7377                 if height < last_best_block_height {
7378                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7379                         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));
7380                 }
7381         }
7382
7383         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7384                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7385                 // during initialization prior to the chain_monitor being fully configured in some cases.
7386                 // See the docs for `ChannelManagerReadArgs` for more.
7387
7388                 let block_hash = header.block_hash();
7389                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7390
7391                 let _persistence_guard =
7392                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7393                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7394                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7395
7396                 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));
7397
7398                 macro_rules! max_time {
7399                         ($timestamp: expr) => {
7400                                 loop {
7401                                         // Update $timestamp to be the max of its current value and the block
7402                                         // timestamp. This should keep us close to the current time without relying on
7403                                         // having an explicit local time source.
7404                                         // Just in case we end up in a race, we loop until we either successfully
7405                                         // update $timestamp or decide we don't need to.
7406                                         let old_serial = $timestamp.load(Ordering::Acquire);
7407                                         if old_serial >= header.time as usize { break; }
7408                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7409                                                 break;
7410                                         }
7411                                 }
7412                         }
7413                 }
7414                 max_time!(self.highest_seen_timestamp);
7415                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7416                 payment_secrets.retain(|_, inbound_payment| {
7417                         inbound_payment.expiry_time > header.time as u64
7418                 });
7419         }
7420
7421         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7422                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7423                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7424                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7425                         let peer_state = &mut *peer_state_lock;
7426                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7427                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7428                                         res.push((funding_txo.txid, Some(block_hash)));
7429                                 }
7430                         }
7431                 }
7432                 res
7433         }
7434
7435         fn transaction_unconfirmed(&self, txid: &Txid) {
7436                 let _persistence_guard =
7437                         PersistenceNotifierGuard::optionally_notify_skipping_background_events(
7438                                 self, || -> NotifyOption { NotifyOption::DoPersist });
7439                 self.do_chain_event(None, |channel| {
7440                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7441                                 if funding_txo.txid == *txid {
7442                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7443                                 } else { Ok((None, Vec::new(), None)) }
7444                         } else { Ok((None, Vec::new(), None)) }
7445                 });
7446         }
7447 }
7448
7449 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>
7450 where
7451         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7452         T::Target: BroadcasterInterface,
7453         ES::Target: EntropySource,
7454         NS::Target: NodeSigner,
7455         SP::Target: SignerProvider,
7456         F::Target: FeeEstimator,
7457         R::Target: Router,
7458         L::Target: Logger,
7459 {
7460         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7461         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7462         /// the function.
7463         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7464                         (&self, height_opt: Option<u32>, f: FN) {
7465                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7466                 // during initialization prior to the chain_monitor being fully configured in some cases.
7467                 // See the docs for `ChannelManagerReadArgs` for more.
7468
7469                 let mut failed_channels = Vec::new();
7470                 let mut timed_out_htlcs = Vec::new();
7471                 {
7472                         let per_peer_state = self.per_peer_state.read().unwrap();
7473                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7474                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7475                                 let peer_state = &mut *peer_state_lock;
7476                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7477                                 peer_state.channel_by_id.retain(|_, phase| {
7478                                         match phase {
7479                                                 // Retain unfunded channels.
7480                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7481                                                 ChannelPhase::Funded(channel) => {
7482                                                         let res = f(channel);
7483                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7484                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7485                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7486                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7487                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7488                                                                 }
7489                                                                 if let Some(channel_ready) = channel_ready_opt {
7490                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7491                                                                         if channel.context.is_usable() {
7492                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7493                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7494                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7495                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7496                                                                                                 msg,
7497                                                                                         });
7498                                                                                 }
7499                                                                         } else {
7500                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7501                                                                         }
7502                                                                 }
7503
7504                                                                 {
7505                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7506                                                                         emit_channel_ready_event!(pending_events, channel);
7507                                                                 }
7508
7509                                                                 if let Some(announcement_sigs) = announcement_sigs {
7510                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7511                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7512                                                                                 node_id: channel.context.get_counterparty_node_id(),
7513                                                                                 msg: announcement_sigs,
7514                                                                         });
7515                                                                         if let Some(height) = height_opt {
7516                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7517                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7518                                                                                                 msg: announcement,
7519                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7520                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7521                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7522                                                                                         });
7523                                                                                 }
7524                                                                         }
7525                                                                 }
7526                                                                 if channel.is_our_channel_ready() {
7527                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7528                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7529                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7530                                                                                 // can relay using the real SCID at relay-time (i.e.
7531                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7532                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7533                                                                                 // is always consistent.
7534                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7535                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7536                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7537                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7538                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7539                                                                         }
7540                                                                 }
7541                                                         } else if let Err(reason) = res {
7542                                                                 update_maps_on_chan_removal!(self, &channel.context);
7543                                                                 // It looks like our counterparty went on-chain or funding transaction was
7544                                                                 // reorged out of the main chain. Close the channel.
7545                                                                 failed_channels.push(channel.context.force_shutdown(true));
7546                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7547                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7548                                                                                 msg: update
7549                                                                         });
7550                                                                 }
7551                                                                 let reason_message = format!("{}", reason);
7552                                                                 self.issue_channel_close_events(&channel.context, reason);
7553                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7554                                                                         node_id: channel.context.get_counterparty_node_id(),
7555                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7556                                                                                 channel_id: channel.context.channel_id(),
7557                                                                                 data: reason_message,
7558                                                                         } },
7559                                                                 });
7560                                                                 return false;
7561                                                         }
7562                                                         true
7563                                                 }
7564                                         }
7565                                 });
7566                         }
7567                 }
7568
7569                 if let Some(height) = height_opt {
7570                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7571                                 payment.htlcs.retain(|htlc| {
7572                                         // If height is approaching the number of blocks we think it takes us to get
7573                                         // our commitment transaction confirmed before the HTLC expires, plus the
7574                                         // number of blocks we generally consider it to take to do a commitment update,
7575                                         // just give up on it and fail the HTLC.
7576                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7577                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7578                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7579
7580                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7581                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7582                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7583                                                 false
7584                                         } else { true }
7585                                 });
7586                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7587                         });
7588
7589                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7590                         intercepted_htlcs.retain(|_, htlc| {
7591                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7592                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7593                                                 short_channel_id: htlc.prev_short_channel_id,
7594                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7595                                                 htlc_id: htlc.prev_htlc_id,
7596                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7597                                                 phantom_shared_secret: None,
7598                                                 outpoint: htlc.prev_funding_outpoint,
7599                                         });
7600
7601                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7602                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7603                                                 _ => unreachable!(),
7604                                         };
7605                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7606                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7607                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7608                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7609                                         false
7610                                 } else { true }
7611                         });
7612                 }
7613
7614                 self.handle_init_event_channel_failures(failed_channels);
7615
7616                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7617                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7618                 }
7619         }
7620
7621         /// Gets a [`Future`] that completes when this [`ChannelManager`] may need to be persisted or
7622         /// may have events that need processing.
7623         ///
7624         /// In order to check if this [`ChannelManager`] needs persisting, call
7625         /// [`Self::get_and_clear_needs_persistence`].
7626         ///
7627         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7628         /// [`ChannelManager`] and should instead register actions to be taken later.
7629         pub fn get_event_or_persistence_needed_future(&self) -> Future {
7630                 self.event_persist_notifier.get_future()
7631         }
7632
7633         /// Returns true if this [`ChannelManager`] needs to be persisted.
7634         pub fn get_and_clear_needs_persistence(&self) -> bool {
7635                 self.needs_persist_flag.swap(false, Ordering::AcqRel)
7636         }
7637
7638         #[cfg(any(test, feature = "_test_utils"))]
7639         pub fn get_event_or_persist_condvar_value(&self) -> bool {
7640                 self.event_persist_notifier.notify_pending()
7641         }
7642
7643         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7644         /// [`chain::Confirm`] interfaces.
7645         pub fn current_best_block(&self) -> BestBlock {
7646                 self.best_block.read().unwrap().clone()
7647         }
7648
7649         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7650         /// [`ChannelManager`].
7651         pub fn node_features(&self) -> NodeFeatures {
7652                 provided_node_features(&self.default_configuration)
7653         }
7654
7655         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7656         /// [`ChannelManager`].
7657         ///
7658         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7659         /// or not. Thus, this method is not public.
7660         #[cfg(any(feature = "_test_utils", test))]
7661         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7662                 provided_invoice_features(&self.default_configuration)
7663         }
7664
7665         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7666         /// [`ChannelManager`].
7667         pub fn channel_features(&self) -> ChannelFeatures {
7668                 provided_channel_features(&self.default_configuration)
7669         }
7670
7671         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7672         /// [`ChannelManager`].
7673         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7674                 provided_channel_type_features(&self.default_configuration)
7675         }
7676
7677         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7678         /// [`ChannelManager`].
7679         pub fn init_features(&self) -> InitFeatures {
7680                 provided_init_features(&self.default_configuration)
7681         }
7682 }
7683
7684 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7685         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7686 where
7687         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7688         T::Target: BroadcasterInterface,
7689         ES::Target: EntropySource,
7690         NS::Target: NodeSigner,
7691         SP::Target: SignerProvider,
7692         F::Target: FeeEstimator,
7693         R::Target: Router,
7694         L::Target: Logger,
7695 {
7696         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7697                 // Note that we never need to persist the updated ChannelManager for an inbound
7698                 // open_channel message - pre-funded channels are never written so there should be no
7699                 // change to the contents.
7700                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7701                         let res = self.internal_open_channel(counterparty_node_id, msg);
7702                         let persist = match &res {
7703                                 Err(e) if e.closes_channel() => {
7704                                         debug_assert!(false, "We shouldn't close a new channel");
7705                                         NotifyOption::DoPersist
7706                                 },
7707                                 _ => NotifyOption::SkipPersistHandleEvents,
7708                         };
7709                         let _ = handle_error!(self, res, *counterparty_node_id);
7710                         persist
7711                 });
7712         }
7713
7714         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7715                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7716                         "Dual-funded channels not supported".to_owned(),
7717                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7718         }
7719
7720         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7721                 // Note that we never need to persist the updated ChannelManager for an inbound
7722                 // accept_channel message - pre-funded channels are never written so there should be no
7723                 // change to the contents.
7724                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7725                         let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7726                         NotifyOption::SkipPersistHandleEvents
7727                 });
7728         }
7729
7730         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7731                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7732                         "Dual-funded channels not supported".to_owned(),
7733                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7734         }
7735
7736         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7737                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7738                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7739         }
7740
7741         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7742                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7743                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7744         }
7745
7746         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7747                 // Note that we never need to persist the updated ChannelManager for an inbound
7748                 // channel_ready message - while the channel's state will change, any channel_ready message
7749                 // will ultimately be re-sent on startup and the `ChannelMonitor` won't be updated so we
7750                 // will not force-close the channel on startup.
7751                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7752                         let res = self.internal_channel_ready(counterparty_node_id, msg);
7753                         let persist = match &res {
7754                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7755                                 _ => NotifyOption::SkipPersistHandleEvents,
7756                         };
7757                         let _ = handle_error!(self, res, *counterparty_node_id);
7758                         persist
7759                 });
7760         }
7761
7762         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7763                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7764                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7765         }
7766
7767         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7768                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7769                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7770         }
7771
7772         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7773                 // Note that we never need to persist the updated ChannelManager for an inbound
7774                 // update_add_htlc message - the message itself doesn't change our channel state only the
7775                 // `commitment_signed` message afterwards will.
7776                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7777                         let res = self.internal_update_add_htlc(counterparty_node_id, msg);
7778                         let persist = match &res {
7779                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7780                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7781                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7782                         };
7783                         let _ = handle_error!(self, res, *counterparty_node_id);
7784                         persist
7785                 });
7786         }
7787
7788         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7789                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7790                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7791         }
7792
7793         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7794                 // Note that we never need to persist the updated ChannelManager for an inbound
7795                 // update_fail_htlc message - the message itself doesn't change our channel state only the
7796                 // `commitment_signed` message afterwards will.
7797                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7798                         let res = self.internal_update_fail_htlc(counterparty_node_id, msg);
7799                         let persist = match &res {
7800                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7801                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7802                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7803                         };
7804                         let _ = handle_error!(self, res, *counterparty_node_id);
7805                         persist
7806                 });
7807         }
7808
7809         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7810                 // Note that we never need to persist the updated ChannelManager for an inbound
7811                 // update_fail_malformed_htlc message - the message itself doesn't change our channel state
7812                 // only the `commitment_signed` message afterwards will.
7813                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7814                         let res = self.internal_update_fail_malformed_htlc(counterparty_node_id, msg);
7815                         let persist = match &res {
7816                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7817                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7818                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7819                         };
7820                         let _ = handle_error!(self, res, *counterparty_node_id);
7821                         persist
7822                 });
7823         }
7824
7825         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7826                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7827                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7828         }
7829
7830         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7831                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7832                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7833         }
7834
7835         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7836                 // Note that we never need to persist the updated ChannelManager for an inbound
7837                 // update_fee message - the message itself doesn't change our channel state only the
7838                 // `commitment_signed` message afterwards will.
7839                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7840                         let res = self.internal_update_fee(counterparty_node_id, msg);
7841                         let persist = match &res {
7842                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7843                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7844                                 Ok(()) => NotifyOption::SkipPersistNoEvents,
7845                         };
7846                         let _ = handle_error!(self, res, *counterparty_node_id);
7847                         persist
7848                 });
7849         }
7850
7851         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7852                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7853                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7854         }
7855
7856         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7857                 PersistenceNotifierGuard::optionally_notify(self, || {
7858                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7859                                 persist
7860                         } else {
7861                                 NotifyOption::DoPersist
7862                         }
7863                 });
7864         }
7865
7866         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7867                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
7868                         let res = self.internal_channel_reestablish(counterparty_node_id, msg);
7869                         let persist = match &res {
7870                                 Err(e) if e.closes_channel() => NotifyOption::DoPersist,
7871                                 Err(_) => NotifyOption::SkipPersistHandleEvents,
7872                                 Ok(persist) => *persist,
7873                         };
7874                         let _ = handle_error!(self, res, *counterparty_node_id);
7875                         persist
7876                 });
7877         }
7878
7879         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7880                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(
7881                         self, || NotifyOption::SkipPersistHandleEvents);
7882
7883                 let mut failed_channels = Vec::new();
7884                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7885                 let remove_peer = {
7886                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7887                                 log_pubkey!(counterparty_node_id));
7888                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7889                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7890                                 let peer_state = &mut *peer_state_lock;
7891                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7892                                 peer_state.channel_by_id.retain(|_, phase| {
7893                                         let context = match phase {
7894                                                 ChannelPhase::Funded(chan) => {
7895                                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7896                                                         // We only retain funded channels that are not shutdown.
7897                                                         if !chan.is_shutdown() {
7898                                                                 return true;
7899                                                         }
7900                                                         &chan.context
7901                                                 },
7902                                                 // Unfunded channels will always be removed.
7903                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7904                                                         &chan.context
7905                                                 },
7906                                                 ChannelPhase::UnfundedInboundV1(chan) => {
7907                                                         &chan.context
7908                                                 },
7909                                         };
7910                                         // Clean up for removal.
7911                                         update_maps_on_chan_removal!(self, &context);
7912                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
7913                                         false
7914                                 });
7915                                 // Note that we don't bother generating any events for pre-accept channels -
7916                                 // they're not considered "channels" yet from the PoV of our events interface.
7917                                 peer_state.inbound_channel_request_by_id.clear();
7918                                 pending_msg_events.retain(|msg| {
7919                                         match msg {
7920                                                 // V1 Channel Establishment
7921                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7922                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7923                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7924                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7925                                                 // V2 Channel Establishment
7926                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7927                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7928                                                 // Common Channel Establishment
7929                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7930                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7931                                                 // Interactive Transaction Construction
7932                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7933                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7934                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7935                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7936                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7937                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7938                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7939                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7940                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7941                                                 // Channel Operations
7942                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7943                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7944                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7945                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7946                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7947                                                 &events::MessageSendEvent::HandleError { .. } => false,
7948                                                 // Gossip
7949                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7950                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7951                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7952                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7953                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7954                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7955                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7956                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7957                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7958                                         }
7959                                 });
7960                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7961                                 peer_state.is_connected = false;
7962                                 peer_state.ok_to_remove(true)
7963                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7964                 };
7965                 if remove_peer {
7966                         per_peer_state.remove(counterparty_node_id);
7967                 }
7968                 mem::drop(per_peer_state);
7969
7970                 for failure in failed_channels.drain(..) {
7971                         self.finish_force_close_channel(failure);
7972                 }
7973         }
7974
7975         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7976                 if !init_msg.features.supports_static_remote_key() {
7977                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7978                         return Err(());
7979                 }
7980
7981                 let mut res = Ok(());
7982
7983                 PersistenceNotifierGuard::optionally_notify(self, || {
7984                         // If we have too many peers connected which don't have funded channels, disconnect the
7985                         // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7986                         // unfunded channels taking up space in memory for disconnected peers, we still let new
7987                         // peers connect, but we'll reject new channels from them.
7988                         let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7989                         let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7990
7991                         {
7992                                 let mut peer_state_lock = self.per_peer_state.write().unwrap();
7993                                 match peer_state_lock.entry(counterparty_node_id.clone()) {
7994                                         hash_map::Entry::Vacant(e) => {
7995                                                 if inbound_peer_limited {
7996                                                         res = Err(());
7997                                                         return NotifyOption::SkipPersistNoEvents;
7998                                                 }
7999                                                 e.insert(Mutex::new(PeerState {
8000                                                         channel_by_id: HashMap::new(),
8001                                                         inbound_channel_request_by_id: HashMap::new(),
8002                                                         latest_features: init_msg.features.clone(),
8003                                                         pending_msg_events: Vec::new(),
8004                                                         in_flight_monitor_updates: BTreeMap::new(),
8005                                                         monitor_update_blocked_actions: BTreeMap::new(),
8006                                                         actions_blocking_raa_monitor_updates: BTreeMap::new(),
8007                                                         is_connected: true,
8008                                                 }));
8009                                         },
8010                                         hash_map::Entry::Occupied(e) => {
8011                                                 let mut peer_state = e.get().lock().unwrap();
8012                                                 peer_state.latest_features = init_msg.features.clone();
8013
8014                                                 let best_block_height = self.best_block.read().unwrap().height();
8015                                                 if inbound_peer_limited &&
8016                                                         Self::unfunded_channel_count(&*peer_state, best_block_height) ==
8017                                                         peer_state.channel_by_id.len()
8018                                                 {
8019                                                         res = Err(());
8020                                                         return NotifyOption::SkipPersistNoEvents;
8021                                                 }
8022
8023                                                 debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
8024                                                 peer_state.is_connected = true;
8025                                         },
8026                                 }
8027                         }
8028
8029                         log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
8030
8031                         let per_peer_state = self.per_peer_state.read().unwrap();
8032                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
8033                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8034                                 let peer_state = &mut *peer_state_lock;
8035                                 let pending_msg_events = &mut peer_state.pending_msg_events;
8036
8037                                 peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
8038                                         if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
8039                                                 // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
8040                                                 // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
8041                                                 // worry about closing and removing them.
8042                                                 debug_assert!(false);
8043                                                 None
8044                                         }
8045                                 ).for_each(|chan| {
8046                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
8047                                                 node_id: chan.context.get_counterparty_node_id(),
8048                                                 msg: chan.get_channel_reestablish(&self.logger),
8049                                         });
8050                                 });
8051                         }
8052
8053                         return NotifyOption::SkipPersistHandleEvents;
8054                         //TODO: Also re-broadcast announcement_signatures
8055                 });
8056                 res
8057         }
8058
8059         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
8060                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
8061
8062                 match &msg.data as &str {
8063                         "cannot co-op close channel w/ active htlcs"|
8064                         "link failed to shutdown" =>
8065                         {
8066                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
8067                                 // send one while HTLCs are still present. The issue is tracked at
8068                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
8069                                 // to fix it but none so far have managed to land upstream. The issue appears to be
8070                                 // very low priority for the LND team despite being marked "P1".
8071                                 // We're not going to bother handling this in a sensible way, instead simply
8072                                 // repeating the Shutdown message on repeat until morale improves.
8073                                 if !msg.channel_id.is_zero() {
8074                                         let per_peer_state = self.per_peer_state.read().unwrap();
8075                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8076                                         if peer_state_mutex_opt.is_none() { return; }
8077                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
8078                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
8079                                                 if let Some(msg) = chan.get_outbound_shutdown() {
8080                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
8081                                                                 node_id: *counterparty_node_id,
8082                                                                 msg,
8083                                                         });
8084                                                 }
8085                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
8086                                                         node_id: *counterparty_node_id,
8087                                                         action: msgs::ErrorAction::SendWarningMessage {
8088                                                                 msg: msgs::WarningMessage {
8089                                                                         channel_id: msg.channel_id,
8090                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
8091                                                                 },
8092                                                                 log_level: Level::Trace,
8093                                                         }
8094                                                 });
8095                                         }
8096                                 }
8097                                 return;
8098                         }
8099                         _ => {}
8100                 }
8101
8102                 if msg.channel_id.is_zero() {
8103                         let channel_ids: Vec<ChannelId> = {
8104                                 let per_peer_state = self.per_peer_state.read().unwrap();
8105                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8106                                 if peer_state_mutex_opt.is_none() { return; }
8107                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8108                                 let peer_state = &mut *peer_state_lock;
8109                                 // Note that we don't bother generating any events for pre-accept channels -
8110                                 // they're not considered "channels" yet from the PoV of our events interface.
8111                                 peer_state.inbound_channel_request_by_id.clear();
8112                                 peer_state.channel_by_id.keys().cloned().collect()
8113                         };
8114                         for channel_id in channel_ids {
8115                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8116                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
8117                         }
8118                 } else {
8119                         {
8120                                 // First check if we can advance the channel type and try again.
8121                                 let per_peer_state = self.per_peer_state.read().unwrap();
8122                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
8123                                 if peer_state_mutex_opt.is_none() { return; }
8124                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
8125                                 let peer_state = &mut *peer_state_lock;
8126                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
8127                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
8128                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
8129                                                         node_id: *counterparty_node_id,
8130                                                         msg,
8131                                                 });
8132                                                 return;
8133                                         }
8134                                 }
8135                         }
8136
8137                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
8138                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
8139                 }
8140         }
8141
8142         fn provided_node_features(&self) -> NodeFeatures {
8143                 provided_node_features(&self.default_configuration)
8144         }
8145
8146         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
8147                 provided_init_features(&self.default_configuration)
8148         }
8149
8150         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
8151                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
8152         }
8153
8154         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
8155                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8156                         "Dual-funded channels not supported".to_owned(),
8157                          msg.channel_id.clone())), *counterparty_node_id);
8158         }
8159
8160         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
8161                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8162                         "Dual-funded channels not supported".to_owned(),
8163                          msg.channel_id.clone())), *counterparty_node_id);
8164         }
8165
8166         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
8167                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8168                         "Dual-funded channels not supported".to_owned(),
8169                          msg.channel_id.clone())), *counterparty_node_id);
8170         }
8171
8172         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
8173                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8174                         "Dual-funded channels not supported".to_owned(),
8175                          msg.channel_id.clone())), *counterparty_node_id);
8176         }
8177
8178         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
8179                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8180                         "Dual-funded channels not supported".to_owned(),
8181                          msg.channel_id.clone())), *counterparty_node_id);
8182         }
8183
8184         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
8185                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8186                         "Dual-funded channels not supported".to_owned(),
8187                          msg.channel_id.clone())), *counterparty_node_id);
8188         }
8189
8190         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
8191                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8192                         "Dual-funded channels not supported".to_owned(),
8193                          msg.channel_id.clone())), *counterparty_node_id);
8194         }
8195
8196         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
8197                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8198                         "Dual-funded channels not supported".to_owned(),
8199                          msg.channel_id.clone())), *counterparty_node_id);
8200         }
8201
8202         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
8203                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
8204                         "Dual-funded channels not supported".to_owned(),
8205                          msg.channel_id.clone())), *counterparty_node_id);
8206         }
8207 }
8208
8209 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
8210 /// [`ChannelManager`].
8211 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
8212         let mut node_features = provided_init_features(config).to_context();
8213         node_features.set_keysend_optional();
8214         node_features
8215 }
8216
8217 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
8218 /// [`ChannelManager`].
8219 ///
8220 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
8221 /// or not. Thus, this method is not public.
8222 #[cfg(any(feature = "_test_utils", test))]
8223 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
8224         provided_init_features(config).to_context()
8225 }
8226
8227 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
8228 /// [`ChannelManager`].
8229 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
8230         provided_init_features(config).to_context()
8231 }
8232
8233 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
8234 /// [`ChannelManager`].
8235 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
8236         ChannelTypeFeatures::from_init(&provided_init_features(config))
8237 }
8238
8239 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
8240 /// [`ChannelManager`].
8241 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
8242         // Note that if new features are added here which other peers may (eventually) require, we
8243         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
8244         // [`ErroringMessageHandler`].
8245         let mut features = InitFeatures::empty();
8246         features.set_data_loss_protect_required();
8247         features.set_upfront_shutdown_script_optional();
8248         features.set_variable_length_onion_required();
8249         features.set_static_remote_key_required();
8250         features.set_payment_secret_required();
8251         features.set_basic_mpp_optional();
8252         features.set_wumbo_optional();
8253         features.set_shutdown_any_segwit_optional();
8254         features.set_channel_type_optional();
8255         features.set_scid_privacy_optional();
8256         features.set_zero_conf_optional();
8257         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
8258                 features.set_anchors_zero_fee_htlc_tx_optional();
8259         }
8260         features
8261 }
8262
8263 const SERIALIZATION_VERSION: u8 = 1;
8264 const MIN_SERIALIZATION_VERSION: u8 = 1;
8265
8266 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
8267         (2, fee_base_msat, required),
8268         (4, fee_proportional_millionths, required),
8269         (6, cltv_expiry_delta, required),
8270 });
8271
8272 impl_writeable_tlv_based!(ChannelCounterparty, {
8273         (2, node_id, required),
8274         (4, features, required),
8275         (6, unspendable_punishment_reserve, required),
8276         (8, forwarding_info, option),
8277         (9, outbound_htlc_minimum_msat, option),
8278         (11, outbound_htlc_maximum_msat, option),
8279 });
8280
8281 impl Writeable for ChannelDetails {
8282         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8283                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8284                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8285                 let user_channel_id_low = self.user_channel_id as u64;
8286                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
8287                 write_tlv_fields!(writer, {
8288                         (1, self.inbound_scid_alias, option),
8289                         (2, self.channel_id, required),
8290                         (3, self.channel_type, option),
8291                         (4, self.counterparty, required),
8292                         (5, self.outbound_scid_alias, option),
8293                         (6, self.funding_txo, option),
8294                         (7, self.config, option),
8295                         (8, self.short_channel_id, option),
8296                         (9, self.confirmations, option),
8297                         (10, self.channel_value_satoshis, required),
8298                         (12, self.unspendable_punishment_reserve, option),
8299                         (14, user_channel_id_low, required),
8300                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
8301                         (18, self.outbound_capacity_msat, required),
8302                         (19, self.next_outbound_htlc_limit_msat, required),
8303                         (20, self.inbound_capacity_msat, required),
8304                         (21, self.next_outbound_htlc_minimum_msat, required),
8305                         (22, self.confirmations_required, option),
8306                         (24, self.force_close_spend_delay, option),
8307                         (26, self.is_outbound, required),
8308                         (28, self.is_channel_ready, required),
8309                         (30, self.is_usable, required),
8310                         (32, self.is_public, required),
8311                         (33, self.inbound_htlc_minimum_msat, option),
8312                         (35, self.inbound_htlc_maximum_msat, option),
8313                         (37, user_channel_id_high_opt, option),
8314                         (39, self.feerate_sat_per_1000_weight, option),
8315                         (41, self.channel_shutdown_state, option),
8316                 });
8317                 Ok(())
8318         }
8319 }
8320
8321 impl Readable for ChannelDetails {
8322         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8323                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8324                         (1, inbound_scid_alias, option),
8325                         (2, channel_id, required),
8326                         (3, channel_type, option),
8327                         (4, counterparty, required),
8328                         (5, outbound_scid_alias, option),
8329                         (6, funding_txo, option),
8330                         (7, config, option),
8331                         (8, short_channel_id, option),
8332                         (9, confirmations, option),
8333                         (10, channel_value_satoshis, required),
8334                         (12, unspendable_punishment_reserve, option),
8335                         (14, user_channel_id_low, required),
8336                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8337                         (18, outbound_capacity_msat, required),
8338                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8339                         // filled in, so we can safely unwrap it here.
8340                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8341                         (20, inbound_capacity_msat, required),
8342                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8343                         (22, confirmations_required, option),
8344                         (24, force_close_spend_delay, option),
8345                         (26, is_outbound, required),
8346                         (28, is_channel_ready, required),
8347                         (30, is_usable, required),
8348                         (32, is_public, required),
8349                         (33, inbound_htlc_minimum_msat, option),
8350                         (35, inbound_htlc_maximum_msat, option),
8351                         (37, user_channel_id_high_opt, option),
8352                         (39, feerate_sat_per_1000_weight, option),
8353                         (41, channel_shutdown_state, option),
8354                 });
8355
8356                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8357                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8358                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8359                 let user_channel_id = user_channel_id_low as u128 +
8360                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8361
8362                 let _balance_msat: Option<u64> = _balance_msat;
8363
8364                 Ok(Self {
8365                         inbound_scid_alias,
8366                         channel_id: channel_id.0.unwrap(),
8367                         channel_type,
8368                         counterparty: counterparty.0.unwrap(),
8369                         outbound_scid_alias,
8370                         funding_txo,
8371                         config,
8372                         short_channel_id,
8373                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8374                         unspendable_punishment_reserve,
8375                         user_channel_id,
8376                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8377                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8378                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8379                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8380                         confirmations_required,
8381                         confirmations,
8382                         force_close_spend_delay,
8383                         is_outbound: is_outbound.0.unwrap(),
8384                         is_channel_ready: is_channel_ready.0.unwrap(),
8385                         is_usable: is_usable.0.unwrap(),
8386                         is_public: is_public.0.unwrap(),
8387                         inbound_htlc_minimum_msat,
8388                         inbound_htlc_maximum_msat,
8389                         feerate_sat_per_1000_weight,
8390                         channel_shutdown_state,
8391                 })
8392         }
8393 }
8394
8395 impl_writeable_tlv_based!(PhantomRouteHints, {
8396         (2, channels, required_vec),
8397         (4, phantom_scid, required),
8398         (6, real_node_pubkey, required),
8399 });
8400
8401 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8402         (0, Forward) => {
8403                 (0, onion_packet, required),
8404                 (2, short_channel_id, required),
8405         },
8406         (1, Receive) => {
8407                 (0, payment_data, required),
8408                 (1, phantom_shared_secret, option),
8409                 (2, incoming_cltv_expiry, required),
8410                 (3, payment_metadata, option),
8411                 (5, custom_tlvs, optional_vec),
8412         },
8413         (2, ReceiveKeysend) => {
8414                 (0, payment_preimage, required),
8415                 (2, incoming_cltv_expiry, required),
8416                 (3, payment_metadata, option),
8417                 (4, payment_data, option), // Added in 0.0.116
8418                 (5, custom_tlvs, optional_vec),
8419         },
8420 ;);
8421
8422 impl_writeable_tlv_based!(PendingHTLCInfo, {
8423         (0, routing, required),
8424         (2, incoming_shared_secret, required),
8425         (4, payment_hash, required),
8426         (6, outgoing_amt_msat, required),
8427         (8, outgoing_cltv_value, required),
8428         (9, incoming_amt_msat, option),
8429         (10, skimmed_fee_msat, option),
8430 });
8431
8432
8433 impl Writeable for HTLCFailureMsg {
8434         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8435                 match self {
8436                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8437                                 0u8.write(writer)?;
8438                                 channel_id.write(writer)?;
8439                                 htlc_id.write(writer)?;
8440                                 reason.write(writer)?;
8441                         },
8442                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8443                                 channel_id, htlc_id, sha256_of_onion, failure_code
8444                         }) => {
8445                                 1u8.write(writer)?;
8446                                 channel_id.write(writer)?;
8447                                 htlc_id.write(writer)?;
8448                                 sha256_of_onion.write(writer)?;
8449                                 failure_code.write(writer)?;
8450                         },
8451                 }
8452                 Ok(())
8453         }
8454 }
8455
8456 impl Readable for HTLCFailureMsg {
8457         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8458                 let id: u8 = Readable::read(reader)?;
8459                 match id {
8460                         0 => {
8461                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8462                                         channel_id: Readable::read(reader)?,
8463                                         htlc_id: Readable::read(reader)?,
8464                                         reason: Readable::read(reader)?,
8465                                 }))
8466                         },
8467                         1 => {
8468                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8469                                         channel_id: Readable::read(reader)?,
8470                                         htlc_id: Readable::read(reader)?,
8471                                         sha256_of_onion: Readable::read(reader)?,
8472                                         failure_code: Readable::read(reader)?,
8473                                 }))
8474                         },
8475                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8476                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8477                         // messages contained in the variants.
8478                         // In version 0.0.101, support for reading the variants with these types was added, and
8479                         // we should migrate to writing these variants when UpdateFailHTLC or
8480                         // UpdateFailMalformedHTLC get TLV fields.
8481                         2 => {
8482                                 let length: BigSize = Readable::read(reader)?;
8483                                 let mut s = FixedLengthReader::new(reader, length.0);
8484                                 let res = Readable::read(&mut s)?;
8485                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8486                                 Ok(HTLCFailureMsg::Relay(res))
8487                         },
8488                         3 => {
8489                                 let length: BigSize = Readable::read(reader)?;
8490                                 let mut s = FixedLengthReader::new(reader, length.0);
8491                                 let res = Readable::read(&mut s)?;
8492                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8493                                 Ok(HTLCFailureMsg::Malformed(res))
8494                         },
8495                         _ => Err(DecodeError::UnknownRequiredFeature),
8496                 }
8497         }
8498 }
8499
8500 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8501         (0, Forward),
8502         (1, Fail),
8503 );
8504
8505 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8506         (0, short_channel_id, required),
8507         (1, phantom_shared_secret, option),
8508         (2, outpoint, required),
8509         (4, htlc_id, required),
8510         (6, incoming_packet_shared_secret, required),
8511         (7, user_channel_id, option),
8512 });
8513
8514 impl Writeable for ClaimableHTLC {
8515         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8516                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8517                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8518                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8519                 };
8520                 write_tlv_fields!(writer, {
8521                         (0, self.prev_hop, required),
8522                         (1, self.total_msat, required),
8523                         (2, self.value, required),
8524                         (3, self.sender_intended_value, required),
8525                         (4, payment_data, option),
8526                         (5, self.total_value_received, option),
8527                         (6, self.cltv_expiry, required),
8528                         (8, keysend_preimage, option),
8529                         (10, self.counterparty_skimmed_fee_msat, option),
8530                 });
8531                 Ok(())
8532         }
8533 }
8534
8535 impl Readable for ClaimableHTLC {
8536         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8537                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8538                         (0, prev_hop, required),
8539                         (1, total_msat, option),
8540                         (2, value_ser, required),
8541                         (3, sender_intended_value, option),
8542                         (4, payment_data_opt, option),
8543                         (5, total_value_received, option),
8544                         (6, cltv_expiry, required),
8545                         (8, keysend_preimage, option),
8546                         (10, counterparty_skimmed_fee_msat, option),
8547                 });
8548                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8549                 let value = value_ser.0.unwrap();
8550                 let onion_payload = match keysend_preimage {
8551                         Some(p) => {
8552                                 if payment_data.is_some() {
8553                                         return Err(DecodeError::InvalidValue)
8554                                 }
8555                                 if total_msat.is_none() {
8556                                         total_msat = Some(value);
8557                                 }
8558                                 OnionPayload::Spontaneous(p)
8559                         },
8560                         None => {
8561                                 if total_msat.is_none() {
8562                                         if payment_data.is_none() {
8563                                                 return Err(DecodeError::InvalidValue)
8564                                         }
8565                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8566                                 }
8567                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8568                         },
8569                 };
8570                 Ok(Self {
8571                         prev_hop: prev_hop.0.unwrap(),
8572                         timer_ticks: 0,
8573                         value,
8574                         sender_intended_value: sender_intended_value.unwrap_or(value),
8575                         total_value_received,
8576                         total_msat: total_msat.unwrap(),
8577                         onion_payload,
8578                         cltv_expiry: cltv_expiry.0.unwrap(),
8579                         counterparty_skimmed_fee_msat,
8580                 })
8581         }
8582 }
8583
8584 impl Readable for HTLCSource {
8585         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8586                 let id: u8 = Readable::read(reader)?;
8587                 match id {
8588                         0 => {
8589                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8590                                 let mut first_hop_htlc_msat: u64 = 0;
8591                                 let mut path_hops = Vec::new();
8592                                 let mut payment_id = None;
8593                                 let mut payment_params: Option<PaymentParameters> = None;
8594                                 let mut blinded_tail: Option<BlindedTail> = None;
8595                                 read_tlv_fields!(reader, {
8596                                         (0, session_priv, required),
8597                                         (1, payment_id, option),
8598                                         (2, first_hop_htlc_msat, required),
8599                                         (4, path_hops, required_vec),
8600                                         (5, payment_params, (option: ReadableArgs, 0)),
8601                                         (6, blinded_tail, option),
8602                                 });
8603                                 if payment_id.is_none() {
8604                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8605                                         // instead.
8606                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8607                                 }
8608                                 let path = Path { hops: path_hops, blinded_tail };
8609                                 if path.hops.len() == 0 {
8610                                         return Err(DecodeError::InvalidValue);
8611                                 }
8612                                 if let Some(params) = payment_params.as_mut() {
8613                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8614                                                 if final_cltv_expiry_delta == &0 {
8615                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8616                                                 }
8617                                         }
8618                                 }
8619                                 Ok(HTLCSource::OutboundRoute {
8620                                         session_priv: session_priv.0.unwrap(),
8621                                         first_hop_htlc_msat,
8622                                         path,
8623                                         payment_id: payment_id.unwrap(),
8624                                 })
8625                         }
8626                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8627                         _ => Err(DecodeError::UnknownRequiredFeature),
8628                 }
8629         }
8630 }
8631
8632 impl Writeable for HTLCSource {
8633         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8634                 match self {
8635                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8636                                 0u8.write(writer)?;
8637                                 let payment_id_opt = Some(payment_id);
8638                                 write_tlv_fields!(writer, {
8639                                         (0, session_priv, required),
8640                                         (1, payment_id_opt, option),
8641                                         (2, first_hop_htlc_msat, required),
8642                                         // 3 was previously used to write a PaymentSecret for the payment.
8643                                         (4, path.hops, required_vec),
8644                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8645                                         (6, path.blinded_tail, option),
8646                                  });
8647                         }
8648                         HTLCSource::PreviousHopData(ref field) => {
8649                                 1u8.write(writer)?;
8650                                 field.write(writer)?;
8651                         }
8652                 }
8653                 Ok(())
8654         }
8655 }
8656
8657 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8658         (0, forward_info, required),
8659         (1, prev_user_channel_id, (default_value, 0)),
8660         (2, prev_short_channel_id, required),
8661         (4, prev_htlc_id, required),
8662         (6, prev_funding_outpoint, required),
8663 });
8664
8665 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8666         (1, FailHTLC) => {
8667                 (0, htlc_id, required),
8668                 (2, err_packet, required),
8669         };
8670         (0, AddHTLC)
8671 );
8672
8673 impl_writeable_tlv_based!(PendingInboundPayment, {
8674         (0, payment_secret, required),
8675         (2, expiry_time, required),
8676         (4, user_payment_id, required),
8677         (6, payment_preimage, required),
8678         (8, min_value_msat, required),
8679 });
8680
8681 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>
8682 where
8683         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8684         T::Target: BroadcasterInterface,
8685         ES::Target: EntropySource,
8686         NS::Target: NodeSigner,
8687         SP::Target: SignerProvider,
8688         F::Target: FeeEstimator,
8689         R::Target: Router,
8690         L::Target: Logger,
8691 {
8692         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8693                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8694
8695                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8696
8697                 self.genesis_hash.write(writer)?;
8698                 {
8699                         let best_block = self.best_block.read().unwrap();
8700                         best_block.height().write(writer)?;
8701                         best_block.block_hash().write(writer)?;
8702                 }
8703
8704                 let mut serializable_peer_count: u64 = 0;
8705                 {
8706                         let per_peer_state = self.per_peer_state.read().unwrap();
8707                         let mut number_of_funded_channels = 0;
8708                         for (_, peer_state_mutex) in per_peer_state.iter() {
8709                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8710                                 let peer_state = &mut *peer_state_lock;
8711                                 if !peer_state.ok_to_remove(false) {
8712                                         serializable_peer_count += 1;
8713                                 }
8714
8715                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8716                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_initiated() } else { false }
8717                                 ).count();
8718                         }
8719
8720                         (number_of_funded_channels as u64).write(writer)?;
8721
8722                         for (_, peer_state_mutex) in per_peer_state.iter() {
8723                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8724                                 let peer_state = &mut *peer_state_lock;
8725                                 for channel in peer_state.channel_by_id.iter().filter_map(
8726                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8727                                                 if channel.context.is_funding_initiated() { Some(channel) } else { None }
8728                                         } else { None }
8729                                 ) {
8730                                         channel.write(writer)?;
8731                                 }
8732                         }
8733                 }
8734
8735                 {
8736                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8737                         (forward_htlcs.len() as u64).write(writer)?;
8738                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8739                                 short_channel_id.write(writer)?;
8740                                 (pending_forwards.len() as u64).write(writer)?;
8741                                 for forward in pending_forwards {
8742                                         forward.write(writer)?;
8743                                 }
8744                         }
8745                 }
8746
8747                 let per_peer_state = self.per_peer_state.write().unwrap();
8748
8749                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8750                 let claimable_payments = self.claimable_payments.lock().unwrap();
8751                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8752
8753                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8754                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8755                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8756                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8757                         payment_hash.write(writer)?;
8758                         (payment.htlcs.len() as u64).write(writer)?;
8759                         for htlc in payment.htlcs.iter() {
8760                                 htlc.write(writer)?;
8761                         }
8762                         htlc_purposes.push(&payment.purpose);
8763                         htlc_onion_fields.push(&payment.onion_fields);
8764                 }
8765
8766                 let mut monitor_update_blocked_actions_per_peer = None;
8767                 let mut peer_states = Vec::new();
8768                 for (_, peer_state_mutex) in per_peer_state.iter() {
8769                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8770                         // of a lockorder violation deadlock - no other thread can be holding any
8771                         // per_peer_state lock at all.
8772                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8773                 }
8774
8775                 (serializable_peer_count).write(writer)?;
8776                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8777                         // Peers which we have no channels to should be dropped once disconnected. As we
8778                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8779                         // consider all peers as disconnected here. There's therefore no need write peers with
8780                         // no channels.
8781                         if !peer_state.ok_to_remove(false) {
8782                                 peer_pubkey.write(writer)?;
8783                                 peer_state.latest_features.write(writer)?;
8784                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8785                                         monitor_update_blocked_actions_per_peer
8786                                                 .get_or_insert_with(Vec::new)
8787                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8788                                 }
8789                         }
8790                 }
8791
8792                 let events = self.pending_events.lock().unwrap();
8793                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8794                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8795                 // refuse to read the new ChannelManager.
8796                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8797                 if events_not_backwards_compatible {
8798                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8799                         // well save the space and not write any events here.
8800                         0u64.write(writer)?;
8801                 } else {
8802                         (events.len() as u64).write(writer)?;
8803                         for (event, _) in events.iter() {
8804                                 event.write(writer)?;
8805                         }
8806                 }
8807
8808                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8809                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8810                 // the closing monitor updates were always effectively replayed on startup (either directly
8811                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8812                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8813                 0u64.write(writer)?;
8814
8815                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8816                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8817                 // likely to be identical.
8818                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8819                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8820
8821                 (pending_inbound_payments.len() as u64).write(writer)?;
8822                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8823                         hash.write(writer)?;
8824                         pending_payment.write(writer)?;
8825                 }
8826
8827                 // For backwards compat, write the session privs and their total length.
8828                 let mut num_pending_outbounds_compat: u64 = 0;
8829                 for (_, outbound) in pending_outbound_payments.iter() {
8830                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8831                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8832                         }
8833                 }
8834                 num_pending_outbounds_compat.write(writer)?;
8835                 for (_, outbound) in pending_outbound_payments.iter() {
8836                         match outbound {
8837                                 PendingOutboundPayment::Legacy { session_privs } |
8838                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8839                                         for session_priv in session_privs.iter() {
8840                                                 session_priv.write(writer)?;
8841                                         }
8842                                 }
8843                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8844                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8845                                 PendingOutboundPayment::Fulfilled { .. } => {},
8846                                 PendingOutboundPayment::Abandoned { .. } => {},
8847                         }
8848                 }
8849
8850                 // Encode without retry info for 0.0.101 compatibility.
8851                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8852                 for (id, outbound) in pending_outbound_payments.iter() {
8853                         match outbound {
8854                                 PendingOutboundPayment::Legacy { session_privs } |
8855                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8856                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8857                                 },
8858                                 _ => {},
8859                         }
8860                 }
8861
8862                 let mut pending_intercepted_htlcs = None;
8863                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8864                 if our_pending_intercepts.len() != 0 {
8865                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8866                 }
8867
8868                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8869                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8870                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8871                         // map. Thus, if there are no entries we skip writing a TLV for it.
8872                         pending_claiming_payments = None;
8873                 }
8874
8875                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8876                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8877                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8878                                 if !updates.is_empty() {
8879                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8880                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8881                                 }
8882                         }
8883                 }
8884
8885                 write_tlv_fields!(writer, {
8886                         (1, pending_outbound_payments_no_retry, required),
8887                         (2, pending_intercepted_htlcs, option),
8888                         (3, pending_outbound_payments, required),
8889                         (4, pending_claiming_payments, option),
8890                         (5, self.our_network_pubkey, required),
8891                         (6, monitor_update_blocked_actions_per_peer, option),
8892                         (7, self.fake_scid_rand_bytes, required),
8893                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8894                         (9, htlc_purposes, required_vec),
8895                         (10, in_flight_monitor_updates, option),
8896                         (11, self.probing_cookie_secret, required),
8897                         (13, htlc_onion_fields, optional_vec),
8898                 });
8899
8900                 Ok(())
8901         }
8902 }
8903
8904 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8905         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8906                 (self.len() as u64).write(w)?;
8907                 for (event, action) in self.iter() {
8908                         event.write(w)?;
8909                         action.write(w)?;
8910                         #[cfg(debug_assertions)] {
8911                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8912                                 // be persisted and are regenerated on restart. However, if such an event has a
8913                                 // post-event-handling action we'll write nothing for the event and would have to
8914                                 // either forget the action or fail on deserialization (which we do below). Thus,
8915                                 // check that the event is sane here.
8916                                 let event_encoded = event.encode();
8917                                 let event_read: Option<Event> =
8918                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8919                                 if action.is_some() { assert!(event_read.is_some()); }
8920                         }
8921                 }
8922                 Ok(())
8923         }
8924 }
8925 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8926         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8927                 let len: u64 = Readable::read(reader)?;
8928                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8929                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8930                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8931                         len) as usize);
8932                 for _ in 0..len {
8933                         let ev_opt = MaybeReadable::read(reader)?;
8934                         let action = Readable::read(reader)?;
8935                         if let Some(ev) = ev_opt {
8936                                 events.push_back((ev, action));
8937                         } else if action.is_some() {
8938                                 return Err(DecodeError::InvalidValue);
8939                         }
8940                 }
8941                 Ok(events)
8942         }
8943 }
8944
8945 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8946         (0, NotShuttingDown) => {},
8947         (2, ShutdownInitiated) => {},
8948         (4, ResolvingHTLCs) => {},
8949         (6, NegotiatingClosingFee) => {},
8950         (8, ShutdownComplete) => {}, ;
8951 );
8952
8953 /// Arguments for the creation of a ChannelManager that are not deserialized.
8954 ///
8955 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8956 /// is:
8957 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8958 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8959 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8960 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8961 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8962 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8963 ///    same way you would handle a [`chain::Filter`] call using
8964 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8965 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8966 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8967 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8968 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8969 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8970 ///    the next step.
8971 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8972 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8973 ///
8974 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8975 /// call any other methods on the newly-deserialized [`ChannelManager`].
8976 ///
8977 /// Note that because some channels may be closed during deserialization, it is critical that you
8978 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8979 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8980 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8981 /// not force-close the same channels but consider them live), you may end up revoking a state for
8982 /// which you've already broadcasted the transaction.
8983 ///
8984 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8985 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8986 where
8987         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8988         T::Target: BroadcasterInterface,
8989         ES::Target: EntropySource,
8990         NS::Target: NodeSigner,
8991         SP::Target: SignerProvider,
8992         F::Target: FeeEstimator,
8993         R::Target: Router,
8994         L::Target: Logger,
8995 {
8996         /// A cryptographically secure source of entropy.
8997         pub entropy_source: ES,
8998
8999         /// A signer that is able to perform node-scoped cryptographic operations.
9000         pub node_signer: NS,
9001
9002         /// The keys provider which will give us relevant keys. Some keys will be loaded during
9003         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
9004         /// signing data.
9005         pub signer_provider: SP,
9006
9007         /// The fee_estimator for use in the ChannelManager in the future.
9008         ///
9009         /// No calls to the FeeEstimator will be made during deserialization.
9010         pub fee_estimator: F,
9011         /// The chain::Watch for use in the ChannelManager in the future.
9012         ///
9013         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
9014         /// you have deserialized ChannelMonitors separately and will add them to your
9015         /// chain::Watch after deserializing this ChannelManager.
9016         pub chain_monitor: M,
9017
9018         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
9019         /// used to broadcast the latest local commitment transactions of channels which must be
9020         /// force-closed during deserialization.
9021         pub tx_broadcaster: T,
9022         /// The router which will be used in the ChannelManager in the future for finding routes
9023         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
9024         ///
9025         /// No calls to the router will be made during deserialization.
9026         pub router: R,
9027         /// The Logger for use in the ChannelManager and which may be used to log information during
9028         /// deserialization.
9029         pub logger: L,
9030         /// Default settings used for new channels. Any existing channels will continue to use the
9031         /// runtime settings which were stored when the ChannelManager was serialized.
9032         pub default_config: UserConfig,
9033
9034         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
9035         /// value.context.get_funding_txo() should be the key).
9036         ///
9037         /// If a monitor is inconsistent with the channel state during deserialization the channel will
9038         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
9039         /// is true for missing channels as well. If there is a monitor missing for which we find
9040         /// channel data Err(DecodeError::InvalidValue) will be returned.
9041         ///
9042         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
9043         /// this struct.
9044         ///
9045         /// This is not exported to bindings users because we have no HashMap bindings
9046         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
9047 }
9048
9049 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9050                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
9051 where
9052         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9053         T::Target: BroadcasterInterface,
9054         ES::Target: EntropySource,
9055         NS::Target: NodeSigner,
9056         SP::Target: SignerProvider,
9057         F::Target: FeeEstimator,
9058         R::Target: Router,
9059         L::Target: Logger,
9060 {
9061         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
9062         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
9063         /// populate a HashMap directly from C.
9064         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,
9065                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
9066                 Self {
9067                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
9068                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
9069                 }
9070         }
9071 }
9072
9073 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
9074 // SipmleArcChannelManager type:
9075 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9076         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
9077 where
9078         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9079         T::Target: BroadcasterInterface,
9080         ES::Target: EntropySource,
9081         NS::Target: NodeSigner,
9082         SP::Target: SignerProvider,
9083         F::Target: FeeEstimator,
9084         R::Target: Router,
9085         L::Target: Logger,
9086 {
9087         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9088                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
9089                 Ok((blockhash, Arc::new(chan_manager)))
9090         }
9091 }
9092
9093 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
9094         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
9095 where
9096         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
9097         T::Target: BroadcasterInterface,
9098         ES::Target: EntropySource,
9099         NS::Target: NodeSigner,
9100         SP::Target: SignerProvider,
9101         F::Target: FeeEstimator,
9102         R::Target: Router,
9103         L::Target: Logger,
9104 {
9105         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
9106                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
9107
9108                 let genesis_hash: BlockHash = Readable::read(reader)?;
9109                 let best_block_height: u32 = Readable::read(reader)?;
9110                 let best_block_hash: BlockHash = Readable::read(reader)?;
9111
9112                 let mut failed_htlcs = Vec::new();
9113
9114                 let channel_count: u64 = Readable::read(reader)?;
9115                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
9116                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9117                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9118                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
9119                 let mut channel_closures = VecDeque::new();
9120                 let mut close_background_events = Vec::new();
9121                 for _ in 0..channel_count {
9122                         let mut channel: Channel<SP> = Channel::read(reader, (
9123                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
9124                         ))?;
9125                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9126                         funding_txo_set.insert(funding_txo.clone());
9127                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
9128                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
9129                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
9130                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
9131                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9132                                         // But if the channel is behind of the monitor, close the channel:
9133                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
9134                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
9135                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
9136                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
9137                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
9138                                         }
9139                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
9140                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
9141                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
9142                                         }
9143                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
9144                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
9145                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
9146                                         }
9147                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
9148                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
9149                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
9150                                         }
9151                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
9152                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
9153                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9154                                                         counterparty_node_id, funding_txo, update
9155                                                 });
9156                                         }
9157                                         failed_htlcs.append(&mut new_failed_htlcs);
9158                                         channel_closures.push_back((events::Event::ChannelClosed {
9159                                                 channel_id: channel.context.channel_id(),
9160                                                 user_channel_id: channel.context.get_user_id(),
9161                                                 reason: ClosureReason::OutdatedChannelManager,
9162                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9163                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9164                                         }, None));
9165                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
9166                                                 let mut found_htlc = false;
9167                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
9168                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
9169                                                 }
9170                                                 if !found_htlc {
9171                                                         // If we have some HTLCs in the channel which are not present in the newer
9172                                                         // ChannelMonitor, they have been removed and should be failed back to
9173                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
9174                                                         // were actually claimed we'd have generated and ensured the previous-hop
9175                                                         // claim update ChannelMonitor updates were persisted prior to persising
9176                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
9177                                                         // backwards leg of the HTLC will simply be rejected.
9178                                                         log_info!(args.logger,
9179                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
9180                                                                 &channel.context.channel_id(), &payment_hash);
9181                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9182                                                 }
9183                                         }
9184                                 } else {
9185                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
9186                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
9187                                                 monitor.get_latest_update_id());
9188                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
9189                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
9190                                         }
9191                                         if channel.context.is_funding_initiated() {
9192                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
9193                                         }
9194                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
9195                                                 hash_map::Entry::Occupied(mut entry) => {
9196                                                         let by_id_map = entry.get_mut();
9197                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9198                                                 },
9199                                                 hash_map::Entry::Vacant(entry) => {
9200                                                         let mut by_id_map = HashMap::new();
9201                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
9202                                                         entry.insert(by_id_map);
9203                                                 }
9204                                         }
9205                                 }
9206                         } else if channel.is_awaiting_initial_mon_persist() {
9207                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
9208                                 // was in-progress, we never broadcasted the funding transaction and can still
9209                                 // safely discard the channel.
9210                                 let _ = channel.context.force_shutdown(false);
9211                                 channel_closures.push_back((events::Event::ChannelClosed {
9212                                         channel_id: channel.context.channel_id(),
9213                                         user_channel_id: channel.context.get_user_id(),
9214                                         reason: ClosureReason::DisconnectedPeer,
9215                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
9216                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
9217                                 }, None));
9218                         } else {
9219                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
9220                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9221                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9222                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
9223                                 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");
9224                                 return Err(DecodeError::InvalidValue);
9225                         }
9226                 }
9227
9228                 for (funding_txo, _) in args.channel_monitors.iter() {
9229                         if !funding_txo_set.contains(funding_txo) {
9230                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
9231                                         &funding_txo.to_channel_id());
9232                                 let monitor_update = ChannelMonitorUpdate {
9233                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
9234                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
9235                                 };
9236                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
9237                         }
9238                 }
9239
9240                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
9241                 let forward_htlcs_count: u64 = Readable::read(reader)?;
9242                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
9243                 for _ in 0..forward_htlcs_count {
9244                         let short_channel_id = Readable::read(reader)?;
9245                         let pending_forwards_count: u64 = Readable::read(reader)?;
9246                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
9247                         for _ in 0..pending_forwards_count {
9248                                 pending_forwards.push(Readable::read(reader)?);
9249                         }
9250                         forward_htlcs.insert(short_channel_id, pending_forwards);
9251                 }
9252
9253                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
9254                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
9255                 for _ in 0..claimable_htlcs_count {
9256                         let payment_hash = Readable::read(reader)?;
9257                         let previous_hops_len: u64 = Readable::read(reader)?;
9258                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
9259                         for _ in 0..previous_hops_len {
9260                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
9261                         }
9262                         claimable_htlcs_list.push((payment_hash, previous_hops));
9263                 }
9264
9265                 let peer_state_from_chans = |channel_by_id| {
9266                         PeerState {
9267                                 channel_by_id,
9268                                 inbound_channel_request_by_id: HashMap::new(),
9269                                 latest_features: InitFeatures::empty(),
9270                                 pending_msg_events: Vec::new(),
9271                                 in_flight_monitor_updates: BTreeMap::new(),
9272                                 monitor_update_blocked_actions: BTreeMap::new(),
9273                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
9274                                 is_connected: false,
9275                         }
9276                 };
9277
9278                 let peer_count: u64 = Readable::read(reader)?;
9279                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
9280                 for _ in 0..peer_count {
9281                         let peer_pubkey = Readable::read(reader)?;
9282                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
9283                         let mut peer_state = peer_state_from_chans(peer_chans);
9284                         peer_state.latest_features = Readable::read(reader)?;
9285                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
9286                 }
9287
9288                 let event_count: u64 = Readable::read(reader)?;
9289                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
9290                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
9291                 for _ in 0..event_count {
9292                         match MaybeReadable::read(reader)? {
9293                                 Some(event) => pending_events_read.push_back((event, None)),
9294                                 None => continue,
9295                         }
9296                 }
9297
9298                 let background_event_count: u64 = Readable::read(reader)?;
9299                 for _ in 0..background_event_count {
9300                         match <u8 as Readable>::read(reader)? {
9301                                 0 => {
9302                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
9303                                         // however we really don't (and never did) need them - we regenerate all
9304                                         // on-startup monitor updates.
9305                                         let _: OutPoint = Readable::read(reader)?;
9306                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
9307                                 }
9308                                 _ => return Err(DecodeError::InvalidValue),
9309                         }
9310                 }
9311
9312                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
9313                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
9314
9315                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
9316                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
9317                 for _ in 0..pending_inbound_payment_count {
9318                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
9319                                 return Err(DecodeError::InvalidValue);
9320                         }
9321                 }
9322
9323                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
9324                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
9325                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
9326                 for _ in 0..pending_outbound_payments_count_compat {
9327                         let session_priv = Readable::read(reader)?;
9328                         let payment = PendingOutboundPayment::Legacy {
9329                                 session_privs: [session_priv].iter().cloned().collect()
9330                         };
9331                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
9332                                 return Err(DecodeError::InvalidValue)
9333                         };
9334                 }
9335
9336                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9337                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9338                 let mut pending_outbound_payments = None;
9339                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9340                 let mut received_network_pubkey: Option<PublicKey> = None;
9341                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9342                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9343                 let mut claimable_htlc_purposes = None;
9344                 let mut claimable_htlc_onion_fields = None;
9345                 let mut pending_claiming_payments = Some(HashMap::new());
9346                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9347                 let mut events_override = None;
9348                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9349                 read_tlv_fields!(reader, {
9350                         (1, pending_outbound_payments_no_retry, option),
9351                         (2, pending_intercepted_htlcs, option),
9352                         (3, pending_outbound_payments, option),
9353                         (4, pending_claiming_payments, option),
9354                         (5, received_network_pubkey, option),
9355                         (6, monitor_update_blocked_actions_per_peer, option),
9356                         (7, fake_scid_rand_bytes, option),
9357                         (8, events_override, option),
9358                         (9, claimable_htlc_purposes, optional_vec),
9359                         (10, in_flight_monitor_updates, option),
9360                         (11, probing_cookie_secret, option),
9361                         (13, claimable_htlc_onion_fields, optional_vec),
9362                 });
9363                 if fake_scid_rand_bytes.is_none() {
9364                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9365                 }
9366
9367                 if probing_cookie_secret.is_none() {
9368                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9369                 }
9370
9371                 if let Some(events) = events_override {
9372                         pending_events_read = events;
9373                 }
9374
9375                 if !channel_closures.is_empty() {
9376                         pending_events_read.append(&mut channel_closures);
9377                 }
9378
9379                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9380                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9381                 } else if pending_outbound_payments.is_none() {
9382                         let mut outbounds = HashMap::new();
9383                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9384                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9385                         }
9386                         pending_outbound_payments = Some(outbounds);
9387                 }
9388                 let pending_outbounds = OutboundPayments {
9389                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9390                         retry_lock: Mutex::new(())
9391                 };
9392
9393                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9394                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9395                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9396                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9397                 // `ChannelMonitor` for it.
9398                 //
9399                 // In order to do so we first walk all of our live channels (so that we can check their
9400                 // state immediately after doing the update replays, when we have the `update_id`s
9401                 // available) and then walk any remaining in-flight updates.
9402                 //
9403                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9404                 let mut pending_background_events = Vec::new();
9405                 macro_rules! handle_in_flight_updates {
9406                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9407                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9408                         ) => { {
9409                                 let mut max_in_flight_update_id = 0;
9410                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9411                                 for update in $chan_in_flight_upds.iter() {
9412                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9413                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9414                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9415                                         pending_background_events.push(
9416                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9417                                                         counterparty_node_id: $counterparty_node_id,
9418                                                         funding_txo: $funding_txo,
9419                                                         update: update.clone(),
9420                                                 });
9421                                 }
9422                                 if $chan_in_flight_upds.is_empty() {
9423                                         // We had some updates to apply, but it turns out they had completed before we
9424                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9425                                         // the completion actions for any monitor updates, but otherwise are done.
9426                                         pending_background_events.push(
9427                                                 BackgroundEvent::MonitorUpdatesComplete {
9428                                                         counterparty_node_id: $counterparty_node_id,
9429                                                         channel_id: $funding_txo.to_channel_id(),
9430                                                 });
9431                                 }
9432                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9433                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9434                                         return Err(DecodeError::InvalidValue);
9435                                 }
9436                                 max_in_flight_update_id
9437                         } }
9438                 }
9439
9440                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9441                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9442                         let peer_state = &mut *peer_state_lock;
9443                         for phase in peer_state.channel_by_id.values() {
9444                                 if let ChannelPhase::Funded(chan) = phase {
9445                                         // Channels that were persisted have to be funded, otherwise they should have been
9446                                         // discarded.
9447                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9448                                         let monitor = args.channel_monitors.get(&funding_txo)
9449                                                 .expect("We already checked for monitor presence when loading channels");
9450                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9451                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9452                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9453                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9454                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9455                                                                         funding_txo, monitor, peer_state, ""));
9456                                                 }
9457                                         }
9458                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9459                                                 // If the channel is ahead of the monitor, return InvalidValue:
9460                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9461                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9462                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9463                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9464                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9465                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9466                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9467                                                 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");
9468                                                 return Err(DecodeError::InvalidValue);
9469                                         }
9470                                 } else {
9471                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9472                                         // created in this `channel_by_id` map.
9473                                         debug_assert!(false);
9474                                         return Err(DecodeError::InvalidValue);
9475                                 }
9476                         }
9477                 }
9478
9479                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9480                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9481                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9482                                         // Now that we've removed all the in-flight monitor updates for channels that are
9483                                         // still open, we need to replay any monitor updates that are for closed channels,
9484                                         // creating the neccessary peer_state entries as we go.
9485                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9486                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9487                                         });
9488                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9489                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9490                                                 funding_txo, monitor, peer_state, "closed ");
9491                                 } else {
9492                                         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!");
9493                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9494                                                 &funding_txo.to_channel_id());
9495                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9496                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9497                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9498                                         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");
9499                                         return Err(DecodeError::InvalidValue);
9500                                 }
9501                         }
9502                 }
9503
9504                 // Note that we have to do the above replays before we push new monitor updates.
9505                 pending_background_events.append(&mut close_background_events);
9506
9507                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9508                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9509                 // have a fully-constructed `ChannelManager` at the end.
9510                 let mut pending_claims_to_replay = Vec::new();
9511
9512                 {
9513                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9514                         // ChannelMonitor data for any channels for which we do not have authorative state
9515                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9516                         // corresponding `Channel` at all).
9517                         // This avoids several edge-cases where we would otherwise "forget" about pending
9518                         // payments which are still in-flight via their on-chain state.
9519                         // We only rebuild the pending payments map if we were most recently serialized by
9520                         // 0.0.102+
9521                         for (_, monitor) in args.channel_monitors.iter() {
9522                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9523                                 if counterparty_opt.is_none() {
9524                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9525                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9526                                                         if path.hops.is_empty() {
9527                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9528                                                                 return Err(DecodeError::InvalidValue);
9529                                                         }
9530
9531                                                         let path_amt = path.final_value_msat();
9532                                                         let mut session_priv_bytes = [0; 32];
9533                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9534                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9535                                                                 hash_map::Entry::Occupied(mut entry) => {
9536                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9537                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9538                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9539                                                                 },
9540                                                                 hash_map::Entry::Vacant(entry) => {
9541                                                                         let path_fee = path.fee_msat();
9542                                                                         entry.insert(PendingOutboundPayment::Retryable {
9543                                                                                 retry_strategy: None,
9544                                                                                 attempts: PaymentAttempts::new(),
9545                                                                                 payment_params: None,
9546                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9547                                                                                 payment_hash: htlc.payment_hash,
9548                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9549                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9550                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9551                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9552                                                                                 pending_amt_msat: path_amt,
9553                                                                                 pending_fee_msat: Some(path_fee),
9554                                                                                 total_msat: path_amt,
9555                                                                                 starting_block_height: best_block_height,
9556                                                                         });
9557                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9558                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9559                                                                 }
9560                                                         }
9561                                                 }
9562                                         }
9563                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9564                                                 match htlc_source {
9565                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9566                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9567                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9568                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9569                                                                 };
9570                                                                 // The ChannelMonitor is now responsible for this HTLC's
9571                                                                 // failure/success and will let us know what its outcome is. If we
9572                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9573                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9574                                                                 // the monitor was when forwarding the payment.
9575                                                                 forward_htlcs.retain(|_, forwards| {
9576                                                                         forwards.retain(|forward| {
9577                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9578                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9579                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9580                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9581                                                                                                 false
9582                                                                                         } else { true }
9583                                                                                 } else { true }
9584                                                                         });
9585                                                                         !forwards.is_empty()
9586                                                                 });
9587                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9588                                                                         if pending_forward_matches_htlc(&htlc_info) {
9589                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9590                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9591                                                                                 pending_events_read.retain(|(event, _)| {
9592                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9593                                                                                                 intercepted_id != ev_id
9594                                                                                         } else { true }
9595                                                                                 });
9596                                                                                 false
9597                                                                         } else { true }
9598                                                                 });
9599                                                         },
9600                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9601                                                                 if let Some(preimage) = preimage_opt {
9602                                                                         let pending_events = Mutex::new(pending_events_read);
9603                                                                         // Note that we set `from_onchain` to "false" here,
9604                                                                         // deliberately keeping the pending payment around forever.
9605                                                                         // Given it should only occur when we have a channel we're
9606                                                                         // force-closing for being stale that's okay.
9607                                                                         // The alternative would be to wipe the state when claiming,
9608                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9609                                                                         // it and the `PaymentSent` on every restart until the
9610                                                                         // `ChannelMonitor` is removed.
9611                                                                         let compl_action =
9612                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9613                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9614                                                                                         counterparty_node_id: path.hops[0].pubkey,
9615                                                                                 };
9616                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9617                                                                                 path, false, compl_action, &pending_events, &args.logger);
9618                                                                         pending_events_read = pending_events.into_inner().unwrap();
9619                                                                 }
9620                                                         },
9621                                                 }
9622                                         }
9623                                 }
9624
9625                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9626                                 // preimages from it which may be needed in upstream channels for forwarded
9627                                 // payments.
9628                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9629                                         .into_iter()
9630                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9631                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9632                                                         if let Some(payment_preimage) = preimage_opt {
9633                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9634                                                                         // Check if `counterparty_opt.is_none()` to see if the
9635                                                                         // downstream chan is closed (because we don't have a
9636                                                                         // channel_id -> peer map entry).
9637                                                                         counterparty_opt.is_none(),
9638                                                                         counterparty_opt.cloned().or(monitor.get_counterparty_node_id()),
9639                                                                         monitor.get_funding_txo().0))
9640                                                         } else { None }
9641                                                 } else {
9642                                                         // If it was an outbound payment, we've handled it above - if a preimage
9643                                                         // came in and we persisted the `ChannelManager` we either handled it and
9644                                                         // are good to go or the channel force-closed - we don't have to handle the
9645                                                         // channel still live case here.
9646                                                         None
9647                                                 }
9648                                         });
9649                                 for tuple in outbound_claimed_htlcs_iter {
9650                                         pending_claims_to_replay.push(tuple);
9651                                 }
9652                         }
9653                 }
9654
9655                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9656                         // If we have pending HTLCs to forward, assume we either dropped a
9657                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9658                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9659                         // constant as enough time has likely passed that we should simply handle the forwards
9660                         // now, or at least after the user gets a chance to reconnect to our peers.
9661                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9662                                 time_forwardable: Duration::from_secs(2),
9663                         }, None));
9664                 }
9665
9666                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9667                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9668
9669                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9670                 if let Some(purposes) = claimable_htlc_purposes {
9671                         if purposes.len() != claimable_htlcs_list.len() {
9672                                 return Err(DecodeError::InvalidValue);
9673                         }
9674                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9675                                 if onion_fields.len() != claimable_htlcs_list.len() {
9676                                         return Err(DecodeError::InvalidValue);
9677                                 }
9678                                 for (purpose, (onion, (payment_hash, htlcs))) in
9679                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9680                                 {
9681                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9682                                                 purpose, htlcs, onion_fields: onion,
9683                                         });
9684                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9685                                 }
9686                         } else {
9687                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9688                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9689                                                 purpose, htlcs, onion_fields: None,
9690                                         });
9691                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9692                                 }
9693                         }
9694                 } else {
9695                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9696                         // include a `_legacy_hop_data` in the `OnionPayload`.
9697                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9698                                 if htlcs.is_empty() {
9699                                         return Err(DecodeError::InvalidValue);
9700                                 }
9701                                 let purpose = match &htlcs[0].onion_payload {
9702                                         OnionPayload::Invoice { _legacy_hop_data } => {
9703                                                 if let Some(hop_data) = _legacy_hop_data {
9704                                                         events::PaymentPurpose::InvoicePayment {
9705                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9706                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9707                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9708                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9709                                                                                 Err(()) => {
9710                                                                                         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);
9711                                                                                         return Err(DecodeError::InvalidValue);
9712                                                                                 }
9713                                                                         }
9714                                                                 },
9715                                                                 payment_secret: hop_data.payment_secret,
9716                                                         }
9717                                                 } else { return Err(DecodeError::InvalidValue); }
9718                                         },
9719                                         OnionPayload::Spontaneous(payment_preimage) =>
9720                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9721                                 };
9722                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9723                                         purpose, htlcs, onion_fields: None,
9724                                 });
9725                         }
9726                 }
9727
9728                 let mut secp_ctx = Secp256k1::new();
9729                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9730
9731                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9732                         Ok(key) => key,
9733                         Err(()) => return Err(DecodeError::InvalidValue)
9734                 };
9735                 if let Some(network_pubkey) = received_network_pubkey {
9736                         if network_pubkey != our_network_pubkey {
9737                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9738                                 return Err(DecodeError::InvalidValue);
9739                         }
9740                 }
9741
9742                 let mut outbound_scid_aliases = HashSet::new();
9743                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9744                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9745                         let peer_state = &mut *peer_state_lock;
9746                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9747                                 if let ChannelPhase::Funded(chan) = phase {
9748                                         if chan.context.outbound_scid_alias() == 0 {
9749                                                 let mut outbound_scid_alias;
9750                                                 loop {
9751                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9752                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9753                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9754                                                 }
9755                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9756                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9757                                                 // Note that in rare cases its possible to hit this while reading an older
9758                                                 // channel if we just happened to pick a colliding outbound alias above.
9759                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9760                                                 return Err(DecodeError::InvalidValue);
9761                                         }
9762                                         if chan.context.is_usable() {
9763                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9764                                                         // Note that in rare cases its possible to hit this while reading an older
9765                                                         // channel if we just happened to pick a colliding outbound alias above.
9766                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9767                                                         return Err(DecodeError::InvalidValue);
9768                                                 }
9769                                         }
9770                                 } else {
9771                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9772                                         // created in this `channel_by_id` map.
9773                                         debug_assert!(false);
9774                                         return Err(DecodeError::InvalidValue);
9775                                 }
9776                         }
9777                 }
9778
9779                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9780
9781                 for (_, monitor) in args.channel_monitors.iter() {
9782                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9783                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9784                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9785                                         let mut claimable_amt_msat = 0;
9786                                         let mut receiver_node_id = Some(our_network_pubkey);
9787                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9788                                         if phantom_shared_secret.is_some() {
9789                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9790                                                         .expect("Failed to get node_id for phantom node recipient");
9791                                                 receiver_node_id = Some(phantom_pubkey)
9792                                         }
9793                                         for claimable_htlc in &payment.htlcs {
9794                                                 claimable_amt_msat += claimable_htlc.value;
9795
9796                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9797                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9798                                                 // new commitment transaction we can just provide the payment preimage to
9799                                                 // the corresponding ChannelMonitor and nothing else.
9800                                                 //
9801                                                 // We do so directly instead of via the normal ChannelMonitor update
9802                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9803                                                 // we're not allowed to call it directly yet. Further, we do the update
9804                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9805                                                 // reason to.
9806                                                 // If we were to generate a new ChannelMonitor update ID here and then
9807                                                 // crash before the user finishes block connect we'd end up force-closing
9808                                                 // this channel as well. On the flip side, there's no harm in restarting
9809                                                 // without the new monitor persisted - we'll end up right back here on
9810                                                 // restart.
9811                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9812                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9813                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9814                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9815                                                         let peer_state = &mut *peer_state_lock;
9816                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9817                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9818                                                         }
9819                                                 }
9820                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9821                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9822                                                 }
9823                                         }
9824                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9825                                                 receiver_node_id,
9826                                                 payment_hash,
9827                                                 purpose: payment.purpose,
9828                                                 amount_msat: claimable_amt_msat,
9829                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9830                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9831                                         }, None));
9832                                 }
9833                         }
9834                 }
9835
9836                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9837                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9838                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9839                                         for action in actions.iter() {
9840                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9841                                                         downstream_counterparty_and_funding_outpoint:
9842                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9843                                                 } = action {
9844                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9845                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9846                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9847                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9848                                                         } else {
9849                                                                 // If the channel we were blocking has closed, we don't need to
9850                                                                 // worry about it - the blocked monitor update should never have
9851                                                                 // been released from the `Channel` object so it can't have
9852                                                                 // completed, and if the channel closed there's no reason to bother
9853                                                                 // anymore.
9854                                                         }
9855                                                 }
9856                                         }
9857                                 }
9858                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9859                         } else {
9860                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9861                                 return Err(DecodeError::InvalidValue);
9862                         }
9863                 }
9864
9865                 let channel_manager = ChannelManager {
9866                         genesis_hash,
9867                         fee_estimator: bounded_fee_estimator,
9868                         chain_monitor: args.chain_monitor,
9869                         tx_broadcaster: args.tx_broadcaster,
9870                         router: args.router,
9871
9872                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9873
9874                         inbound_payment_key: expanded_inbound_key,
9875                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9876                         pending_outbound_payments: pending_outbounds,
9877                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9878
9879                         forward_htlcs: Mutex::new(forward_htlcs),
9880                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9881                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9882                         id_to_peer: Mutex::new(id_to_peer),
9883                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9884                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9885
9886                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9887
9888                         our_network_pubkey,
9889                         secp_ctx,
9890
9891                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9892
9893                         per_peer_state: FairRwLock::new(per_peer_state),
9894
9895                         pending_events: Mutex::new(pending_events_read),
9896                         pending_events_processor: AtomicBool::new(false),
9897                         pending_background_events: Mutex::new(pending_background_events),
9898                         total_consistency_lock: RwLock::new(()),
9899                         background_events_processed_since_startup: AtomicBool::new(false),
9900
9901                         event_persist_notifier: Notifier::new(),
9902                         needs_persist_flag: AtomicBool::new(false),
9903
9904                         entropy_source: args.entropy_source,
9905                         node_signer: args.node_signer,
9906                         signer_provider: args.signer_provider,
9907
9908                         logger: args.logger,
9909                         default_configuration: args.default_config,
9910                 };
9911
9912                 for htlc_source in failed_htlcs.drain(..) {
9913                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9914                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9915                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9916                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9917                 }
9918
9919                 for (source, preimage, downstream_value, downstream_closed, downstream_node_id, downstream_funding) in pending_claims_to_replay {
9920                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9921                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9922                         // channel is closed we just assume that it probably came from an on-chain claim.
9923                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9924                                 downstream_closed, downstream_node_id, downstream_funding);
9925                 }
9926
9927                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9928                 //connection or two.
9929
9930                 Ok((best_block_hash.clone(), channel_manager))
9931         }
9932 }
9933
9934 #[cfg(test)]
9935 mod tests {
9936         use bitcoin::hashes::Hash;
9937         use bitcoin::hashes::sha256::Hash as Sha256;
9938         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9939         use core::sync::atomic::Ordering;
9940         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9941         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9942         use crate::ln::ChannelId;
9943         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9944         use crate::ln::functional_test_utils::*;
9945         use crate::ln::msgs::{self, ErrorAction};
9946         use crate::ln::msgs::ChannelMessageHandler;
9947         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9948         use crate::util::errors::APIError;
9949         use crate::util::test_utils;
9950         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9951         use crate::sign::EntropySource;
9952
9953         #[test]
9954         fn test_notify_limits() {
9955                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9956                 // indeed, do not cause the persistence of a new ChannelManager.
9957                 let chanmon_cfgs = create_chanmon_cfgs(3);
9958                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9959                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9960                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9961
9962                 // All nodes start with a persistable update pending as `create_network` connects each node
9963                 // with all other nodes to make most tests simpler.
9964                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9965                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9966                 assert!(nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9967
9968                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9969
9970                 // We check that the channel info nodes have doesn't change too early, even though we try
9971                 // to connect messages with new values
9972                 chan.0.contents.fee_base_msat *= 2;
9973                 chan.1.contents.fee_base_msat *= 2;
9974                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9975                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9976                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9977                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9978
9979                 // The first two nodes (which opened a channel) should now require fresh persistence
9980                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9981                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9982                 // ... but the last node should not.
9983                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9984                 // After persisting the first two nodes they should no longer need fresh persistence.
9985                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
9986                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
9987
9988                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9989                 // about the channel.
9990                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9991                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9992                 assert!(!nodes[2].node.get_event_or_persistence_needed_future().poll_is_complete());
9993
9994                 // The nodes which are a party to the channel should also ignore messages from unrelated
9995                 // parties.
9996                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9997                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9998                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9999                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
10000                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10001                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10002
10003                 // At this point the channel info given by peers should still be the same.
10004                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10005                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10006
10007                 // An earlier version of handle_channel_update didn't check the directionality of the
10008                 // update message and would always update the local fee info, even if our peer was
10009                 // (spuriously) forwarding us our own channel_update.
10010                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
10011                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
10012                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
10013
10014                 // First deliver each peers' own message, checking that the node doesn't need to be
10015                 // persisted and that its channel info remains the same.
10016                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
10017                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
10018                 assert!(!nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10019                 assert!(!nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10020                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
10021                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
10022
10023                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
10024                 // the channel info has updated.
10025                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
10026                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
10027                 assert!(nodes[0].node.get_event_or_persistence_needed_future().poll_is_complete());
10028                 assert!(nodes[1].node.get_event_or_persistence_needed_future().poll_is_complete());
10029                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
10030                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
10031         }
10032
10033         #[test]
10034         fn test_keysend_dup_hash_partial_mpp() {
10035                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
10036                 // expected.
10037                 let chanmon_cfgs = create_chanmon_cfgs(2);
10038                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10039                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10040                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10041                 create_announced_chan_between_nodes(&nodes, 0, 1);
10042
10043                 // First, send a partial MPP payment.
10044                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
10045                 let mut mpp_route = route.clone();
10046                 mpp_route.paths.push(mpp_route.paths[0].clone());
10047
10048                 let payment_id = PaymentId([42; 32]);
10049                 // Use the utility function send_payment_along_path to send the payment with MPP data which
10050                 // indicates there are more HTLCs coming.
10051                 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.
10052                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
10053                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
10054                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
10055                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
10056                 check_added_monitors!(nodes[0], 1);
10057                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10058                 assert_eq!(events.len(), 1);
10059                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
10060
10061                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
10062                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10063                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10064                 check_added_monitors!(nodes[0], 1);
10065                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10066                 assert_eq!(events.len(), 1);
10067                 let ev = events.drain(..).next().unwrap();
10068                 let payment_event = SendEvent::from_event(ev);
10069                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10070                 check_added_monitors!(nodes[1], 0);
10071                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10072                 expect_pending_htlcs_forwardable!(nodes[1]);
10073                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
10074                 check_added_monitors!(nodes[1], 1);
10075                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10076                 assert!(updates.update_add_htlcs.is_empty());
10077                 assert!(updates.update_fulfill_htlcs.is_empty());
10078                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10079                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10080                 assert!(updates.update_fee.is_none());
10081                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10082                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10083                 expect_payment_failed!(nodes[0], our_payment_hash, true);
10084
10085                 // Send the second half of the original MPP payment.
10086                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
10087                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
10088                 check_added_monitors!(nodes[0], 1);
10089                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10090                 assert_eq!(events.len(), 1);
10091                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
10092
10093                 // Claim the full MPP payment. Note that we can't use a test utility like
10094                 // claim_funds_along_route because the ordering of the messages causes the second half of the
10095                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
10096                 // lightning messages manually.
10097                 nodes[1].node.claim_funds(payment_preimage);
10098                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
10099                 check_added_monitors!(nodes[1], 2);
10100
10101                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10102                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
10103                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
10104                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
10105                 check_added_monitors!(nodes[0], 1);
10106                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10107                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
10108                 check_added_monitors!(nodes[1], 1);
10109                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10110                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
10111                 check_added_monitors!(nodes[1], 1);
10112                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10113                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
10114                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
10115                 check_added_monitors!(nodes[0], 1);
10116                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
10117                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
10118                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10119                 check_added_monitors!(nodes[0], 1);
10120                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
10121                 check_added_monitors!(nodes[1], 1);
10122                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
10123                 check_added_monitors!(nodes[1], 1);
10124                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
10125                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
10126                 check_added_monitors!(nodes[0], 1);
10127
10128                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
10129                 // path's success and a PaymentPathSuccessful event for each path's success.
10130                 let events = nodes[0].node.get_and_clear_pending_events();
10131                 assert_eq!(events.len(), 2);
10132                 match events[0] {
10133                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10134                                 assert_eq!(payment_id, *actual_payment_id);
10135                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10136                                 assert_eq!(route.paths[0], *path);
10137                         },
10138                         _ => panic!("Unexpected event"),
10139                 }
10140                 match events[1] {
10141                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
10142                                 assert_eq!(payment_id, *actual_payment_id);
10143                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
10144                                 assert_eq!(route.paths[0], *path);
10145                         },
10146                         _ => panic!("Unexpected event"),
10147                 }
10148         }
10149
10150         #[test]
10151         fn test_keysend_dup_payment_hash() {
10152                 do_test_keysend_dup_payment_hash(false);
10153                 do_test_keysend_dup_payment_hash(true);
10154         }
10155
10156         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
10157                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
10158                 //      outbound regular payment fails as expected.
10159                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
10160                 //      fails as expected.
10161                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
10162                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
10163                 //      reject MPP keysend payments, since in this case where the payment has no payment
10164                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
10165                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
10166                 //      payment secrets and reject otherwise.
10167                 let chanmon_cfgs = create_chanmon_cfgs(2);
10168                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10169                 let mut mpp_keysend_cfg = test_default_channel_config();
10170                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
10171                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
10172                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10173                 create_announced_chan_between_nodes(&nodes, 0, 1);
10174                 let scorer = test_utils::TestScorer::new();
10175                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10176
10177                 // To start (1), send a regular payment but don't claim it.
10178                 let expected_route = [&nodes[1]];
10179                 let (payment_preimage, payment_hash, ..) = route_payment(&nodes[0], &expected_route, 100_000);
10180
10181                 // Next, attempt a keysend payment and make sure it fails.
10182                 let route_params = RouteParameters::from_payment_params_and_value(
10183                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
10184                         TEST_FINAL_CLTV, false), 100_000);
10185                 let route = find_route(
10186                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10187                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10188                 ).unwrap();
10189                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10190                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10191                 check_added_monitors!(nodes[0], 1);
10192                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10193                 assert_eq!(events.len(), 1);
10194                 let ev = events.drain(..).next().unwrap();
10195                 let payment_event = SendEvent::from_event(ev);
10196                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10197                 check_added_monitors!(nodes[1], 0);
10198                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10199                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
10200                 // fails), the second will process the resulting failure and fail the HTLC backward
10201                 expect_pending_htlcs_forwardable!(nodes[1]);
10202                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10203                 check_added_monitors!(nodes[1], 1);
10204                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10205                 assert!(updates.update_add_htlcs.is_empty());
10206                 assert!(updates.update_fulfill_htlcs.is_empty());
10207                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10208                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10209                 assert!(updates.update_fee.is_none());
10210                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10211                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10212                 expect_payment_failed!(nodes[0], payment_hash, true);
10213
10214                 // Finally, claim the original payment.
10215                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10216
10217                 // To start (2), send a keysend payment but don't claim it.
10218                 let payment_preimage = PaymentPreimage([42; 32]);
10219                 let route = find_route(
10220                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10221                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10222                 ).unwrap();
10223                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10224                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
10225                 check_added_monitors!(nodes[0], 1);
10226                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10227                 assert_eq!(events.len(), 1);
10228                 let event = events.pop().unwrap();
10229                 let path = vec![&nodes[1]];
10230                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10231
10232                 // Next, attempt a regular payment and make sure it fails.
10233                 let payment_secret = PaymentSecret([43; 32]);
10234                 nodes[0].node.send_payment_with_route(&route, payment_hash,
10235                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
10236                 check_added_monitors!(nodes[0], 1);
10237                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10238                 assert_eq!(events.len(), 1);
10239                 let ev = events.drain(..).next().unwrap();
10240                 let payment_event = SendEvent::from_event(ev);
10241                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10242                 check_added_monitors!(nodes[1], 0);
10243                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10244                 expect_pending_htlcs_forwardable!(nodes[1]);
10245                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10246                 check_added_monitors!(nodes[1], 1);
10247                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10248                 assert!(updates.update_add_htlcs.is_empty());
10249                 assert!(updates.update_fulfill_htlcs.is_empty());
10250                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10251                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10252                 assert!(updates.update_fee.is_none());
10253                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10254                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10255                 expect_payment_failed!(nodes[0], payment_hash, true);
10256
10257                 // Finally, succeed the keysend payment.
10258                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10259
10260                 // To start (3), send a keysend payment but don't claim it.
10261                 let payment_id_1 = PaymentId([44; 32]);
10262                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10263                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
10264                 check_added_monitors!(nodes[0], 1);
10265                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10266                 assert_eq!(events.len(), 1);
10267                 let event = events.pop().unwrap();
10268                 let path = vec![&nodes[1]];
10269                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
10270
10271                 // Next, attempt a keysend payment and make sure it fails.
10272                 let route_params = RouteParameters::from_payment_params_and_value(
10273                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
10274                         100_000
10275                 );
10276                 let route = find_route(
10277                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
10278                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
10279                 ).unwrap();
10280                 let payment_id_2 = PaymentId([45; 32]);
10281                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
10282                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
10283                 check_added_monitors!(nodes[0], 1);
10284                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
10285                 assert_eq!(events.len(), 1);
10286                 let ev = events.drain(..).next().unwrap();
10287                 let payment_event = SendEvent::from_event(ev);
10288                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
10289                 check_added_monitors!(nodes[1], 0);
10290                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
10291                 expect_pending_htlcs_forwardable!(nodes[1]);
10292                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
10293                 check_added_monitors!(nodes[1], 1);
10294                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
10295                 assert!(updates.update_add_htlcs.is_empty());
10296                 assert!(updates.update_fulfill_htlcs.is_empty());
10297                 assert_eq!(updates.update_fail_htlcs.len(), 1);
10298                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10299                 assert!(updates.update_fee.is_none());
10300                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
10301                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
10302                 expect_payment_failed!(nodes[0], payment_hash, true);
10303
10304                 // Finally, claim the original payment.
10305                 claim_payment(&nodes[0], &expected_route, payment_preimage);
10306         }
10307
10308         #[test]
10309         fn test_keysend_hash_mismatch() {
10310                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
10311                 // preimage doesn't match the msg's payment hash.
10312                 let chanmon_cfgs = create_chanmon_cfgs(2);
10313                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10314                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10315                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10316
10317                 let payer_pubkey = nodes[0].node.get_our_node_id();
10318                 let payee_pubkey = nodes[1].node.get_our_node_id();
10319
10320                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10321                 let route_params = RouteParameters::from_payment_params_and_value(
10322                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10323                 let network_graph = nodes[0].network_graph.clone();
10324                 let first_hops = nodes[0].node.list_usable_channels();
10325                 let scorer = test_utils::TestScorer::new();
10326                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10327                 let route = find_route(
10328                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10329                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10330                 ).unwrap();
10331
10332                 let test_preimage = PaymentPreimage([42; 32]);
10333                 let mismatch_payment_hash = PaymentHash([43; 32]);
10334                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
10335                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
10336                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10337                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10338                 check_added_monitors!(nodes[0], 1);
10339
10340                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10341                 assert_eq!(updates.update_add_htlcs.len(), 1);
10342                 assert!(updates.update_fulfill_htlcs.is_empty());
10343                 assert!(updates.update_fail_htlcs.is_empty());
10344                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10345                 assert!(updates.update_fee.is_none());
10346                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10347
10348                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10349         }
10350
10351         #[test]
10352         fn test_keysend_msg_with_secret_err() {
10353                 // Test that we error as expected if we receive a keysend payment that includes a payment
10354                 // secret when we don't support MPP keysend.
10355                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10356                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10357                 let chanmon_cfgs = create_chanmon_cfgs(2);
10358                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10359                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10360                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10361
10362                 let payer_pubkey = nodes[0].node.get_our_node_id();
10363                 let payee_pubkey = nodes[1].node.get_our_node_id();
10364
10365                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10366                 let route_params = RouteParameters::from_payment_params_and_value(
10367                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10368                 let network_graph = nodes[0].network_graph.clone();
10369                 let first_hops = nodes[0].node.list_usable_channels();
10370                 let scorer = test_utils::TestScorer::new();
10371                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10372                 let route = find_route(
10373                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10374                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10375                 ).unwrap();
10376
10377                 let test_preimage = PaymentPreimage([42; 32]);
10378                 let test_secret = PaymentSecret([43; 32]);
10379                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10380                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10381                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10382                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10383                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10384                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10385                 check_added_monitors!(nodes[0], 1);
10386
10387                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10388                 assert_eq!(updates.update_add_htlcs.len(), 1);
10389                 assert!(updates.update_fulfill_htlcs.is_empty());
10390                 assert!(updates.update_fail_htlcs.is_empty());
10391                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10392                 assert!(updates.update_fee.is_none());
10393                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10394
10395                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10396         }
10397
10398         #[test]
10399         fn test_multi_hop_missing_secret() {
10400                 let chanmon_cfgs = create_chanmon_cfgs(4);
10401                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10402                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10403                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10404
10405                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10406                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10407                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10408                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10409
10410                 // Marshall an MPP route.
10411                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10412                 let path = route.paths[0].clone();
10413                 route.paths.push(path);
10414                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10415                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10416                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10417                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10418                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10419                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10420
10421                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10422                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10423                 .unwrap_err() {
10424                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10425                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10426                         },
10427                         _ => panic!("unexpected error")
10428                 }
10429         }
10430
10431         #[test]
10432         fn test_drop_disconnected_peers_when_removing_channels() {
10433                 let chanmon_cfgs = create_chanmon_cfgs(2);
10434                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10435                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10436                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10437
10438                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10439
10440                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10441                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10442
10443                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10444                 check_closed_broadcast!(nodes[0], true);
10445                 check_added_monitors!(nodes[0], 1);
10446                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10447
10448                 {
10449                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10450                         // disconnected and the channel between has been force closed.
10451                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10452                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10453                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10454                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10455                 }
10456
10457                 nodes[0].node.timer_tick_occurred();
10458
10459                 {
10460                         // Assert that nodes[1] has now been removed.
10461                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10462                 }
10463         }
10464
10465         #[test]
10466         fn bad_inbound_payment_hash() {
10467                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10468                 let chanmon_cfgs = create_chanmon_cfgs(2);
10469                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10470                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10471                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10472
10473                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10474                 let payment_data = msgs::FinalOnionHopData {
10475                         payment_secret,
10476                         total_msat: 100_000,
10477                 };
10478
10479                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10480                 // payment verification fails as expected.
10481                 let mut bad_payment_hash = payment_hash.clone();
10482                 bad_payment_hash.0[0] += 1;
10483                 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) {
10484                         Ok(_) => panic!("Unexpected ok"),
10485                         Err(()) => {
10486                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10487                         }
10488                 }
10489
10490                 // Check that using the original payment hash succeeds.
10491                 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());
10492         }
10493
10494         #[test]
10495         fn test_id_to_peer_coverage() {
10496                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10497                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10498                 // the channel is successfully closed.
10499                 let chanmon_cfgs = create_chanmon_cfgs(2);
10500                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10501                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10502                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10503
10504                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10505                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10506                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10507                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10508                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10509
10510                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10511                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10512                 {
10513                         // Ensure that the `id_to_peer` map is empty until either party has received the
10514                         // funding transaction, and have the real `channel_id`.
10515                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10516                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10517                 }
10518
10519                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10520                 {
10521                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10522                         // as it has the funding transaction.
10523                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10524                         assert_eq!(nodes_0_lock.len(), 1);
10525                         assert!(nodes_0_lock.contains_key(&channel_id));
10526                 }
10527
10528                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10529
10530                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10531
10532                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10533                 {
10534                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10535                         assert_eq!(nodes_0_lock.len(), 1);
10536                         assert!(nodes_0_lock.contains_key(&channel_id));
10537                 }
10538                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10539
10540                 {
10541                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10542                         // as it has the funding transaction.
10543                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10544                         assert_eq!(nodes_1_lock.len(), 1);
10545                         assert!(nodes_1_lock.contains_key(&channel_id));
10546                 }
10547                 check_added_monitors!(nodes[1], 1);
10548                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10549                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10550                 check_added_monitors!(nodes[0], 1);
10551                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10552                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10553                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10554                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10555
10556                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10557                 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()));
10558                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10559                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10560
10561                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10562                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10563                 {
10564                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10565                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10566                         // fee for the closing transaction has been negotiated and the parties has the other
10567                         // party's signature for the fee negotiated closing transaction.)
10568                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10569                         assert_eq!(nodes_0_lock.len(), 1);
10570                         assert!(nodes_0_lock.contains_key(&channel_id));
10571                 }
10572
10573                 {
10574                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10575                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10576                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10577                         // kept in the `nodes[1]`'s `id_to_peer` map.
10578                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10579                         assert_eq!(nodes_1_lock.len(), 1);
10580                         assert!(nodes_1_lock.contains_key(&channel_id));
10581                 }
10582
10583                 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()));
10584                 {
10585                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10586                         // therefore has all it needs to fully close the channel (both signatures for the
10587                         // closing transaction).
10588                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10589                         // fully closed by `nodes[0]`.
10590                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10591
10592                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10593                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10594                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10595                         assert_eq!(nodes_1_lock.len(), 1);
10596                         assert!(nodes_1_lock.contains_key(&channel_id));
10597                 }
10598
10599                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10600
10601                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10602                 {
10603                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10604                         // they both have everything required to fully close the channel.
10605                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10606                 }
10607                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10608
10609                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10610                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10611         }
10612
10613         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10614                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10615                 check_api_error_message(expected_message, res_err)
10616         }
10617
10618         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10619                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10620                 check_api_error_message(expected_message, res_err)
10621         }
10622
10623         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10624                 match res_err {
10625                         Err(APIError::APIMisuseError { err }) => {
10626                                 assert_eq!(err, expected_err_message);
10627                         },
10628                         Err(APIError::ChannelUnavailable { err }) => {
10629                                 assert_eq!(err, expected_err_message);
10630                         },
10631                         Ok(_) => panic!("Unexpected Ok"),
10632                         Err(_) => panic!("Unexpected Error"),
10633                 }
10634         }
10635
10636         #[test]
10637         fn test_api_calls_with_unkown_counterparty_node() {
10638                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10639                 // expected if the `counterparty_node_id` is an unkown peer in the
10640                 // `ChannelManager::per_peer_state` map.
10641                 let chanmon_cfg = create_chanmon_cfgs(2);
10642                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10643                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10644                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10645
10646                 // Dummy values
10647                 let channel_id = ChannelId::from_bytes([4; 32]);
10648                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10649                 let intercept_id = InterceptId([0; 32]);
10650
10651                 // Test the API functions.
10652                 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);
10653
10654                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10655
10656                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10657
10658                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10659
10660                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10661
10662                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10663
10664                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10665         }
10666
10667         #[test]
10668         fn test_connection_limiting() {
10669                 // Test that we limit un-channel'd peers and un-funded channels properly.
10670                 let chanmon_cfgs = create_chanmon_cfgs(2);
10671                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10672                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10673                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10674
10675                 // Note that create_network connects the nodes together for us
10676
10677                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10678                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10679
10680                 let mut funding_tx = None;
10681                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10682                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10683                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10684
10685                         if idx == 0 {
10686                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10687                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10688                                 funding_tx = Some(tx.clone());
10689                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10690                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10691
10692                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10693                                 check_added_monitors!(nodes[1], 1);
10694                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10695
10696                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10697
10698                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10699                                 check_added_monitors!(nodes[0], 1);
10700                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10701                         }
10702                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10703                 }
10704
10705                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10706                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10707                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10708                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10709                         open_channel_msg.temporary_channel_id);
10710
10711                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10712                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10713                 // limit.
10714                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10715                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10716                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10717                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10718                         peer_pks.push(random_pk);
10719                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10720                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10721                         }, true).unwrap();
10722                 }
10723                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10724                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10725                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10726                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10727                 }, true).unwrap_err();
10728
10729                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10730                 // them if we have too many un-channel'd peers.
10731                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10732                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10733                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10734                 for ev in chan_closed_events {
10735                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10736                 }
10737                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10738                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10739                 }, true).unwrap();
10740                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10741                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10742                 }, true).unwrap_err();
10743
10744                 // but of course if the connection is outbound its allowed...
10745                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10746                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10747                 }, false).unwrap();
10748                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10749
10750                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10751                 // Even though we accept one more connection from new peers, we won't actually let them
10752                 // open channels.
10753                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10754                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10755                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10756                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10757                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10758                 }
10759                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10760                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10761                         open_channel_msg.temporary_channel_id);
10762
10763                 // Of course, however, outbound channels are always allowed
10764                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10765                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10766
10767                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10768                 // "protected" and can connect again.
10769                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10770                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10771                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10772                 }, true).unwrap();
10773                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10774
10775                 // Further, because the first channel was funded, we can open another channel with
10776                 // last_random_pk.
10777                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10778                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10779         }
10780
10781         #[test]
10782         fn test_outbound_chans_unlimited() {
10783                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10784                 let chanmon_cfgs = create_chanmon_cfgs(2);
10785                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10786                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10787                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10788
10789                 // Note that create_network connects the nodes together for us
10790
10791                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10792                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10793
10794                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10795                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10796                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10797                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10798                 }
10799
10800                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10801                 // rejected.
10802                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10803                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10804                         open_channel_msg.temporary_channel_id);
10805
10806                 // but we can still open an outbound channel.
10807                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10808                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10809
10810                 // but even with such an outbound channel, additional inbound channels will still fail.
10811                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10812                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10813                         open_channel_msg.temporary_channel_id);
10814         }
10815
10816         #[test]
10817         fn test_0conf_limiting() {
10818                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10819                 // flag set and (sometimes) accept channels as 0conf.
10820                 let chanmon_cfgs = create_chanmon_cfgs(2);
10821                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10822                 let mut settings = test_default_channel_config();
10823                 settings.manually_accept_inbound_channels = true;
10824                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10825                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10826
10827                 // Note that create_network connects the nodes together for us
10828
10829                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10830                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10831
10832                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10833                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10834                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10835                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10836                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10837                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10838                         }, true).unwrap();
10839
10840                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10841                         let events = nodes[1].node.get_and_clear_pending_events();
10842                         match events[0] {
10843                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10844                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10845                                 }
10846                                 _ => panic!("Unexpected event"),
10847                         }
10848                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10849                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10850                 }
10851
10852                 // If we try to accept a channel from another peer non-0conf it will fail.
10853                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10854                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10855                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10856                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10857                 }, true).unwrap();
10858                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10859                 let events = nodes[1].node.get_and_clear_pending_events();
10860                 match events[0] {
10861                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10862                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10863                                         Err(APIError::APIMisuseError { err }) =>
10864                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10865                                         _ => panic!(),
10866                                 }
10867                         }
10868                         _ => panic!("Unexpected event"),
10869                 }
10870                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10871                         open_channel_msg.temporary_channel_id);
10872
10873                 // ...however if we accept the same channel 0conf it should work just fine.
10874                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10875                 let events = nodes[1].node.get_and_clear_pending_events();
10876                 match events[0] {
10877                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10878                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10879                         }
10880                         _ => panic!("Unexpected event"),
10881                 }
10882                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10883         }
10884
10885         #[test]
10886         fn reject_excessively_underpaying_htlcs() {
10887                 let chanmon_cfg = create_chanmon_cfgs(1);
10888                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10889                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10890                 let node = create_network(1, &node_cfg, &node_chanmgr);
10891                 let sender_intended_amt_msat = 100;
10892                 let extra_fee_msat = 10;
10893                 let hop_data = msgs::InboundOnionPayload::Receive {
10894                         amt_msat: 100,
10895                         outgoing_cltv_value: 42,
10896                         payment_metadata: None,
10897                         keysend_preimage: None,
10898                         payment_data: Some(msgs::FinalOnionHopData {
10899                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10900                         }),
10901                         custom_tlvs: Vec::new(),
10902                 };
10903                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10904                 // intended amount, we fail the payment.
10905                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10906                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10907                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10908                 {
10909                         assert_eq!(err_code, 19);
10910                 } else { panic!(); }
10911
10912                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10913                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10914                         amt_msat: 100,
10915                         outgoing_cltv_value: 42,
10916                         payment_metadata: None,
10917                         keysend_preimage: None,
10918                         payment_data: Some(msgs::FinalOnionHopData {
10919                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10920                         }),
10921                         custom_tlvs: Vec::new(),
10922                 };
10923                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10924                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10925         }
10926
10927         #[test]
10928         fn test_inbound_anchors_manual_acceptance() {
10929                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10930                 // flag set and (sometimes) accept channels as 0conf.
10931                 let mut anchors_cfg = test_default_channel_config();
10932                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10933
10934                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10935                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10936
10937                 let chanmon_cfgs = create_chanmon_cfgs(3);
10938                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10939                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10940                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10941                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10942
10943                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10944                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10945
10946                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10947                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10948                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10949                 match &msg_events[0] {
10950                         MessageSendEvent::HandleError { node_id, action } => {
10951                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10952                                 match action {
10953                                         ErrorAction::SendErrorMessage { msg } =>
10954                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10955                                         _ => panic!("Unexpected error action"),
10956                                 }
10957                         }
10958                         _ => panic!("Unexpected event"),
10959                 }
10960
10961                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10962                 let events = nodes[2].node.get_and_clear_pending_events();
10963                 match events[0] {
10964                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10965                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10966                         _ => panic!("Unexpected event"),
10967                 }
10968                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10969         }
10970
10971         #[test]
10972         fn test_anchors_zero_fee_htlc_tx_fallback() {
10973                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10974                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10975                 // the channel without the anchors feature.
10976                 let chanmon_cfgs = create_chanmon_cfgs(2);
10977                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10978                 let mut anchors_config = test_default_channel_config();
10979                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10980                 anchors_config.manually_accept_inbound_channels = true;
10981                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10982                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10983
10984                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10985                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10986                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10987
10988                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10989                 let events = nodes[1].node.get_and_clear_pending_events();
10990                 match events[0] {
10991                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10992                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10993                         }
10994                         _ => panic!("Unexpected event"),
10995                 }
10996
10997                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10998                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10999
11000                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
11001                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
11002
11003                 // Since nodes[1] should not have accepted the channel, it should
11004                 // not have generated any events.
11005                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
11006         }
11007
11008         #[test]
11009         fn test_update_channel_config() {
11010                 let chanmon_cfg = create_chanmon_cfgs(2);
11011                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
11012                 let mut user_config = test_default_channel_config();
11013                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
11014                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
11015                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
11016                 let channel = &nodes[0].node.list_channels()[0];
11017
11018                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11019                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11020                 assert_eq!(events.len(), 0);
11021
11022                 user_config.channel_config.forwarding_fee_base_msat += 10;
11023                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
11024                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
11025                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11026                 assert_eq!(events.len(), 1);
11027                 match &events[0] {
11028                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11029                         _ => panic!("expected BroadcastChannelUpdate event"),
11030                 }
11031
11032                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
11033                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11034                 assert_eq!(events.len(), 0);
11035
11036                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
11037                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11038                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
11039                         ..Default::default()
11040                 }).unwrap();
11041                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11042                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11043                 assert_eq!(events.len(), 1);
11044                 match &events[0] {
11045                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11046                         _ => panic!("expected BroadcastChannelUpdate event"),
11047                 }
11048
11049                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
11050                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
11051                         forwarding_fee_proportional_millionths: Some(new_fee),
11052                         ..Default::default()
11053                 }).unwrap();
11054                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
11055                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
11056                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11057                 assert_eq!(events.len(), 1);
11058                 match &events[0] {
11059                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
11060                         _ => panic!("expected BroadcastChannelUpdate event"),
11061                 }
11062
11063                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
11064                 // should be applied to ensure update atomicity as specified in the API docs.
11065                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
11066                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
11067                 let new_fee = current_fee + 100;
11068                 assert!(
11069                         matches!(
11070                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
11071                                         forwarding_fee_proportional_millionths: Some(new_fee),
11072                                         ..Default::default()
11073                                 }),
11074                                 Err(APIError::ChannelUnavailable { err: _ }),
11075                         )
11076                 );
11077                 // Check that the fee hasn't changed for the channel that exists.
11078                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
11079                 let events = nodes[0].node.get_and_clear_pending_msg_events();
11080                 assert_eq!(events.len(), 0);
11081         }
11082
11083         #[test]
11084         fn test_payment_display() {
11085                 let payment_id = PaymentId([42; 32]);
11086                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11087                 let payment_hash = PaymentHash([42; 32]);
11088                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11089                 let payment_preimage = PaymentPreimage([42; 32]);
11090                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
11091         }
11092 }
11093
11094 #[cfg(ldk_bench)]
11095 pub mod bench {
11096         use crate::chain::Listen;
11097         use crate::chain::chainmonitor::{ChainMonitor, Persist};
11098         use crate::sign::{KeysManager, InMemorySigner};
11099         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
11100         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
11101         use crate::ln::functional_test_utils::*;
11102         use crate::ln::msgs::{ChannelMessageHandler, Init};
11103         use crate::routing::gossip::NetworkGraph;
11104         use crate::routing::router::{PaymentParameters, RouteParameters};
11105         use crate::util::test_utils;
11106         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
11107
11108         use bitcoin::hashes::Hash;
11109         use bitcoin::hashes::sha256::Hash as Sha256;
11110         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
11111
11112         use crate::sync::{Arc, Mutex, RwLock};
11113
11114         use criterion::Criterion;
11115
11116         type Manager<'a, P> = ChannelManager<
11117                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
11118                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
11119                         &'a test_utils::TestLogger, &'a P>,
11120                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
11121                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
11122                 &'a test_utils::TestLogger>;
11123
11124         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
11125                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
11126         }
11127         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
11128                 type CM = Manager<'chan_mon_cfg, P>;
11129                 #[inline]
11130                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
11131                 #[inline]
11132                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
11133         }
11134
11135         pub fn bench_sends(bench: &mut Criterion) {
11136                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
11137         }
11138
11139         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
11140                 // Do a simple benchmark of sending a payment back and forth between two nodes.
11141                 // Note that this is unrealistic as each payment send will require at least two fsync
11142                 // calls per node.
11143                 let network = bitcoin::Network::Testnet;
11144                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
11145
11146                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
11147                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
11148                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
11149                 let scorer = RwLock::new(test_utils::TestScorer::new());
11150                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
11151
11152                 let mut config: UserConfig = Default::default();
11153                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
11154                 config.channel_handshake_config.minimum_depth = 1;
11155
11156                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
11157                 let seed_a = [1u8; 32];
11158                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
11159                 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 {
11160                         network,
11161                         best_block: BestBlock::from_network(network),
11162                 }, genesis_block.header.time);
11163                 let node_a_holder = ANodeHolder { node: &node_a };
11164
11165                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
11166                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
11167                 let seed_b = [2u8; 32];
11168                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
11169                 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 {
11170                         network,
11171                         best_block: BestBlock::from_network(network),
11172                 }, genesis_block.header.time);
11173                 let node_b_holder = ANodeHolder { node: &node_b };
11174
11175                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
11176                         features: node_b.init_features(), networks: None, remote_network_address: None
11177                 }, true).unwrap();
11178                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
11179                         features: node_a.init_features(), networks: None, remote_network_address: None
11180                 }, false).unwrap();
11181                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
11182                 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()));
11183                 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()));
11184
11185                 let tx;
11186                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
11187                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
11188                                 value: 8_000_000, script_pubkey: output_script,
11189                         }]};
11190                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
11191                 } else { panic!(); }
11192
11193                 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()));
11194                 let events_b = node_b.get_and_clear_pending_events();
11195                 assert_eq!(events_b.len(), 1);
11196                 match events_b[0] {
11197                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11198                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11199                         },
11200                         _ => panic!("Unexpected event"),
11201                 }
11202
11203                 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()));
11204                 let events_a = node_a.get_and_clear_pending_events();
11205                 assert_eq!(events_a.len(), 1);
11206                 match events_a[0] {
11207                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
11208                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11209                         },
11210                         _ => panic!("Unexpected event"),
11211                 }
11212
11213                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
11214
11215                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
11216                 Listen::block_connected(&node_a, &block, 1);
11217                 Listen::block_connected(&node_b, &block, 1);
11218
11219                 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()));
11220                 let msg_events = node_a.get_and_clear_pending_msg_events();
11221                 assert_eq!(msg_events.len(), 2);
11222                 match msg_events[0] {
11223                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
11224                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
11225                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
11226                         },
11227                         _ => panic!(),
11228                 }
11229                 match msg_events[1] {
11230                         MessageSendEvent::SendChannelUpdate { .. } => {},
11231                         _ => panic!(),
11232                 }
11233
11234                 let events_a = node_a.get_and_clear_pending_events();
11235                 assert_eq!(events_a.len(), 1);
11236                 match events_a[0] {
11237                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11238                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
11239                         },
11240                         _ => panic!("Unexpected event"),
11241                 }
11242
11243                 let events_b = node_b.get_and_clear_pending_events();
11244                 assert_eq!(events_b.len(), 1);
11245                 match events_b[0] {
11246                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
11247                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
11248                         },
11249                         _ => panic!("Unexpected event"),
11250                 }
11251
11252                 let mut payment_count: u64 = 0;
11253                 macro_rules! send_payment {
11254                         ($node_a: expr, $node_b: expr) => {
11255                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
11256                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
11257                                 let mut payment_preimage = PaymentPreimage([0; 32]);
11258                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
11259                                 payment_count += 1;
11260                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
11261                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
11262
11263                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
11264                                         PaymentId(payment_hash.0),
11265                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
11266                                         Retry::Attempts(0)).unwrap();
11267                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
11268                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
11269                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
11270                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
11271                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
11272                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
11273                                 $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()));
11274
11275                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
11276                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
11277                                 $node_b.claim_funds(payment_preimage);
11278                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
11279
11280                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
11281                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
11282                                                 assert_eq!(node_id, $node_a.get_our_node_id());
11283                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
11284                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
11285                                         },
11286                                         _ => panic!("Failed to generate claim event"),
11287                                 }
11288
11289                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
11290                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
11291                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
11292                                 $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()));
11293
11294                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
11295                         }
11296                 }
11297
11298                 bench.bench_function(bench_name, |b| b.iter(|| {
11299                         send_payment!(node_a, node_b);
11300                         send_payment!(node_b, node_a);
11301                 }));
11302         }
11303 }