Support atomic partial updates to ChannelConfig
[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;
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelError, ChannelUpdateStatus, ShutdownResult, UpdateFulfillCommitFetch};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteHop, 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, MAX_VALUE_MSAT};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, ChannelSigner, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113         },
114         ReceiveKeysend {
115                 payment_preimage: PaymentPreimage,
116                 payment_metadata: Option<Vec<u8>>,
117                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
118         },
119 }
120
121 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
122 pub(super) struct PendingHTLCInfo {
123         pub(super) routing: PendingHTLCRouting,
124         pub(super) incoming_shared_secret: [u8; 32],
125         payment_hash: PaymentHash,
126         /// Amount received
127         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
128         /// Sender intended amount to forward or receive (actual amount received
129         /// may overshoot this in either case)
130         pub(super) outgoing_amt_msat: u64,
131         pub(super) outgoing_cltv_value: u32,
132 }
133
134 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
135 pub(super) enum HTLCFailureMsg {
136         Relay(msgs::UpdateFailHTLC),
137         Malformed(msgs::UpdateFailMalformedHTLC),
138 }
139
140 /// Stores whether we can't forward an HTLC or relevant forwarding info
141 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
142 pub(super) enum PendingHTLCStatus {
143         Forward(PendingHTLCInfo),
144         Fail(HTLCFailureMsg),
145 }
146
147 pub(super) struct PendingAddHTLCInfo {
148         pub(super) forward_info: PendingHTLCInfo,
149
150         // These fields are produced in `forward_htlcs()` and consumed in
151         // `process_pending_htlc_forwards()` for constructing the
152         // `HTLCSource::PreviousHopData` for failed and forwarded
153         // HTLCs.
154         //
155         // Note that this may be an outbound SCID alias for the associated channel.
156         prev_short_channel_id: u64,
157         prev_htlc_id: u64,
158         prev_funding_outpoint: OutPoint,
159         prev_user_channel_id: u128,
160 }
161
162 pub(super) enum HTLCForwardInfo {
163         AddHTLC(PendingAddHTLCInfo),
164         FailHTLC {
165                 htlc_id: u64,
166                 err_packet: msgs::OnionErrorPacket,
167         },
168 }
169
170 /// Tracks the inbound corresponding to an outbound HTLC
171 #[derive(Clone, Hash, PartialEq, Eq)]
172 pub(crate) struct HTLCPreviousHopData {
173         // Note that this may be an outbound SCID alias for the associated channel.
174         short_channel_id: u64,
175         htlc_id: u64,
176         incoming_packet_shared_secret: [u8; 32],
177         phantom_shared_secret: Option<[u8; 32]>,
178
179         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
180         // channel with a preimage provided by the forward channel.
181         outpoint: OutPoint,
182 }
183
184 enum OnionPayload {
185         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
186         Invoice {
187                 /// This is only here for backwards-compatibility in serialization, in the future it can be
188                 /// removed, breaking clients running 0.0.106 and earlier.
189                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
190         },
191         /// Contains the payer-provided preimage.
192         Spontaneous(PaymentPreimage),
193 }
194
195 /// HTLCs that are to us and can be failed/claimed by the user
196 struct ClaimableHTLC {
197         prev_hop: HTLCPreviousHopData,
198         cltv_expiry: u32,
199         /// The amount (in msats) of this MPP part
200         value: u64,
201         /// The amount (in msats) that the sender intended to be sent in this MPP
202         /// part (used for validating total MPP amount)
203         sender_intended_value: u64,
204         onion_payload: OnionPayload,
205         timer_ticks: u8,
206         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
207         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
208         total_value_received: Option<u64>,
209         /// The sender intended sum total of all MPP parts specified in the onion
210         total_msat: u64,
211 }
212
213 /// A payment identifier used to uniquely identify a payment to LDK.
214 ///
215 /// This is not exported to bindings users as we just use [u8; 32] directly
216 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
217 pub struct PaymentId(pub [u8; 32]);
218
219 impl Writeable for PaymentId {
220         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
221                 self.0.write(w)
222         }
223 }
224
225 impl Readable for PaymentId {
226         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
227                 let buf: [u8; 32] = Readable::read(r)?;
228                 Ok(PaymentId(buf))
229         }
230 }
231
232 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
233 ///
234 /// This is not exported to bindings users as we just use [u8; 32] directly
235 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
236 pub struct InterceptId(pub [u8; 32]);
237
238 impl Writeable for InterceptId {
239         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
240                 self.0.write(w)
241         }
242 }
243
244 impl Readable for InterceptId {
245         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
246                 let buf: [u8; 32] = Readable::read(r)?;
247                 Ok(InterceptId(buf))
248         }
249 }
250
251 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
252 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
253 pub(crate) enum SentHTLCId {
254         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
255         OutboundRoute { session_priv: SecretKey },
256 }
257 impl SentHTLCId {
258         pub(crate) fn from_source(source: &HTLCSource) -> Self {
259                 match source {
260                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
261                                 short_channel_id: hop_data.short_channel_id,
262                                 htlc_id: hop_data.htlc_id,
263                         },
264                         HTLCSource::OutboundRoute { session_priv, .. } =>
265                                 Self::OutboundRoute { session_priv: *session_priv },
266                 }
267         }
268 }
269 impl_writeable_tlv_based_enum!(SentHTLCId,
270         (0, PreviousHopData) => {
271                 (0, short_channel_id, required),
272                 (2, htlc_id, required),
273         },
274         (2, OutboundRoute) => {
275                 (0, session_priv, required),
276         };
277 );
278
279
280 /// Tracks the inbound corresponding to an outbound HTLC
281 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
282 #[derive(Clone, PartialEq, Eq)]
283 pub(crate) enum HTLCSource {
284         PreviousHopData(HTLCPreviousHopData),
285         OutboundRoute {
286                 path: Path,
287                 session_priv: SecretKey,
288                 /// Technically we can recalculate this from the route, but we cache it here to avoid
289                 /// doing a double-pass on route when we get a failure back
290                 first_hop_htlc_msat: u64,
291                 payment_id: PaymentId,
292         },
293 }
294 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
295 impl core::hash::Hash for HTLCSource {
296         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
297                 match self {
298                         HTLCSource::PreviousHopData(prev_hop_data) => {
299                                 0u8.hash(hasher);
300                                 prev_hop_data.hash(hasher);
301                         },
302                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
303                                 1u8.hash(hasher);
304                                 path.hash(hasher);
305                                 session_priv[..].hash(hasher);
306                                 payment_id.hash(hasher);
307                                 first_hop_htlc_msat.hash(hasher);
308                         },
309                 }
310         }
311 }
312 impl HTLCSource {
313         #[cfg(not(feature = "grind_signatures"))]
314         #[cfg(test)]
315         pub fn dummy() -> Self {
316                 HTLCSource::OutboundRoute {
317                         path: Path { hops: Vec::new(), blinded_tail: None },
318                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
319                         first_hop_htlc_msat: 0,
320                         payment_id: PaymentId([2; 32]),
321                 }
322         }
323
324         #[cfg(debug_assertions)]
325         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
326         /// transaction. Useful to ensure different datastructures match up.
327         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
328                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
329                         *first_hop_htlc_msat == htlc.amount_msat
330                 } else {
331                         // There's nothing we can check for forwarded HTLCs
332                         true
333                 }
334         }
335 }
336
337 struct ReceiveError {
338         err_code: u16,
339         err_data: Vec<u8>,
340         msg: &'static str,
341 }
342
343 /// This enum is used to specify which error data to send to peers when failing back an HTLC
344 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
345 ///
346 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
347 #[derive(Clone, Copy)]
348 pub enum FailureCode {
349         /// We had a temporary error processing the payment. Useful if no other error codes fit
350         /// and you want to indicate that the payer may want to retry.
351         TemporaryNodeFailure             = 0x2000 | 2,
352         /// We have a required feature which was not in this onion. For example, you may require
353         /// some additional metadata that was not provided with this payment.
354         RequiredNodeFeatureMissing       = 0x4000 | 0x2000 | 3,
355         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
356         /// the HTLC is too close to the current block height for safe handling.
357         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
358         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
359         IncorrectOrUnknownPaymentDetails = 0x4000 | 15,
360 }
361
362 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
363 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
364 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
365 /// peer_state lock. We then return the set of things that need to be done outside the lock in
366 /// this struct and call handle_error!() on it.
367
368 struct MsgHandleErrInternal {
369         err: msgs::LightningError,
370         chan_id: Option<([u8; 32], u128)>, // If Some a channel of ours has been closed
371         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
372 }
373 impl MsgHandleErrInternal {
374         #[inline]
375         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
376                 Self {
377                         err: LightningError {
378                                 err: err.clone(),
379                                 action: msgs::ErrorAction::SendErrorMessage {
380                                         msg: msgs::ErrorMessage {
381                                                 channel_id,
382                                                 data: err
383                                         },
384                                 },
385                         },
386                         chan_id: None,
387                         shutdown_finish: None,
388                 }
389         }
390         #[inline]
391         fn from_no_close(err: msgs::LightningError) -> Self {
392                 Self { err, chan_id: None, shutdown_finish: None }
393         }
394         #[inline]
395         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
396                 Self {
397                         err: LightningError {
398                                 err: err.clone(),
399                                 action: msgs::ErrorAction::SendErrorMessage {
400                                         msg: msgs::ErrorMessage {
401                                                 channel_id,
402                                                 data: err
403                                         },
404                                 },
405                         },
406                         chan_id: Some((channel_id, user_channel_id)),
407                         shutdown_finish: Some((shutdown_res, channel_update)),
408                 }
409         }
410         #[inline]
411         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
412                 Self {
413                         err: match err {
414                                 ChannelError::Warn(msg) =>  LightningError {
415                                         err: msg.clone(),
416                                         action: msgs::ErrorAction::SendWarningMessage {
417                                                 msg: msgs::WarningMessage {
418                                                         channel_id,
419                                                         data: msg
420                                                 },
421                                                 log_level: Level::Warn,
422                                         },
423                                 },
424                                 ChannelError::Ignore(msg) => LightningError {
425                                         err: msg,
426                                         action: msgs::ErrorAction::IgnoreError,
427                                 },
428                                 ChannelError::Close(msg) => LightningError {
429                                         err: msg.clone(),
430                                         action: msgs::ErrorAction::SendErrorMessage {
431                                                 msg: msgs::ErrorMessage {
432                                                         channel_id,
433                                                         data: msg
434                                                 },
435                                         },
436                                 },
437                         },
438                         chan_id: None,
439                         shutdown_finish: None,
440                 }
441         }
442 }
443
444 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
445 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
446 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
447 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
448 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
449
450 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
451 /// be sent in the order they appear in the return value, however sometimes the order needs to be
452 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
453 /// they were originally sent). In those cases, this enum is also returned.
454 #[derive(Clone, PartialEq)]
455 pub(super) enum RAACommitmentOrder {
456         /// Send the CommitmentUpdate messages first
457         CommitmentFirst,
458         /// Send the RevokeAndACK message first
459         RevokeAndACKFirst,
460 }
461
462 /// Information about a payment which is currently being claimed.
463 struct ClaimingPayment {
464         amount_msat: u64,
465         payment_purpose: events::PaymentPurpose,
466         receiver_node_id: PublicKey,
467 }
468 impl_writeable_tlv_based!(ClaimingPayment, {
469         (0, amount_msat, required),
470         (2, payment_purpose, required),
471         (4, receiver_node_id, required),
472 });
473
474 struct ClaimablePayment {
475         purpose: events::PaymentPurpose,
476         onion_fields: Option<RecipientOnionFields>,
477         htlcs: Vec<ClaimableHTLC>,
478 }
479
480 /// Information about claimable or being-claimed payments
481 struct ClaimablePayments {
482         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
483         /// failed/claimed by the user.
484         ///
485         /// Note that, no consistency guarantees are made about the channels given here actually
486         /// existing anymore by the time you go to read them!
487         ///
488         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
489         /// we don't get a duplicate payment.
490         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
491
492         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
493         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
494         /// as an [`events::Event::PaymentClaimed`].
495         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
496 }
497
498 /// Events which we process internally but cannot be processed immediately at the generation site
499 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
500 /// running normally, and specifically must be processed before any other non-background
501 /// [`ChannelMonitorUpdate`]s are applied.
502 enum BackgroundEvent {
503         /// Handle a ChannelMonitorUpdate which closes the channel. This is only separated from
504         /// [`Self::MonitorUpdateRegeneratedOnStartup`] as the maybe-non-closing variant needs a public
505         /// key to handle channel resumption, whereas if the channel has been force-closed we do not
506         /// need the counterparty node_id.
507         ///
508         /// Note that any such events are lost on shutdown, so in general they must be updates which
509         /// are regenerated on startup.
510         ClosingMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
511         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
512         /// channel to continue normal operation.
513         ///
514         /// In general this should be used rather than
515         /// [`Self::ClosingMonitorUpdateRegeneratedOnStartup`], however in cases where the
516         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
517         /// error the other variant is acceptable.
518         ///
519         /// Note that any such events are lost on shutdown, so in general they must be updates which
520         /// are regenerated on startup.
521         MonitorUpdateRegeneratedOnStartup {
522                 counterparty_node_id: PublicKey,
523                 funding_txo: OutPoint,
524                 update: ChannelMonitorUpdate
525         },
526 }
527
528 #[derive(Debug)]
529 pub(crate) enum MonitorUpdateCompletionAction {
530         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
531         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
532         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
533         /// event can be generated.
534         PaymentClaimed { payment_hash: PaymentHash },
535         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
536         /// operation of another channel.
537         ///
538         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
539         /// from completing a monitor update which removes the payment preimage until the inbound edge
540         /// completes a monitor update containing the payment preimage. In that case, after the inbound
541         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
542         /// outbound edge.
543         EmitEventAndFreeOtherChannel {
544                 event: events::Event,
545                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
546         },
547 }
548
549 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
550         (0, PaymentClaimed) => { (0, payment_hash, required) },
551         (2, EmitEventAndFreeOtherChannel) => {
552                 (0, event, upgradable_required),
553                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
554                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
555                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
556                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
557                 // downgrades to prior versions.
558                 (1, downstream_counterparty_and_funding_outpoint, option),
559         },
560 );
561
562 #[derive(Clone, Debug, PartialEq, Eq)]
563 pub(crate) enum EventCompletionAction {
564         ReleaseRAAChannelMonitorUpdate {
565                 counterparty_node_id: PublicKey,
566                 channel_funding_outpoint: OutPoint,
567         },
568 }
569 impl_writeable_tlv_based_enum!(EventCompletionAction,
570         (0, ReleaseRAAChannelMonitorUpdate) => {
571                 (0, channel_funding_outpoint, required),
572                 (2, counterparty_node_id, required),
573         };
574 );
575
576 #[derive(Clone, PartialEq, Eq, Debug)]
577 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
578 /// the blocked action here. See enum variants for more info.
579 pub(crate) enum RAAMonitorUpdateBlockingAction {
580         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
581         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
582         /// durably to disk.
583         ForwardedPaymentInboundClaim {
584                 /// The upstream channel ID (i.e. the inbound edge).
585                 channel_id: [u8; 32],
586                 /// The HTLC ID on the inbound edge.
587                 htlc_id: u64,
588         },
589 }
590
591 impl RAAMonitorUpdateBlockingAction {
592         #[allow(unused)]
593         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
594                 Self::ForwardedPaymentInboundClaim {
595                         channel_id: prev_hop.outpoint.to_channel_id(),
596                         htlc_id: prev_hop.htlc_id,
597                 }
598         }
599 }
600
601 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
602         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
603 ;);
604
605
606 /// State we hold per-peer.
607 pub(super) struct PeerState<Signer: ChannelSigner> {
608         /// `temporary_channel_id` or `channel_id` -> `channel`.
609         ///
610         /// Holds all channels where the peer is the counterparty. Once a channel has been assigned a
611         /// `channel_id`, the `temporary_channel_id` key in the map is updated and is replaced by the
612         /// `channel_id`.
613         pub(super) channel_by_id: HashMap<[u8; 32], Channel<Signer>>,
614         /// The latest `InitFeatures` we heard from the peer.
615         latest_features: InitFeatures,
616         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
617         /// for broadcast messages, where ordering isn't as strict).
618         pub(super) pending_msg_events: Vec<MessageSendEvent>,
619         /// Map from a specific channel to some action(s) that should be taken when all pending
620         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
621         ///
622         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
623         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
624         /// channels with a peer this will just be one allocation and will amount to a linear list of
625         /// channels to walk, avoiding the whole hashing rigmarole.
626         ///
627         /// Note that the channel may no longer exist. For example, if a channel was closed but we
628         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
629         /// for a missing channel. While a malicious peer could construct a second channel with the
630         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
631         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
632         /// duplicates do not occur, so such channels should fail without a monitor update completing.
633         monitor_update_blocked_actions: BTreeMap<[u8; 32], Vec<MonitorUpdateCompletionAction>>,
634         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
635         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
636         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
637         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
638         actions_blocking_raa_monitor_updates: BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
639         /// The peer is currently connected (i.e. we've seen a
640         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
641         /// [`ChannelMessageHandler::peer_disconnected`].
642         is_connected: bool,
643 }
644
645 impl <Signer: ChannelSigner> PeerState<Signer> {
646         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
647         /// If true is passed for `require_disconnected`, the function will return false if we haven't
648         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
649         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
650                 if require_disconnected && self.is_connected {
651                         return false
652                 }
653                 self.channel_by_id.is_empty() && self.monitor_update_blocked_actions.is_empty()
654         }
655 }
656
657 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
658 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
659 ///
660 /// For users who don't want to bother doing their own payment preimage storage, we also store that
661 /// here.
662 ///
663 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
664 /// and instead encoding it in the payment secret.
665 struct PendingInboundPayment {
666         /// The payment secret that the sender must use for us to accept this payment
667         payment_secret: PaymentSecret,
668         /// Time at which this HTLC expires - blocks with a header time above this value will result in
669         /// this payment being removed.
670         expiry_time: u64,
671         /// Arbitrary identifier the user specifies (or not)
672         user_payment_id: u64,
673         // Other required attributes of the payment, optionally enforced:
674         payment_preimage: Option<PaymentPreimage>,
675         min_value_msat: Option<u64>,
676 }
677
678 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
679 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
680 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
681 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
682 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
683 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
684 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
685 /// of [`KeysManager`] and [`DefaultRouter`].
686 ///
687 /// This is not exported to bindings users as Arcs don't make sense in bindings
688 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
689         Arc<M>,
690         Arc<T>,
691         Arc<KeysManager>,
692         Arc<KeysManager>,
693         Arc<KeysManager>,
694         Arc<F>,
695         Arc<DefaultRouter<
696                 Arc<NetworkGraph<Arc<L>>>,
697                 Arc<L>,
698                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
699                 ProbabilisticScoringFeeParameters,
700                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
701         >>,
702         Arc<L>
703 >;
704
705 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
706 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
707 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
708 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
709 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
710 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
711 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
712 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
713 /// of [`KeysManager`] and [`DefaultRouter`].
714 ///
715 /// This is not exported to bindings users as Arcs don't make sense in bindings
716 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> = ChannelManager<&'a M, &'b T, &'c KeysManager, &'c KeysManager, &'c KeysManager, &'d F, &'e DefaultRouter<&'f NetworkGraph<&'g L>, &'g L, &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>, ProbabilisticScoringFeeParameters, ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>, &'g L>;
717
718 macro_rules! define_test_pub_trait { ($vis: vis) => {
719 /// A trivial trait which describes any [`ChannelManager`] used in testing.
720 $vis trait AChannelManager {
721         type Watch: chain::Watch<Self::Signer> + ?Sized;
722         type M: Deref<Target = Self::Watch>;
723         type Broadcaster: BroadcasterInterface + ?Sized;
724         type T: Deref<Target = Self::Broadcaster>;
725         type EntropySource: EntropySource + ?Sized;
726         type ES: Deref<Target = Self::EntropySource>;
727         type NodeSigner: NodeSigner + ?Sized;
728         type NS: Deref<Target = Self::NodeSigner>;
729         type Signer: WriteableEcdsaChannelSigner + Sized;
730         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
731         type SP: Deref<Target = Self::SignerProvider>;
732         type FeeEstimator: FeeEstimator + ?Sized;
733         type F: Deref<Target = Self::FeeEstimator>;
734         type Router: Router + ?Sized;
735         type R: Deref<Target = Self::Router>;
736         type Logger: Logger + ?Sized;
737         type L: Deref<Target = Self::Logger>;
738         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
739 }
740 } }
741 #[cfg(any(test, feature = "_test_utils"))]
742 define_test_pub_trait!(pub);
743 #[cfg(not(any(test, feature = "_test_utils")))]
744 define_test_pub_trait!(pub(crate));
745 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
746 for ChannelManager<M, T, ES, NS, SP, F, R, L>
747 where
748         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
749         T::Target: BroadcasterInterface,
750         ES::Target: EntropySource,
751         NS::Target: NodeSigner,
752         SP::Target: SignerProvider,
753         F::Target: FeeEstimator,
754         R::Target: Router,
755         L::Target: Logger,
756 {
757         type Watch = M::Target;
758         type M = M;
759         type Broadcaster = T::Target;
760         type T = T;
761         type EntropySource = ES::Target;
762         type ES = ES;
763         type NodeSigner = NS::Target;
764         type NS = NS;
765         type Signer = <SP::Target as SignerProvider>::Signer;
766         type SignerProvider = SP::Target;
767         type SP = SP;
768         type FeeEstimator = F::Target;
769         type F = F;
770         type Router = R::Target;
771         type R = R;
772         type Logger = L::Target;
773         type L = L;
774         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
775 }
776
777 /// Manager which keeps track of a number of channels and sends messages to the appropriate
778 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
779 ///
780 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
781 /// to individual Channels.
782 ///
783 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
784 /// all peers during write/read (though does not modify this instance, only the instance being
785 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
786 /// called [`funding_transaction_generated`] for outbound channels) being closed.
787 ///
788 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
789 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
790 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
791 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
792 /// the serialization process). If the deserialized version is out-of-date compared to the
793 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
794 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
795 ///
796 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
797 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
798 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
799 ///
800 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
801 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
802 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
803 /// offline for a full minute. In order to track this, you must call
804 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
805 ///
806 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
807 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
808 /// not have a channel with being unable to connect to us or open new channels with us if we have
809 /// many peers with unfunded channels.
810 ///
811 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
812 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
813 /// never limited. Please ensure you limit the count of such channels yourself.
814 ///
815 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
816 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
817 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
818 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
819 /// you're using lightning-net-tokio.
820 ///
821 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
822 /// [`funding_created`]: msgs::FundingCreated
823 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
824 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
825 /// [`update_channel`]: chain::Watch::update_channel
826 /// [`ChannelUpdate`]: msgs::ChannelUpdate
827 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
828 /// [`read`]: ReadableArgs::read
829 //
830 // Lock order:
831 // The tree structure below illustrates the lock order requirements for the different locks of the
832 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
833 // and should then be taken in the order of the lowest to the highest level in the tree.
834 // Note that locks on different branches shall not be taken at the same time, as doing so will
835 // create a new lock order for those specific locks in the order they were taken.
836 //
837 // Lock order tree:
838 //
839 // `total_consistency_lock`
840 //  |
841 //  |__`forward_htlcs`
842 //  |   |
843 //  |   |__`pending_intercepted_htlcs`
844 //  |
845 //  |__`per_peer_state`
846 //  |   |
847 //  |   |__`pending_inbound_payments`
848 //  |       |
849 //  |       |__`claimable_payments`
850 //  |       |
851 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
852 //  |           |
853 //  |           |__`peer_state`
854 //  |               |
855 //  |               |__`id_to_peer`
856 //  |               |
857 //  |               |__`short_to_chan_info`
858 //  |               |
859 //  |               |__`outbound_scid_aliases`
860 //  |               |
861 //  |               |__`best_block`
862 //  |               |
863 //  |               |__`pending_events`
864 //  |                   |
865 //  |                   |__`pending_background_events`
866 //
867 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
868 where
869         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
870         T::Target: BroadcasterInterface,
871         ES::Target: EntropySource,
872         NS::Target: NodeSigner,
873         SP::Target: SignerProvider,
874         F::Target: FeeEstimator,
875         R::Target: Router,
876         L::Target: Logger,
877 {
878         default_configuration: UserConfig,
879         genesis_hash: BlockHash,
880         fee_estimator: LowerBoundedFeeEstimator<F>,
881         chain_monitor: M,
882         tx_broadcaster: T,
883         #[allow(unused)]
884         router: R,
885
886         /// See `ChannelManager` struct-level documentation for lock order requirements.
887         #[cfg(test)]
888         pub(super) best_block: RwLock<BestBlock>,
889         #[cfg(not(test))]
890         best_block: RwLock<BestBlock>,
891         secp_ctx: Secp256k1<secp256k1::All>,
892
893         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
894         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
895         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
896         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
897         ///
898         /// See `ChannelManager` struct-level documentation for lock order requirements.
899         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
900
901         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
902         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
903         /// (if the channel has been force-closed), however we track them here to prevent duplicative
904         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
905         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
906         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
907         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
908         /// after reloading from disk while replaying blocks against ChannelMonitors.
909         ///
910         /// See `PendingOutboundPayment` documentation for more info.
911         ///
912         /// See `ChannelManager` struct-level documentation for lock order requirements.
913         pending_outbound_payments: OutboundPayments,
914
915         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
916         ///
917         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
918         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
919         /// and via the classic SCID.
920         ///
921         /// Note that no consistency guarantees are made about the existence of a channel with the
922         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
923         ///
924         /// See `ChannelManager` struct-level documentation for lock order requirements.
925         #[cfg(test)]
926         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
927         #[cfg(not(test))]
928         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
929         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
930         /// until the user tells us what we should do with them.
931         ///
932         /// See `ChannelManager` struct-level documentation for lock order requirements.
933         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
934
935         /// The sets of payments which are claimable or currently being claimed. See
936         /// [`ClaimablePayments`]' individual field docs for more info.
937         ///
938         /// See `ChannelManager` struct-level documentation for lock order requirements.
939         claimable_payments: Mutex<ClaimablePayments>,
940
941         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
942         /// and some closed channels which reached a usable state prior to being closed. This is used
943         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
944         /// active channel list on load.
945         ///
946         /// See `ChannelManager` struct-level documentation for lock order requirements.
947         outbound_scid_aliases: Mutex<HashSet<u64>>,
948
949         /// `channel_id` -> `counterparty_node_id`.
950         ///
951         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
952         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
953         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
954         ///
955         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
956         /// the corresponding channel for the event, as we only have access to the `channel_id` during
957         /// the handling of the events.
958         ///
959         /// Note that no consistency guarantees are made about the existence of a peer with the
960         /// `counterparty_node_id` in our other maps.
961         ///
962         /// TODO:
963         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
964         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
965         /// would break backwards compatability.
966         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
967         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
968         /// required to access the channel with the `counterparty_node_id`.
969         ///
970         /// See `ChannelManager` struct-level documentation for lock order requirements.
971         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
972
973         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
974         ///
975         /// Outbound SCID aliases are added here once the channel is available for normal use, with
976         /// SCIDs being added once the funding transaction is confirmed at the channel's required
977         /// confirmation depth.
978         ///
979         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
980         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
981         /// channel with the `channel_id` in our other maps.
982         ///
983         /// See `ChannelManager` struct-level documentation for lock order requirements.
984         #[cfg(test)]
985         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
986         #[cfg(not(test))]
987         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
988
989         our_network_pubkey: PublicKey,
990
991         inbound_payment_key: inbound_payment::ExpandedKey,
992
993         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
994         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
995         /// we encrypt the namespace identifier using these bytes.
996         ///
997         /// [fake scids]: crate::util::scid_utils::fake_scid
998         fake_scid_rand_bytes: [u8; 32],
999
1000         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1001         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1002         /// keeping additional state.
1003         probing_cookie_secret: [u8; 32],
1004
1005         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1006         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1007         /// very far in the past, and can only ever be up to two hours in the future.
1008         highest_seen_timestamp: AtomicUsize,
1009
1010         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1011         /// basis, as well as the peer's latest features.
1012         ///
1013         /// If we are connected to a peer we always at least have an entry here, even if no channels
1014         /// are currently open with that peer.
1015         ///
1016         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1017         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1018         /// channels.
1019         ///
1020         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1021         ///
1022         /// See `ChannelManager` struct-level documentation for lock order requirements.
1023         #[cfg(not(any(test, feature = "_test_utils")))]
1024         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
1025         #[cfg(any(test, feature = "_test_utils"))]
1026         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
1027
1028         /// The set of events which we need to give to the user to handle. In some cases an event may
1029         /// require some further action after the user handles it (currently only blocking a monitor
1030         /// update from being handed to the user to ensure the included changes to the channel state
1031         /// are handled by the user before they're persisted durably to disk). In that case, the second
1032         /// element in the tuple is set to `Some` with further details of the action.
1033         ///
1034         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1035         /// could be in the middle of being processed without the direct mutex held.
1036         ///
1037         /// See `ChannelManager` struct-level documentation for lock order requirements.
1038         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1039         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1040         pending_events_processor: AtomicBool,
1041
1042         /// If we are running during init (either directly during the deserialization method or in
1043         /// block connection methods which run after deserialization but before normal operation) we
1044         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1045         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1046         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1047         ///
1048         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1049         ///
1050         /// See `ChannelManager` struct-level documentation for lock order requirements.
1051         ///
1052         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1053         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1054         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1055         /// Essentially just when we're serializing ourselves out.
1056         /// Taken first everywhere where we are making changes before any other locks.
1057         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1058         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1059         /// Notifier the lock contains sends out a notification when the lock is released.
1060         total_consistency_lock: RwLock<()>,
1061
1062         #[cfg(debug_assertions)]
1063         background_events_processed_since_startup: AtomicBool,
1064
1065         persistence_notifier: Notifier,
1066
1067         entropy_source: ES,
1068         node_signer: NS,
1069         signer_provider: SP,
1070
1071         logger: L,
1072 }
1073
1074 /// Chain-related parameters used to construct a new `ChannelManager`.
1075 ///
1076 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1077 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1078 /// are not needed when deserializing a previously constructed `ChannelManager`.
1079 #[derive(Clone, Copy, PartialEq)]
1080 pub struct ChainParameters {
1081         /// The network for determining the `chain_hash` in Lightning messages.
1082         pub network: Network,
1083
1084         /// The hash and height of the latest block successfully connected.
1085         ///
1086         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1087         pub best_block: BestBlock,
1088 }
1089
1090 #[derive(Copy, Clone, PartialEq)]
1091 #[must_use]
1092 enum NotifyOption {
1093         DoPersist,
1094         SkipPersist,
1095 }
1096
1097 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1098 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1099 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1100 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1101 /// sending the aforementioned notification (since the lock being released indicates that the
1102 /// updates are ready for persistence).
1103 ///
1104 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1105 /// notify or not based on whether relevant changes have been made, providing a closure to
1106 /// `optionally_notify` which returns a `NotifyOption`.
1107 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1108         persistence_notifier: &'a Notifier,
1109         should_persist: F,
1110         // We hold onto this result so the lock doesn't get released immediately.
1111         _read_guard: RwLockReadGuard<'a, ()>,
1112 }
1113
1114 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1115         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1116                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1117                 let _ = cm.get_cm().process_background_events(); // We always persist
1118
1119                 PersistenceNotifierGuard {
1120                         persistence_notifier: &cm.get_cm().persistence_notifier,
1121                         should_persist: || -> NotifyOption { NotifyOption::DoPersist },
1122                         _read_guard: read_guard,
1123                 }
1124
1125         }
1126
1127         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1128         /// [`ChannelManager::process_background_events`] MUST be called first.
1129         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1130                 let read_guard = lock.read().unwrap();
1131
1132                 PersistenceNotifierGuard {
1133                         persistence_notifier: notifier,
1134                         should_persist: persist_check,
1135                         _read_guard: read_guard,
1136                 }
1137         }
1138 }
1139
1140 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1141         fn drop(&mut self) {
1142                 if (self.should_persist)() == NotifyOption::DoPersist {
1143                         self.persistence_notifier.notify();
1144                 }
1145         }
1146 }
1147
1148 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1149 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1150 ///
1151 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1152 ///
1153 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1154 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1155 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1156 /// the maximum required amount in lnd as of March 2021.
1157 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1158
1159 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1160 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1161 ///
1162 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1163 ///
1164 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1165 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1166 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1167 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1168 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1169 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1170 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1171 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1172 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1173 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1174 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1175 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1176 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1177
1178 /// Minimum CLTV difference between the current block height and received inbound payments.
1179 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1180 /// this value.
1181 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1182 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1183 // a payment was being routed, so we add an extra block to be safe.
1184 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1185
1186 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1187 // ie that if the next-hop peer fails the HTLC within
1188 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1189 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1190 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1191 // LATENCY_GRACE_PERIOD_BLOCKS.
1192 #[deny(const_err)]
1193 #[allow(dead_code)]
1194 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;
1195
1196 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1197 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1198 #[deny(const_err)]
1199 #[allow(dead_code)]
1200 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1201
1202 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1203 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1204
1205 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
1206 /// idempotency of payments by [`PaymentId`]. See
1207 /// [`OutboundPayments::remove_stale_resolved_payments`].
1208 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
1209
1210 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1211 /// until we mark the channel disabled and gossip the update.
1212 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1213
1214 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1215 /// we mark the channel enabled and gossip the update.
1216 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1217
1218 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1219 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1220 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1221 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1222
1223 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1224 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1225 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1226
1227 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1228 /// many peers we reject new (inbound) connections.
1229 const MAX_NO_CHANNEL_PEERS: usize = 250;
1230
1231 /// Information needed for constructing an invoice route hint for this channel.
1232 #[derive(Clone, Debug, PartialEq)]
1233 pub struct CounterpartyForwardingInfo {
1234         /// Base routing fee in millisatoshis.
1235         pub fee_base_msat: u32,
1236         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1237         pub fee_proportional_millionths: u32,
1238         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1239         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1240         /// `cltv_expiry_delta` for more details.
1241         pub cltv_expiry_delta: u16,
1242 }
1243
1244 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1245 /// to better separate parameters.
1246 #[derive(Clone, Debug, PartialEq)]
1247 pub struct ChannelCounterparty {
1248         /// The node_id of our counterparty
1249         pub node_id: PublicKey,
1250         /// The Features the channel counterparty provided upon last connection.
1251         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1252         /// many routing-relevant features are present in the init context.
1253         pub features: InitFeatures,
1254         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1255         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1256         /// claiming at least this value on chain.
1257         ///
1258         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1259         ///
1260         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1261         pub unspendable_punishment_reserve: u64,
1262         /// Information on the fees and requirements that the counterparty requires when forwarding
1263         /// payments to us through this channel.
1264         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1265         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1266         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1267         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1268         pub outbound_htlc_minimum_msat: Option<u64>,
1269         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1270         pub outbound_htlc_maximum_msat: Option<u64>,
1271 }
1272
1273 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1274 #[derive(Clone, Debug, PartialEq)]
1275 pub struct ChannelDetails {
1276         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1277         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1278         /// Note that this means this value is *not* persistent - it can change once during the
1279         /// lifetime of the channel.
1280         pub channel_id: [u8; 32],
1281         /// Parameters which apply to our counterparty. See individual fields for more information.
1282         pub counterparty: ChannelCounterparty,
1283         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1284         /// our counterparty already.
1285         ///
1286         /// Note that, if this has been set, `channel_id` will be equivalent to
1287         /// `funding_txo.unwrap().to_channel_id()`.
1288         pub funding_txo: Option<OutPoint>,
1289         /// The features which this channel operates with. See individual features for more info.
1290         ///
1291         /// `None` until negotiation completes and the channel type is finalized.
1292         pub channel_type: Option<ChannelTypeFeatures>,
1293         /// The position of the funding transaction in the chain. None if the funding transaction has
1294         /// not yet been confirmed and the channel fully opened.
1295         ///
1296         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1297         /// payments instead of this. See [`get_inbound_payment_scid`].
1298         ///
1299         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1300         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1301         ///
1302         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1303         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1304         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1305         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1306         /// [`confirmations_required`]: Self::confirmations_required
1307         pub short_channel_id: Option<u64>,
1308         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1309         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1310         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1311         /// `Some(0)`).
1312         ///
1313         /// This will be `None` as long as the channel is not available for routing outbound payments.
1314         ///
1315         /// [`short_channel_id`]: Self::short_channel_id
1316         /// [`confirmations_required`]: Self::confirmations_required
1317         pub outbound_scid_alias: Option<u64>,
1318         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1319         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1320         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1321         /// when they see a payment to be routed to us.
1322         ///
1323         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1324         /// previous values for inbound payment forwarding.
1325         ///
1326         /// [`short_channel_id`]: Self::short_channel_id
1327         pub inbound_scid_alias: Option<u64>,
1328         /// The value, in satoshis, of this channel as appears in the funding output
1329         pub channel_value_satoshis: u64,
1330         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1331         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1332         /// this value on chain.
1333         ///
1334         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1335         ///
1336         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1337         ///
1338         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1339         pub unspendable_punishment_reserve: Option<u64>,
1340         /// The `user_channel_id` passed in to create_channel, or a random value if the channel was
1341         /// inbound. This may be zero for inbound channels serialized with LDK versions prior to
1342         /// 0.0.113.
1343         pub user_channel_id: u128,
1344         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1345         /// which is applied to commitment and HTLC transactions.
1346         ///
1347         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1348         pub feerate_sat_per_1000_weight: Option<u32>,
1349         /// Our total balance.  This is the amount we would get if we close the channel.
1350         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1351         /// amount is not likely to be recoverable on close.
1352         ///
1353         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1354         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1355         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1356         /// This does not consider any on-chain fees.
1357         ///
1358         /// See also [`ChannelDetails::outbound_capacity_msat`]
1359         pub balance_msat: u64,
1360         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1361         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1362         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1363         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1364         ///
1365         /// See also [`ChannelDetails::balance_msat`]
1366         ///
1367         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1368         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1369         /// should be able to spend nearly this amount.
1370         pub outbound_capacity_msat: u64,
1371         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1372         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1373         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1374         /// to use a limit as close as possible to the HTLC limit we can currently send.
1375         ///
1376         /// See also [`ChannelDetails::balance_msat`] and [`ChannelDetails::outbound_capacity_msat`].
1377         pub next_outbound_htlc_limit_msat: u64,
1378         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1379         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1380         /// available for inclusion in new inbound HTLCs).
1381         /// Note that there are some corner cases not fully handled here, so the actual available
1382         /// inbound capacity may be slightly higher than this.
1383         ///
1384         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1385         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1386         /// However, our counterparty should be able to spend nearly this amount.
1387         pub inbound_capacity_msat: u64,
1388         /// The number of required confirmations on the funding transaction before the funding will be
1389         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1390         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1391         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1392         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1393         ///
1394         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1395         ///
1396         /// [`is_outbound`]: ChannelDetails::is_outbound
1397         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1398         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1399         pub confirmations_required: Option<u32>,
1400         /// The current number of confirmations on the funding transaction.
1401         ///
1402         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1403         pub confirmations: Option<u32>,
1404         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1405         /// until we can claim our funds after we force-close the channel. During this time our
1406         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1407         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1408         /// time to claim our non-HTLC-encumbered funds.
1409         ///
1410         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1411         pub force_close_spend_delay: Option<u16>,
1412         /// True if the channel was initiated (and thus funded) by us.
1413         pub is_outbound: bool,
1414         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1415         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1416         /// required confirmation count has been reached (and we were connected to the peer at some
1417         /// point after the funding transaction received enough confirmations). The required
1418         /// confirmation count is provided in [`confirmations_required`].
1419         ///
1420         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1421         pub is_channel_ready: bool,
1422         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1423         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1424         ///
1425         /// This is a strict superset of `is_channel_ready`.
1426         pub is_usable: bool,
1427         /// True if this channel is (or will be) publicly-announced.
1428         pub is_public: bool,
1429         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1430         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1431         pub inbound_htlc_minimum_msat: Option<u64>,
1432         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1433         pub inbound_htlc_maximum_msat: Option<u64>,
1434         /// Set of configurable parameters that affect channel operation.
1435         ///
1436         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1437         pub config: Option<ChannelConfig>,
1438 }
1439
1440 impl ChannelDetails {
1441         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1442         /// This should be used for providing invoice hints or in any other context where our
1443         /// counterparty will forward a payment to us.
1444         ///
1445         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1446         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1447         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1448                 self.inbound_scid_alias.or(self.short_channel_id)
1449         }
1450
1451         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1452         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1453         /// we're sending or forwarding a payment outbound over this channel.
1454         ///
1455         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1456         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1457         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1458                 self.short_channel_id.or(self.outbound_scid_alias)
1459         }
1460
1461         fn from_channel<Signer: WriteableEcdsaChannelSigner>(channel: &Channel<Signer>,
1462                 best_block_height: u32, latest_features: InitFeatures) -> Self {
1463
1464                 let balance = channel.get_available_balances();
1465                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1466                         channel.get_holder_counterparty_selected_channel_reserve_satoshis();
1467                 ChannelDetails {
1468                         channel_id: channel.channel_id(),
1469                         counterparty: ChannelCounterparty {
1470                                 node_id: channel.get_counterparty_node_id(),
1471                                 features: latest_features,
1472                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1473                                 forwarding_info: channel.counterparty_forwarding_info(),
1474                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1475                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1476                                 // message (as they are always the first message from the counterparty).
1477                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1478                                 // default `0` value set by `Channel::new_outbound`.
1479                                 outbound_htlc_minimum_msat: if channel.have_received_message() {
1480                                         Some(channel.get_counterparty_htlc_minimum_msat()) } else { None },
1481                                 outbound_htlc_maximum_msat: channel.get_counterparty_htlc_maximum_msat(),
1482                         },
1483                         funding_txo: channel.get_funding_txo(),
1484                         // Note that accept_channel (or open_channel) is always the first message, so
1485                         // `have_received_message` indicates that type negotiation has completed.
1486                         channel_type: if channel.have_received_message() { Some(channel.get_channel_type().clone()) } else { None },
1487                         short_channel_id: channel.get_short_channel_id(),
1488                         outbound_scid_alias: if channel.is_usable() { Some(channel.outbound_scid_alias()) } else { None },
1489                         inbound_scid_alias: channel.latest_inbound_scid_alias(),
1490                         channel_value_satoshis: channel.get_value_satoshis(),
1491                         feerate_sat_per_1000_weight: Some(channel.get_feerate_sat_per_1000_weight()),
1492                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1493                         balance_msat: balance.balance_msat,
1494                         inbound_capacity_msat: balance.inbound_capacity_msat,
1495                         outbound_capacity_msat: balance.outbound_capacity_msat,
1496                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1497                         user_channel_id: channel.get_user_id(),
1498                         confirmations_required: channel.minimum_depth(),
1499                         confirmations: Some(channel.get_funding_tx_confirmations(best_block_height)),
1500                         force_close_spend_delay: channel.get_counterparty_selected_contest_delay(),
1501                         is_outbound: channel.is_outbound(),
1502                         is_channel_ready: channel.is_usable(),
1503                         is_usable: channel.is_live(),
1504                         is_public: channel.should_announce(),
1505                         inbound_htlc_minimum_msat: Some(channel.get_holder_htlc_minimum_msat()),
1506                         inbound_htlc_maximum_msat: channel.get_holder_htlc_maximum_msat(),
1507                         config: Some(channel.config()),
1508                 }
1509         }
1510 }
1511
1512 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1513 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1514 #[derive(Debug, PartialEq)]
1515 pub enum RecentPaymentDetails {
1516         /// When a payment is still being sent and awaiting successful delivery.
1517         Pending {
1518                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1519                 /// abandoned.
1520                 payment_hash: PaymentHash,
1521                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1522                 /// not just the amount currently inflight.
1523                 total_msat: u64,
1524         },
1525         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1526         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1527         /// payment is removed from tracking.
1528         Fulfilled {
1529                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1530                 /// made before LDK version 0.0.104.
1531                 payment_hash: Option<PaymentHash>,
1532         },
1533         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1534         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1535         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1536         Abandoned {
1537                 /// Hash of the payment that we have given up trying to send.
1538                 payment_hash: PaymentHash,
1539         },
1540 }
1541
1542 /// Route hints used in constructing invoices for [phantom node payents].
1543 ///
1544 /// [phantom node payments]: crate::sign::PhantomKeysManager
1545 #[derive(Clone)]
1546 pub struct PhantomRouteHints {
1547         /// The list of channels to be included in the invoice route hints.
1548         pub channels: Vec<ChannelDetails>,
1549         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1550         /// route hints.
1551         pub phantom_scid: u64,
1552         /// The pubkey of the real backing node that would ultimately receive the payment.
1553         pub real_node_pubkey: PublicKey,
1554 }
1555
1556 macro_rules! handle_error {
1557         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1558                 // In testing, ensure there are no deadlocks where the lock is already held upon
1559                 // entering the macro.
1560                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1561                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1562
1563                 match $internal {
1564                         Ok(msg) => Ok(msg),
1565                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish }) => {
1566                                 let mut msg_events = Vec::with_capacity(2);
1567
1568                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1569                                         $self.finish_force_close_channel(shutdown_res);
1570                                         if let Some(update) = update_option {
1571                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1572                                                         msg: update
1573                                                 });
1574                                         }
1575                                         if let Some((channel_id, user_channel_id)) = chan_id {
1576                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1577                                                         channel_id, user_channel_id,
1578                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() }
1579                                                 }, None));
1580                                         }
1581                                 }
1582
1583                                 log_error!($self.logger, "{}", err.err);
1584                                 if let msgs::ErrorAction::IgnoreError = err.action {
1585                                 } else {
1586                                         msg_events.push(events::MessageSendEvent::HandleError {
1587                                                 node_id: $counterparty_node_id,
1588                                                 action: err.action.clone()
1589                                         });
1590                                 }
1591
1592                                 if !msg_events.is_empty() {
1593                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1594                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1595                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1596                                                 peer_state.pending_msg_events.append(&mut msg_events);
1597                                         }
1598                                 }
1599
1600                                 // Return error in case higher-API need one
1601                                 Err(err)
1602                         },
1603                 }
1604         } }
1605 }
1606
1607 macro_rules! update_maps_on_chan_removal {
1608         ($self: expr, $channel: expr) => {{
1609                 $self.id_to_peer.lock().unwrap().remove(&$channel.channel_id());
1610                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1611                 if let Some(short_id) = $channel.get_short_channel_id() {
1612                         short_to_chan_info.remove(&short_id);
1613                 } else {
1614                         // If the channel was never confirmed on-chain prior to its closure, remove the
1615                         // outbound SCID alias we used for it from the collision-prevention set. While we
1616                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1617                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1618                         // opening a million channels with us which are closed before we ever reach the funding
1619                         // stage.
1620                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel.outbound_scid_alias());
1621                         debug_assert!(alias_removed);
1622                 }
1623                 short_to_chan_info.remove(&$channel.outbound_scid_alias());
1624         }}
1625 }
1626
1627 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1628 macro_rules! convert_chan_err {
1629         ($self: ident, $err: expr, $channel: expr, $channel_id: expr) => {
1630                 match $err {
1631                         ChannelError::Warn(msg) => {
1632                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1633                         },
1634                         ChannelError::Ignore(msg) => {
1635                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1636                         },
1637                         ChannelError::Close(msg) => {
1638                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1639                                 update_maps_on_chan_removal!($self, $channel);
1640                                 let shutdown_res = $channel.force_shutdown(true);
1641                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.get_user_id(),
1642                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok()))
1643                         },
1644                 }
1645         }
1646 }
1647
1648 macro_rules! break_chan_entry {
1649         ($self: ident, $res: expr, $entry: expr) => {
1650                 match $res {
1651                         Ok(res) => res,
1652                         Err(e) => {
1653                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1654                                 if drop {
1655                                         $entry.remove_entry();
1656                                 }
1657                                 break Err(res);
1658                         }
1659                 }
1660         }
1661 }
1662
1663 macro_rules! try_chan_entry {
1664         ($self: ident, $res: expr, $entry: expr) => {
1665                 match $res {
1666                         Ok(res) => res,
1667                         Err(e) => {
1668                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1669                                 if drop {
1670                                         $entry.remove_entry();
1671                                 }
1672                                 return Err(res);
1673                         }
1674                 }
1675         }
1676 }
1677
1678 macro_rules! remove_channel {
1679         ($self: expr, $entry: expr) => {
1680                 {
1681                         let channel = $entry.remove_entry().1;
1682                         update_maps_on_chan_removal!($self, channel);
1683                         channel
1684                 }
1685         }
1686 }
1687
1688 macro_rules! send_channel_ready {
1689         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1690                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1691                         node_id: $channel.get_counterparty_node_id(),
1692                         msg: $channel_ready_msg,
1693                 });
1694                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1695                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1696                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1697                 let outbound_alias_insert = short_to_chan_info.insert($channel.outbound_scid_alias(), ($channel.get_counterparty_node_id(), $channel.channel_id()));
1698                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1699                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1700                 if let Some(real_scid) = $channel.get_short_channel_id() {
1701                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.get_counterparty_node_id(), $channel.channel_id()));
1702                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1703                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1704                 }
1705         }}
1706 }
1707
1708 macro_rules! emit_channel_pending_event {
1709         ($locked_events: expr, $channel: expr) => {
1710                 if $channel.should_emit_channel_pending_event() {
1711                         $locked_events.push_back((events::Event::ChannelPending {
1712                                 channel_id: $channel.channel_id(),
1713                                 former_temporary_channel_id: $channel.temporary_channel_id(),
1714                                 counterparty_node_id: $channel.get_counterparty_node_id(),
1715                                 user_channel_id: $channel.get_user_id(),
1716                                 funding_txo: $channel.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1717                         }, None));
1718                         $channel.set_channel_pending_event_emitted();
1719                 }
1720         }
1721 }
1722
1723 macro_rules! emit_channel_ready_event {
1724         ($locked_events: expr, $channel: expr) => {
1725                 if $channel.should_emit_channel_ready_event() {
1726                         debug_assert!($channel.channel_pending_event_emitted());
1727                         $locked_events.push_back((events::Event::ChannelReady {
1728                                 channel_id: $channel.channel_id(),
1729                                 user_channel_id: $channel.get_user_id(),
1730                                 counterparty_node_id: $channel.get_counterparty_node_id(),
1731                                 channel_type: $channel.get_channel_type().clone(),
1732                         }, None));
1733                         $channel.set_channel_ready_event_emitted();
1734                 }
1735         }
1736 }
1737
1738 macro_rules! handle_monitor_update_completion {
1739         ($self: ident, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1740                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1741                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1742                         $self.best_block.read().unwrap().height());
1743                 let counterparty_node_id = $chan.get_counterparty_node_id();
1744                 let channel_update = if updates.channel_ready.is_some() && $chan.is_usable() {
1745                         // We only send a channel_update in the case where we are just now sending a
1746                         // channel_ready and the channel is in a usable state. We may re-send a
1747                         // channel_update later through the announcement_signatures process for public
1748                         // channels, but there's no reason not to just inform our counterparty of our fees
1749                         // now.
1750                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1751                                 Some(events::MessageSendEvent::SendChannelUpdate {
1752                                         node_id: counterparty_node_id,
1753                                         msg,
1754                                 })
1755                         } else { None }
1756                 } else { None };
1757
1758                 let update_actions = $peer_state.monitor_update_blocked_actions
1759                         .remove(&$chan.channel_id()).unwrap_or(Vec::new());
1760
1761                 let htlc_forwards = $self.handle_channel_resumption(
1762                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1763                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1764                         updates.funding_broadcastable, updates.channel_ready,
1765                         updates.announcement_sigs);
1766                 if let Some(upd) = channel_update {
1767                         $peer_state.pending_msg_events.push(upd);
1768                 }
1769
1770                 let channel_id = $chan.channel_id();
1771                 core::mem::drop($peer_state_lock);
1772                 core::mem::drop($per_peer_state_lock);
1773
1774                 $self.handle_monitor_update_completion_actions(update_actions);
1775
1776                 if let Some(forwards) = htlc_forwards {
1777                         $self.forward_htlcs(&mut [forwards][..]);
1778                 }
1779                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1780                 for failure in updates.failed_htlcs.drain(..) {
1781                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1782                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1783                 }
1784         } }
1785 }
1786
1787 macro_rules! handle_new_monitor_update {
1788         ($self: ident, $update_res: expr, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING, $remove: expr) => { {
1789                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1790                 // any case so that it won't deadlock.
1791                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1792                 #[cfg(debug_assertions)] {
1793                         debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
1794                 }
1795                 match $update_res {
1796                         ChannelMonitorUpdateStatus::InProgress => {
1797                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
1798                                         log_bytes!($chan.channel_id()[..]));
1799                                 Ok(())
1800                         },
1801                         ChannelMonitorUpdateStatus::PermanentFailure => {
1802                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
1803                                         log_bytes!($chan.channel_id()[..]));
1804                                 update_maps_on_chan_removal!($self, $chan);
1805                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown(
1806                                         "ChannelMonitor storage failure".to_owned(), $chan.channel_id(),
1807                                         $chan.get_user_id(), $chan.force_shutdown(false),
1808                                         $self.get_channel_update_for_broadcast(&$chan).ok()));
1809                                 $remove;
1810                                 res
1811                         },
1812                         ChannelMonitorUpdateStatus::Completed => {
1813                                 $chan.complete_one_mon_update($update_id);
1814                                 if $chan.no_monitor_updates_pending() {
1815                                         handle_monitor_update_completion!($self, $update_id, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
1816                                 }
1817                                 Ok(())
1818                         },
1819                 }
1820         } };
1821         ($self: ident, $update_res: expr, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
1822                 handle_new_monitor_update!($self, $update_res, $update_id, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan_entry.get_mut(), MANUALLY_REMOVING, $chan_entry.remove_entry())
1823         }
1824 }
1825
1826 macro_rules! process_events_body {
1827         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
1828                 let mut processed_all_events = false;
1829                 while !processed_all_events {
1830                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
1831                                 return;
1832                         }
1833
1834                         let mut result = NotifyOption::SkipPersist;
1835
1836                         {
1837                                 // We'll acquire our total consistency lock so that we can be sure no other
1838                                 // persists happen while processing monitor events.
1839                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
1840
1841                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
1842                                 // ensure any startup-generated background events are handled first.
1843                                 if $self.process_background_events() == NotifyOption::DoPersist { result = NotifyOption::DoPersist; }
1844
1845                                 // TODO: This behavior should be documented. It's unintuitive that we query
1846                                 // ChannelMonitors when clearing other events.
1847                                 if $self.process_pending_monitor_events() {
1848                                         result = NotifyOption::DoPersist;
1849                                 }
1850                         }
1851
1852                         let pending_events = $self.pending_events.lock().unwrap().clone();
1853                         let num_events = pending_events.len();
1854                         if !pending_events.is_empty() {
1855                                 result = NotifyOption::DoPersist;
1856                         }
1857
1858                         let mut post_event_actions = Vec::new();
1859
1860                         for (event, action_opt) in pending_events {
1861                                 $event_to_handle = event;
1862                                 $handle_event;
1863                                 if let Some(action) = action_opt {
1864                                         post_event_actions.push(action);
1865                                 }
1866                         }
1867
1868                         {
1869                                 let mut pending_events = $self.pending_events.lock().unwrap();
1870                                 pending_events.drain(..num_events);
1871                                 processed_all_events = pending_events.is_empty();
1872                                 $self.pending_events_processor.store(false, Ordering::Release);
1873                         }
1874
1875                         if !post_event_actions.is_empty() {
1876                                 $self.handle_post_event_actions(post_event_actions);
1877                                 // If we had some actions, go around again as we may have more events now
1878                                 processed_all_events = false;
1879                         }
1880
1881                         if result == NotifyOption::DoPersist {
1882                                 $self.persistence_notifier.notify();
1883                         }
1884                 }
1885         }
1886 }
1887
1888 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>
1889 where
1890         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1891         T::Target: BroadcasterInterface,
1892         ES::Target: EntropySource,
1893         NS::Target: NodeSigner,
1894         SP::Target: SignerProvider,
1895         F::Target: FeeEstimator,
1896         R::Target: Router,
1897         L::Target: Logger,
1898 {
1899         /// Constructs a new `ChannelManager` to hold several channels and route between them.
1900         ///
1901         /// This is the main "logic hub" for all channel-related actions, and implements
1902         /// [`ChannelMessageHandler`].
1903         ///
1904         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1905         ///
1906         /// Users need to notify the new `ChannelManager` when a new block is connected or
1907         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
1908         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
1909         /// more details.
1910         ///
1911         /// [`block_connected`]: chain::Listen::block_connected
1912         /// [`block_disconnected`]: chain::Listen::block_disconnected
1913         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
1914         pub fn new(fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES, node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters) -> Self {
1915                 let mut secp_ctx = Secp256k1::new();
1916                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
1917                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
1918                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
1919                 ChannelManager {
1920                         default_configuration: config.clone(),
1921                         genesis_hash: genesis_block(params.network).header.block_hash(),
1922                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
1923                         chain_monitor,
1924                         tx_broadcaster,
1925                         router,
1926
1927                         best_block: RwLock::new(params.best_block),
1928
1929                         outbound_scid_aliases: Mutex::new(HashSet::new()),
1930                         pending_inbound_payments: Mutex::new(HashMap::new()),
1931                         pending_outbound_payments: OutboundPayments::new(),
1932                         forward_htlcs: Mutex::new(HashMap::new()),
1933                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
1934                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
1935                         id_to_peer: Mutex::new(HashMap::new()),
1936                         short_to_chan_info: FairRwLock::new(HashMap::new()),
1937
1938                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
1939                         secp_ctx,
1940
1941                         inbound_payment_key: expanded_inbound_key,
1942                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
1943
1944                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
1945
1946                         highest_seen_timestamp: AtomicUsize::new(0),
1947
1948                         per_peer_state: FairRwLock::new(HashMap::new()),
1949
1950                         pending_events: Mutex::new(VecDeque::new()),
1951                         pending_events_processor: AtomicBool::new(false),
1952                         pending_background_events: Mutex::new(Vec::new()),
1953                         total_consistency_lock: RwLock::new(()),
1954                         #[cfg(debug_assertions)]
1955                         background_events_processed_since_startup: AtomicBool::new(false),
1956                         persistence_notifier: Notifier::new(),
1957
1958                         entropy_source,
1959                         node_signer,
1960                         signer_provider,
1961
1962                         logger,
1963                 }
1964         }
1965
1966         /// Gets the current configuration applied to all new channels.
1967         pub fn get_current_default_configuration(&self) -> &UserConfig {
1968                 &self.default_configuration
1969         }
1970
1971         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
1972                 let height = self.best_block.read().unwrap().height();
1973                 let mut outbound_scid_alias = 0;
1974                 let mut i = 0;
1975                 loop {
1976                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
1977                                 outbound_scid_alias += 1;
1978                         } else {
1979                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
1980                         }
1981                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
1982                                 break;
1983                         }
1984                         i += 1;
1985                         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"); }
1986                 }
1987                 outbound_scid_alias
1988         }
1989
1990         /// Creates a new outbound channel to the given remote node and with the given value.
1991         ///
1992         /// `user_channel_id` will be provided back as in
1993         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
1994         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
1995         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
1996         /// is simply copied to events and otherwise ignored.
1997         ///
1998         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
1999         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2000         ///
2001         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2002         /// generate a shutdown scriptpubkey or destination script set by
2003         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2004         ///
2005         /// Note that we do not check if you are currently connected to the given peer. If no
2006         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2007         /// the channel eventually being silently forgotten (dropped on reload).
2008         ///
2009         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2010         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2011         /// [`ChannelDetails::channel_id`] until after
2012         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2013         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2014         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2015         ///
2016         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2017         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2018         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2019         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, override_config: Option<UserConfig>) -> Result<[u8; 32], APIError> {
2020                 if channel_value_satoshis < 1000 {
2021                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2022                 }
2023
2024                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2025                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2026                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2027
2028                 let per_peer_state = self.per_peer_state.read().unwrap();
2029
2030                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2031                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2032
2033                 let mut peer_state = peer_state_mutex.lock().unwrap();
2034                 let channel = {
2035                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2036                         let their_features = &peer_state.latest_features;
2037                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2038                         match Channel::new_outbound(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2039                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2040                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2041                         {
2042                                 Ok(res) => res,
2043                                 Err(e) => {
2044                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2045                                         return Err(e);
2046                                 },
2047                         }
2048                 };
2049                 let res = channel.get_open_channel(self.genesis_hash.clone());
2050
2051                 let temporary_channel_id = channel.channel_id();
2052                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2053                         hash_map::Entry::Occupied(_) => {
2054                                 if cfg!(fuzzing) {
2055                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2056                                 } else {
2057                                         panic!("RNG is bad???");
2058                                 }
2059                         },
2060                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
2061                 }
2062
2063                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2064                         node_id: their_network_key,
2065                         msg: res,
2066                 });
2067                 Ok(temporary_channel_id)
2068         }
2069
2070         fn list_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<<SP::Target as SignerProvider>::Signer>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2071                 // Allocate our best estimate of the number of channels we have in the `res`
2072                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2073                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2074                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2075                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2076                 // the same channel.
2077                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2078                 {
2079                         let best_block_height = self.best_block.read().unwrap().height();
2080                         let per_peer_state = self.per_peer_state.read().unwrap();
2081                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2082                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2083                                 let peer_state = &mut *peer_state_lock;
2084                                 for (_channel_id, channel) in peer_state.channel_by_id.iter().filter(f) {
2085                                         let details = ChannelDetails::from_channel(channel, best_block_height,
2086                                                 peer_state.latest_features.clone());
2087                                         res.push(details);
2088                                 }
2089                         }
2090                 }
2091                 res
2092         }
2093
2094         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2095         /// more information.
2096         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2097                 self.list_channels_with_filter(|_| true)
2098         }
2099
2100         /// Gets the list of usable channels, in random order. Useful as an argument to
2101         /// [`Router::find_route`] to ensure non-announced channels are used.
2102         ///
2103         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2104         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2105         /// are.
2106         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2107                 // Note we use is_live here instead of usable which leads to somewhat confused
2108                 // internal/external nomenclature, but that's ok cause that's probably what the user
2109                 // really wanted anyway.
2110                 self.list_channels_with_filter(|&(_, ref channel)| channel.is_live())
2111         }
2112
2113         /// Gets the list of channels we have with a given counterparty, in random order.
2114         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2115                 let best_block_height = self.best_block.read().unwrap().height();
2116                 let per_peer_state = self.per_peer_state.read().unwrap();
2117
2118                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2119                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2120                         let peer_state = &mut *peer_state_lock;
2121                         let features = &peer_state.latest_features;
2122                         return peer_state.channel_by_id
2123                                 .iter()
2124                                 .map(|(_, channel)|
2125                                         ChannelDetails::from_channel(channel, best_block_height, features.clone()))
2126                                 .collect();
2127                 }
2128                 vec![]
2129         }
2130
2131         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2132         /// successful path, or have unresolved HTLCs.
2133         ///
2134         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2135         /// result of a crash. If such a payment exists, is not listed here, and an
2136         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2137         ///
2138         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2139         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2140                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2141                         .filter_map(|(_, pending_outbound_payment)| match pending_outbound_payment {
2142                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2143                                         Some(RecentPaymentDetails::Pending {
2144                                                 payment_hash: *payment_hash,
2145                                                 total_msat: *total_msat,
2146                                         })
2147                                 },
2148                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2149                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2150                                 },
2151                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2152                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2153                                 },
2154                                 PendingOutboundPayment::Legacy { .. } => None
2155                         })
2156                         .collect()
2157         }
2158
2159         /// Helper function that issues the channel close events
2160         fn issue_channel_close_events(&self, channel: &Channel<<SP::Target as SignerProvider>::Signer>, closure_reason: ClosureReason) {
2161                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2162                 match channel.unbroadcasted_funding() {
2163                         Some(transaction) => {
2164                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2165                                         channel_id: channel.channel_id(), transaction
2166                                 }, None));
2167                         },
2168                         None => {},
2169                 }
2170                 pending_events_lock.push_back((events::Event::ChannelClosed {
2171                         channel_id: channel.channel_id(),
2172                         user_channel_id: channel.get_user_id(),
2173                         reason: closure_reason
2174                 }, None));
2175         }
2176
2177         fn close_channel_internal(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2178                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2179
2180                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2181                 let result: Result<(), _> = loop {
2182                         let per_peer_state = self.per_peer_state.read().unwrap();
2183
2184                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2185                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2186
2187                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2188                         let peer_state = &mut *peer_state_lock;
2189                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2190                                 hash_map::Entry::Occupied(mut chan_entry) => {
2191                                         let funding_txo_opt = chan_entry.get().get_funding_txo();
2192                                         let their_features = &peer_state.latest_features;
2193                                         let (shutdown_msg, mut monitor_update_opt, htlcs) = chan_entry.get_mut()
2194                                                 .get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2195                                         failed_htlcs = htlcs;
2196
2197                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2198                                         // here as we don't need the monitor update to complete until we send a
2199                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2200                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2201                                                 node_id: *counterparty_node_id,
2202                                                 msg: shutdown_msg,
2203                                         });
2204
2205                                         // Update the monitor with the shutdown script if necessary.
2206                                         if let Some(monitor_update) = monitor_update_opt.take() {
2207                                                 let update_id = monitor_update.update_id;
2208                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
2209                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
2210                                         }
2211
2212                                         if chan_entry.get().is_shutdown() {
2213                                                 let channel = remove_channel!(self, chan_entry);
2214                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
2215                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2216                                                                 msg: channel_update
2217                                                         });
2218                                                 }
2219                                                 self.issue_channel_close_events(&channel, ClosureReason::HolderForceClosed);
2220                                         }
2221                                         break Ok(());
2222                                 },
2223                                 hash_map::Entry::Vacant(_) => return Err(APIError::ChannelUnavailable{err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), counterparty_node_id) })
2224                         }
2225                 };
2226
2227                 for htlc_source in failed_htlcs.drain(..) {
2228                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2229                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2230                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2231                 }
2232
2233                 let _ = handle_error!(self, result, *counterparty_node_id);
2234                 Ok(())
2235         }
2236
2237         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2238         /// will be accepted on the given channel, and after additional timeout/the closing of all
2239         /// pending HTLCs, the channel will be closed on chain.
2240         ///
2241         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2242         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2243         ///    estimate.
2244         ///  * If our counterparty is the channel initiator, we will require a channel closing
2245         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2246         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2247         ///    counterparty to pay as much fee as they'd like, however.
2248         ///
2249         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2250         ///
2251         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2252         /// generate a shutdown scriptpubkey or destination script set by
2253         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2254         /// channel.
2255         ///
2256         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2257         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2258         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2259         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2260         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2261                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2262         }
2263
2264         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2265         /// will be accepted on the given channel, and after additional timeout/the closing of all
2266         /// pending HTLCs, the channel will be closed on chain.
2267         ///
2268         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2269         /// the channel being closed or not:
2270         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2271         ///    transaction. The upper-bound is set by
2272         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2273         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2274         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2275         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2276         ///    will appear on a force-closure transaction, whichever is lower).
2277         ///
2278         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2279         /// Will fail if a shutdown script has already been set for this channel by
2280         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2281         /// also be compatible with our and the counterparty's features.
2282         ///
2283         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2284         ///
2285         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2286         /// generate a shutdown scriptpubkey or destination script set by
2287         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2288         /// channel.
2289         ///
2290         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2291         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2292         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2293         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2294         pub fn close_channel_with_feerate_and_script(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2295                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2296         }
2297
2298         #[inline]
2299         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2300                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2301                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2302                 for htlc_source in failed_htlcs.drain(..) {
2303                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2304                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2305                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2306                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2307                 }
2308                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2309                         // There isn't anything we can do if we get an update failure - we're already
2310                         // force-closing. The monitor update on the required in-memory copy should broadcast
2311                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2312                         // ignore the result here.
2313                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2314                 }
2315         }
2316
2317         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2318         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2319         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2320         -> Result<PublicKey, APIError> {
2321                 let per_peer_state = self.per_peer_state.read().unwrap();
2322                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2323                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2324                 let mut chan = {
2325                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2326                         let peer_state = &mut *peer_state_lock;
2327                         if let hash_map::Entry::Occupied(chan) = peer_state.channel_by_id.entry(channel_id.clone()) {
2328                                 if let Some(peer_msg) = peer_msg {
2329                                         self.issue_channel_close_events(chan.get(),ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) });
2330                                 } else {
2331                                         self.issue_channel_close_events(chan.get(),ClosureReason::HolderForceClosed);
2332                                 }
2333                                 remove_channel!(self, chan)
2334                         } else {
2335                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), peer_node_id) });
2336                         }
2337                 };
2338                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2339                 self.finish_force_close_channel(chan.force_shutdown(broadcast));
2340                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
2341                         let mut peer_state = peer_state_mutex.lock().unwrap();
2342                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2343                                 msg: update
2344                         });
2345                 }
2346
2347                 Ok(chan.get_counterparty_node_id())
2348         }
2349
2350         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2351                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2352                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2353                         Ok(counterparty_node_id) => {
2354                                 let per_peer_state = self.per_peer_state.read().unwrap();
2355                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2356                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2357                                         peer_state.pending_msg_events.push(
2358                                                 events::MessageSendEvent::HandleError {
2359                                                         node_id: counterparty_node_id,
2360                                                         action: msgs::ErrorAction::SendErrorMessage {
2361                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2362                                                         },
2363                                                 }
2364                                         );
2365                                 }
2366                                 Ok(())
2367                         },
2368                         Err(e) => Err(e)
2369                 }
2370         }
2371
2372         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2373         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2374         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2375         /// channel.
2376         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2377         -> Result<(), APIError> {
2378                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2379         }
2380
2381         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2382         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2383         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2384         ///
2385         /// You can always get the latest local transaction(s) to broadcast from
2386         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2387         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2388         -> Result<(), APIError> {
2389                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2390         }
2391
2392         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2393         /// for each to the chain and rejecting new HTLCs on each.
2394         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2395                 for chan in self.list_channels() {
2396                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2397                 }
2398         }
2399
2400         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2401         /// local transaction(s).
2402         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2403                 for chan in self.list_channels() {
2404                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2405                 }
2406         }
2407
2408         fn construct_recv_pending_htlc_info(&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32],
2409                 payment_hash: PaymentHash, amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>) -> Result<PendingHTLCInfo, ReceiveError>
2410         {
2411                 // final_incorrect_cltv_expiry
2412                 if hop_data.outgoing_cltv_value > cltv_expiry {
2413                         return Err(ReceiveError {
2414                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2415                                 err_code: 18,
2416                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2417                         })
2418                 }
2419                 // final_expiry_too_soon
2420                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2421                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2422                 //
2423                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2424                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2425                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2426                 let current_height: u32 = self.best_block.read().unwrap().height();
2427                 if (hop_data.outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2428                         let mut err_data = Vec::with_capacity(12);
2429                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2430                         err_data.extend_from_slice(&current_height.to_be_bytes());
2431                         return Err(ReceiveError {
2432                                 err_code: 0x4000 | 15, err_data,
2433                                 msg: "The final CLTV expiry is too soon to handle",
2434                         });
2435                 }
2436                 if hop_data.amt_to_forward > amt_msat {
2437                         return Err(ReceiveError {
2438                                 err_code: 19,
2439                                 err_data: amt_msat.to_be_bytes().to_vec(),
2440                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2441                         });
2442                 }
2443
2444                 let routing = match hop_data.format {
2445                         msgs::OnionHopDataFormat::NonFinalNode { .. } => {
2446                                 return Err(ReceiveError {
2447                                         err_code: 0x4000|22,
2448                                         err_data: Vec::new(),
2449                                         msg: "Got non final data with an HMAC of 0",
2450                                 });
2451                         },
2452                         msgs::OnionHopDataFormat::FinalNode { payment_data, keysend_preimage, payment_metadata } => {
2453                                 if payment_data.is_some() && keysend_preimage.is_some() {
2454                                         return Err(ReceiveError {
2455                                                 err_code: 0x4000|22,
2456                                                 err_data: Vec::new(),
2457                                                 msg: "We don't support MPP keysend payments",
2458                                         });
2459                                 } else if let Some(data) = payment_data {
2460                                         PendingHTLCRouting::Receive {
2461                                                 payment_data: data,
2462                                                 payment_metadata,
2463                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2464                                                 phantom_shared_secret,
2465                                         }
2466                                 } else if let Some(payment_preimage) = keysend_preimage {
2467                                         // We need to check that the sender knows the keysend preimage before processing this
2468                                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2469                                         // could discover the final destination of X, by probing the adjacent nodes on the route
2470                                         // with a keysend payment of identical payment hash to X and observing the processing
2471                                         // time discrepancies due to a hash collision with X.
2472                                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2473                                         if hashed_preimage != payment_hash {
2474                                                 return Err(ReceiveError {
2475                                                         err_code: 0x4000|22,
2476                                                         err_data: Vec::new(),
2477                                                         msg: "Payment preimage didn't match payment hash",
2478                                                 });
2479                                         }
2480
2481                                         PendingHTLCRouting::ReceiveKeysend {
2482                                                 payment_preimage,
2483                                                 payment_metadata,
2484                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2485                                         }
2486                                 } else {
2487                                         return Err(ReceiveError {
2488                                                 err_code: 0x4000|0x2000|3,
2489                                                 err_data: Vec::new(),
2490                                                 msg: "We require payment_secrets",
2491                                         });
2492                                 }
2493                         },
2494                 };
2495                 Ok(PendingHTLCInfo {
2496                         routing,
2497                         payment_hash,
2498                         incoming_shared_secret: shared_secret,
2499                         incoming_amt_msat: Some(amt_msat),
2500                         outgoing_amt_msat: hop_data.amt_to_forward,
2501                         outgoing_cltv_value: hop_data.outgoing_cltv_value,
2502                 })
2503         }
2504
2505         fn decode_update_add_htlc_onion(&self, msg: &msgs::UpdateAddHTLC) -> PendingHTLCStatus {
2506                 macro_rules! return_malformed_err {
2507                         ($msg: expr, $err_code: expr) => {
2508                                 {
2509                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2510                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2511                                                 channel_id: msg.channel_id,
2512                                                 htlc_id: msg.htlc_id,
2513                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2514                                                 failure_code: $err_code,
2515                                         }));
2516                                 }
2517                         }
2518                 }
2519
2520                 if let Err(_) = msg.onion_routing_packet.public_key {
2521                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2522                 }
2523
2524                 let shared_secret = self.node_signer.ecdh(
2525                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2526                 ).unwrap().secret_bytes();
2527
2528                 if msg.onion_routing_packet.version != 0 {
2529                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2530                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2531                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2532                         //receiving node would have to brute force to figure out which version was put in the
2533                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2534                         //node knows the HMAC matched, so they already know what is there...
2535                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2536                 }
2537                 macro_rules! return_err {
2538                         ($msg: expr, $err_code: expr, $data: expr) => {
2539                                 {
2540                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2541                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2542                                                 channel_id: msg.channel_id,
2543                                                 htlc_id: msg.htlc_id,
2544                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2545                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2546                                         }));
2547                                 }
2548                         }
2549                 }
2550
2551                 let next_hop = match onion_utils::decode_next_payment_hop(shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac, msg.payment_hash) {
2552                         Ok(res) => res,
2553                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2554                                 return_malformed_err!(err_msg, err_code);
2555                         },
2556                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2557                                 return_err!(err_msg, err_code, &[0; 0]);
2558                         },
2559                 };
2560
2561                 let pending_forward_info = match next_hop {
2562                         onion_utils::Hop::Receive(next_hop_data) => {
2563                                 // OUR PAYMENT!
2564                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry, None) {
2565                                         Ok(info) => {
2566                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
2567                                                 // message, however that would leak that we are the recipient of this payment, so
2568                                                 // instead we stay symmetric with the forwarding case, only responding (after a
2569                                                 // delay) once they've send us a commitment_signed!
2570                                                 PendingHTLCStatus::Forward(info)
2571                                         },
2572                                         Err(ReceiveError { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
2573                                 }
2574                         },
2575                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
2576                                 let new_pubkey = msg.onion_routing_packet.public_key.unwrap();
2577                                 let outgoing_packet = msgs::OnionPacket {
2578                                         version: 0,
2579                                         public_key: onion_utils::next_hop_packet_pubkey(&self.secp_ctx, new_pubkey, &shared_secret),
2580                                         hop_data: new_packet_bytes,
2581                                         hmac: next_hop_hmac.clone(),
2582                                 };
2583
2584                                 let short_channel_id = match next_hop_data.format {
2585                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
2586                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
2587                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
2588                                         },
2589                                 };
2590
2591                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
2592                                         routing: PendingHTLCRouting::Forward {
2593                                                 onion_packet: outgoing_packet,
2594                                                 short_channel_id,
2595                                         },
2596                                         payment_hash: msg.payment_hash.clone(),
2597                                         incoming_shared_secret: shared_secret,
2598                                         incoming_amt_msat: Some(msg.amount_msat),
2599                                         outgoing_amt_msat: next_hop_data.amt_to_forward,
2600                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
2601                                 })
2602                         }
2603                 };
2604
2605                 if let &PendingHTLCStatus::Forward(PendingHTLCInfo { ref routing, ref outgoing_amt_msat, ref outgoing_cltv_value, .. }) = &pending_forward_info {
2606                         // If short_channel_id is 0 here, we'll reject the HTLC as there cannot be a channel
2607                         // with a short_channel_id of 0. This is important as various things later assume
2608                         // short_channel_id is non-0 in any ::Forward.
2609                         if let &PendingHTLCRouting::Forward { ref short_channel_id, .. } = routing {
2610                                 if let Some((err, mut code, chan_update)) = loop {
2611                                         let id_option = self.short_to_chan_info.read().unwrap().get(short_channel_id).cloned();
2612                                         let forwarding_chan_info_opt = match id_option {
2613                                                 None => { // unknown_next_peer
2614                                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2615                                                         // phantom or an intercept.
2616                                                         if (self.default_configuration.accept_intercept_htlcs &&
2617                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, *short_channel_id, &self.genesis_hash)) ||
2618                                                            fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, *short_channel_id, &self.genesis_hash)
2619                                                         {
2620                                                                 None
2621                                                         } else {
2622                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2623                                                         }
2624                                                 },
2625                                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2626                                         };
2627                                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2628                                                 let per_peer_state = self.per_peer_state.read().unwrap();
2629                                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2630                                                 if peer_state_mutex_opt.is_none() {
2631                                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2632                                                 }
2633                                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2634                                                 let peer_state = &mut *peer_state_lock;
2635                                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id) {
2636                                                         None => {
2637                                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2638                                                                 // have no consistency guarantees.
2639                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2640                                                         },
2641                                                         Some(chan) => chan
2642                                                 };
2643                                                 if !chan.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2644                                                         // Note that the behavior here should be identical to the above block - we
2645                                                         // should NOT reveal the existence or non-existence of a private channel if
2646                                                         // we don't allow forwards outbound over them.
2647                                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2648                                                 }
2649                                                 if chan.get_channel_type().supports_scid_privacy() && *short_channel_id != chan.outbound_scid_alias() {
2650                                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2651                                                         // "refuse to forward unless the SCID alias was used", so we pretend
2652                                                         // we don't have the channel here.
2653                                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2654                                                 }
2655                                                 let chan_update_opt = self.get_channel_update_for_onion(*short_channel_id, chan).ok();
2656
2657                                                 // Note that we could technically not return an error yet here and just hope
2658                                                 // that the connection is reestablished or monitor updated by the time we get
2659                                                 // around to doing the actual forward, but better to fail early if we can and
2660                                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2661                                                 // on a small/per-node/per-channel scale.
2662                                                 if !chan.is_live() { // channel_disabled
2663                                                         // If the channel_update we're going to return is disabled (i.e. the
2664                                                         // peer has been disabled for some time), return `channel_disabled`,
2665                                                         // otherwise return `temporary_channel_failure`.
2666                                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
2667                                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
2668                                                         } else {
2669                                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
2670                                                         }
2671                                                 }
2672                                                 if *outgoing_amt_msat < chan.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2673                                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2674                                                 }
2675                                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, *outgoing_amt_msat, *outgoing_cltv_value) {
2676                                                         break Some((err, code, chan_update_opt));
2677                                                 }
2678                                                 chan_update_opt
2679                                         } else {
2680                                                 if (msg.cltv_expiry as u64) < (*outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
2681                                                         // We really should set `incorrect_cltv_expiry` here but as we're not
2682                                                         // forwarding over a real channel we can't generate a channel_update
2683                                                         // for it. Instead we just return a generic temporary_node_failure.
2684                                                         break Some((
2685                                                                 "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
2686                                                                 0x2000 | 2, None,
2687                                                         ));
2688                                                 }
2689                                                 None
2690                                         };
2691
2692                                         let cur_height = self.best_block.read().unwrap().height() + 1;
2693                                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
2694                                         // but we want to be robust wrt to counterparty packet sanitization (see
2695                                         // HTLC_FAIL_BACK_BUFFER rationale).
2696                                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
2697                                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
2698                                         }
2699                                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
2700                                                 break Some(("CLTV expiry is too far in the future", 21, None));
2701                                         }
2702                                         // If the HTLC expires ~now, don't bother trying to forward it to our
2703                                         // counterparty. They should fail it anyway, but we don't want to bother with
2704                                         // the round-trips or risk them deciding they definitely want the HTLC and
2705                                         // force-closing to ensure they get it if we're offline.
2706                                         // We previously had a much more aggressive check here which tried to ensure
2707                                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
2708                                         // but there is no need to do that, and since we're a bit conservative with our
2709                                         // risk threshold it just results in failing to forward payments.
2710                                         if (*outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
2711                                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
2712                                         }
2713
2714                                         break None;
2715                                 }
2716                                 {
2717                                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
2718                                         if let Some(chan_update) = chan_update {
2719                                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
2720                                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
2721                                                 }
2722                                                 else if code == 0x1000 | 13 {
2723                                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
2724                                                 }
2725                                                 else if code == 0x1000 | 20 {
2726                                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
2727                                                         0u16.write(&mut res).expect("Writes cannot fail");
2728                                                 }
2729                                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
2730                                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
2731                                                 chan_update.write(&mut res).expect("Writes cannot fail");
2732                                         } else if code & 0x1000 == 0x1000 {
2733                                                 // If we're trying to return an error that requires a `channel_update` but
2734                                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
2735                                                 // generate an update), just use the generic "temporary_node_failure"
2736                                                 // instead.
2737                                                 code = 0x2000 | 2;
2738                                         }
2739                                         return_err!(err, code, &res.0[..]);
2740                                 }
2741                         }
2742                 }
2743
2744                 pending_forward_info
2745         }
2746
2747         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
2748         /// public, and thus should be called whenever the result is going to be passed out in a
2749         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
2750         ///
2751         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
2752         /// corresponding to the channel's counterparty locked, as the channel been removed from the
2753         /// storage and the `peer_state` lock has been dropped.
2754         ///
2755         /// [`channel_update`]: msgs::ChannelUpdate
2756         /// [`internal_closing_signed`]: Self::internal_closing_signed
2757         fn get_channel_update_for_broadcast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2758                 if !chan.should_announce() {
2759                         return Err(LightningError {
2760                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
2761                                 action: msgs::ErrorAction::IgnoreError
2762                         });
2763                 }
2764                 if chan.get_short_channel_id().is_none() {
2765                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
2766                 }
2767                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.channel_id()));
2768                 self.get_channel_update_for_unicast(chan)
2769         }
2770
2771         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
2772         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
2773         /// and thus MUST NOT be called unless the recipient of the resulting message has already
2774         /// provided evidence that they know about the existence of the channel.
2775         ///
2776         /// Note that through [`internal_closing_signed`], this function is called without the
2777         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
2778         /// removed from the storage and the `peer_state` lock has been dropped.
2779         ///
2780         /// [`channel_update`]: msgs::ChannelUpdate
2781         /// [`internal_closing_signed`]: Self::internal_closing_signed
2782         fn get_channel_update_for_unicast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2783                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.channel_id()));
2784                 let short_channel_id = match chan.get_short_channel_id().or(chan.latest_inbound_scid_alias()) {
2785                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
2786                         Some(id) => id,
2787                 };
2788
2789                 self.get_channel_update_for_onion(short_channel_id, chan)
2790         }
2791         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2792                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.channel_id()));
2793                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.get_counterparty_node_id().serialize()[..];
2794
2795                 let enabled = chan.is_usable() && match chan.channel_update_status() {
2796                         ChannelUpdateStatus::Enabled => true,
2797                         ChannelUpdateStatus::DisabledStaged(_) => true,
2798                         ChannelUpdateStatus::Disabled => false,
2799                         ChannelUpdateStatus::EnabledStaged(_) => false,
2800                 };
2801
2802                 let unsigned = msgs::UnsignedChannelUpdate {
2803                         chain_hash: self.genesis_hash,
2804                         short_channel_id,
2805                         timestamp: chan.get_update_time_counter(),
2806                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
2807                         cltv_expiry_delta: chan.get_cltv_expiry_delta(),
2808                         htlc_minimum_msat: chan.get_counterparty_htlc_minimum_msat(),
2809                         htlc_maximum_msat: chan.get_announced_htlc_max_msat(),
2810                         fee_base_msat: chan.get_outbound_forwarding_fee_base_msat(),
2811                         fee_proportional_millionths: chan.get_fee_proportional_millionths(),
2812                         excess_data: Vec::new(),
2813                 };
2814                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
2815                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
2816                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
2817                 // channel.
2818                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
2819
2820                 Ok(msgs::ChannelUpdate {
2821                         signature: sig,
2822                         contents: unsigned
2823                 })
2824         }
2825
2826         #[cfg(test)]
2827         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> {
2828                 let _lck = self.total_consistency_lock.read().unwrap();
2829                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv_bytes)
2830         }
2831
2832         fn 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> {
2833                 // The top-level caller should hold the total_consistency_lock read lock.
2834                 debug_assert!(self.total_consistency_lock.try_write().is_err());
2835
2836                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.hops.first().unwrap().short_channel_id);
2837                 let prng_seed = self.entropy_source.get_secure_random_bytes();
2838                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
2839
2840                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
2841                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
2842                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
2843
2844                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
2845                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
2846
2847                 let err: Result<(), _> = loop {
2848                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
2849                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
2850                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
2851                         };
2852
2853                         let per_peer_state = self.per_peer_state.read().unwrap();
2854                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
2855                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
2856                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2857                         let peer_state = &mut *peer_state_lock;
2858                         if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(id) {
2859                                 if !chan.get().is_live() {
2860                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
2861                                 }
2862                                 let funding_txo = chan.get().get_funding_txo().unwrap();
2863                                 let send_res = chan.get_mut().send_htlc_and_commit(htlc_msat, payment_hash.clone(),
2864                                         htlc_cltv, HTLCSource::OutboundRoute {
2865                                                 path: path.clone(),
2866                                                 session_priv: session_priv.clone(),
2867                                                 first_hop_htlc_msat: htlc_msat,
2868                                                 payment_id,
2869                                         }, onion_packet, &self.logger);
2870                                 match break_chan_entry!(self, send_res, chan) {
2871                                         Some(monitor_update) => {
2872                                                 let update_id = monitor_update.update_id;
2873                                                 let update_res = self.chain_monitor.update_channel(funding_txo, monitor_update);
2874                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan) {
2875                                                         break Err(e);
2876                                                 }
2877                                                 if update_res == ChannelMonitorUpdateStatus::InProgress {
2878                                                         // Note that MonitorUpdateInProgress here indicates (per function
2879                                                         // docs) that we will resend the commitment update once monitor
2880                                                         // updating completes. Therefore, we must return an error
2881                                                         // indicating that it is unsafe to retry the payment wholesale,
2882                                                         // which we do in the send_payment check for
2883                                                         // MonitorUpdateInProgress, below.
2884                                                         return Err(APIError::MonitorUpdateInProgress);
2885                                                 }
2886                                         },
2887                                         None => { },
2888                                 }
2889                         } else {
2890                                 // The channel was likely removed after we fetched the id from the
2891                                 // `short_to_chan_info` map, but before we successfully locked the
2892                                 // `channel_by_id` map.
2893                                 // This can occur as no consistency guarantees exists between the two maps.
2894                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
2895                         }
2896                         return Ok(());
2897                 };
2898
2899                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
2900                         Ok(_) => unreachable!(),
2901                         Err(e) => {
2902                                 Err(APIError::ChannelUnavailable { err: e.err })
2903                         },
2904                 }
2905         }
2906
2907         /// Sends a payment along a given route.
2908         ///
2909         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
2910         /// fields for more info.
2911         ///
2912         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
2913         /// [`PeerManager::process_events`]).
2914         ///
2915         /// # Avoiding Duplicate Payments
2916         ///
2917         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
2918         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
2919         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
2920         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
2921         /// second payment with the same [`PaymentId`].
2922         ///
2923         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
2924         /// tracking of payments, including state to indicate once a payment has completed. Because you
2925         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
2926         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
2927         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
2928         ///
2929         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
2930         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
2931         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
2932         /// [`ChannelManager::list_recent_payments`] for more information.
2933         ///
2934         /// # Possible Error States on [`PaymentSendFailure`]
2935         ///
2936         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
2937         /// each entry matching the corresponding-index entry in the route paths, see
2938         /// [`PaymentSendFailure`] for more info.
2939         ///
2940         /// In general, a path may raise:
2941         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
2942         ///    node public key) is specified.
2943         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
2944         ///    (including due to previous monitor update failure or new permanent monitor update
2945         ///    failure).
2946         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
2947         ///    relevant updates.
2948         ///
2949         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
2950         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
2951         /// different route unless you intend to pay twice!
2952         ///
2953         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2954         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
2955         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
2956         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
2957         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
2958         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2959                 let best_block_height = self.best_block.read().unwrap().height();
2960                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2961                 self.pending_outbound_payments
2962                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id, &self.entropy_source, &self.node_signer, best_block_height,
2963                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2964                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2965         }
2966
2967         /// Similar to [`ChannelManager::send_payment`], but will automatically find a route based on
2968         /// `route_params` and retry failed payment paths based on `retry_strategy`.
2969         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
2970                 let best_block_height = self.best_block.read().unwrap().height();
2971                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2972                 self.pending_outbound_payments
2973                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
2974                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
2975                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
2976                                 &self.pending_events,
2977                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2978                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2979         }
2980
2981         #[cfg(test)]
2982         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> {
2983                 let best_block_height = self.best_block.read().unwrap().height();
2984                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2985                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion, keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer, best_block_height,
2986                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2987                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2988         }
2989
2990         #[cfg(test)]
2991         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> {
2992                 let best_block_height = self.best_block.read().unwrap().height();
2993                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
2994         }
2995
2996         #[cfg(test)]
2997         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
2998                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
2999         }
3000
3001
3002         /// Signals that no further retries for the given payment should occur. Useful if you have a
3003         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3004         /// retries are exhausted.
3005         ///
3006         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3007         /// as there are no remaining pending HTLCs for this payment.
3008         ///
3009         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3010         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3011         /// determine the ultimate status of a payment.
3012         ///
3013         /// If an [`Event::PaymentFailed`] event is generated and we restart without this
3014         /// [`ChannelManager`] having been persisted, another [`Event::PaymentFailed`] may be generated.
3015         ///
3016         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3017         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3018         pub fn abandon_payment(&self, payment_id: PaymentId) {
3019                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3020                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3021         }
3022
3023         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3024         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3025         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3026         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3027         /// never reach the recipient.
3028         ///
3029         /// See [`send_payment`] documentation for more details on the return value of this function
3030         /// and idempotency guarantees provided by the [`PaymentId`] key.
3031         ///
3032         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3033         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3034         ///
3035         /// Note that `route` must have exactly one path.
3036         ///
3037         /// [`send_payment`]: Self::send_payment
3038         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3039                 let best_block_height = self.best_block.read().unwrap().height();
3040                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3041                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3042                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3043                         &self.node_signer, best_block_height,
3044                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3045                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3046         }
3047
3048         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3049         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3050         ///
3051         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3052         /// payments.
3053         ///
3054         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3055         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> {
3056                 let best_block_height = self.best_block.read().unwrap().height();
3057                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3058                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3059                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3060                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3061                         &self.logger, &self.pending_events,
3062                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3063                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3064         }
3065
3066         /// Send a payment that is probing the given route for liquidity. We calculate the
3067         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3068         /// us to easily discern them from real payments.
3069         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3070                 let best_block_height = self.best_block.read().unwrap().height();
3071                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3072                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret, &self.entropy_source, &self.node_signer, best_block_height,
3073                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3074                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
3075         }
3076
3077         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3078         /// payment probe.
3079         #[cfg(test)]
3080         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3081                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3082         }
3083
3084         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3085         /// which checks the correctness of the funding transaction given the associated channel.
3086         fn funding_transaction_generated_intern<FundingOutput: Fn(&Channel<<SP::Target as SignerProvider>::Signer>, &Transaction) -> Result<OutPoint, APIError>>(
3087                 &self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3088         ) -> Result<(), APIError> {
3089                 let per_peer_state = self.per_peer_state.read().unwrap();
3090                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3091                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3092
3093                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3094                 let peer_state = &mut *peer_state_lock;
3095                 let (msg, chan) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3096                         Some(mut chan) => {
3097                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3098
3099                                 let funding_res = chan.get_outbound_funding_created(funding_transaction, funding_txo, &self.logger)
3100                                         .map_err(|e| if let ChannelError::Close(msg) = e {
3101                                                 MsgHandleErrInternal::from_finish_shutdown(msg, chan.channel_id(), chan.get_user_id(), chan.force_shutdown(true), None)
3102                                         } else { unreachable!(); });
3103                                 match funding_res {
3104                                         Ok(funding_msg) => (funding_msg, chan),
3105                                         Err(_) => {
3106                                                 mem::drop(peer_state_lock);
3107                                                 mem::drop(per_peer_state);
3108
3109                                                 let _ = handle_error!(self, funding_res, chan.get_counterparty_node_id());
3110                                                 return Err(APIError::ChannelUnavailable {
3111                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3112                                                 });
3113                                         },
3114                                 }
3115                         },
3116                         None => {
3117                                 return Err(APIError::ChannelUnavailable {
3118                                         err: format!(
3119                                                 "Channel with id {} not found for the passed counterparty node_id {}",
3120                                                 log_bytes!(*temporary_channel_id), counterparty_node_id),
3121                                 })
3122                         },
3123                 };
3124
3125                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3126                         node_id: chan.get_counterparty_node_id(),
3127                         msg,
3128                 });
3129                 match peer_state.channel_by_id.entry(chan.channel_id()) {
3130                         hash_map::Entry::Occupied(_) => {
3131                                 panic!("Generated duplicate funding txid?");
3132                         },
3133                         hash_map::Entry::Vacant(e) => {
3134                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3135                                 if id_to_peer.insert(chan.channel_id(), chan.get_counterparty_node_id()).is_some() {
3136                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3137                                 }
3138                                 e.insert(chan);
3139                         }
3140                 }
3141                 Ok(())
3142         }
3143
3144         #[cfg(test)]
3145         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3146                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3147                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3148                 })
3149         }
3150
3151         /// Call this upon creation of a funding transaction for the given channel.
3152         ///
3153         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3154         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3155         ///
3156         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3157         /// across the p2p network.
3158         ///
3159         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3160         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3161         ///
3162         /// May panic if the output found in the funding transaction is duplicative with some other
3163         /// channel (note that this should be trivially prevented by using unique funding transaction
3164         /// keys per-channel).
3165         ///
3166         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3167         /// counterparty's signature the funding transaction will automatically be broadcast via the
3168         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3169         ///
3170         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3171         /// not currently support replacing a funding transaction on an existing channel. Instead,
3172         /// create a new channel with a conflicting funding transaction.
3173         ///
3174         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3175         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3176         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3177         /// for more details.
3178         ///
3179         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3180         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3181         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3182                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3183
3184                 for inp in funding_transaction.input.iter() {
3185                         if inp.witness.is_empty() {
3186                                 return Err(APIError::APIMisuseError {
3187                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3188                                 });
3189                         }
3190                 }
3191                 {
3192                         let height = self.best_block.read().unwrap().height();
3193                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3194                         // lower than the next block height. However, the modules constituting our Lightning
3195                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3196                         // module is ahead of LDK, only allow one more block of headroom.
3197                         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 {
3198                                 return Err(APIError::APIMisuseError {
3199                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3200                                 });
3201                         }
3202                 }
3203                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3204                         if tx.output.len() > u16::max_value() as usize {
3205                                 return Err(APIError::APIMisuseError {
3206                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3207                                 });
3208                         }
3209
3210                         let mut output_index = None;
3211                         let expected_spk = chan.get_funding_redeemscript().to_v0_p2wsh();
3212                         for (idx, outp) in tx.output.iter().enumerate() {
3213                                 if outp.script_pubkey == expected_spk && outp.value == chan.get_value_satoshis() {
3214                                         if output_index.is_some() {
3215                                                 return Err(APIError::APIMisuseError {
3216                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3217                                                 });
3218                                         }
3219                                         output_index = Some(idx as u16);
3220                                 }
3221                         }
3222                         if output_index.is_none() {
3223                                 return Err(APIError::APIMisuseError {
3224                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3225                                 });
3226                         }
3227                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3228                 })
3229         }
3230
3231         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3232         ///
3233         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3234         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3235         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3236         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3237         ///
3238         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3239         /// `counterparty_node_id` is provided.
3240         ///
3241         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3242         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3243         ///
3244         /// If an error is returned, none of the updates should be considered applied.
3245         ///
3246         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3247         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3248         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3249         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3250         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3251         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3252         /// [`APIMisuseError`]: APIError::APIMisuseError
3253         pub fn update_partial_channel_config(
3254                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config_update: &ChannelConfigUpdate,
3255         ) -> Result<(), APIError> {
3256                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3257                         return Err(APIError::APIMisuseError {
3258                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3259                         });
3260                 }
3261
3262                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3263                 let per_peer_state = self.per_peer_state.read().unwrap();
3264                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3265                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3266                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3267                 let peer_state = &mut *peer_state_lock;
3268                 for channel_id in channel_ids {
3269                         if !peer_state.channel_by_id.contains_key(channel_id) {
3270                                 return Err(APIError::ChannelUnavailable {
3271                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", log_bytes!(*channel_id), counterparty_node_id),
3272                                 });
3273                         }
3274                 }
3275                 for channel_id in channel_ids {
3276                         let channel = peer_state.channel_by_id.get_mut(channel_id).unwrap();
3277                         let mut config = channel.config();
3278                         config.apply(config_update);
3279                         if !channel.update_config(&config) {
3280                                 continue;
3281                         }
3282                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3283                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3284                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3285                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3286                                         node_id: channel.get_counterparty_node_id(),
3287                                         msg,
3288                                 });
3289                         }
3290                 }
3291                 Ok(())
3292         }
3293
3294         /// Atomically updates the [`ChannelConfig`] for the given channels.
3295         ///
3296         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3297         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3298         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3299         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3300         ///
3301         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3302         /// `counterparty_node_id` is provided.
3303         ///
3304         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3305         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3306         ///
3307         /// If an error is returned, none of the updates should be considered applied.
3308         ///
3309         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3310         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3311         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3312         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3313         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3314         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3315         /// [`APIMisuseError`]: APIError::APIMisuseError
3316         pub fn update_channel_config(
3317                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3318         ) -> Result<(), APIError> {
3319                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3320         }
3321
3322         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3323         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3324         ///
3325         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3326         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3327         ///
3328         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3329         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3330         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3331         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3332         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3333         ///
3334         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3335         /// you from forwarding more than you received.
3336         ///
3337         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3338         /// backwards.
3339         ///
3340         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3341         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3342         // TODO: when we move to deciding the best outbound channel at forward time, only take
3343         // `next_node_id` and not `next_hop_channel_id`
3344         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &[u8; 32], next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3345                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3346
3347                 let next_hop_scid = {
3348                         let peer_state_lock = self.per_peer_state.read().unwrap();
3349                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3350                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3351                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3352                         let peer_state = &mut *peer_state_lock;
3353                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3354                                 Some(chan) => {
3355                                         if !chan.is_usable() {
3356                                                 return Err(APIError::ChannelUnavailable {
3357                                                         err: format!("Channel with id {} not fully established", log_bytes!(*next_hop_channel_id))
3358                                                 })
3359                                         }
3360                                         chan.get_short_channel_id().unwrap_or(chan.outbound_scid_alias())
3361                                 },
3362                                 None => return Err(APIError::ChannelUnavailable {
3363                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*next_hop_channel_id), next_node_id)
3364                                 })
3365                         }
3366                 };
3367
3368                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3369                         .ok_or_else(|| APIError::APIMisuseError {
3370                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3371                         })?;
3372
3373                 let routing = match payment.forward_info.routing {
3374                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3375                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3376                         },
3377                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3378                 };
3379                 let pending_htlc_info = PendingHTLCInfo {
3380                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3381                 };
3382
3383                 let mut per_source_pending_forward = [(
3384                         payment.prev_short_channel_id,
3385                         payment.prev_funding_outpoint,
3386                         payment.prev_user_channel_id,
3387                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3388                 )];
3389                 self.forward_htlcs(&mut per_source_pending_forward);
3390                 Ok(())
3391         }
3392
3393         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3394         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3395         ///
3396         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3397         /// backwards.
3398         ///
3399         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3400         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3401                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3402
3403                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3404                         .ok_or_else(|| APIError::APIMisuseError {
3405                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3406                         })?;
3407
3408                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3409                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3410                                 short_channel_id: payment.prev_short_channel_id,
3411                                 outpoint: payment.prev_funding_outpoint,
3412                                 htlc_id: payment.prev_htlc_id,
3413                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3414                                 phantom_shared_secret: None,
3415                         });
3416
3417                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3418                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3419                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3420                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3421
3422                 Ok(())
3423         }
3424
3425         /// Processes HTLCs which are pending waiting on random forward delay.
3426         ///
3427         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3428         /// Will likely generate further events.
3429         pub fn process_pending_htlc_forwards(&self) {
3430                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3431
3432                 let mut new_events = VecDeque::new();
3433                 let mut failed_forwards = Vec::new();
3434                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3435                 {
3436                         let mut forward_htlcs = HashMap::new();
3437                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3438
3439                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3440                                 if short_chan_id != 0 {
3441                                         macro_rules! forwarding_channel_not_found {
3442                                                 () => {
3443                                                         for forward_info in pending_forwards.drain(..) {
3444                                                                 match forward_info {
3445                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3446                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3447                                                                                 forward_info: PendingHTLCInfo {
3448                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3449                                                                                         outgoing_cltv_value, incoming_amt_msat: _
3450                                                                                 }
3451                                                                         }) => {
3452                                                                                 macro_rules! failure_handler {
3453                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3454                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3455
3456                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3457                                                                                                         short_channel_id: prev_short_channel_id,
3458                                                                                                         outpoint: prev_funding_outpoint,
3459                                                                                                         htlc_id: prev_htlc_id,
3460                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3461                                                                                                         phantom_shared_secret: $phantom_ss,
3462                                                                                                 });
3463
3464                                                                                                 let reason = if $next_hop_unknown {
3465                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3466                                                                                                 } else {
3467                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3468                                                                                                 };
3469
3470                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3471                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3472                                                                                                         reason
3473                                                                                                 ));
3474                                                                                                 continue;
3475                                                                                         }
3476                                                                                 }
3477                                                                                 macro_rules! fail_forward {
3478                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3479                                                                                                 {
3480                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3481                                                                                                 }
3482                                                                                         }
3483                                                                                 }
3484                                                                                 macro_rules! failed_payment {
3485                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3486                                                                                                 {
3487                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3488                                                                                                 }
3489                                                                                         }
3490                                                                                 }
3491                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3492                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3493                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3494                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3495                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3496                                                                                                         Ok(res) => res,
3497                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3498                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3499                                                                                                                 // In this scenario, the phantom would have sent us an
3500                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3501                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3502                                                                                                                 // of the onion.
3503                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3504                                                                                                         },
3505                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3506                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3507                                                                                                         },
3508                                                                                                 };
3509                                                                                                 match next_hop {
3510                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3511                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data, incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value, Some(phantom_shared_secret)) {
3512                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3513                                                                                                                         Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3514                                                                                                                 }
3515                                                                                                         },
3516                                                                                                         _ => panic!(),
3517                                                                                                 }
3518                                                                                         } else {
3519                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3520                                                                                         }
3521                                                                                 } else {
3522                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3523                                                                                 }
3524                                                                         },
3525                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3526                                                                                 // Channel went away before we could fail it. This implies
3527                                                                                 // the channel is now on chain and our counterparty is
3528                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3529                                                                                 // problem, not ours.
3530                                                                         }
3531                                                                 }
3532                                                         }
3533                                                 }
3534                                         }
3535                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
3536                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3537                                                 None => {
3538                                                         forwarding_channel_not_found!();
3539                                                         continue;
3540                                                 }
3541                                         };
3542                                         let per_peer_state = self.per_peer_state.read().unwrap();
3543                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3544                                         if peer_state_mutex_opt.is_none() {
3545                                                 forwarding_channel_not_found!();
3546                                                 continue;
3547                                         }
3548                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3549                                         let peer_state = &mut *peer_state_lock;
3550                                         match peer_state.channel_by_id.entry(forward_chan_id) {
3551                                                 hash_map::Entry::Vacant(_) => {
3552                                                         forwarding_channel_not_found!();
3553                                                         continue;
3554                                                 },
3555                                                 hash_map::Entry::Occupied(mut chan) => {
3556                                                         for forward_info in pending_forwards.drain(..) {
3557                                                                 match forward_info {
3558                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3559                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id: _,
3560                                                                                 forward_info: PendingHTLCInfo {
3561                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
3562                                                                                         routing: PendingHTLCRouting::Forward { onion_packet, .. }, incoming_amt_msat: _,
3563                                                                                 },
3564                                                                         }) => {
3565                                                                                 log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, log_bytes!(payment_hash.0), short_chan_id);
3566                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3567                                                                                         short_channel_id: prev_short_channel_id,
3568                                                                                         outpoint: prev_funding_outpoint,
3569                                                                                         htlc_id: prev_htlc_id,
3570                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3571                                                                                         // Phantom payments are only PendingHTLCRouting::Receive.
3572                                                                                         phantom_shared_secret: None,
3573                                                                                 });
3574                                                                                 if let Err(e) = chan.get_mut().queue_add_htlc(outgoing_amt_msat,
3575                                                                                         payment_hash, outgoing_cltv_value, htlc_source.clone(),
3576                                                                                         onion_packet, &self.logger)
3577                                                                                 {
3578                                                                                         if let ChannelError::Ignore(msg) = e {
3579                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3580                                                                                         } else {
3581                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3582                                                                                         }
3583                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3584                                                                                         failed_forwards.push((htlc_source, payment_hash,
3585                                                                                                 HTLCFailReason::reason(failure_code, data),
3586                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().get_counterparty_node_id()), channel_id: forward_chan_id }
3587                                                                                         ));
3588                                                                                         continue;
3589                                                                                 }
3590                                                                         },
3591                                                                         HTLCForwardInfo::AddHTLC { .. } => {
3592                                                                                 panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3593                                                                         },
3594                                                                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3595                                                                                 log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3596                                                                                 if let Err(e) = chan.get_mut().queue_fail_htlc(
3597                                                                                         htlc_id, err_packet, &self.logger
3598                                                                                 ) {
3599                                                                                         if let ChannelError::Ignore(msg) = e {
3600                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
3601                                                                                         } else {
3602                                                                                                 panic!("Stated return value requirements in queue_fail_htlc() were not met");
3603                                                                                         }
3604                                                                                         // fail-backs are best-effort, we probably already have one
3605                                                                                         // pending, and if not that's OK, if not, the channel is on
3606                                                                                         // the chain and sending the HTLC-Timeout is their problem.
3607                                                                                         continue;
3608                                                                                 }
3609                                                                         },
3610                                                                 }
3611                                                         }
3612                                                 }
3613                                         }
3614                                 } else {
3615                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
3616                                                 match forward_info {
3617                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3618                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3619                                                                 forward_info: PendingHTLCInfo {
3620                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat, ..
3621                                                                 }
3622                                                         }) => {
3623                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
3624                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret } => {
3625                                                                                 let _legacy_hop_data = Some(payment_data.clone());
3626                                                                                 let onion_fields =
3627                                                                                         RecipientOnionFields { payment_secret: Some(payment_data.payment_secret), payment_metadata };
3628                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
3629                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
3630                                                                         },
3631                                                                         PendingHTLCRouting::ReceiveKeysend { payment_preimage, payment_metadata, incoming_cltv_expiry } => {
3632                                                                                 let onion_fields = RecipientOnionFields { payment_secret: None, payment_metadata };
3633                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
3634                                                                                         None, None, onion_fields)
3635                                                                         },
3636                                                                         _ => {
3637                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
3638                                                                         }
3639                                                                 };
3640                                                                 let mut claimable_htlc = ClaimableHTLC {
3641                                                                         prev_hop: HTLCPreviousHopData {
3642                                                                                 short_channel_id: prev_short_channel_id,
3643                                                                                 outpoint: prev_funding_outpoint,
3644                                                                                 htlc_id: prev_htlc_id,
3645                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3646                                                                                 phantom_shared_secret,
3647                                                                         },
3648                                                                         // We differentiate the received value from the sender intended value
3649                                                                         // if possible so that we don't prematurely mark MPP payments complete
3650                                                                         // if routing nodes overpay
3651                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
3652                                                                         sender_intended_value: outgoing_amt_msat,
3653                                                                         timer_ticks: 0,
3654                                                                         total_value_received: None,
3655                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
3656                                                                         cltv_expiry,
3657                                                                         onion_payload,
3658                                                                 };
3659
3660                                                                 let mut committed_to_claimable = false;
3661
3662                                                                 macro_rules! fail_htlc {
3663                                                                         ($htlc: expr, $payment_hash: expr) => {
3664                                                                                 debug_assert!(!committed_to_claimable);
3665                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
3666                                                                                 htlc_msat_height_data.extend_from_slice(
3667                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
3668                                                                                 );
3669                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
3670                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
3671                                                                                                 outpoint: prev_funding_outpoint,
3672                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
3673                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
3674                                                                                                 phantom_shared_secret,
3675                                                                                         }), payment_hash,
3676                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
3677                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
3678                                                                                 ));
3679                                                                                 continue 'next_forwardable_htlc;
3680                                                                         }
3681                                                                 }
3682                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
3683                                                                 let mut receiver_node_id = self.our_network_pubkey;
3684                                                                 if phantom_shared_secret.is_some() {
3685                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
3686                                                                                 .expect("Failed to get node_id for phantom node recipient");
3687                                                                 }
3688
3689                                                                 macro_rules! check_total_value {
3690                                                                         ($payment_data: expr, $payment_preimage: expr) => {{
3691                                                                                 let mut payment_claimable_generated = false;
3692                                                                                 let purpose = || {
3693                                                                                         events::PaymentPurpose::InvoicePayment {
3694                                                                                                 payment_preimage: $payment_preimage,
3695                                                                                                 payment_secret: $payment_data.payment_secret,
3696                                                                                         }
3697                                                                                 };
3698                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
3699                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
3700                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3701                                                                                 }
3702                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
3703                                                                                         .entry(payment_hash)
3704                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
3705                                                                                         .or_insert_with(|| {
3706                                                                                                 committed_to_claimable = true;
3707                                                                                                 ClaimablePayment {
3708                                                                                                         purpose: purpose(), htlcs: Vec::new(), onion_fields: None,
3709                                                                                                 }
3710                                                                                         });
3711                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
3712                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
3713                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3714                                                                                         }
3715                                                                                 } else {
3716                                                                                         claimable_payment.onion_fields = Some(onion_fields);
3717                                                                                 }
3718                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
3719                                                                                 if htlcs.len() == 1 {
3720                                                                                         if let OnionPayload::Spontaneous(_) = htlcs[0].onion_payload {
3721                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash", log_bytes!(payment_hash.0));
3722                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3723                                                                                         }
3724                                                                                 }
3725                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
3726                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
3727                                                                                 for htlc in htlcs.iter() {
3728                                                                                         total_value += htlc.sender_intended_value;
3729                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
3730                                                                                         match &htlc.onion_payload {
3731                                                                                                 OnionPayload::Invoice { .. } => {
3732                                                                                                         if htlc.total_msat != $payment_data.total_msat {
3733                                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
3734                                                                                                                         log_bytes!(payment_hash.0), $payment_data.total_msat, htlc.total_msat);
3735                                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
3736                                                                                                         }
3737                                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
3738                                                                                                 },
3739                                                                                                 _ => unreachable!(),
3740                                                                                         }
3741                                                                                 }
3742                                                                                 // The condition determining whether an MPP is complete must
3743                                                                                 // match exactly the condition used in `timer_tick_occurred`
3744                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
3745                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3746                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= $payment_data.total_msat {
3747                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
3748                                                                                                 log_bytes!(payment_hash.0));
3749                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3750                                                                                 } else if total_value >= $payment_data.total_msat {
3751                                                                                         #[allow(unused_assignments)] {
3752                                                                                                 committed_to_claimable = true;
3753                                                                                         }
3754                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
3755                                                                                         htlcs.push(claimable_htlc);
3756                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
3757                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
3758                                                                                         new_events.push_back((events::Event::PaymentClaimable {
3759                                                                                                 receiver_node_id: Some(receiver_node_id),
3760                                                                                                 payment_hash,
3761                                                                                                 purpose: purpose(),
3762                                                                                                 amount_msat,
3763                                                                                                 via_channel_id: Some(prev_channel_id),
3764                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
3765                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
3766                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
3767                                                                                         }, None));
3768                                                                                         payment_claimable_generated = true;
3769                                                                                 } else {
3770                                                                                         // Nothing to do - we haven't reached the total
3771                                                                                         // payment value yet, wait until we receive more
3772                                                                                         // MPP parts.
3773                                                                                         htlcs.push(claimable_htlc);
3774                                                                                         #[allow(unused_assignments)] {
3775                                                                                                 committed_to_claimable = true;
3776                                                                                         }
3777                                                                                 }
3778                                                                                 payment_claimable_generated
3779                                                                         }}
3780                                                                 }
3781
3782                                                                 // Check that the payment hash and secret are known. Note that we
3783                                                                 // MUST take care to handle the "unknown payment hash" and
3784                                                                 // "incorrect payment secret" cases here identically or we'd expose
3785                                                                 // that we are the ultimate recipient of the given payment hash.
3786                                                                 // Further, we must not expose whether we have any other HTLCs
3787                                                                 // associated with the same payment_hash pending or not.
3788                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
3789                                                                 match payment_secrets.entry(payment_hash) {
3790                                                                         hash_map::Entry::Vacant(_) => {
3791                                                                                 match claimable_htlc.onion_payload {
3792                                                                                         OnionPayload::Invoice { .. } => {
3793                                                                                                 let payment_data = payment_data.unwrap();
3794                                                                                                 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) {
3795                                                                                                         Ok(result) => result,
3796                                                                                                         Err(()) => {
3797                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", log_bytes!(payment_hash.0));
3798                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3799                                                                                                         }
3800                                                                                                 };
3801                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
3802                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
3803                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
3804                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
3805                                                                                                                         log_bytes!(payment_hash.0), cltv_expiry, expected_min_expiry_height);
3806                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3807                                                                                                         }
3808                                                                                                 }
3809                                                                                                 check_total_value!(payment_data, payment_preimage);
3810                                                                                         },
3811                                                                                         OnionPayload::Spontaneous(preimage) => {
3812                                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
3813                                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
3814                                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3815                                                                                                 }
3816                                                                                                 match claimable_payments.claimable_payments.entry(payment_hash) {
3817                                                                                                         hash_map::Entry::Vacant(e) => {
3818                                                                                                                 let amount_msat = claimable_htlc.value;
3819                                                                                                                 claimable_htlc.total_value_received = Some(amount_msat);
3820                                                                                                                 let claim_deadline = Some(claimable_htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER);
3821                                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
3822                                                                                                                 e.insert(ClaimablePayment {
3823                                                                                                                         purpose: purpose.clone(),
3824                                                                                                                         onion_fields: Some(onion_fields.clone()),
3825                                                                                                                         htlcs: vec![claimable_htlc],
3826                                                                                                                 });
3827                                                                                                                 let prev_channel_id = prev_funding_outpoint.to_channel_id();
3828                                                                                                                 new_events.push_back((events::Event::PaymentClaimable {
3829                                                                                                                         receiver_node_id: Some(receiver_node_id),
3830                                                                                                                         payment_hash,
3831                                                                                                                         amount_msat,
3832                                                                                                                         purpose,
3833                                                                                                                         via_channel_id: Some(prev_channel_id),
3834                                                                                                                         via_user_channel_id: Some(prev_user_channel_id),
3835                                                                                                                         claim_deadline,
3836                                                                                                                         onion_fields: Some(onion_fields),
3837                                                                                                                 }, None));
3838                                                                                                         },
3839                                                                                                         hash_map::Entry::Occupied(_) => {
3840                                                                                                                 log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} for a duplicative payment hash", log_bytes!(payment_hash.0));
3841                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3842                                                                                                         }
3843                                                                                                 }
3844                                                                                         }
3845                                                                                 }
3846                                                                         },
3847                                                                         hash_map::Entry::Occupied(inbound_payment) => {
3848                                                                                 if payment_data.is_none() {
3849                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", log_bytes!(payment_hash.0));
3850                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3851                                                                                 };
3852                                                                                 let payment_data = payment_data.unwrap();
3853                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
3854                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
3855                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3856                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
3857                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
3858                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
3859                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3860                                                                                 } else {
3861                                                                                         let payment_claimable_generated = check_total_value!(payment_data, inbound_payment.get().payment_preimage);
3862                                                                                         if payment_claimable_generated {
3863                                                                                                 inbound_payment.remove_entry();
3864                                                                                         }
3865                                                                                 }
3866                                                                         },
3867                                                                 };
3868                                                         },
3869                                                         HTLCForwardInfo::FailHTLC { .. } => {
3870                                                                 panic!("Got pending fail of our own HTLC");
3871                                                         }
3872                                                 }
3873                                         }
3874                                 }
3875                         }
3876                 }
3877
3878                 let best_block_height = self.best_block.read().unwrap().height();
3879                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
3880                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
3881                         &self.pending_events, &self.logger,
3882                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3883                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv));
3884
3885                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
3886                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
3887                 }
3888                 self.forward_htlcs(&mut phantom_receives);
3889
3890                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
3891                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
3892                 // nice to do the work now if we can rather than while we're trying to get messages in the
3893                 // network stack.
3894                 self.check_free_holding_cells();
3895
3896                 if new_events.is_empty() { return }
3897                 let mut events = self.pending_events.lock().unwrap();
3898                 events.append(&mut new_events);
3899         }
3900
3901         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
3902         ///
3903         /// Expects the caller to have a total_consistency_lock read lock.
3904         fn process_background_events(&self) -> NotifyOption {
3905                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
3906
3907                 #[cfg(debug_assertions)]
3908                 self.background_events_processed_since_startup.store(true, Ordering::Release);
3909
3910                 let mut background_events = Vec::new();
3911                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
3912                 if background_events.is_empty() {
3913                         return NotifyOption::SkipPersist;
3914                 }
3915
3916                 for event in background_events.drain(..) {
3917                         match event {
3918                                 BackgroundEvent::ClosingMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
3919                                         // The channel has already been closed, so no use bothering to care about the
3920                                         // monitor updating completing.
3921                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
3922                                 },
3923                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
3924                                         let update_res = self.chain_monitor.update_channel(funding_txo, &update);
3925
3926                                         let res = {
3927                                                 let per_peer_state = self.per_peer_state.read().unwrap();
3928                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
3929                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3930                                                         let peer_state = &mut *peer_state_lock;
3931                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
3932                                                                 hash_map::Entry::Occupied(mut chan) => {
3933                                                                         handle_new_monitor_update!(self, update_res, update.update_id, peer_state_lock, peer_state, per_peer_state, chan)
3934                                                                 },
3935                                                                 hash_map::Entry::Vacant(_) => Ok(()),
3936                                                         }
3937                                                 } else { Ok(()) }
3938                                         };
3939                                         // TODO: If this channel has since closed, we're likely providing a payment
3940                                         // preimage update, which we must ensure is durable! We currently don't,
3941                                         // however, ensure that.
3942                                         if res.is_err() {
3943                                                 log_error!(self.logger,
3944                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
3945                                         }
3946                                         let _ = handle_error!(self, res, counterparty_node_id);
3947                                 },
3948                         }
3949                 }
3950                 NotifyOption::DoPersist
3951         }
3952
3953         #[cfg(any(test, feature = "_test_utils"))]
3954         /// Process background events, for functional testing
3955         pub fn test_process_background_events(&self) {
3956                 let _lck = self.total_consistency_lock.read().unwrap();
3957                 let _ = self.process_background_events();
3958         }
3959
3960         fn update_channel_fee(&self, chan_id: &[u8; 32], chan: &mut Channel<<SP::Target as SignerProvider>::Signer>, new_feerate: u32) -> NotifyOption {
3961                 if !chan.is_outbound() { return NotifyOption::SkipPersist; }
3962                 // If the feerate has decreased by less than half, don't bother
3963                 if new_feerate <= chan.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.get_feerate_sat_per_1000_weight() {
3964                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
3965                                 log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3966                         return NotifyOption::SkipPersist;
3967                 }
3968                 if !chan.is_live() {
3969                         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).",
3970                                 log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3971                         return NotifyOption::SkipPersist;
3972                 }
3973                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
3974                         log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3975
3976                 chan.queue_update_fee(new_feerate, &self.logger);
3977                 NotifyOption::DoPersist
3978         }
3979
3980         #[cfg(fuzzing)]
3981         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
3982         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
3983         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
3984         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
3985         pub fn maybe_update_chan_fees(&self) {
3986                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3987                         let mut should_persist = self.process_background_events();
3988
3989                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3990
3991                         let per_peer_state = self.per_peer_state.read().unwrap();
3992                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3993                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3994                                 let peer_state = &mut *peer_state_lock;
3995                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
3996                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
3997                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3998                                 }
3999                         }
4000
4001                         should_persist
4002                 });
4003         }
4004
4005         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4006         ///
4007         /// This currently includes:
4008         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4009         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4010         ///    than a minute, informing the network that they should no longer attempt to route over
4011         ///    the channel.
4012         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4013         ///    with the current [`ChannelConfig`].
4014         ///  * Removing peers which have disconnected but and no longer have any channels.
4015         ///
4016         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4017         /// estimate fetches.
4018         ///
4019         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4020         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4021         pub fn timer_tick_occurred(&self) {
4022                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4023                         let mut should_persist = self.process_background_events();
4024
4025                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4026
4027                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4028                         let mut timed_out_mpp_htlcs = Vec::new();
4029                         let mut pending_peers_awaiting_removal = Vec::new();
4030                         {
4031                                 let per_peer_state = self.per_peer_state.read().unwrap();
4032                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4033                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4034                                         let peer_state = &mut *peer_state_lock;
4035                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4036                                         let counterparty_node_id = *counterparty_node_id;
4037                                         peer_state.channel_by_id.retain(|chan_id, chan| {
4038                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4039                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4040
4041                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4042                                                         let (needs_close, err) = convert_chan_err!(self, e, chan, chan_id);
4043                                                         handle_errors.push((Err(err), counterparty_node_id));
4044                                                         if needs_close { return false; }
4045                                                 }
4046
4047                                                 match chan.channel_update_status() {
4048                                                         ChannelUpdateStatus::Enabled if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4049                                                         ChannelUpdateStatus::Disabled if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4050                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.is_live()
4051                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4052                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.is_live()
4053                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4054                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.is_live() => {
4055                                                                 n += 1;
4056                                                                 if n >= DISABLE_GOSSIP_TICKS {
4057                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4058                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4059                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4060                                                                                         msg: update
4061                                                                                 });
4062                                                                         }
4063                                                                         should_persist = NotifyOption::DoPersist;
4064                                                                 } else {
4065                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4066                                                                 }
4067                                                         },
4068                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.is_live() => {
4069                                                                 n += 1;
4070                                                                 if n >= ENABLE_GOSSIP_TICKS {
4071                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4072                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4073                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4074                                                                                         msg: update
4075                                                                                 });
4076                                                                         }
4077                                                                         should_persist = NotifyOption::DoPersist;
4078                                                                 } else {
4079                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4080                                                                 }
4081                                                         },
4082                                                         _ => {},
4083                                                 }
4084
4085                                                 chan.maybe_expire_prev_config();
4086
4087                                                 if chan.should_disconnect_peer_awaiting_response() {
4088                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4089                                                                         counterparty_node_id, log_bytes!(*chan_id));
4090                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4091                                                                 node_id: counterparty_node_id,
4092                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4093                                                                         msg: msgs::WarningMessage {
4094                                                                                 channel_id: *chan_id,
4095                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4096                                                                         },
4097                                                                 },
4098                                                         });
4099                                                 }
4100
4101                                                 true
4102                                         });
4103                                         if peer_state.ok_to_remove(true) {
4104                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4105                                         }
4106                                 }
4107                         }
4108
4109                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4110                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4111                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4112                         // we therefore need to remove the peer from `peer_state` separately.
4113                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4114                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4115                         // negative effects on parallelism as much as possible.
4116                         if pending_peers_awaiting_removal.len() > 0 {
4117                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4118                                 for counterparty_node_id in pending_peers_awaiting_removal {
4119                                         match per_peer_state.entry(counterparty_node_id) {
4120                                                 hash_map::Entry::Occupied(entry) => {
4121                                                         // Remove the entry if the peer is still disconnected and we still
4122                                                         // have no channels to the peer.
4123                                                         let remove_entry = {
4124                                                                 let peer_state = entry.get().lock().unwrap();
4125                                                                 peer_state.ok_to_remove(true)
4126                                                         };
4127                                                         if remove_entry {
4128                                                                 entry.remove_entry();
4129                                                         }
4130                                                 },
4131                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4132                                         }
4133                                 }
4134                         }
4135
4136                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4137                                 if payment.htlcs.is_empty() {
4138                                         // This should be unreachable
4139                                         debug_assert!(false);
4140                                         return false;
4141                                 }
4142                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4143                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4144                                         // In this case we're not going to handle any timeouts of the parts here.
4145                                         // This condition determining whether the MPP is complete here must match
4146                                         // exactly the condition used in `process_pending_htlc_forwards`.
4147                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4148                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4149                                         {
4150                                                 return true;
4151                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4152                                                 htlc.timer_ticks += 1;
4153                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4154                                         }) {
4155                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4156                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4157                                                 return false;
4158                                         }
4159                                 }
4160                                 true
4161                         });
4162
4163                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4164                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4165                                 let reason = HTLCFailReason::from_failure_code(23);
4166                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4167                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4168                         }
4169
4170                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4171                                 let _ = handle_error!(self, err, counterparty_node_id);
4172                         }
4173
4174                         self.pending_outbound_payments.remove_stale_resolved_payments(&self.pending_events);
4175
4176                         // Technically we don't need to do this here, but if we have holding cell entries in a
4177                         // channel that need freeing, it's better to do that here and block a background task
4178                         // than block the message queueing pipeline.
4179                         if self.check_free_holding_cells() {
4180                                 should_persist = NotifyOption::DoPersist;
4181                         }
4182
4183                         should_persist
4184                 });
4185         }
4186
4187         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4188         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4189         /// along the path (including in our own channel on which we received it).
4190         ///
4191         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4192         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4193         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4194         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4195         ///
4196         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4197         /// [`ChannelManager::claim_funds`]), you should still monitor for
4198         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4199         /// startup during which time claims that were in-progress at shutdown may be replayed.
4200         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4201                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4202         }
4203
4204         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4205         /// reason for the failure.
4206         ///
4207         /// See [`FailureCode`] for valid failure codes.
4208         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4209                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4210
4211                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4212                 if let Some(payment) = removed_source {
4213                         for htlc in payment.htlcs {
4214                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4215                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4216                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4217                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4218                         }
4219                 }
4220         }
4221
4222         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4223         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4224                 match failure_code {
4225                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code as u16),
4226                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code as u16),
4227                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4228                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4229                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4230                                 HTLCFailReason::reason(failure_code as u16, htlc_msat_height_data)
4231                         }
4232                 }
4233         }
4234
4235         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4236         /// that we want to return and a channel.
4237         ///
4238         /// This is for failures on the channel on which the HTLC was *received*, not failures
4239         /// forwarding
4240         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> (u16, Vec<u8>) {
4241                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4242                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4243                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4244                 // an inbound SCID alias before the real SCID.
4245                 let scid_pref = if chan.should_announce() {
4246                         chan.get_short_channel_id().or(chan.latest_inbound_scid_alias())
4247                 } else {
4248                         chan.latest_inbound_scid_alias().or(chan.get_short_channel_id())
4249                 };
4250                 if let Some(scid) = scid_pref {
4251                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4252                 } else {
4253                         (0x4000|10, Vec::new())
4254                 }
4255         }
4256
4257
4258         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4259         /// that we want to return and a channel.
4260         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> (u16, Vec<u8>) {
4261                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4262                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4263                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4264                         if desired_err_code == 0x1000 | 20 {
4265                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4266                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4267                                 0u16.write(&mut enc).expect("Writes cannot fail");
4268                         }
4269                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4270                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4271                         upd.write(&mut enc).expect("Writes cannot fail");
4272                         (desired_err_code, enc.0)
4273                 } else {
4274                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4275                         // which means we really shouldn't have gotten a payment to be forwarded over this
4276                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4277                         // PERM|no_such_channel should be fine.
4278                         (0x4000|10, Vec::new())
4279                 }
4280         }
4281
4282         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4283         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4284         // be surfaced to the user.
4285         fn fail_holding_cell_htlcs(
4286                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
4287                 counterparty_node_id: &PublicKey
4288         ) {
4289                 let (failure_code, onion_failure_data) = {
4290                         let per_peer_state = self.per_peer_state.read().unwrap();
4291                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4292                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4293                                 let peer_state = &mut *peer_state_lock;
4294                                 match peer_state.channel_by_id.entry(channel_id) {
4295                                         hash_map::Entry::Occupied(chan_entry) => {
4296                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
4297                                         },
4298                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4299                                 }
4300                         } else { (0x4000|10, Vec::new()) }
4301                 };
4302
4303                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4304                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4305                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4306                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4307                 }
4308         }
4309
4310         /// Fails an HTLC backwards to the sender of it to us.
4311         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4312         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4313                 // Ensure that no peer state channel storage lock is held when calling this function.
4314                 // This ensures that future code doesn't introduce a lock-order requirement for
4315                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4316                 // this function with any `per_peer_state` peer lock acquired would.
4317                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4318                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4319                 }
4320
4321                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4322                 //identify whether we sent it or not based on the (I presume) very different runtime
4323                 //between the branches here. We should make this async and move it into the forward HTLCs
4324                 //timer handling.
4325
4326                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4327                 // from block_connected which may run during initialization prior to the chain_monitor
4328                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4329                 match source {
4330                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4331                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4332                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4333                                         &self.pending_events, &self.logger)
4334                                 { self.push_pending_forwards_ev(); }
4335                         },
4336                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint }) => {
4337                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", log_bytes!(payment_hash.0), onion_error);
4338                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4339
4340                                 let mut push_forward_ev = false;
4341                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4342                                 if forward_htlcs.is_empty() {
4343                                         push_forward_ev = true;
4344                                 }
4345                                 match forward_htlcs.entry(*short_channel_id) {
4346                                         hash_map::Entry::Occupied(mut entry) => {
4347                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4348                                         },
4349                                         hash_map::Entry::Vacant(entry) => {
4350                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4351                                         }
4352                                 }
4353                                 mem::drop(forward_htlcs);
4354                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4355                                 let mut pending_events = self.pending_events.lock().unwrap();
4356                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4357                                         prev_channel_id: outpoint.to_channel_id(),
4358                                         failed_next_destination: destination,
4359                                 }, None));
4360                         },
4361                 }
4362         }
4363
4364         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4365         /// [`MessageSendEvent`]s needed to claim the payment.
4366         ///
4367         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4368         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4369         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4370         /// successful. It will generally be available in the next [`process_pending_events`] call.
4371         ///
4372         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4373         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4374         /// event matches your expectation. If you fail to do so and call this method, you may provide
4375         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4376         ///
4377         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4378         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4379         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4380         /// [`process_pending_events`]: EventsProvider::process_pending_events
4381         /// [`create_inbound_payment`]: Self::create_inbound_payment
4382         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4383         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4384                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4385
4386                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4387
4388                 let mut sources = {
4389                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4390                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4391                                 let mut receiver_node_id = self.our_network_pubkey;
4392                                 for htlc in payment.htlcs.iter() {
4393                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4394                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4395                                                         .expect("Failed to get node_id for phantom node recipient");
4396                                                 receiver_node_id = phantom_pubkey;
4397                                                 break;
4398                                         }
4399                                 }
4400
4401                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4402                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4403                                         payment_purpose: payment.purpose, receiver_node_id,
4404                                 });
4405                                 if dup_purpose.is_some() {
4406                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4407                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4408                                                 log_bytes!(payment_hash.0));
4409                                 }
4410                                 payment.htlcs
4411                         } else { return; }
4412                 };
4413                 debug_assert!(!sources.is_empty());
4414
4415                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
4416                 // and when we got here we need to check that the amount we're about to claim matches the
4417                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
4418                 // the MPP parts all have the same `total_msat`.
4419                 let mut claimable_amt_msat = 0;
4420                 let mut prev_total_msat = None;
4421                 let mut expected_amt_msat = None;
4422                 let mut valid_mpp = true;
4423                 let mut errs = Vec::new();
4424                 let per_peer_state = self.per_peer_state.read().unwrap();
4425                 for htlc in sources.iter() {
4426                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
4427                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
4428                                 debug_assert!(false);
4429                                 valid_mpp = false;
4430                                 break;
4431                         }
4432                         prev_total_msat = Some(htlc.total_msat);
4433
4434                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
4435                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
4436                                 debug_assert!(false);
4437                                 valid_mpp = false;
4438                                 break;
4439                         }
4440                         expected_amt_msat = htlc.total_value_received;
4441
4442                         if let OnionPayload::Spontaneous(_) = &htlc.onion_payload {
4443                                 // We don't currently support MPP for spontaneous payments, so just check
4444                                 // that there's one payment here and move on.
4445                                 if sources.len() != 1 {
4446                                         log_error!(self.logger, "Somehow ended up with an MPP spontaneous payment - this should not be reachable!");
4447                                         debug_assert!(false);
4448                                         valid_mpp = false;
4449                                         break;
4450                                 }
4451                         }
4452
4453                         claimable_amt_msat += htlc.value;
4454                 }
4455                 mem::drop(per_peer_state);
4456                 if sources.is_empty() || expected_amt_msat.is_none() {
4457                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4458                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4459                         return;
4460                 }
4461                 if claimable_amt_msat != expected_amt_msat.unwrap() {
4462                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4463                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4464                                 expected_amt_msat.unwrap(), claimable_amt_msat);
4465                         return;
4466                 }
4467                 if valid_mpp {
4468                         for htlc in sources.drain(..) {
4469                                 if let Err((pk, err)) = self.claim_funds_from_hop(
4470                                         htlc.prev_hop, payment_preimage,
4471                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
4472                                 {
4473                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4474                                                 // We got a temporary failure updating monitor, but will claim the
4475                                                 // HTLC when the monitor updating is restored (or on chain).
4476                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4477                                         } else { errs.push((pk, err)); }
4478                                 }
4479                         }
4480                 }
4481                 if !valid_mpp {
4482                         for htlc in sources.drain(..) {
4483                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4484                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4485                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4486                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
4487                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
4488                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4489                         }
4490                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4491                 }
4492
4493                 // Now we can handle any errors which were generated.
4494                 for (counterparty_node_id, err) in errs.drain(..) {
4495                         let res: Result<(), _> = Err(err);
4496                         let _ = handle_error!(self, res, counterparty_node_id);
4497                 }
4498         }
4499
4500         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
4501                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
4502         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
4503                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
4504
4505                 {
4506                         let per_peer_state = self.per_peer_state.read().unwrap();
4507                         let chan_id = prev_hop.outpoint.to_channel_id();
4508                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
4509                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
4510                                 None => None
4511                         };
4512
4513                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
4514                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
4515                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
4516                         ).unwrap_or(None);
4517
4518                         if peer_state_opt.is_some() {
4519                                 let mut peer_state_lock = peer_state_opt.unwrap();
4520                                 let peer_state = &mut *peer_state_lock;
4521                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(chan_id) {
4522                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
4523                                         let fulfill_res = chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
4524
4525                                         if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
4526                                                 if let Some(action) = completion_action(Some(htlc_value_msat)) {
4527                                                         log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
4528                                                                 log_bytes!(chan_id), action);
4529                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
4530                                                 }
4531                                                 let update_id = monitor_update.update_id;
4532                                                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, monitor_update);
4533                                                 let res = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
4534                                                         peer_state, per_peer_state, chan);
4535                                                 if let Err(e) = res {
4536                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
4537                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
4538                                                         // update over and over again until morale improves.
4539                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
4540                                                         return Err((counterparty_node_id, e));
4541                                                 }
4542                                         }
4543                                         return Ok(());
4544                                 }
4545                         }
4546                 }
4547                 let preimage_update = ChannelMonitorUpdate {
4548                         update_id: CLOSED_CHANNEL_UPDATE_ID,
4549                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
4550                                 payment_preimage,
4551                         }],
4552                 };
4553                 // We update the ChannelMonitor on the backward link, after
4554                 // receiving an `update_fulfill_htlc` from the forward link.
4555                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
4556                 if update_res != ChannelMonitorUpdateStatus::Completed {
4557                         // TODO: This needs to be handled somehow - if we receive a monitor update
4558                         // with a preimage we *must* somehow manage to propagate it to the upstream
4559                         // channel, or we must have an ability to receive the same event and try
4560                         // again on restart.
4561                         log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
4562                                 payment_preimage, update_res);
4563                 }
4564                 // Note that we do process the completion action here. This totally could be a
4565                 // duplicate claim, but we have no way of knowing without interrogating the
4566                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
4567                 // generally always allowed to be duplicative (and it's specifically noted in
4568                 // `PaymentForwarded`).
4569                 self.handle_monitor_update_completion_actions(completion_action(None));
4570                 Ok(())
4571         }
4572
4573         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
4574                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
4575         }
4576
4577         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_id: [u8; 32]) {
4578                 match source {
4579                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
4580                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage, session_priv, path, from_onchain, &self.pending_events, &self.logger);
4581                         },
4582                         HTLCSource::PreviousHopData(hop_data) => {
4583                                 let prev_outpoint = hop_data.outpoint;
4584                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
4585                                         |htlc_claim_value_msat| {
4586                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
4587                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
4588                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
4589                                                         } else { None };
4590
4591                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
4592                                                                 event: events::Event::PaymentForwarded {
4593                                                                         fee_earned_msat,
4594                                                                         claim_from_onchain_tx: from_onchain,
4595                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
4596                                                                         next_channel_id: Some(next_channel_id),
4597                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
4598                                                                 },
4599                                                                 downstream_counterparty_and_funding_outpoint: None,
4600                                                         })
4601                                                 } else { None }
4602                                         });
4603                                 if let Err((pk, err)) = res {
4604                                         let result: Result<(), _> = Err(err);
4605                                         let _ = handle_error!(self, result, pk);
4606                                 }
4607                         },
4608                 }
4609         }
4610
4611         /// Gets the node_id held by this ChannelManager
4612         pub fn get_our_node_id(&self) -> PublicKey {
4613                 self.our_network_pubkey.clone()
4614         }
4615
4616         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
4617                 for action in actions.into_iter() {
4618                         match action {
4619                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
4620                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4621                                         if let Some(ClaimingPayment { amount_msat, payment_purpose: purpose, receiver_node_id }) = payment {
4622                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
4623                                                         payment_hash, purpose, amount_msat, receiver_node_id: Some(receiver_node_id),
4624                                                 }, None));
4625                                         }
4626                                 },
4627                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
4628                                         event, downstream_counterparty_and_funding_outpoint
4629                                 } => {
4630                                         self.pending_events.lock().unwrap().push_back((event, None));
4631                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
4632                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
4633                                         }
4634                                 },
4635                         }
4636                 }
4637         }
4638
4639         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
4640         /// update completion.
4641         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
4642                 channel: &mut Channel<<SP::Target as SignerProvider>::Signer>, raa: Option<msgs::RevokeAndACK>,
4643                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
4644                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
4645                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
4646         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
4647                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
4648                         log_bytes!(channel.channel_id()),
4649                         if raa.is_some() { "an" } else { "no" },
4650                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
4651                         if funding_broadcastable.is_some() { "" } else { "not " },
4652                         if channel_ready.is_some() { "sending" } else { "without" },
4653                         if announcement_sigs.is_some() { "sending" } else { "without" });
4654
4655                 let mut htlc_forwards = None;
4656
4657                 let counterparty_node_id = channel.get_counterparty_node_id();
4658                 if !pending_forwards.is_empty() {
4659                         htlc_forwards = Some((channel.get_short_channel_id().unwrap_or(channel.outbound_scid_alias()),
4660                                 channel.get_funding_txo().unwrap(), channel.get_user_id(), pending_forwards));
4661                 }
4662
4663                 if let Some(msg) = channel_ready {
4664                         send_channel_ready!(self, pending_msg_events, channel, msg);
4665                 }
4666                 if let Some(msg) = announcement_sigs {
4667                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4668                                 node_id: counterparty_node_id,
4669                                 msg,
4670                         });
4671                 }
4672
4673                 macro_rules! handle_cs { () => {
4674                         if let Some(update) = commitment_update {
4675                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4676                                         node_id: counterparty_node_id,
4677                                         updates: update,
4678                                 });
4679                         }
4680                 } }
4681                 macro_rules! handle_raa { () => {
4682                         if let Some(revoke_and_ack) = raa {
4683                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
4684                                         node_id: counterparty_node_id,
4685                                         msg: revoke_and_ack,
4686                                 });
4687                         }
4688                 } }
4689                 match order {
4690                         RAACommitmentOrder::CommitmentFirst => {
4691                                 handle_cs!();
4692                                 handle_raa!();
4693                         },
4694                         RAACommitmentOrder::RevokeAndACKFirst => {
4695                                 handle_raa!();
4696                                 handle_cs!();
4697                         },
4698                 }
4699
4700                 if let Some(tx) = funding_broadcastable {
4701                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
4702                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
4703                 }
4704
4705                 {
4706                         let mut pending_events = self.pending_events.lock().unwrap();
4707                         emit_channel_pending_event!(pending_events, channel);
4708                         emit_channel_ready_event!(pending_events, channel);
4709                 }
4710
4711                 htlc_forwards
4712         }
4713
4714         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
4715                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
4716
4717                 let counterparty_node_id = match counterparty_node_id {
4718                         Some(cp_id) => cp_id.clone(),
4719                         None => {
4720                                 // TODO: Once we can rely on the counterparty_node_id from the
4721                                 // monitor event, this and the id_to_peer map should be removed.
4722                                 let id_to_peer = self.id_to_peer.lock().unwrap();
4723                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
4724                                         Some(cp_id) => cp_id.clone(),
4725                                         None => return,
4726                                 }
4727                         }
4728                 };
4729                 let per_peer_state = self.per_peer_state.read().unwrap();
4730                 let mut peer_state_lock;
4731                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4732                 if peer_state_mutex_opt.is_none() { return }
4733                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4734                 let peer_state = &mut *peer_state_lock;
4735                 let mut channel = {
4736                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()){
4737                                 hash_map::Entry::Occupied(chan) => chan,
4738                                 hash_map::Entry::Vacant(_) => return,
4739                         }
4740                 };
4741                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}",
4742                         highest_applied_update_id, channel.get().get_latest_monitor_update_id());
4743                 if !channel.get().is_awaiting_monitor_update() || channel.get().get_latest_monitor_update_id() != highest_applied_update_id {
4744                         return;
4745                 }
4746                 handle_monitor_update_completion!(self, highest_applied_update_id, peer_state_lock, peer_state, per_peer_state, channel.get_mut());
4747         }
4748
4749         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
4750         ///
4751         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
4752         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
4753         /// the channel.
4754         ///
4755         /// The `user_channel_id` parameter will be provided back in
4756         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4757         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4758         ///
4759         /// Note that this method will return an error and reject the channel, if it requires support
4760         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
4761         /// used to accept such channels.
4762         ///
4763         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4764         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4765         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
4766                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
4767         }
4768
4769         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
4770         /// it as confirmed immediately.
4771         ///
4772         /// The `user_channel_id` parameter will be provided back in
4773         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4774         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4775         ///
4776         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
4777         /// and (if the counterparty agrees), enables forwarding of payments immediately.
4778         ///
4779         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
4780         /// transaction and blindly assumes that it will eventually confirm.
4781         ///
4782         /// If it does not confirm before we decide to close the channel, or if the funding transaction
4783         /// does not pay to the correct script the correct amount, *you will lose funds*.
4784         ///
4785         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4786         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4787         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
4788                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
4789         }
4790
4791         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
4792                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4793
4794                 let peers_without_funded_channels = self.peers_without_funded_channels(|peer| !peer.channel_by_id.is_empty());
4795                 let per_peer_state = self.per_peer_state.read().unwrap();
4796                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4797                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4798                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4799                 let peer_state = &mut *peer_state_lock;
4800                 let is_only_peer_channel = peer_state.channel_by_id.len() == 1;
4801                 match peer_state.channel_by_id.entry(temporary_channel_id.clone()) {
4802                         hash_map::Entry::Occupied(mut channel) => {
4803                                 if !channel.get().inbound_is_awaiting_accept() {
4804                                         return Err(APIError::APIMisuseError { err: "The channel isn't currently awaiting to be accepted.".to_owned() });
4805                                 }
4806                                 if accept_0conf {
4807                                         channel.get_mut().set_0conf();
4808                                 } else if channel.get().get_channel_type().requires_zero_conf() {
4809                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
4810                                                 node_id: channel.get().get_counterparty_node_id(),
4811                                                 action: msgs::ErrorAction::SendErrorMessage{
4812                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
4813                                                 }
4814                                         };
4815                                         peer_state.pending_msg_events.push(send_msg_err_event);
4816                                         let _ = remove_channel!(self, channel);
4817                                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
4818                                 } else {
4819                                         // If this peer already has some channels, a new channel won't increase our number of peers
4820                                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
4821                                         // channels per-peer we can accept channels from a peer with existing ones.
4822                                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
4823                                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
4824                                                         node_id: channel.get().get_counterparty_node_id(),
4825                                                         action: msgs::ErrorAction::SendErrorMessage{
4826                                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
4827                                                         }
4828                                                 };
4829                                                 peer_state.pending_msg_events.push(send_msg_err_event);
4830                                                 let _ = remove_channel!(self, channel);
4831                                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
4832                                         }
4833                                 }
4834
4835                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4836                                         node_id: channel.get().get_counterparty_node_id(),
4837                                         msg: channel.get_mut().accept_inbound_channel(user_channel_id),
4838                                 });
4839                         }
4840                         hash_map::Entry::Vacant(_) => {
4841                                 return Err(APIError::ChannelUnavailable { err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*temporary_channel_id), counterparty_node_id) });
4842                         }
4843                 }
4844                 Ok(())
4845         }
4846
4847         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
4848         /// or 0-conf channels.
4849         ///
4850         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
4851         /// non-0-conf channels we have with the peer.
4852         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
4853         where Filter: Fn(&PeerState<<SP::Target as SignerProvider>::Signer>) -> bool {
4854                 let mut peers_without_funded_channels = 0;
4855                 let best_block_height = self.best_block.read().unwrap().height();
4856                 {
4857                         let peer_state_lock = self.per_peer_state.read().unwrap();
4858                         for (_, peer_mtx) in peer_state_lock.iter() {
4859                                 let peer = peer_mtx.lock().unwrap();
4860                                 if !maybe_count_peer(&*peer) { continue; }
4861                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
4862                                 if num_unfunded_channels == peer.channel_by_id.len() {
4863                                         peers_without_funded_channels += 1;
4864                                 }
4865                         }
4866                 }
4867                 return peers_without_funded_channels;
4868         }
4869
4870         fn unfunded_channel_count(
4871                 peer: &PeerState<<SP::Target as SignerProvider>::Signer>, best_block_height: u32
4872         ) -> usize {
4873                 let mut num_unfunded_channels = 0;
4874                 for (_, chan) in peer.channel_by_id.iter() {
4875                         if !chan.is_outbound() && chan.minimum_depth().unwrap_or(1) != 0 &&
4876                                 chan.get_funding_tx_confirmations(best_block_height) == 0
4877                         {
4878                                 num_unfunded_channels += 1;
4879                         }
4880                 }
4881                 num_unfunded_channels
4882         }
4883
4884         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
4885                 if msg.chain_hash != self.genesis_hash {
4886                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
4887                 }
4888
4889                 if !self.default_configuration.accept_inbound_channels {
4890                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4891                 }
4892
4893                 let mut random_bytes = [0u8; 16];
4894                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
4895                 let user_channel_id = u128::from_be_bytes(random_bytes);
4896                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
4897
4898                 // Get the number of peers with channels, but without funded ones. We don't care too much
4899                 // about peers that never open a channel, so we filter by peers that have at least one
4900                 // channel, and then limit the number of those with unfunded channels.
4901                 let channeled_peers_without_funding = self.peers_without_funded_channels(|node| !node.channel_by_id.is_empty());
4902
4903                 let per_peer_state = self.per_peer_state.read().unwrap();
4904                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4905                     .ok_or_else(|| {
4906                                 debug_assert!(false);
4907                                 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())
4908                         })?;
4909                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4910                 let peer_state = &mut *peer_state_lock;
4911
4912                 // If this peer already has some channels, a new channel won't increase our number of peers
4913                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
4914                 // channels per-peer we can accept channels from a peer with existing ones.
4915                 if peer_state.channel_by_id.is_empty() &&
4916                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
4917                         !self.default_configuration.manually_accept_inbound_channels
4918                 {
4919                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
4920                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
4921                                 msg.temporary_channel_id.clone()));
4922                 }
4923
4924                 let best_block_height = self.best_block.read().unwrap().height();
4925                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
4926                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
4927                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
4928                                 msg.temporary_channel_id.clone()));
4929                 }
4930
4931                 let mut channel = match Channel::new_from_req(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
4932                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
4933                         &self.default_configuration, best_block_height, &self.logger, outbound_scid_alias)
4934                 {
4935                         Err(e) => {
4936                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4937                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
4938                         },
4939                         Ok(res) => res
4940                 };
4941                 match peer_state.channel_by_id.entry(channel.channel_id()) {
4942                         hash_map::Entry::Occupied(_) => {
4943                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4944                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()))
4945                         },
4946                         hash_map::Entry::Vacant(entry) => {
4947                                 if !self.default_configuration.manually_accept_inbound_channels {
4948                                         if channel.get_channel_type().requires_zero_conf() {
4949                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4950                                         }
4951                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4952                                                 node_id: counterparty_node_id.clone(),
4953                                                 msg: channel.accept_inbound_channel(user_channel_id),
4954                                         });
4955                                 } else {
4956                                         let mut pending_events = self.pending_events.lock().unwrap();
4957                                         pending_events.push_back((events::Event::OpenChannelRequest {
4958                                                 temporary_channel_id: msg.temporary_channel_id.clone(),
4959                                                 counterparty_node_id: counterparty_node_id.clone(),
4960                                                 funding_satoshis: msg.funding_satoshis,
4961                                                 push_msat: msg.push_msat,
4962                                                 channel_type: channel.get_channel_type().clone(),
4963                                         }, None));
4964                                 }
4965
4966                                 entry.insert(channel);
4967                         }
4968                 }
4969                 Ok(())
4970         }
4971
4972         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
4973                 let (value, output_script, user_id) = {
4974                         let per_peer_state = self.per_peer_state.read().unwrap();
4975                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4976                                 .ok_or_else(|| {
4977                                         debug_assert!(false);
4978                                         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)
4979                                 })?;
4980                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4981                         let peer_state = &mut *peer_state_lock;
4982                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
4983                                 hash_map::Entry::Occupied(mut chan) => {
4984                                         try_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), chan);
4985                                         (chan.get().get_value_satoshis(), chan.get().get_funding_redeemscript().to_v0_p2wsh(), chan.get().get_user_id())
4986                                 },
4987                                 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))
4988                         }
4989                 };
4990                 let mut pending_events = self.pending_events.lock().unwrap();
4991                 pending_events.push_back((events::Event::FundingGenerationReady {
4992                         temporary_channel_id: msg.temporary_channel_id,
4993                         counterparty_node_id: *counterparty_node_id,
4994                         channel_value_satoshis: value,
4995                         output_script,
4996                         user_channel_id: user_id,
4997                 }, None));
4998                 Ok(())
4999         }
5000
5001         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5002                 let best_block = *self.best_block.read().unwrap();
5003
5004                 let per_peer_state = self.per_peer_state.read().unwrap();
5005                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5006                         .ok_or_else(|| {
5007                                 debug_assert!(false);
5008                                 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)
5009                         })?;
5010
5011                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5012                 let peer_state = &mut *peer_state_lock;
5013                 let ((funding_msg, monitor), chan) =
5014                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5015                                 hash_map::Entry::Occupied(mut chan) => {
5016                                         (try_chan_entry!(self, chan.get_mut().funding_created(msg, best_block, &self.signer_provider, &self.logger), chan), chan.remove())
5017                                 },
5018                                 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))
5019                         };
5020
5021                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5022                         hash_map::Entry::Occupied(_) => {
5023                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5024                         },
5025                         hash_map::Entry::Vacant(e) => {
5026                                 match self.id_to_peer.lock().unwrap().entry(chan.channel_id()) {
5027                                         hash_map::Entry::Occupied(_) => {
5028                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5029                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5030                                                         funding_msg.channel_id))
5031                                         },
5032                                         hash_map::Entry::Vacant(i_e) => {
5033                                                 i_e.insert(chan.get_counterparty_node_id());
5034                                         }
5035                                 }
5036
5037                                 // There's no problem signing a counterparty's funding transaction if our monitor
5038                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5039                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5040                                 // until we have persisted our monitor.
5041                                 let new_channel_id = funding_msg.channel_id;
5042                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5043                                         node_id: counterparty_node_id.clone(),
5044                                         msg: funding_msg,
5045                                 });
5046
5047                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5048
5049                                 let chan = e.insert(chan);
5050                                 let mut res = handle_new_monitor_update!(self, monitor_res, 0, peer_state_lock, peer_state,
5051                                         per_peer_state, chan, MANUALLY_REMOVING, { peer_state.channel_by_id.remove(&new_channel_id) });
5052
5053                                 // Note that we reply with the new channel_id in error messages if we gave up on the
5054                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5055                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5056                                 // any messages referencing a previously-closed channel anyway.
5057                                 // We do not propagate the monitor update to the user as it would be for a monitor
5058                                 // that we didn't manage to store (and that we don't care about - we don't respond
5059                                 // with the funding_signed so the channel can never go on chain).
5060                                 if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5061                                         res.0 = None;
5062                                 }
5063                                 res
5064                         }
5065                 }
5066         }
5067
5068         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5069                 let best_block = *self.best_block.read().unwrap();
5070                 let per_peer_state = self.per_peer_state.read().unwrap();
5071                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5072                         .ok_or_else(|| {
5073                                 debug_assert!(false);
5074                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5075                         })?;
5076
5077                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5078                 let peer_state = &mut *peer_state_lock;
5079                 match peer_state.channel_by_id.entry(msg.channel_id) {
5080                         hash_map::Entry::Occupied(mut chan) => {
5081                                 let monitor = try_chan_entry!(self,
5082                                         chan.get_mut().funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan);
5083                                 let update_res = self.chain_monitor.watch_channel(chan.get().get_funding_txo().unwrap(), monitor);
5084                                 let mut res = handle_new_monitor_update!(self, update_res, 0, peer_state_lock, peer_state, per_peer_state, chan);
5085                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5086                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5087                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5088                                         // monitor update contained within `shutdown_finish` was applied.
5089                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5090                                                 shutdown_finish.0.take();
5091                                         }
5092                                 }
5093                                 res
5094                         },
5095                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5096                 }
5097         }
5098
5099         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5100                 let per_peer_state = self.per_peer_state.read().unwrap();
5101                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5102                         .ok_or_else(|| {
5103                                 debug_assert!(false);
5104                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5105                         })?;
5106                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5107                 let peer_state = &mut *peer_state_lock;
5108                 match peer_state.channel_by_id.entry(msg.channel_id) {
5109                         hash_map::Entry::Occupied(mut chan) => {
5110                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, &self.node_signer,
5111                                         self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan);
5112                                 if let Some(announcement_sigs) = announcement_sigs_opt {
5113                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().channel_id()));
5114                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5115                                                 node_id: counterparty_node_id.clone(),
5116                                                 msg: announcement_sigs,
5117                                         });
5118                                 } else if chan.get().is_usable() {
5119                                         // If we're sending an announcement_signatures, we'll send the (public)
5120                                         // channel_update after sending a channel_announcement when we receive our
5121                                         // counterparty's announcement_signatures. Thus, we only bother to send a
5122                                         // channel_update here if the channel is not public, i.e. we're not sending an
5123                                         // announcement_signatures.
5124                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().channel_id()));
5125                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5126                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5127                                                         node_id: counterparty_node_id.clone(),
5128                                                         msg,
5129                                                 });
5130                                         }
5131                                 }
5132
5133                                 {
5134                                         let mut pending_events = self.pending_events.lock().unwrap();
5135                                         emit_channel_ready_event!(pending_events, chan.get_mut());
5136                                 }
5137
5138                                 Ok(())
5139                         },
5140                         hash_map::Entry::Vacant(_) => Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.channel_id))
5141                 }
5142         }
5143
5144         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5145                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5146                 let result: Result<(), _> = loop {
5147                         let per_peer_state = self.per_peer_state.read().unwrap();
5148                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5149                                 .ok_or_else(|| {
5150                                         debug_assert!(false);
5151                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5152                                 })?;
5153                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5154                         let peer_state = &mut *peer_state_lock;
5155                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5156                                 hash_map::Entry::Occupied(mut chan_entry) => {
5157
5158                                         if !chan_entry.get().received_shutdown() {
5159                                                 log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5160                                                         log_bytes!(msg.channel_id),
5161                                                         if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
5162                                         }
5163
5164                                         let funding_txo_opt = chan_entry.get().get_funding_txo();
5165                                         let (shutdown, monitor_update_opt, htlcs) = try_chan_entry!(self,
5166                                                 chan_entry.get_mut().shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_entry);
5167                                         dropped_htlcs = htlcs;
5168
5169                                         if let Some(msg) = shutdown {
5170                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
5171                                                 // here as we don't need the monitor update to complete until we send a
5172                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
5173                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5174                                                         node_id: *counterparty_node_id,
5175                                                         msg,
5176                                                 });
5177                                         }
5178
5179                                         // Update the monitor with the shutdown script if necessary.
5180                                         if let Some(monitor_update) = monitor_update_opt {
5181                                                 let update_id = monitor_update.update_id;
5182                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
5183                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
5184                                         }
5185                                         break Ok(());
5186                                 },
5187                                 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))
5188                         }
5189                 };
5190                 for htlc_source in dropped_htlcs.drain(..) {
5191                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5192                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5193                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5194                 }
5195
5196                 result
5197         }
5198
5199         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5200                 let per_peer_state = self.per_peer_state.read().unwrap();
5201                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5202                         .ok_or_else(|| {
5203                                 debug_assert!(false);
5204                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5205                         })?;
5206                 let (tx, chan_option) = {
5207                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5208                         let peer_state = &mut *peer_state_lock;
5209                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5210                                 hash_map::Entry::Occupied(mut chan_entry) => {
5211                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), chan_entry);
5212                                         if let Some(msg) = closing_signed {
5213                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5214                                                         node_id: counterparty_node_id.clone(),
5215                                                         msg,
5216                                                 });
5217                                         }
5218                                         if tx.is_some() {
5219                                                 // We're done with this channel, we've got a signed closing transaction and
5220                                                 // will send the closing_signed back to the remote peer upon return. This
5221                                                 // also implies there are no pending HTLCs left on the channel, so we can
5222                                                 // fully delete it from tracking (the channel monitor is still around to
5223                                                 // watch for old state broadcasts)!
5224                                                 (tx, Some(remove_channel!(self, chan_entry)))
5225                                         } else { (tx, None) }
5226                                 },
5227                                 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))
5228                         }
5229                 };
5230                 if let Some(broadcast_tx) = tx {
5231                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5232                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
5233                 }
5234                 if let Some(chan) = chan_option {
5235                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5236                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5237                                 let peer_state = &mut *peer_state_lock;
5238                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5239                                         msg: update
5240                                 });
5241                         }
5242                         self.issue_channel_close_events(&chan, ClosureReason::CooperativeClosure);
5243                 }
5244                 Ok(())
5245         }
5246
5247         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5248                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5249                 //determine the state of the payment based on our response/if we forward anything/the time
5250                 //we take to respond. We should take care to avoid allowing such an attack.
5251                 //
5252                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5253                 //us repeatedly garbled in different ways, and compare our error messages, which are
5254                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5255                 //but we should prevent it anyway.
5256
5257                 let pending_forward_info = self.decode_update_add_htlc_onion(msg);
5258                 let per_peer_state = self.per_peer_state.read().unwrap();
5259                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5260                         .ok_or_else(|| {
5261                                 debug_assert!(false);
5262                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5263                         })?;
5264                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5265                 let peer_state = &mut *peer_state_lock;
5266                 match peer_state.channel_by_id.entry(msg.channel_id) {
5267                         hash_map::Entry::Occupied(mut chan) => {
5268
5269                                 let create_pending_htlc_status = |chan: &Channel<<SP::Target as SignerProvider>::Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
5270                                         // If the update_add is completely bogus, the call will Err and we will close,
5271                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
5272                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
5273                                         match pending_forward_info {
5274                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
5275                                                         let reason = if (error_code & 0x1000) != 0 {
5276                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
5277                                                                 HTLCFailReason::reason(real_code, error_data)
5278                                                         } else {
5279                                                                 HTLCFailReason::from_failure_code(error_code)
5280                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
5281                                                         let msg = msgs::UpdateFailHTLC {
5282                                                                 channel_id: msg.channel_id,
5283                                                                 htlc_id: msg.htlc_id,
5284                                                                 reason
5285                                                         };
5286                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
5287                                                 },
5288                                                 _ => pending_forward_info
5289                                         }
5290                                 };
5291                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), chan);
5292                         },
5293                         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))
5294                 }
5295                 Ok(())
5296         }
5297
5298         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
5299                 let (htlc_source, forwarded_htlc_value) = {
5300                         let per_peer_state = self.per_peer_state.read().unwrap();
5301                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5302                                 .ok_or_else(|| {
5303                                         debug_assert!(false);
5304                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5305                                 })?;
5306                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5307                         let peer_state = &mut *peer_state_lock;
5308                         match peer_state.channel_by_id.entry(msg.channel_id) {
5309                                 hash_map::Entry::Occupied(mut chan) => {
5310                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), chan)
5311                                 },
5312                                 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))
5313                         }
5314                 };
5315                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, msg.channel_id);
5316                 Ok(())
5317         }
5318
5319         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
5320                 let per_peer_state = self.per_peer_state.read().unwrap();
5321                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5322                         .ok_or_else(|| {
5323                                 debug_assert!(false);
5324                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5325                         })?;
5326                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5327                 let peer_state = &mut *peer_state_lock;
5328                 match peer_state.channel_by_id.entry(msg.channel_id) {
5329                         hash_map::Entry::Occupied(mut chan) => {
5330                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan);
5331                         },
5332                         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))
5333                 }
5334                 Ok(())
5335         }
5336
5337         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
5338                 let per_peer_state = self.per_peer_state.read().unwrap();
5339                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5340                         .ok_or_else(|| {
5341                                 debug_assert!(false);
5342                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5343                         })?;
5344                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5345                 let peer_state = &mut *peer_state_lock;
5346                 match peer_state.channel_by_id.entry(msg.channel_id) {
5347                         hash_map::Entry::Occupied(mut chan) => {
5348                                 if (msg.failure_code & 0x8000) == 0 {
5349                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
5350                                         try_chan_entry!(self, Err(chan_err), chan);
5351                                 }
5352                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan);
5353                                 Ok(())
5354                         },
5355                         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))
5356                 }
5357         }
5358
5359         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
5360                 let per_peer_state = self.per_peer_state.read().unwrap();
5361                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5362                         .ok_or_else(|| {
5363                                 debug_assert!(false);
5364                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5365                         })?;
5366                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5367                 let peer_state = &mut *peer_state_lock;
5368                 match peer_state.channel_by_id.entry(msg.channel_id) {
5369                         hash_map::Entry::Occupied(mut chan) => {
5370                                 let funding_txo = chan.get().get_funding_txo();
5371                                 let monitor_update_opt = try_chan_entry!(self, chan.get_mut().commitment_signed(&msg, &self.logger), chan);
5372                                 if let Some(monitor_update) = monitor_update_opt {
5373                                         let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5374                                         let update_id = monitor_update.update_id;
5375                                         handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
5376                                                 peer_state, per_peer_state, chan)
5377                                 } else { Ok(()) }
5378                         },
5379                         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))
5380                 }
5381         }
5382
5383         #[inline]
5384         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
5385                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
5386                         let mut push_forward_event = false;
5387                         let mut new_intercept_events = VecDeque::new();
5388                         let mut failed_intercept_forwards = Vec::new();
5389                         if !pending_forwards.is_empty() {
5390                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
5391                                         let scid = match forward_info.routing {
5392                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
5393                                                 PendingHTLCRouting::Receive { .. } => 0,
5394                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
5395                                         };
5396                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
5397                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
5398
5399                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5400                                         let forward_htlcs_empty = forward_htlcs.is_empty();
5401                                         match forward_htlcs.entry(scid) {
5402                                                 hash_map::Entry::Occupied(mut entry) => {
5403                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5404                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
5405                                                 },
5406                                                 hash_map::Entry::Vacant(entry) => {
5407                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
5408                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
5409                                                         {
5410                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
5411                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
5412                                                                 match pending_intercepts.entry(intercept_id) {
5413                                                                         hash_map::Entry::Vacant(entry) => {
5414                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
5415                                                                                         requested_next_hop_scid: scid,
5416                                                                                         payment_hash: forward_info.payment_hash,
5417                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
5418                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
5419                                                                                         intercept_id
5420                                                                                 }, None));
5421                                                                                 entry.insert(PendingAddHTLCInfo {
5422                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
5423                                                                         },
5424                                                                         hash_map::Entry::Occupied(_) => {
5425                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
5426                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
5427                                                                                         short_channel_id: prev_short_channel_id,
5428                                                                                         outpoint: prev_funding_outpoint,
5429                                                                                         htlc_id: prev_htlc_id,
5430                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
5431                                                                                         phantom_shared_secret: None,
5432                                                                                 });
5433
5434                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
5435                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
5436                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
5437                                                                                 ));
5438                                                                         }
5439                                                                 }
5440                                                         } else {
5441                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
5442                                                                 // payments are being processed.
5443                                                                 if forward_htlcs_empty {
5444                                                                         push_forward_event = true;
5445                                                                 }
5446                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5447                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
5448                                                         }
5449                                                 }
5450                                         }
5451                                 }
5452                         }
5453
5454                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
5455                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
5456                         }
5457
5458                         if !new_intercept_events.is_empty() {
5459                                 let mut events = self.pending_events.lock().unwrap();
5460                                 events.append(&mut new_intercept_events);
5461                         }
5462                         if push_forward_event { self.push_pending_forwards_ev() }
5463                 }
5464         }
5465
5466         // We only want to push a PendingHTLCsForwardable event if no others are queued.
5467         fn push_pending_forwards_ev(&self) {
5468                 let mut pending_events = self.pending_events.lock().unwrap();
5469                 let forward_ev_exists = pending_events.iter()
5470                         .find(|(ev, _)| if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false })
5471                         .is_some();
5472                 if !forward_ev_exists {
5473                         pending_events.push_back((events::Event::PendingHTLCsForwardable {
5474                                 time_forwardable:
5475                                         Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
5476                         }, None));
5477                 }
5478         }
5479
5480         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
5481         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other event
5482         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
5483         /// the [`ChannelMonitorUpdate`] in question.
5484         fn raa_monitor_updates_held(&self,
5485                 actions_blocking_raa_monitor_updates: &BTreeMap<[u8; 32], Vec<RAAMonitorUpdateBlockingAction>>,
5486                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
5487         ) -> bool {
5488                 actions_blocking_raa_monitor_updates
5489                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
5490                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
5491                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5492                                 channel_funding_outpoint,
5493                                 counterparty_node_id,
5494                         })
5495                 })
5496         }
5497
5498         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
5499                 let (htlcs_to_fail, res) = {
5500                         let per_peer_state = self.per_peer_state.read().unwrap();
5501                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
5502                                 .ok_or_else(|| {
5503                                         debug_assert!(false);
5504                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5505                                 }).map(|mtx| mtx.lock().unwrap())?;
5506                         let peer_state = &mut *peer_state_lock;
5507                         match peer_state.channel_by_id.entry(msg.channel_id) {
5508                                 hash_map::Entry::Occupied(mut chan) => {
5509                                         let funding_txo = chan.get().get_funding_txo();
5510                                         let (htlcs_to_fail, monitor_update_opt) = try_chan_entry!(self, chan.get_mut().revoke_and_ack(&msg, &self.logger), chan);
5511                                         let res = if let Some(monitor_update) = monitor_update_opt {
5512                                                 let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5513                                                 let update_id = monitor_update.update_id;
5514                                                 handle_new_monitor_update!(self, update_res, update_id,
5515                                                         peer_state_lock, peer_state, per_peer_state, chan)
5516                                         } else { Ok(()) };
5517                                         (htlcs_to_fail, res)
5518                                 },
5519                                 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))
5520                         }
5521                 };
5522                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
5523                 res
5524         }
5525
5526         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
5527                 let per_peer_state = self.per_peer_state.read().unwrap();
5528                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5529                         .ok_or_else(|| {
5530                                 debug_assert!(false);
5531                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5532                         })?;
5533                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5534                 let peer_state = &mut *peer_state_lock;
5535                 match peer_state.channel_by_id.entry(msg.channel_id) {
5536                         hash_map::Entry::Occupied(mut chan) => {
5537                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg, &self.logger), chan);
5538                         },
5539                         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))
5540                 }
5541                 Ok(())
5542         }
5543
5544         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
5545                 let per_peer_state = self.per_peer_state.read().unwrap();
5546                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5547                         .ok_or_else(|| {
5548                                 debug_assert!(false);
5549                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5550                         })?;
5551                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5552                 let peer_state = &mut *peer_state_lock;
5553                 match peer_state.channel_by_id.entry(msg.channel_id) {
5554                         hash_map::Entry::Occupied(mut chan) => {
5555                                 if !chan.get().is_usable() {
5556                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
5557                                 }
5558
5559                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5560                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
5561                                                 &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
5562                                                 msg, &self.default_configuration
5563                                         ), chan),
5564                                         // Note that announcement_signatures fails if the channel cannot be announced,
5565                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5566                                         update_msg: Some(self.get_channel_update_for_broadcast(chan.get()).unwrap()),
5567                                 });
5568                         },
5569                         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))
5570                 }
5571                 Ok(())
5572         }
5573
5574         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
5575         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
5576                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
5577                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
5578                         None => {
5579                                 // It's not a local channel
5580                                 return Ok(NotifyOption::SkipPersist)
5581                         }
5582                 };
5583                 let per_peer_state = self.per_peer_state.read().unwrap();
5584                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
5585                 if peer_state_mutex_opt.is_none() {
5586                         return Ok(NotifyOption::SkipPersist)
5587                 }
5588                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5589                 let peer_state = &mut *peer_state_lock;
5590                 match peer_state.channel_by_id.entry(chan_id) {
5591                         hash_map::Entry::Occupied(mut chan) => {
5592                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5593                                         if chan.get().should_announce() {
5594                                                 // If the announcement is about a channel of ours which is public, some
5595                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
5596                                                 // a scary-looking error message and return Ok instead.
5597                                                 return Ok(NotifyOption::SkipPersist);
5598                                         }
5599                                         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));
5600                                 }
5601                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().get_counterparty_node_id().serialize()[..];
5602                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
5603                                 if were_node_one == msg_from_node_one {
5604                                         return Ok(NotifyOption::SkipPersist);
5605                                 } else {
5606                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
5607                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), chan);
5608                                 }
5609                         },
5610                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
5611                 }
5612                 Ok(NotifyOption::DoPersist)
5613         }
5614
5615         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
5616                 let htlc_forwards;
5617                 let need_lnd_workaround = {
5618                         let per_peer_state = self.per_peer_state.read().unwrap();
5619
5620                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5621                                 .ok_or_else(|| {
5622                                         debug_assert!(false);
5623                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5624                                 })?;
5625                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5626                         let peer_state = &mut *peer_state_lock;
5627                         match peer_state.channel_by_id.entry(msg.channel_id) {
5628                                 hash_map::Entry::Occupied(mut chan) => {
5629                                         // Currently, we expect all holding cell update_adds to be dropped on peer
5630                                         // disconnect, so Channel's reestablish will never hand us any holding cell
5631                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
5632                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
5633                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
5634                                                 msg, &self.logger, &self.node_signer, self.genesis_hash,
5635                                                 &self.default_configuration, &*self.best_block.read().unwrap()), chan);
5636                                         let mut channel_update = None;
5637                                         if let Some(msg) = responses.shutdown_msg {
5638                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5639                                                         node_id: counterparty_node_id.clone(),
5640                                                         msg,
5641                                                 });
5642                                         } else if chan.get().is_usable() {
5643                                                 // If the channel is in a usable state (ie the channel is not being shut
5644                                                 // down), send a unicast channel_update to our counterparty to make sure
5645                                                 // they have the latest channel parameters.
5646                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5647                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
5648                                                                 node_id: chan.get().get_counterparty_node_id(),
5649                                                                 msg,
5650                                                         });
5651                                                 }
5652                                         }
5653                                         let need_lnd_workaround = chan.get_mut().workaround_lnd_bug_4006.take();
5654                                         htlc_forwards = self.handle_channel_resumption(
5655                                                 &mut peer_state.pending_msg_events, chan.get_mut(), responses.raa, responses.commitment_update, responses.order,
5656                                                 Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
5657                                         if let Some(upd) = channel_update {
5658                                                 peer_state.pending_msg_events.push(upd);
5659                                         }
5660                                         need_lnd_workaround
5661                                 },
5662                                 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))
5663                         }
5664                 };
5665
5666                 if let Some(forwards) = htlc_forwards {
5667                         self.forward_htlcs(&mut [forwards][..]);
5668                 }
5669
5670                 if let Some(channel_ready_msg) = need_lnd_workaround {
5671                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
5672                 }
5673                 Ok(())
5674         }
5675
5676         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
5677         fn process_pending_monitor_events(&self) -> bool {
5678                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5679
5680                 let mut failed_channels = Vec::new();
5681                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
5682                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
5683                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
5684                         for monitor_event in monitor_events.drain(..) {
5685                                 match monitor_event {
5686                                         MonitorEvent::HTLCEvent(htlc_update) => {
5687                                                 if let Some(preimage) = htlc_update.payment_preimage {
5688                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
5689                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint.to_channel_id());
5690                                                 } else {
5691                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
5692                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
5693                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5694                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
5695                                                 }
5696                                         },
5697                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
5698                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
5699                                                 let counterparty_node_id_opt = match counterparty_node_id {
5700                                                         Some(cp_id) => Some(cp_id),
5701                                                         None => {
5702                                                                 // TODO: Once we can rely on the counterparty_node_id from the
5703                                                                 // monitor event, this and the id_to_peer map should be removed.
5704                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5705                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
5706                                                         }
5707                                                 };
5708                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
5709                                                         let per_peer_state = self.per_peer_state.read().unwrap();
5710                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5711                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5712                                                                 let peer_state = &mut *peer_state_lock;
5713                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5714                                                                 if let hash_map::Entry::Occupied(chan_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
5715                                                                         let mut chan = remove_channel!(self, chan_entry);
5716                                                                         failed_channels.push(chan.force_shutdown(false));
5717                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5718                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5719                                                                                         msg: update
5720                                                                                 });
5721                                                                         }
5722                                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
5723                                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
5724                                                                         } else {
5725                                                                                 ClosureReason::CommitmentTxConfirmed
5726                                                                         };
5727                                                                         self.issue_channel_close_events(&chan, reason);
5728                                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5729                                                                                 node_id: chan.get_counterparty_node_id(),
5730                                                                                 action: msgs::ErrorAction::SendErrorMessage {
5731                                                                                         msg: msgs::ErrorMessage { channel_id: chan.channel_id(), data: "Channel force-closed".to_owned() }
5732                                                                                 },
5733                                                                         });
5734                                                                 }
5735                                                         }
5736                                                 }
5737                                         },
5738                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
5739                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
5740                                         },
5741                                 }
5742                         }
5743                 }
5744
5745                 for failure in failed_channels.drain(..) {
5746                         self.finish_force_close_channel(failure);
5747                 }
5748
5749                 has_pending_monitor_events
5750         }
5751
5752         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
5753         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
5754         /// update events as a separate process method here.
5755         #[cfg(fuzzing)]
5756         pub fn process_monitor_events(&self) {
5757                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5758                 self.process_pending_monitor_events();
5759         }
5760
5761         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
5762         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
5763         /// update was applied.
5764         fn check_free_holding_cells(&self) -> bool {
5765                 let mut has_monitor_update = false;
5766                 let mut failed_htlcs = Vec::new();
5767                 let mut handle_errors = Vec::new();
5768
5769                 // Walk our list of channels and find any that need to update. Note that when we do find an
5770                 // update, if it includes actions that must be taken afterwards, we have to drop the
5771                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
5772                 // manage to go through all our peers without finding a single channel to update.
5773                 'peer_loop: loop {
5774                         let per_peer_state = self.per_peer_state.read().unwrap();
5775                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5776                                 'chan_loop: loop {
5777                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5778                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
5779                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut() {
5780                                                 let counterparty_node_id = chan.get_counterparty_node_id();
5781                                                 let funding_txo = chan.get_funding_txo();
5782                                                 let (monitor_opt, holding_cell_failed_htlcs) =
5783                                                         chan.maybe_free_holding_cell_htlcs(&self.logger);
5784                                                 if !holding_cell_failed_htlcs.is_empty() {
5785                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
5786                                                 }
5787                                                 if let Some(monitor_update) = monitor_opt {
5788                                                         has_monitor_update = true;
5789
5790                                                         let update_res = self.chain_monitor.update_channel(
5791                                                                 funding_txo.expect("channel is live"), monitor_update);
5792                                                         let update_id = monitor_update.update_id;
5793                                                         let channel_id: [u8; 32] = *channel_id;
5794                                                         let res = handle_new_monitor_update!(self, update_res, update_id,
5795                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
5796                                                                 peer_state.channel_by_id.remove(&channel_id));
5797                                                         if res.is_err() {
5798                                                                 handle_errors.push((counterparty_node_id, res));
5799                                                         }
5800                                                         continue 'peer_loop;
5801                                                 }
5802                                         }
5803                                         break 'chan_loop;
5804                                 }
5805                         }
5806                         break 'peer_loop;
5807                 }
5808
5809                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
5810                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
5811                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
5812                 }
5813
5814                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5815                         let _ = handle_error!(self, err, counterparty_node_id);
5816                 }
5817
5818                 has_update
5819         }
5820
5821         /// Check whether any channels have finished removing all pending updates after a shutdown
5822         /// exchange and can now send a closing_signed.
5823         /// Returns whether any closing_signed messages were generated.
5824         fn maybe_generate_initial_closing_signed(&self) -> bool {
5825                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
5826                 let mut has_update = false;
5827                 {
5828                         let per_peer_state = self.per_peer_state.read().unwrap();
5829
5830                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5831                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5832                                 let peer_state = &mut *peer_state_lock;
5833                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5834                                 peer_state.channel_by_id.retain(|channel_id, chan| {
5835                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
5836                                                 Ok((msg_opt, tx_opt)) => {
5837                                                         if let Some(msg) = msg_opt {
5838                                                                 has_update = true;
5839                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5840                                                                         node_id: chan.get_counterparty_node_id(), msg,
5841                                                                 });
5842                                                         }
5843                                                         if let Some(tx) = tx_opt {
5844                                                                 // We're done with this channel. We got a closing_signed and sent back
5845                                                                 // a closing_signed with a closing transaction to broadcast.
5846                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5847                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5848                                                                                 msg: update
5849                                                                         });
5850                                                                 }
5851
5852                                                                 self.issue_channel_close_events(chan, ClosureReason::CooperativeClosure);
5853
5854                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
5855                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
5856                                                                 update_maps_on_chan_removal!(self, chan);
5857                                                                 false
5858                                                         } else { true }
5859                                                 },
5860                                                 Err(e) => {
5861                                                         has_update = true;
5862                                                         let (close_channel, res) = convert_chan_err!(self, e, chan, channel_id);
5863                                                         handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5864                                                         !close_channel
5865                                                 }
5866                                         }
5867                                 });
5868                         }
5869                 }
5870
5871                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5872                         let _ = handle_error!(self, err, counterparty_node_id);
5873                 }
5874
5875                 has_update
5876         }
5877
5878         /// Handle a list of channel failures during a block_connected or block_disconnected call,
5879         /// pushing the channel monitor update (if any) to the background events queue and removing the
5880         /// Channel object.
5881         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
5882                 for mut failure in failed_channels.drain(..) {
5883                         // Either a commitment transactions has been confirmed on-chain or
5884                         // Channel::block_disconnected detected that the funding transaction has been
5885                         // reorganized out of the main chain.
5886                         // We cannot broadcast our latest local state via monitor update (as
5887                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
5888                         // so we track the update internally and handle it when the user next calls
5889                         // timer_tick_occurred, guaranteeing we're running normally.
5890                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
5891                                 assert_eq!(update.updates.len(), 1);
5892                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
5893                                         assert!(should_broadcast);
5894                                 } else { unreachable!(); }
5895                                 self.pending_background_events.lock().unwrap().push(
5896                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5897                                                 counterparty_node_id, funding_txo, update
5898                                         });
5899                         }
5900                         self.finish_force_close_channel(failure);
5901                 }
5902         }
5903
5904         fn set_payment_hash_secret_map(&self, payment_hash: PaymentHash, payment_preimage: Option<PaymentPreimage>, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
5905                 assert!(invoice_expiry_delta_secs <= 60*60*24*365); // Sadly bitcoin timestamps are u32s, so panic before 2106
5906
5907                 if min_value_msat.is_some() && min_value_msat.unwrap() > MAX_VALUE_MSAT {
5908                         return Err(APIError::APIMisuseError { err: format!("min_value_msat of {} greater than total 21 million bitcoin supply", min_value_msat.unwrap()) });
5909                 }
5910
5911                 let payment_secret = PaymentSecret(self.entropy_source.get_secure_random_bytes());
5912
5913                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5914                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5915                 match payment_secrets.entry(payment_hash) {
5916                         hash_map::Entry::Vacant(e) => {
5917                                 e.insert(PendingInboundPayment {
5918                                         payment_secret, min_value_msat, payment_preimage,
5919                                         user_payment_id: 0, // For compatibility with version 0.0.103 and earlier
5920                                         // We assume that highest_seen_timestamp is pretty close to the current time -
5921                                         // it's updated when we receive a new block with the maximum time we've seen in
5922                                         // a header. It should never be more than two hours in the future.
5923                                         // Thus, we add two hours here as a buffer to ensure we absolutely
5924                                         // never fail a payment too early.
5925                                         // Note that we assume that received blocks have reasonably up-to-date
5926                                         // timestamps.
5927                                         expiry_time: self.highest_seen_timestamp.load(Ordering::Acquire) as u64 + invoice_expiry_delta_secs as u64 + 7200,
5928                                 });
5929                         },
5930                         hash_map::Entry::Occupied(_) => return Err(APIError::APIMisuseError { err: "Duplicate payment hash".to_owned() }),
5931                 }
5932                 Ok(payment_secret)
5933         }
5934
5935         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
5936         /// to pay us.
5937         ///
5938         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
5939         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
5940         ///
5941         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
5942         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
5943         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
5944         /// passed directly to [`claim_funds`].
5945         ///
5946         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
5947         ///
5948         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5949         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5950         ///
5951         /// # Note
5952         ///
5953         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5954         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5955         ///
5956         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5957         ///
5958         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
5959         /// on versions of LDK prior to 0.0.114.
5960         ///
5961         /// [`claim_funds`]: Self::claim_funds
5962         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
5963         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
5964         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
5965         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
5966         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5967         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
5968                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
5969                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
5970                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
5971                         min_final_cltv_expiry_delta)
5972         }
5973
5974         /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
5975         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5976         ///
5977         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5978         ///
5979         /// # Note
5980         /// This method is deprecated and will be removed soon.
5981         ///
5982         /// [`create_inbound_payment`]: Self::create_inbound_payment
5983         #[deprecated]
5984         pub fn create_inbound_payment_legacy(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), APIError> {
5985                 let payment_preimage = PaymentPreimage(self.entropy_source.get_secure_random_bytes());
5986                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5987                 let payment_secret = self.set_payment_hash_secret_map(payment_hash, Some(payment_preimage), min_value_msat, invoice_expiry_delta_secs)?;
5988                 Ok((payment_hash, payment_secret))
5989         }
5990
5991         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
5992         /// stored external to LDK.
5993         ///
5994         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
5995         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
5996         /// the `min_value_msat` provided here, if one is provided.
5997         ///
5998         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
5999         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6000         /// payments.
6001         ///
6002         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6003         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6004         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6005         /// sender "proof-of-payment" unless they have paid the required amount.
6006         ///
6007         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6008         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6009         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6010         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6011         /// invoices when no timeout is set.
6012         ///
6013         /// Note that we use block header time to time-out pending inbound payments (with some margin
6014         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6015         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6016         /// If you need exact expiry semantics, you should enforce them upon receipt of
6017         /// [`PaymentClaimable`].
6018         ///
6019         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6020         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6021         ///
6022         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6023         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6024         ///
6025         /// # Note
6026         ///
6027         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6028         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6029         ///
6030         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6031         ///
6032         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6033         /// on versions of LDK prior to 0.0.114.
6034         ///
6035         /// [`create_inbound_payment`]: Self::create_inbound_payment
6036         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6037         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6038                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6039                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6040                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6041                         min_final_cltv_expiry)
6042         }
6043
6044         /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
6045         /// serialized state with LDK node(s) running 0.0.103 and earlier.
6046         ///
6047         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
6048         ///
6049         /// # Note
6050         /// This method is deprecated and will be removed soon.
6051         ///
6052         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6053         #[deprecated]
6054         pub fn create_inbound_payment_for_hash_legacy(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
6055                 self.set_payment_hash_secret_map(payment_hash, None, min_value_msat, invoice_expiry_delta_secs)
6056         }
6057
6058         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6059         /// previously returned from [`create_inbound_payment`].
6060         ///
6061         /// [`create_inbound_payment`]: Self::create_inbound_payment
6062         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6063                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6064         }
6065
6066         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6067         /// are used when constructing the phantom invoice's route hints.
6068         ///
6069         /// [phantom node payments]: crate::sign::PhantomKeysManager
6070         pub fn get_phantom_scid(&self) -> u64 {
6071                 let best_block_height = self.best_block.read().unwrap().height();
6072                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6073                 loop {
6074                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6075                         // Ensure the generated scid doesn't conflict with a real channel.
6076                         match short_to_chan_info.get(&scid_candidate) {
6077                                 Some(_) => continue,
6078                                 None => return scid_candidate
6079                         }
6080                 }
6081         }
6082
6083         /// Gets route hints for use in receiving [phantom node payments].
6084         ///
6085         /// [phantom node payments]: crate::sign::PhantomKeysManager
6086         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6087                 PhantomRouteHints {
6088                         channels: self.list_usable_channels(),
6089                         phantom_scid: self.get_phantom_scid(),
6090                         real_node_pubkey: self.get_our_node_id(),
6091                 }
6092         }
6093
6094         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6095         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6096         /// [`ChannelManager::forward_intercepted_htlc`].
6097         ///
6098         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6099         /// times to get a unique scid.
6100         pub fn get_intercept_scid(&self) -> u64 {
6101                 let best_block_height = self.best_block.read().unwrap().height();
6102                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6103                 loop {
6104                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6105                         // Ensure the generated scid doesn't conflict with a real channel.
6106                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6107                         return scid_candidate
6108                 }
6109         }
6110
6111         /// Gets inflight HTLC information by processing pending outbound payments that are in
6112         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
6113         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
6114                 let mut inflight_htlcs = InFlightHtlcs::new();
6115
6116                 let per_peer_state = self.per_peer_state.read().unwrap();
6117                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6118                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6119                         let peer_state = &mut *peer_state_lock;
6120                         for chan in peer_state.channel_by_id.values() {
6121                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
6122                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
6123                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
6124                                         }
6125                                 }
6126                         }
6127                 }
6128
6129                 inflight_htlcs
6130         }
6131
6132         #[cfg(any(test, fuzzing, feature = "_test_utils"))]
6133         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
6134                 let events = core::cell::RefCell::new(Vec::new());
6135                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
6136                 self.process_pending_events(&event_handler);
6137                 events.into_inner()
6138         }
6139
6140         #[cfg(feature = "_test_utils")]
6141         pub fn push_pending_event(&self, event: events::Event) {
6142                 let mut events = self.pending_events.lock().unwrap();
6143                 events.push_back((event, None));
6144         }
6145
6146         #[cfg(test)]
6147         pub fn pop_pending_event(&self) -> Option<events::Event> {
6148                 let mut events = self.pending_events.lock().unwrap();
6149                 events.pop_front().map(|(e, _)| e)
6150         }
6151
6152         #[cfg(test)]
6153         pub fn has_pending_payments(&self) -> bool {
6154                 self.pending_outbound_payments.has_pending_payments()
6155         }
6156
6157         #[cfg(test)]
6158         pub fn clear_pending_payments(&self) {
6159                 self.pending_outbound_payments.clear_pending_payments()
6160         }
6161
6162         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
6163         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
6164         /// operation. It will double-check that nothing *else* is also blocking the same channel from
6165         /// making progress and then any blocked [`ChannelMonitorUpdate`]s fly.
6166         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
6167                 let mut errors = Vec::new();
6168                 loop {
6169                         let per_peer_state = self.per_peer_state.read().unwrap();
6170                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6171                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6172                                 let peer_state = &mut *peer_state_lck;
6173
6174                                 if let Some(blocker) = completed_blocker.take() {
6175                                         // Only do this on the first iteration of the loop.
6176                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
6177                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
6178                                         {
6179                                                 blockers.retain(|iter| iter != &blocker);
6180                                         }
6181                                 }
6182
6183                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6184                                         channel_funding_outpoint, counterparty_node_id) {
6185                                         // Check that, while holding the peer lock, we don't have anything else
6186                                         // blocking monitor updates for this channel. If we do, release the monitor
6187                                         // update(s) when those blockers complete.
6188                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
6189                                                 log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6190                                         break;
6191                                 }
6192
6193                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
6194                                         debug_assert_eq!(chan.get().get_funding_txo().unwrap(), channel_funding_outpoint);
6195                                         if let Some((monitor_update, further_update_exists)) = chan.get_mut().unblock_next_blocked_monitor_update() {
6196                                                 log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
6197                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6198                                                 let update_res = self.chain_monitor.update_channel(channel_funding_outpoint, monitor_update);
6199                                                 let update_id = monitor_update.update_id;
6200                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id,
6201                                                         peer_state_lck, peer_state, per_peer_state, chan)
6202                                                 {
6203                                                         errors.push((e, counterparty_node_id));
6204                                                 }
6205                                                 if further_update_exists {
6206                                                         // If there are more `ChannelMonitorUpdate`s to process, restart at the
6207                                                         // top of the loop.
6208                                                         continue;
6209                                                 }
6210                                         } else {
6211                                                 log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6212                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6213                                         }
6214                                 }
6215                         } else {
6216                                 log_debug!(self.logger,
6217                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6218                                         log_pubkey!(counterparty_node_id));
6219                         }
6220                         break;
6221                 }
6222                 for (err, counterparty_node_id) in errors {
6223                         let res = Err::<(), _>(err);
6224                         let _ = handle_error!(self, res, counterparty_node_id);
6225                 }
6226         }
6227
6228         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6229                 for action in actions {
6230                         match action {
6231                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6232                                         channel_funding_outpoint, counterparty_node_id
6233                                 } => {
6234                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
6235                                 }
6236                         }
6237                 }
6238         }
6239
6240         /// Processes any events asynchronously in the order they were generated since the last call
6241         /// using the given event handler.
6242         ///
6243         /// See the trait-level documentation of [`EventsProvider`] for requirements.
6244         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
6245                 &self, handler: H
6246         ) {
6247                 let mut ev;
6248                 process_events_body!(self, ev, { handler(ev).await });
6249         }
6250 }
6251
6252 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>
6253 where
6254         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6255         T::Target: BroadcasterInterface,
6256         ES::Target: EntropySource,
6257         NS::Target: NodeSigner,
6258         SP::Target: SignerProvider,
6259         F::Target: FeeEstimator,
6260         R::Target: Router,
6261         L::Target: Logger,
6262 {
6263         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
6264         /// The returned array will contain `MessageSendEvent`s for different peers if
6265         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
6266         /// is always placed next to each other.
6267         ///
6268         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
6269         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
6270         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
6271         /// will randomly be placed first or last in the returned array.
6272         ///
6273         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
6274         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
6275         /// the `MessageSendEvent`s to the specific peer they were generated under.
6276         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
6277                 let events = RefCell::new(Vec::new());
6278                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6279                         let mut result = self.process_background_events();
6280
6281                         // TODO: This behavior should be documented. It's unintuitive that we query
6282                         // ChannelMonitors when clearing other events.
6283                         if self.process_pending_monitor_events() {
6284                                 result = NotifyOption::DoPersist;
6285                         }
6286
6287                         if self.check_free_holding_cells() {
6288                                 result = NotifyOption::DoPersist;
6289                         }
6290                         if self.maybe_generate_initial_closing_signed() {
6291                                 result = NotifyOption::DoPersist;
6292                         }
6293
6294                         let mut pending_events = Vec::new();
6295                         let per_peer_state = self.per_peer_state.read().unwrap();
6296                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6297                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6298                                 let peer_state = &mut *peer_state_lock;
6299                                 if peer_state.pending_msg_events.len() > 0 {
6300                                         pending_events.append(&mut peer_state.pending_msg_events);
6301                                 }
6302                         }
6303
6304                         if !pending_events.is_empty() {
6305                                 events.replace(pending_events);
6306                         }
6307
6308                         result
6309                 });
6310                 events.into_inner()
6311         }
6312 }
6313
6314 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>
6315 where
6316         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6317         T::Target: BroadcasterInterface,
6318         ES::Target: EntropySource,
6319         NS::Target: NodeSigner,
6320         SP::Target: SignerProvider,
6321         F::Target: FeeEstimator,
6322         R::Target: Router,
6323         L::Target: Logger,
6324 {
6325         /// Processes events that must be periodically handled.
6326         ///
6327         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
6328         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
6329         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
6330                 let mut ev;
6331                 process_events_body!(self, ev, handler.handle_event(ev));
6332         }
6333 }
6334
6335 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>
6336 where
6337         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6338         T::Target: BroadcasterInterface,
6339         ES::Target: EntropySource,
6340         NS::Target: NodeSigner,
6341         SP::Target: SignerProvider,
6342         F::Target: FeeEstimator,
6343         R::Target: Router,
6344         L::Target: Logger,
6345 {
6346         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6347                 {
6348                         let best_block = self.best_block.read().unwrap();
6349                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
6350                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
6351                         assert_eq!(best_block.height(), height - 1,
6352                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
6353                 }
6354
6355                 self.transactions_confirmed(header, txdata, height);
6356                 self.best_block_updated(header, height);
6357         }
6358
6359         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
6360                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6361                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6362                 let new_height = height - 1;
6363                 {
6364                         let mut best_block = self.best_block.write().unwrap();
6365                         assert_eq!(best_block.block_hash(), header.block_hash(),
6366                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
6367                         assert_eq!(best_block.height(), height,
6368                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
6369                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
6370                 }
6371
6372                 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));
6373         }
6374 }
6375
6376 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>
6377 where
6378         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6379         T::Target: BroadcasterInterface,
6380         ES::Target: EntropySource,
6381         NS::Target: NodeSigner,
6382         SP::Target: SignerProvider,
6383         F::Target: FeeEstimator,
6384         R::Target: Router,
6385         L::Target: Logger,
6386 {
6387         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6388                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6389                 // during initialization prior to the chain_monitor being fully configured in some cases.
6390                 // See the docs for `ChannelManagerReadArgs` for more.
6391
6392                 let block_hash = header.block_hash();
6393                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
6394
6395                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6396                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6397                 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)
6398                         .map(|(a, b)| (a, Vec::new(), b)));
6399
6400                 let last_best_block_height = self.best_block.read().unwrap().height();
6401                 if height < last_best_block_height {
6402                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
6403                         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));
6404                 }
6405         }
6406
6407         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
6408                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6409                 // during initialization prior to the chain_monitor being fully configured in some cases.
6410                 // See the docs for `ChannelManagerReadArgs` for more.
6411
6412                 let block_hash = header.block_hash();
6413                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
6414
6415                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6416                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6417                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
6418
6419                 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));
6420
6421                 macro_rules! max_time {
6422                         ($timestamp: expr) => {
6423                                 loop {
6424                                         // Update $timestamp to be the max of its current value and the block
6425                                         // timestamp. This should keep us close to the current time without relying on
6426                                         // having an explicit local time source.
6427                                         // Just in case we end up in a race, we loop until we either successfully
6428                                         // update $timestamp or decide we don't need to.
6429                                         let old_serial = $timestamp.load(Ordering::Acquire);
6430                                         if old_serial >= header.time as usize { break; }
6431                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
6432                                                 break;
6433                                         }
6434                                 }
6435                         }
6436                 }
6437                 max_time!(self.highest_seen_timestamp);
6438                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
6439                 payment_secrets.retain(|_, inbound_payment| {
6440                         inbound_payment.expiry_time > header.time as u64
6441                 });
6442         }
6443
6444         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
6445                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
6446                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
6447                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6448                         let peer_state = &mut *peer_state_lock;
6449                         for chan in peer_state.channel_by_id.values() {
6450                                 if let (Some(funding_txo), Some(block_hash)) = (chan.get_funding_txo(), chan.get_funding_tx_confirmed_in()) {
6451                                         res.push((funding_txo.txid, Some(block_hash)));
6452                                 }
6453                         }
6454                 }
6455                 res
6456         }
6457
6458         fn transaction_unconfirmed(&self, txid: &Txid) {
6459                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
6460                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
6461                 self.do_chain_event(None, |channel| {
6462                         if let Some(funding_txo) = channel.get_funding_txo() {
6463                                 if funding_txo.txid == *txid {
6464                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
6465                                 } else { Ok((None, Vec::new(), None)) }
6466                         } else { Ok((None, Vec::new(), None)) }
6467                 });
6468         }
6469 }
6470
6471 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>
6472 where
6473         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6474         T::Target: BroadcasterInterface,
6475         ES::Target: EntropySource,
6476         NS::Target: NodeSigner,
6477         SP::Target: SignerProvider,
6478         F::Target: FeeEstimator,
6479         R::Target: Router,
6480         L::Target: Logger,
6481 {
6482         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
6483         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
6484         /// the function.
6485         fn do_chain_event<FN: Fn(&mut Channel<<SP::Target as SignerProvider>::Signer>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
6486                         (&self, height_opt: Option<u32>, f: FN) {
6487                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6488                 // during initialization prior to the chain_monitor being fully configured in some cases.
6489                 // See the docs for `ChannelManagerReadArgs` for more.
6490
6491                 let mut failed_channels = Vec::new();
6492                 let mut timed_out_htlcs = Vec::new();
6493                 {
6494                         let per_peer_state = self.per_peer_state.read().unwrap();
6495                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6496                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6497                                 let peer_state = &mut *peer_state_lock;
6498                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6499                                 peer_state.channel_by_id.retain(|_, channel| {
6500                                         let res = f(channel);
6501                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
6502                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
6503                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
6504                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
6505                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.get_counterparty_node_id()), channel_id: channel.channel_id() }));
6506                                                 }
6507                                                 if let Some(channel_ready) = channel_ready_opt {
6508                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
6509                                                         if channel.is_usable() {
6510                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.channel_id()));
6511                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
6512                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6513                                                                                 node_id: channel.get_counterparty_node_id(),
6514                                                                                 msg,
6515                                                                         });
6516                                                                 }
6517                                                         } else {
6518                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.channel_id()));
6519                                                         }
6520                                                 }
6521
6522                                                 {
6523                                                         let mut pending_events = self.pending_events.lock().unwrap();
6524                                                         emit_channel_ready_event!(pending_events, channel);
6525                                                 }
6526
6527                                                 if let Some(announcement_sigs) = announcement_sigs {
6528                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.channel_id()));
6529                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6530                                                                 node_id: channel.get_counterparty_node_id(),
6531                                                                 msg: announcement_sigs,
6532                                                         });
6533                                                         if let Some(height) = height_opt {
6534                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
6535                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6536                                                                                 msg: announcement,
6537                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6538                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6539                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
6540                                                                         });
6541                                                                 }
6542                                                         }
6543                                                 }
6544                                                 if channel.is_our_channel_ready() {
6545                                                         if let Some(real_scid) = channel.get_short_channel_id() {
6546                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
6547                                                                 // to the short_to_chan_info map here. Note that we check whether we
6548                                                                 // can relay using the real SCID at relay-time (i.e.
6549                                                                 // enforce option_scid_alias then), and if the funding tx is ever
6550                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
6551                                                                 // is always consistent.
6552                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
6553                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.get_counterparty_node_id(), channel.channel_id()));
6554                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.get_counterparty_node_id(), channel.channel_id()),
6555                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
6556                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
6557                                                         }
6558                                                 }
6559                                         } else if let Err(reason) = res {
6560                                                 update_maps_on_chan_removal!(self, channel);
6561                                                 // It looks like our counterparty went on-chain or funding transaction was
6562                                                 // reorged out of the main chain. Close the channel.
6563                                                 failed_channels.push(channel.force_shutdown(true));
6564                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
6565                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6566                                                                 msg: update
6567                                                         });
6568                                                 }
6569                                                 let reason_message = format!("{}", reason);
6570                                                 self.issue_channel_close_events(channel, reason);
6571                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6572                                                         node_id: channel.get_counterparty_node_id(),
6573                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
6574                                                                 channel_id: channel.channel_id(),
6575                                                                 data: reason_message,
6576                                                         } },
6577                                                 });
6578                                                 return false;
6579                                         }
6580                                         true
6581                                 });
6582                         }
6583                 }
6584
6585                 if let Some(height) = height_opt {
6586                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
6587                                 payment.htlcs.retain(|htlc| {
6588                                         // If height is approaching the number of blocks we think it takes us to get
6589                                         // our commitment transaction confirmed before the HTLC expires, plus the
6590                                         // number of blocks we generally consider it to take to do a commitment update,
6591                                         // just give up on it and fail the HTLC.
6592                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
6593                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6594                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
6595
6596                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
6597                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
6598                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
6599                                                 false
6600                                         } else { true }
6601                                 });
6602                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
6603                         });
6604
6605                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
6606                         intercepted_htlcs.retain(|_, htlc| {
6607                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
6608                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6609                                                 short_channel_id: htlc.prev_short_channel_id,
6610                                                 htlc_id: htlc.prev_htlc_id,
6611                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
6612                                                 phantom_shared_secret: None,
6613                                                 outpoint: htlc.prev_funding_outpoint,
6614                                         });
6615
6616                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
6617                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6618                                                 _ => unreachable!(),
6619                                         };
6620                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
6621                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
6622                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
6623                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
6624                                         false
6625                                 } else { true }
6626                         });
6627                 }
6628
6629                 self.handle_init_event_channel_failures(failed_channels);
6630
6631                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
6632                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
6633                 }
6634         }
6635
6636         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
6637         ///
6638         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
6639         /// [`ChannelManager`] and should instead register actions to be taken later.
6640         ///
6641         pub fn get_persistable_update_future(&self) -> Future {
6642                 self.persistence_notifier.get_future()
6643         }
6644
6645         #[cfg(any(test, feature = "_test_utils"))]
6646         pub fn get_persistence_condvar_value(&self) -> bool {
6647                 self.persistence_notifier.notify_pending()
6648         }
6649
6650         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
6651         /// [`chain::Confirm`] interfaces.
6652         pub fn current_best_block(&self) -> BestBlock {
6653                 self.best_block.read().unwrap().clone()
6654         }
6655
6656         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6657         /// [`ChannelManager`].
6658         pub fn node_features(&self) -> NodeFeatures {
6659                 provided_node_features(&self.default_configuration)
6660         }
6661
6662         /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6663         /// [`ChannelManager`].
6664         ///
6665         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6666         /// or not. Thus, this method is not public.
6667         #[cfg(any(feature = "_test_utils", test))]
6668         pub fn invoice_features(&self) -> InvoiceFeatures {
6669                 provided_invoice_features(&self.default_configuration)
6670         }
6671
6672         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6673         /// [`ChannelManager`].
6674         pub fn channel_features(&self) -> ChannelFeatures {
6675                 provided_channel_features(&self.default_configuration)
6676         }
6677
6678         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
6679         /// [`ChannelManager`].
6680         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
6681                 provided_channel_type_features(&self.default_configuration)
6682         }
6683
6684         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6685         /// [`ChannelManager`].
6686         pub fn init_features(&self) -> InitFeatures {
6687                 provided_init_features(&self.default_configuration)
6688         }
6689 }
6690
6691 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
6692         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
6693 where
6694         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6695         T::Target: BroadcasterInterface,
6696         ES::Target: EntropySource,
6697         NS::Target: NodeSigner,
6698         SP::Target: SignerProvider,
6699         F::Target: FeeEstimator,
6700         R::Target: Router,
6701         L::Target: Logger,
6702 {
6703         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
6704                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6705                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
6706         }
6707
6708         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
6709                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6710                         "Dual-funded channels not supported".to_owned(),
6711                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6712         }
6713
6714         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
6715                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6716                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
6717         }
6718
6719         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
6720                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6721                         "Dual-funded channels not supported".to_owned(),
6722                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6723         }
6724
6725         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
6726                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6727                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
6728         }
6729
6730         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
6731                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6732                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
6733         }
6734
6735         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
6736                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6737                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
6738         }
6739
6740         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
6741                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6742                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
6743         }
6744
6745         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
6746                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6747                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
6748         }
6749
6750         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
6751                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6752                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
6753         }
6754
6755         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
6756                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6757                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
6758         }
6759
6760         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
6761                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6762                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
6763         }
6764
6765         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
6766                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6767                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
6768         }
6769
6770         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
6771                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6772                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
6773         }
6774
6775         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
6776                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6777                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
6778         }
6779
6780         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
6781                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6782                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
6783         }
6784
6785         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
6786                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6787                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
6788         }
6789
6790         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
6791                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6792                         let force_persist = self.process_background_events();
6793                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
6794                                 if force_persist == NotifyOption::DoPersist { NotifyOption::DoPersist } else { persist }
6795                         } else {
6796                                 NotifyOption::SkipPersist
6797                         }
6798                 });
6799         }
6800
6801         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
6802                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6803                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
6804         }
6805
6806         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
6807                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6808                 let mut failed_channels = Vec::new();
6809                 let mut per_peer_state = self.per_peer_state.write().unwrap();
6810                 let remove_peer = {
6811                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
6812                                 log_pubkey!(counterparty_node_id));
6813                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
6814                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6815                                 let peer_state = &mut *peer_state_lock;
6816                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6817                                 peer_state.channel_by_id.retain(|_, chan| {
6818                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
6819                                         if chan.is_shutdown() {
6820                                                 update_maps_on_chan_removal!(self, chan);
6821                                                 self.issue_channel_close_events(chan, ClosureReason::DisconnectedPeer);
6822                                                 return false;
6823                                         }
6824                                         true
6825                                 });
6826                                 pending_msg_events.retain(|msg| {
6827                                         match msg {
6828                                                 // V1 Channel Establishment
6829                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
6830                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
6831                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
6832                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
6833                                                 // V2 Channel Establishment
6834                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
6835                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
6836                                                 // Common Channel Establishment
6837                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
6838                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
6839                                                 // Interactive Transaction Construction
6840                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
6841                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
6842                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
6843                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
6844                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
6845                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
6846                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
6847                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
6848                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
6849                                                 // Channel Operations
6850                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
6851                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
6852                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
6853                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
6854                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
6855                                                 &events::MessageSendEvent::HandleError { .. } => false,
6856                                                 // Gossip
6857                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
6858                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
6859                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
6860                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
6861                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
6862                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
6863                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
6864                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
6865                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
6866                                         }
6867                                 });
6868                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
6869                                 peer_state.is_connected = false;
6870                                 peer_state.ok_to_remove(true)
6871                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
6872                 };
6873                 if remove_peer {
6874                         per_peer_state.remove(counterparty_node_id);
6875                 }
6876                 mem::drop(per_peer_state);
6877
6878                 for failure in failed_channels.drain(..) {
6879                         self.finish_force_close_channel(failure);
6880                 }
6881         }
6882
6883         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
6884                 if !init_msg.features.supports_static_remote_key() {
6885                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
6886                         return Err(());
6887                 }
6888
6889                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6890
6891                 // If we have too many peers connected which don't have funded channels, disconnect the
6892                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
6893                 // unfunded channels taking up space in memory for disconnected peers, we still let new
6894                 // peers connect, but we'll reject new channels from them.
6895                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
6896                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
6897
6898                 {
6899                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
6900                         match peer_state_lock.entry(counterparty_node_id.clone()) {
6901                                 hash_map::Entry::Vacant(e) => {
6902                                         if inbound_peer_limited {
6903                                                 return Err(());
6904                                         }
6905                                         e.insert(Mutex::new(PeerState {
6906                                                 channel_by_id: HashMap::new(),
6907                                                 latest_features: init_msg.features.clone(),
6908                                                 pending_msg_events: Vec::new(),
6909                                                 monitor_update_blocked_actions: BTreeMap::new(),
6910                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
6911                                                 is_connected: true,
6912                                         }));
6913                                 },
6914                                 hash_map::Entry::Occupied(e) => {
6915                                         let mut peer_state = e.get().lock().unwrap();
6916                                         peer_state.latest_features = init_msg.features.clone();
6917
6918                                         let best_block_height = self.best_block.read().unwrap().height();
6919                                         if inbound_peer_limited &&
6920                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
6921                                                 peer_state.channel_by_id.len()
6922                                         {
6923                                                 return Err(());
6924                                         }
6925
6926                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
6927                                         peer_state.is_connected = true;
6928                                 },
6929                         }
6930                 }
6931
6932                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
6933
6934                 let per_peer_state = self.per_peer_state.read().unwrap();
6935                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6936                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6937                         let peer_state = &mut *peer_state_lock;
6938                         let pending_msg_events = &mut peer_state.pending_msg_events;
6939                         peer_state.channel_by_id.retain(|_, chan| {
6940                                 let retain = if chan.get_counterparty_node_id() == *counterparty_node_id {
6941                                         if !chan.have_received_message() {
6942                                                 // If we created this (outbound) channel while we were disconnected from the
6943                                                 // peer we probably failed to send the open_channel message, which is now
6944                                                 // lost. We can't have had anything pending related to this channel, so we just
6945                                                 // drop it.
6946                                                 false
6947                                         } else {
6948                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
6949                                                         node_id: chan.get_counterparty_node_id(),
6950                                                         msg: chan.get_channel_reestablish(&self.logger),
6951                                                 });
6952                                                 true
6953                                         }
6954                                 } else { true };
6955                                 if retain && chan.get_counterparty_node_id() != *counterparty_node_id {
6956                                         if let Some(msg) = chan.get_signed_channel_announcement(&self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(), &self.default_configuration) {
6957                                                 if let Ok(update_msg) = self.get_channel_update_for_broadcast(chan) {
6958                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelAnnouncement {
6959                                                                 node_id: *counterparty_node_id,
6960                                                                 msg, update_msg,
6961                                                         });
6962                                                 }
6963                                         }
6964                                 }
6965                                 retain
6966                         });
6967                 }
6968                 //TODO: Also re-broadcast announcement_signatures
6969                 Ok(())
6970         }
6971
6972         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
6973                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6974
6975                 if msg.channel_id == [0; 32] {
6976                         let channel_ids: Vec<[u8; 32]> = {
6977                                 let per_peer_state = self.per_peer_state.read().unwrap();
6978                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
6979                                 if peer_state_mutex_opt.is_none() { return; }
6980                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6981                                 let peer_state = &mut *peer_state_lock;
6982                                 peer_state.channel_by_id.keys().cloned().collect()
6983                         };
6984                         for channel_id in channel_ids {
6985                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6986                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
6987                         }
6988                 } else {
6989                         {
6990                                 // First check if we can advance the channel type and try again.
6991                                 let per_peer_state = self.per_peer_state.read().unwrap();
6992                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
6993                                 if peer_state_mutex_opt.is_none() { return; }
6994                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6995                                 let peer_state = &mut *peer_state_lock;
6996                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
6997                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash) {
6998                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
6999                                                         node_id: *counterparty_node_id,
7000                                                         msg,
7001                                                 });
7002                                                 return;
7003                                         }
7004                                 }
7005                         }
7006
7007                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7008                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7009                 }
7010         }
7011
7012         fn provided_node_features(&self) -> NodeFeatures {
7013                 provided_node_features(&self.default_configuration)
7014         }
7015
7016         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7017                 provided_init_features(&self.default_configuration)
7018         }
7019
7020         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7021                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7022                         "Dual-funded channels not supported".to_owned(),
7023                          msg.channel_id.clone())), *counterparty_node_id);
7024         }
7025
7026         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7027                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7028                         "Dual-funded channels not supported".to_owned(),
7029                          msg.channel_id.clone())), *counterparty_node_id);
7030         }
7031
7032         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7033                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7034                         "Dual-funded channels not supported".to_owned(),
7035                          msg.channel_id.clone())), *counterparty_node_id);
7036         }
7037
7038         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7039                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7040                         "Dual-funded channels not supported".to_owned(),
7041                          msg.channel_id.clone())), *counterparty_node_id);
7042         }
7043
7044         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7045                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7046                         "Dual-funded channels not supported".to_owned(),
7047                          msg.channel_id.clone())), *counterparty_node_id);
7048         }
7049
7050         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
7051                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7052                         "Dual-funded channels not supported".to_owned(),
7053                          msg.channel_id.clone())), *counterparty_node_id);
7054         }
7055
7056         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
7057                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7058                         "Dual-funded channels not supported".to_owned(),
7059                          msg.channel_id.clone())), *counterparty_node_id);
7060         }
7061
7062         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
7063                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7064                         "Dual-funded channels not supported".to_owned(),
7065                          msg.channel_id.clone())), *counterparty_node_id);
7066         }
7067
7068         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
7069                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7070                         "Dual-funded channels not supported".to_owned(),
7071                          msg.channel_id.clone())), *counterparty_node_id);
7072         }
7073 }
7074
7075 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7076 /// [`ChannelManager`].
7077 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7078         provided_init_features(config).to_context()
7079 }
7080
7081 /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
7082 /// [`ChannelManager`].
7083 ///
7084 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7085 /// or not. Thus, this method is not public.
7086 #[cfg(any(feature = "_test_utils", test))]
7087 pub(crate) fn provided_invoice_features(config: &UserConfig) -> InvoiceFeatures {
7088         provided_init_features(config).to_context()
7089 }
7090
7091 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7092 /// [`ChannelManager`].
7093 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
7094         provided_init_features(config).to_context()
7095 }
7096
7097 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7098 /// [`ChannelManager`].
7099 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
7100         ChannelTypeFeatures::from_init(&provided_init_features(config))
7101 }
7102
7103 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7104 /// [`ChannelManager`].
7105 pub fn provided_init_features(_config: &UserConfig) -> InitFeatures {
7106         // Note that if new features are added here which other peers may (eventually) require, we
7107         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
7108         // [`ErroringMessageHandler`].
7109         let mut features = InitFeatures::empty();
7110         features.set_data_loss_protect_required();
7111         features.set_upfront_shutdown_script_optional();
7112         features.set_variable_length_onion_required();
7113         features.set_static_remote_key_required();
7114         features.set_payment_secret_required();
7115         features.set_basic_mpp_optional();
7116         features.set_wumbo_optional();
7117         features.set_shutdown_any_segwit_optional();
7118         features.set_channel_type_optional();
7119         features.set_scid_privacy_optional();
7120         features.set_zero_conf_optional();
7121         #[cfg(anchors)]
7122         { // Attributes are not allowed on if expressions on our current MSRV of 1.41.
7123                 if _config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
7124                         features.set_anchors_zero_fee_htlc_tx_optional();
7125                 }
7126         }
7127         features
7128 }
7129
7130 const SERIALIZATION_VERSION: u8 = 1;
7131 const MIN_SERIALIZATION_VERSION: u8 = 1;
7132
7133 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
7134         (2, fee_base_msat, required),
7135         (4, fee_proportional_millionths, required),
7136         (6, cltv_expiry_delta, required),
7137 });
7138
7139 impl_writeable_tlv_based!(ChannelCounterparty, {
7140         (2, node_id, required),
7141         (4, features, required),
7142         (6, unspendable_punishment_reserve, required),
7143         (8, forwarding_info, option),
7144         (9, outbound_htlc_minimum_msat, option),
7145         (11, outbound_htlc_maximum_msat, option),
7146 });
7147
7148 impl Writeable for ChannelDetails {
7149         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7150                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7151                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7152                 let user_channel_id_low = self.user_channel_id as u64;
7153                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
7154                 write_tlv_fields!(writer, {
7155                         (1, self.inbound_scid_alias, option),
7156                         (2, self.channel_id, required),
7157                         (3, self.channel_type, option),
7158                         (4, self.counterparty, required),
7159                         (5, self.outbound_scid_alias, option),
7160                         (6, self.funding_txo, option),
7161                         (7, self.config, option),
7162                         (8, self.short_channel_id, option),
7163                         (9, self.confirmations, option),
7164                         (10, self.channel_value_satoshis, required),
7165                         (12, self.unspendable_punishment_reserve, option),
7166                         (14, user_channel_id_low, required),
7167                         (16, self.balance_msat, required),
7168                         (18, self.outbound_capacity_msat, required),
7169                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
7170                         // filled in, so we can safely unwrap it here.
7171                         (19, self.next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
7172                         (20, self.inbound_capacity_msat, required),
7173                         (22, self.confirmations_required, option),
7174                         (24, self.force_close_spend_delay, option),
7175                         (26, self.is_outbound, required),
7176                         (28, self.is_channel_ready, required),
7177                         (30, self.is_usable, required),
7178                         (32, self.is_public, required),
7179                         (33, self.inbound_htlc_minimum_msat, option),
7180                         (35, self.inbound_htlc_maximum_msat, option),
7181                         (37, user_channel_id_high_opt, option),
7182                         (39, self.feerate_sat_per_1000_weight, option),
7183                 });
7184                 Ok(())
7185         }
7186 }
7187
7188 impl Readable for ChannelDetails {
7189         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7190                 _init_and_read_tlv_fields!(reader, {
7191                         (1, inbound_scid_alias, option),
7192                         (2, channel_id, required),
7193                         (3, channel_type, option),
7194                         (4, counterparty, required),
7195                         (5, outbound_scid_alias, option),
7196                         (6, funding_txo, option),
7197                         (7, config, option),
7198                         (8, short_channel_id, option),
7199                         (9, confirmations, option),
7200                         (10, channel_value_satoshis, required),
7201                         (12, unspendable_punishment_reserve, option),
7202                         (14, user_channel_id_low, required),
7203                         (16, balance_msat, required),
7204                         (18, outbound_capacity_msat, required),
7205                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
7206                         // filled in, so we can safely unwrap it here.
7207                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
7208                         (20, inbound_capacity_msat, required),
7209                         (22, confirmations_required, option),
7210                         (24, force_close_spend_delay, option),
7211                         (26, is_outbound, required),
7212                         (28, is_channel_ready, required),
7213                         (30, is_usable, required),
7214                         (32, is_public, required),
7215                         (33, inbound_htlc_minimum_msat, option),
7216                         (35, inbound_htlc_maximum_msat, option),
7217                         (37, user_channel_id_high_opt, option),
7218                         (39, feerate_sat_per_1000_weight, option),
7219                 });
7220
7221                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7222                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7223                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
7224                 let user_channel_id = user_channel_id_low as u128 +
7225                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
7226
7227                 Ok(Self {
7228                         inbound_scid_alias,
7229                         channel_id: channel_id.0.unwrap(),
7230                         channel_type,
7231                         counterparty: counterparty.0.unwrap(),
7232                         outbound_scid_alias,
7233                         funding_txo,
7234                         config,
7235                         short_channel_id,
7236                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
7237                         unspendable_punishment_reserve,
7238                         user_channel_id,
7239                         balance_msat: balance_msat.0.unwrap(),
7240                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
7241                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
7242                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
7243                         confirmations_required,
7244                         confirmations,
7245                         force_close_spend_delay,
7246                         is_outbound: is_outbound.0.unwrap(),
7247                         is_channel_ready: is_channel_ready.0.unwrap(),
7248                         is_usable: is_usable.0.unwrap(),
7249                         is_public: is_public.0.unwrap(),
7250                         inbound_htlc_minimum_msat,
7251                         inbound_htlc_maximum_msat,
7252                         feerate_sat_per_1000_weight,
7253                 })
7254         }
7255 }
7256
7257 impl_writeable_tlv_based!(PhantomRouteHints, {
7258         (2, channels, vec_type),
7259         (4, phantom_scid, required),
7260         (6, real_node_pubkey, required),
7261 });
7262
7263 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
7264         (0, Forward) => {
7265                 (0, onion_packet, required),
7266                 (2, short_channel_id, required),
7267         },
7268         (1, Receive) => {
7269                 (0, payment_data, required),
7270                 (1, phantom_shared_secret, option),
7271                 (2, incoming_cltv_expiry, required),
7272                 (3, payment_metadata, option),
7273         },
7274         (2, ReceiveKeysend) => {
7275                 (0, payment_preimage, required),
7276                 (2, incoming_cltv_expiry, required),
7277                 (3, payment_metadata, option),
7278         },
7279 ;);
7280
7281 impl_writeable_tlv_based!(PendingHTLCInfo, {
7282         (0, routing, required),
7283         (2, incoming_shared_secret, required),
7284         (4, payment_hash, required),
7285         (6, outgoing_amt_msat, required),
7286         (8, outgoing_cltv_value, required),
7287         (9, incoming_amt_msat, option),
7288 });
7289
7290
7291 impl Writeable for HTLCFailureMsg {
7292         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7293                 match self {
7294                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
7295                                 0u8.write(writer)?;
7296                                 channel_id.write(writer)?;
7297                                 htlc_id.write(writer)?;
7298                                 reason.write(writer)?;
7299                         },
7300                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7301                                 channel_id, htlc_id, sha256_of_onion, failure_code
7302                         }) => {
7303                                 1u8.write(writer)?;
7304                                 channel_id.write(writer)?;
7305                                 htlc_id.write(writer)?;
7306                                 sha256_of_onion.write(writer)?;
7307                                 failure_code.write(writer)?;
7308                         },
7309                 }
7310                 Ok(())
7311         }
7312 }
7313
7314 impl Readable for HTLCFailureMsg {
7315         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7316                 let id: u8 = Readable::read(reader)?;
7317                 match id {
7318                         0 => {
7319                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
7320                                         channel_id: Readable::read(reader)?,
7321                                         htlc_id: Readable::read(reader)?,
7322                                         reason: Readable::read(reader)?,
7323                                 }))
7324                         },
7325                         1 => {
7326                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7327                                         channel_id: Readable::read(reader)?,
7328                                         htlc_id: Readable::read(reader)?,
7329                                         sha256_of_onion: Readable::read(reader)?,
7330                                         failure_code: Readable::read(reader)?,
7331                                 }))
7332                         },
7333                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
7334                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
7335                         // messages contained in the variants.
7336                         // In version 0.0.101, support for reading the variants with these types was added, and
7337                         // we should migrate to writing these variants when UpdateFailHTLC or
7338                         // UpdateFailMalformedHTLC get TLV fields.
7339                         2 => {
7340                                 let length: BigSize = Readable::read(reader)?;
7341                                 let mut s = FixedLengthReader::new(reader, length.0);
7342                                 let res = Readable::read(&mut s)?;
7343                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7344                                 Ok(HTLCFailureMsg::Relay(res))
7345                         },
7346                         3 => {
7347                                 let length: BigSize = Readable::read(reader)?;
7348                                 let mut s = FixedLengthReader::new(reader, length.0);
7349                                 let res = Readable::read(&mut s)?;
7350                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7351                                 Ok(HTLCFailureMsg::Malformed(res))
7352                         },
7353                         _ => Err(DecodeError::UnknownRequiredFeature),
7354                 }
7355         }
7356 }
7357
7358 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
7359         (0, Forward),
7360         (1, Fail),
7361 );
7362
7363 impl_writeable_tlv_based!(HTLCPreviousHopData, {
7364         (0, short_channel_id, required),
7365         (1, phantom_shared_secret, option),
7366         (2, outpoint, required),
7367         (4, htlc_id, required),
7368         (6, incoming_packet_shared_secret, required)
7369 });
7370
7371 impl Writeable for ClaimableHTLC {
7372         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7373                 let (payment_data, keysend_preimage) = match &self.onion_payload {
7374                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
7375                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
7376                 };
7377                 write_tlv_fields!(writer, {
7378                         (0, self.prev_hop, required),
7379                         (1, self.total_msat, required),
7380                         (2, self.value, required),
7381                         (3, self.sender_intended_value, required),
7382                         (4, payment_data, option),
7383                         (5, self.total_value_received, option),
7384                         (6, self.cltv_expiry, required),
7385                         (8, keysend_preimage, option),
7386                 });
7387                 Ok(())
7388         }
7389 }
7390
7391 impl Readable for ClaimableHTLC {
7392         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7393                 let mut prev_hop = crate::util::ser::RequiredWrapper(None);
7394                 let mut value = 0;
7395                 let mut sender_intended_value = None;
7396                 let mut payment_data: Option<msgs::FinalOnionHopData> = None;
7397                 let mut cltv_expiry = 0;
7398                 let mut total_value_received = None;
7399                 let mut total_msat = None;
7400                 let mut keysend_preimage: Option<PaymentPreimage> = None;
7401                 read_tlv_fields!(reader, {
7402                         (0, prev_hop, required),
7403                         (1, total_msat, option),
7404                         (2, value, required),
7405                         (3, sender_intended_value, option),
7406                         (4, payment_data, option),
7407                         (5, total_value_received, option),
7408                         (6, cltv_expiry, required),
7409                         (8, keysend_preimage, option)
7410                 });
7411                 let onion_payload = match keysend_preimage {
7412                         Some(p) => {
7413                                 if payment_data.is_some() {
7414                                         return Err(DecodeError::InvalidValue)
7415                                 }
7416                                 if total_msat.is_none() {
7417                                         total_msat = Some(value);
7418                                 }
7419                                 OnionPayload::Spontaneous(p)
7420                         },
7421                         None => {
7422                                 if total_msat.is_none() {
7423                                         if payment_data.is_none() {
7424                                                 return Err(DecodeError::InvalidValue)
7425                                         }
7426                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
7427                                 }
7428                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
7429                         },
7430                 };
7431                 Ok(Self {
7432                         prev_hop: prev_hop.0.unwrap(),
7433                         timer_ticks: 0,
7434                         value,
7435                         sender_intended_value: sender_intended_value.unwrap_or(value),
7436                         total_value_received,
7437                         total_msat: total_msat.unwrap(),
7438                         onion_payload,
7439                         cltv_expiry,
7440                 })
7441         }
7442 }
7443
7444 impl Readable for HTLCSource {
7445         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7446                 let id: u8 = Readable::read(reader)?;
7447                 match id {
7448                         0 => {
7449                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
7450                                 let mut first_hop_htlc_msat: u64 = 0;
7451                                 let mut path_hops: Option<Vec<RouteHop>> = Some(Vec::new());
7452                                 let mut payment_id = None;
7453                                 let mut payment_params: Option<PaymentParameters> = None;
7454                                 let mut blinded_tail: Option<BlindedTail> = None;
7455                                 read_tlv_fields!(reader, {
7456                                         (0, session_priv, required),
7457                                         (1, payment_id, option),
7458                                         (2, first_hop_htlc_msat, required),
7459                                         (4, path_hops, vec_type),
7460                                         (5, payment_params, (option: ReadableArgs, 0)),
7461                                         (6, blinded_tail, option),
7462                                 });
7463                                 if payment_id.is_none() {
7464                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
7465                                         // instead.
7466                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
7467                                 }
7468                                 let path = Path { hops: path_hops.ok_or(DecodeError::InvalidValue)?, blinded_tail };
7469                                 if path.hops.len() == 0 {
7470                                         return Err(DecodeError::InvalidValue);
7471                                 }
7472                                 if let Some(params) = payment_params.as_mut() {
7473                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
7474                                                 if final_cltv_expiry_delta == &0 {
7475                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
7476                                                 }
7477                                         }
7478                                 }
7479                                 Ok(HTLCSource::OutboundRoute {
7480                                         session_priv: session_priv.0.unwrap(),
7481                                         first_hop_htlc_msat,
7482                                         path,
7483                                         payment_id: payment_id.unwrap(),
7484                                 })
7485                         }
7486                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
7487                         _ => Err(DecodeError::UnknownRequiredFeature),
7488                 }
7489         }
7490 }
7491
7492 impl Writeable for HTLCSource {
7493         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
7494                 match self {
7495                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
7496                                 0u8.write(writer)?;
7497                                 let payment_id_opt = Some(payment_id);
7498                                 write_tlv_fields!(writer, {
7499                                         (0, session_priv, required),
7500                                         (1, payment_id_opt, option),
7501                                         (2, first_hop_htlc_msat, required),
7502                                         // 3 was previously used to write a PaymentSecret for the payment.
7503                                         (4, path.hops, vec_type),
7504                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
7505                                         (6, path.blinded_tail, option),
7506                                  });
7507                         }
7508                         HTLCSource::PreviousHopData(ref field) => {
7509                                 1u8.write(writer)?;
7510                                 field.write(writer)?;
7511                         }
7512                 }
7513                 Ok(())
7514         }
7515 }
7516
7517 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
7518         (0, forward_info, required),
7519         (1, prev_user_channel_id, (default_value, 0)),
7520         (2, prev_short_channel_id, required),
7521         (4, prev_htlc_id, required),
7522         (6, prev_funding_outpoint, required),
7523 });
7524
7525 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
7526         (1, FailHTLC) => {
7527                 (0, htlc_id, required),
7528                 (2, err_packet, required),
7529         };
7530         (0, AddHTLC)
7531 );
7532
7533 impl_writeable_tlv_based!(PendingInboundPayment, {
7534         (0, payment_secret, required),
7535         (2, expiry_time, required),
7536         (4, user_payment_id, required),
7537         (6, payment_preimage, required),
7538         (8, min_value_msat, required),
7539 });
7540
7541 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>
7542 where
7543         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7544         T::Target: BroadcasterInterface,
7545         ES::Target: EntropySource,
7546         NS::Target: NodeSigner,
7547         SP::Target: SignerProvider,
7548         F::Target: FeeEstimator,
7549         R::Target: Router,
7550         L::Target: Logger,
7551 {
7552         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7553                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
7554
7555                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
7556
7557                 self.genesis_hash.write(writer)?;
7558                 {
7559                         let best_block = self.best_block.read().unwrap();
7560                         best_block.height().write(writer)?;
7561                         best_block.block_hash().write(writer)?;
7562                 }
7563
7564                 let mut serializable_peer_count: u64 = 0;
7565                 {
7566                         let per_peer_state = self.per_peer_state.read().unwrap();
7567                         let mut unfunded_channels = 0;
7568                         let mut number_of_channels = 0;
7569                         for (_, peer_state_mutex) in per_peer_state.iter() {
7570                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7571                                 let peer_state = &mut *peer_state_lock;
7572                                 if !peer_state.ok_to_remove(false) {
7573                                         serializable_peer_count += 1;
7574                                 }
7575                                 number_of_channels += peer_state.channel_by_id.len();
7576                                 for (_, channel) in peer_state.channel_by_id.iter() {
7577                                         if !channel.is_funding_initiated() {
7578                                                 unfunded_channels += 1;
7579                                         }
7580                                 }
7581                         }
7582
7583                         ((number_of_channels - unfunded_channels) as u64).write(writer)?;
7584
7585                         for (_, peer_state_mutex) in per_peer_state.iter() {
7586                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7587                                 let peer_state = &mut *peer_state_lock;
7588                                 for (_, channel) in peer_state.channel_by_id.iter() {
7589                                         if channel.is_funding_initiated() {
7590                                                 channel.write(writer)?;
7591                                         }
7592                                 }
7593                         }
7594                 }
7595
7596                 {
7597                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
7598                         (forward_htlcs.len() as u64).write(writer)?;
7599                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
7600                                 short_channel_id.write(writer)?;
7601                                 (pending_forwards.len() as u64).write(writer)?;
7602                                 for forward in pending_forwards {
7603                                         forward.write(writer)?;
7604                                 }
7605                         }
7606                 }
7607
7608                 let per_peer_state = self.per_peer_state.write().unwrap();
7609
7610                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
7611                 let claimable_payments = self.claimable_payments.lock().unwrap();
7612                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
7613
7614                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
7615                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
7616                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
7617                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
7618                         payment_hash.write(writer)?;
7619                         (payment.htlcs.len() as u64).write(writer)?;
7620                         for htlc in payment.htlcs.iter() {
7621                                 htlc.write(writer)?;
7622                         }
7623                         htlc_purposes.push(&payment.purpose);
7624                         htlc_onion_fields.push(&payment.onion_fields);
7625                 }
7626
7627                 let mut monitor_update_blocked_actions_per_peer = None;
7628                 let mut peer_states = Vec::new();
7629                 for (_, peer_state_mutex) in per_peer_state.iter() {
7630                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
7631                         // of a lockorder violation deadlock - no other thread can be holding any
7632                         // per_peer_state lock at all.
7633                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
7634                 }
7635
7636                 (serializable_peer_count).write(writer)?;
7637                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
7638                         // Peers which we have no channels to should be dropped once disconnected. As we
7639                         // disconnect all peers when shutting down and serializing the ChannelManager, we
7640                         // consider all peers as disconnected here. There's therefore no need write peers with
7641                         // no channels.
7642                         if !peer_state.ok_to_remove(false) {
7643                                 peer_pubkey.write(writer)?;
7644                                 peer_state.latest_features.write(writer)?;
7645                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
7646                                         monitor_update_blocked_actions_per_peer
7647                                                 .get_or_insert_with(Vec::new)
7648                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
7649                                 }
7650                         }
7651                 }
7652
7653                 let events = self.pending_events.lock().unwrap();
7654                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
7655                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
7656                 // refuse to read the new ChannelManager.
7657                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
7658                 if events_not_backwards_compatible {
7659                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
7660                         // well save the space and not write any events here.
7661                         0u64.write(writer)?;
7662                 } else {
7663                         (events.len() as u64).write(writer)?;
7664                         for (event, _) in events.iter() {
7665                                 event.write(writer)?;
7666                         }
7667                 }
7668
7669                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
7670                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
7671                 // the closing monitor updates were always effectively replayed on startup (either directly
7672                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
7673                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
7674                 0u64.write(writer)?;
7675
7676                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
7677                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
7678                 // likely to be identical.
7679                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7680                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7681
7682                 (pending_inbound_payments.len() as u64).write(writer)?;
7683                 for (hash, pending_payment) in pending_inbound_payments.iter() {
7684                         hash.write(writer)?;
7685                         pending_payment.write(writer)?;
7686                 }
7687
7688                 // For backwards compat, write the session privs and their total length.
7689                 let mut num_pending_outbounds_compat: u64 = 0;
7690                 for (_, outbound) in pending_outbound_payments.iter() {
7691                         if !outbound.is_fulfilled() && !outbound.abandoned() {
7692                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
7693                         }
7694                 }
7695                 num_pending_outbounds_compat.write(writer)?;
7696                 for (_, outbound) in pending_outbound_payments.iter() {
7697                         match outbound {
7698                                 PendingOutboundPayment::Legacy { session_privs } |
7699                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7700                                         for session_priv in session_privs.iter() {
7701                                                 session_priv.write(writer)?;
7702                                         }
7703                                 }
7704                                 PendingOutboundPayment::Fulfilled { .. } => {},
7705                                 PendingOutboundPayment::Abandoned { .. } => {},
7706                         }
7707                 }
7708
7709                 // Encode without retry info for 0.0.101 compatibility.
7710                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
7711                 for (id, outbound) in pending_outbound_payments.iter() {
7712                         match outbound {
7713                                 PendingOutboundPayment::Legacy { session_privs } |
7714                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7715                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
7716                                 },
7717                                 _ => {},
7718                         }
7719                 }
7720
7721                 let mut pending_intercepted_htlcs = None;
7722                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
7723                 if our_pending_intercepts.len() != 0 {
7724                         pending_intercepted_htlcs = Some(our_pending_intercepts);
7725                 }
7726
7727                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
7728                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
7729                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
7730                         // map. Thus, if there are no entries we skip writing a TLV for it.
7731                         pending_claiming_payments = None;
7732                 }
7733
7734                 write_tlv_fields!(writer, {
7735                         (1, pending_outbound_payments_no_retry, required),
7736                         (2, pending_intercepted_htlcs, option),
7737                         (3, pending_outbound_payments, required),
7738                         (4, pending_claiming_payments, option),
7739                         (5, self.our_network_pubkey, required),
7740                         (6, monitor_update_blocked_actions_per_peer, option),
7741                         (7, self.fake_scid_rand_bytes, required),
7742                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
7743                         (9, htlc_purposes, vec_type),
7744                         (11, self.probing_cookie_secret, required),
7745                         (13, htlc_onion_fields, optional_vec),
7746                 });
7747
7748                 Ok(())
7749         }
7750 }
7751
7752 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
7753         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
7754                 (self.len() as u64).write(w)?;
7755                 for (event, action) in self.iter() {
7756                         event.write(w)?;
7757                         action.write(w)?;
7758                         #[cfg(debug_assertions)] {
7759                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
7760                                 // be persisted and are regenerated on restart. However, if such an event has a
7761                                 // post-event-handling action we'll write nothing for the event and would have to
7762                                 // either forget the action or fail on deserialization (which we do below). Thus,
7763                                 // check that the event is sane here.
7764                                 let event_encoded = event.encode();
7765                                 let event_read: Option<Event> =
7766                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
7767                                 if action.is_some() { assert!(event_read.is_some()); }
7768                         }
7769                 }
7770                 Ok(())
7771         }
7772 }
7773 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
7774         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7775                 let len: u64 = Readable::read(reader)?;
7776                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
7777                 let mut events: Self = VecDeque::with_capacity(cmp::min(
7778                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
7779                         len) as usize);
7780                 for _ in 0..len {
7781                         let ev_opt = MaybeReadable::read(reader)?;
7782                         let action = Readable::read(reader)?;
7783                         if let Some(ev) = ev_opt {
7784                                 events.push_back((ev, action));
7785                         } else if action.is_some() {
7786                                 return Err(DecodeError::InvalidValue);
7787                         }
7788                 }
7789                 Ok(events)
7790         }
7791 }
7792
7793 /// Arguments for the creation of a ChannelManager that are not deserialized.
7794 ///
7795 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
7796 /// is:
7797 /// 1) Deserialize all stored [`ChannelMonitor`]s.
7798 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
7799 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
7800 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
7801 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
7802 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
7803 ///    same way you would handle a [`chain::Filter`] call using
7804 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
7805 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
7806 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
7807 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
7808 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
7809 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
7810 ///    the next step.
7811 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
7812 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
7813 ///
7814 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
7815 /// call any other methods on the newly-deserialized [`ChannelManager`].
7816 ///
7817 /// Note that because some channels may be closed during deserialization, it is critical that you
7818 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
7819 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
7820 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
7821 /// not force-close the same channels but consider them live), you may end up revoking a state for
7822 /// which you've already broadcasted the transaction.
7823 ///
7824 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
7825 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7826 where
7827         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7828         T::Target: BroadcasterInterface,
7829         ES::Target: EntropySource,
7830         NS::Target: NodeSigner,
7831         SP::Target: SignerProvider,
7832         F::Target: FeeEstimator,
7833         R::Target: Router,
7834         L::Target: Logger,
7835 {
7836         /// A cryptographically secure source of entropy.
7837         pub entropy_source: ES,
7838
7839         /// A signer that is able to perform node-scoped cryptographic operations.
7840         pub node_signer: NS,
7841
7842         /// The keys provider which will give us relevant keys. Some keys will be loaded during
7843         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
7844         /// signing data.
7845         pub signer_provider: SP,
7846
7847         /// The fee_estimator for use in the ChannelManager in the future.
7848         ///
7849         /// No calls to the FeeEstimator will be made during deserialization.
7850         pub fee_estimator: F,
7851         /// The chain::Watch for use in the ChannelManager in the future.
7852         ///
7853         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
7854         /// you have deserialized ChannelMonitors separately and will add them to your
7855         /// chain::Watch after deserializing this ChannelManager.
7856         pub chain_monitor: M,
7857
7858         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
7859         /// used to broadcast the latest local commitment transactions of channels which must be
7860         /// force-closed during deserialization.
7861         pub tx_broadcaster: T,
7862         /// The router which will be used in the ChannelManager in the future for finding routes
7863         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
7864         ///
7865         /// No calls to the router will be made during deserialization.
7866         pub router: R,
7867         /// The Logger for use in the ChannelManager and which may be used to log information during
7868         /// deserialization.
7869         pub logger: L,
7870         /// Default settings used for new channels. Any existing channels will continue to use the
7871         /// runtime settings which were stored when the ChannelManager was serialized.
7872         pub default_config: UserConfig,
7873
7874         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
7875         /// value.get_funding_txo() should be the key).
7876         ///
7877         /// If a monitor is inconsistent with the channel state during deserialization the channel will
7878         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
7879         /// is true for missing channels as well. If there is a monitor missing for which we find
7880         /// channel data Err(DecodeError::InvalidValue) will be returned.
7881         ///
7882         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
7883         /// this struct.
7884         ///
7885         /// This is not exported to bindings users because we have no HashMap bindings
7886         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
7887 }
7888
7889 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7890                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
7891 where
7892         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7893         T::Target: BroadcasterInterface,
7894         ES::Target: EntropySource,
7895         NS::Target: NodeSigner,
7896         SP::Target: SignerProvider,
7897         F::Target: FeeEstimator,
7898         R::Target: Router,
7899         L::Target: Logger,
7900 {
7901         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
7902         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
7903         /// populate a HashMap directly from C.
7904         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,
7905                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
7906                 Self {
7907                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
7908                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
7909                 }
7910         }
7911 }
7912
7913 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
7914 // SipmleArcChannelManager type:
7915 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7916         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
7917 where
7918         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7919         T::Target: BroadcasterInterface,
7920         ES::Target: EntropySource,
7921         NS::Target: NodeSigner,
7922         SP::Target: SignerProvider,
7923         F::Target: FeeEstimator,
7924         R::Target: Router,
7925         L::Target: Logger,
7926 {
7927         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
7928                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
7929                 Ok((blockhash, Arc::new(chan_manager)))
7930         }
7931 }
7932
7933 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7934         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
7935 where
7936         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7937         T::Target: BroadcasterInterface,
7938         ES::Target: EntropySource,
7939         NS::Target: NodeSigner,
7940         SP::Target: SignerProvider,
7941         F::Target: FeeEstimator,
7942         R::Target: Router,
7943         L::Target: Logger,
7944 {
7945         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
7946                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
7947
7948                 let genesis_hash: BlockHash = Readable::read(reader)?;
7949                 let best_block_height: u32 = Readable::read(reader)?;
7950                 let best_block_hash: BlockHash = Readable::read(reader)?;
7951
7952                 let mut failed_htlcs = Vec::new();
7953
7954                 let channel_count: u64 = Readable::read(reader)?;
7955                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
7956                 let mut peer_channels: HashMap<PublicKey, HashMap<[u8; 32], Channel<<SP::Target as SignerProvider>::Signer>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
7957                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
7958                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
7959                 let mut channel_closures = VecDeque::new();
7960                 let mut pending_background_events = Vec::new();
7961                 for _ in 0..channel_count {
7962                         let mut channel: Channel<<SP::Target as SignerProvider>::Signer> = Channel::read(reader, (
7963                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
7964                         ))?;
7965                         let funding_txo = channel.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
7966                         funding_txo_set.insert(funding_txo.clone());
7967                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
7968                                 if channel.get_latest_complete_monitor_update_id() > monitor.get_latest_update_id() {
7969                                         // If the channel is ahead of the monitor, return InvalidValue:
7970                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
7971                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
7972                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_complete_monitor_update_id());
7973                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
7974                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
7975                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
7976                                         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");
7977                                         return Err(DecodeError::InvalidValue);
7978                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
7979                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
7980                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
7981                                                 channel.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
7982                                         // But if the channel is behind of the monitor, close the channel:
7983                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
7984                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
7985                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
7986                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
7987                                         let (monitor_update, mut new_failed_htlcs) = channel.force_shutdown(true);
7988                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
7989                                                 pending_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
7990                                                         counterparty_node_id, funding_txo, update
7991                                                 });
7992                                         }
7993                                         failed_htlcs.append(&mut new_failed_htlcs);
7994                                         channel_closures.push_back((events::Event::ChannelClosed {
7995                                                 channel_id: channel.channel_id(),
7996                                                 user_channel_id: channel.get_user_id(),
7997                                                 reason: ClosureReason::OutdatedChannelManager
7998                                         }, None));
7999                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8000                                                 let mut found_htlc = false;
8001                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8002                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8003                                                 }
8004                                                 if !found_htlc {
8005                                                         // If we have some HTLCs in the channel which are not present in the newer
8006                                                         // ChannelMonitor, they have been removed and should be failed back to
8007                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8008                                                         // were actually claimed we'd have generated and ensured the previous-hop
8009                                                         // claim update ChannelMonitor updates were persisted prior to persising
8010                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8011                                                         // backwards leg of the HTLC will simply be rejected.
8012                                                         log_info!(args.logger,
8013                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8014                                                                 log_bytes!(channel.channel_id()), log_bytes!(payment_hash.0));
8015                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.get_counterparty_node_id(), channel.channel_id()));
8016                                                 }
8017                                         }
8018                                 } else {
8019                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
8020                                                 log_bytes!(channel.channel_id()), channel.get_latest_monitor_update_id(),
8021                                                 monitor.get_latest_update_id());
8022                                         channel.complete_all_mon_updates_through(monitor.get_latest_update_id());
8023                                         if let Some(short_channel_id) = channel.get_short_channel_id() {
8024                                                 short_to_chan_info.insert(short_channel_id, (channel.get_counterparty_node_id(), channel.channel_id()));
8025                                         }
8026                                         if channel.is_funding_initiated() {
8027                                                 id_to_peer.insert(channel.channel_id(), channel.get_counterparty_node_id());
8028                                         }
8029                                         match peer_channels.entry(channel.get_counterparty_node_id()) {
8030                                                 hash_map::Entry::Occupied(mut entry) => {
8031                                                         let by_id_map = entry.get_mut();
8032                                                         by_id_map.insert(channel.channel_id(), channel);
8033                                                 },
8034                                                 hash_map::Entry::Vacant(entry) => {
8035                                                         let mut by_id_map = HashMap::new();
8036                                                         by_id_map.insert(channel.channel_id(), channel);
8037                                                         entry.insert(by_id_map);
8038                                                 }
8039                                         }
8040                                 }
8041                         } else if channel.is_awaiting_initial_mon_persist() {
8042                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
8043                                 // was in-progress, we never broadcasted the funding transaction and can still
8044                                 // safely discard the channel.
8045                                 let _ = channel.force_shutdown(false);
8046                                 channel_closures.push_back((events::Event::ChannelClosed {
8047                                         channel_id: channel.channel_id(),
8048                                         user_channel_id: channel.get_user_id(),
8049                                         reason: ClosureReason::DisconnectedPeer,
8050                                 }, None));
8051                         } else {
8052                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.channel_id()));
8053                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8054                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8055                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
8056                                 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");
8057                                 return Err(DecodeError::InvalidValue);
8058                         }
8059                 }
8060
8061                 for (funding_txo, _) in args.channel_monitors.iter() {
8062                         if !funding_txo_set.contains(funding_txo) {
8063                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
8064                                         log_bytes!(funding_txo.to_channel_id()));
8065                                 let monitor_update = ChannelMonitorUpdate {
8066                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
8067                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
8068                                 };
8069                                 pending_background_events.push(BackgroundEvent::ClosingMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
8070                         }
8071                 }
8072
8073                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
8074                 let forward_htlcs_count: u64 = Readable::read(reader)?;
8075                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
8076                 for _ in 0..forward_htlcs_count {
8077                         let short_channel_id = Readable::read(reader)?;
8078                         let pending_forwards_count: u64 = Readable::read(reader)?;
8079                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
8080                         for _ in 0..pending_forwards_count {
8081                                 pending_forwards.push(Readable::read(reader)?);
8082                         }
8083                         forward_htlcs.insert(short_channel_id, pending_forwards);
8084                 }
8085
8086                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
8087                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
8088                 for _ in 0..claimable_htlcs_count {
8089                         let payment_hash = Readable::read(reader)?;
8090                         let previous_hops_len: u64 = Readable::read(reader)?;
8091                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
8092                         for _ in 0..previous_hops_len {
8093                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
8094                         }
8095                         claimable_htlcs_list.push((payment_hash, previous_hops));
8096                 }
8097
8098                 let peer_count: u64 = Readable::read(reader)?;
8099                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>)>()));
8100                 for _ in 0..peer_count {
8101                         let peer_pubkey = Readable::read(reader)?;
8102                         let peer_state = PeerState {
8103                                 channel_by_id: peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new()),
8104                                 latest_features: Readable::read(reader)?,
8105                                 pending_msg_events: Vec::new(),
8106                                 monitor_update_blocked_actions: BTreeMap::new(),
8107                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
8108                                 is_connected: false,
8109                         };
8110                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
8111                 }
8112
8113                 let event_count: u64 = Readable::read(reader)?;
8114                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
8115                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
8116                 for _ in 0..event_count {
8117                         match MaybeReadable::read(reader)? {
8118                                 Some(event) => pending_events_read.push_back((event, None)),
8119                                 None => continue,
8120                         }
8121                 }
8122
8123                 let background_event_count: u64 = Readable::read(reader)?;
8124                 for _ in 0..background_event_count {
8125                         match <u8 as Readable>::read(reader)? {
8126                                 0 => {
8127                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
8128                                         // however we really don't (and never did) need them - we regenerate all
8129                                         // on-startup monitor updates.
8130                                         let _: OutPoint = Readable::read(reader)?;
8131                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
8132                                 }
8133                                 _ => return Err(DecodeError::InvalidValue),
8134                         }
8135                 }
8136
8137                 for (node_id, peer_mtx) in per_peer_state.iter() {
8138                         let peer_state = peer_mtx.lock().unwrap();
8139                         for (_, chan) in peer_state.channel_by_id.iter() {
8140                                 for update in chan.uncompleted_unblocked_mon_updates() {
8141                                         if let Some(funding_txo) = chan.get_funding_txo() {
8142                                                 log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for channel {}",
8143                                                         update.update_id, log_bytes!(funding_txo.to_channel_id()));
8144                                                 pending_background_events.push(
8145                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8146                                                                 counterparty_node_id: *node_id, funding_txo, update: update.clone(),
8147                                                         });
8148                                         } else {
8149                                                 return Err(DecodeError::InvalidValue);
8150                                         }
8151                                 }
8152                         }
8153                 }
8154
8155                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
8156                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
8157
8158                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
8159                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
8160                 for _ in 0..pending_inbound_payment_count {
8161                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
8162                                 return Err(DecodeError::InvalidValue);
8163                         }
8164                 }
8165
8166                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
8167                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
8168                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
8169                 for _ in 0..pending_outbound_payments_count_compat {
8170                         let session_priv = Readable::read(reader)?;
8171                         let payment = PendingOutboundPayment::Legacy {
8172                                 session_privs: [session_priv].iter().cloned().collect()
8173                         };
8174                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
8175                                 return Err(DecodeError::InvalidValue)
8176                         };
8177                 }
8178
8179                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
8180                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
8181                 let mut pending_outbound_payments = None;
8182                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
8183                 let mut received_network_pubkey: Option<PublicKey> = None;
8184                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
8185                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
8186                 let mut claimable_htlc_purposes = None;
8187                 let mut claimable_htlc_onion_fields = None;
8188                 let mut pending_claiming_payments = Some(HashMap::new());
8189                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
8190                 let mut events_override = None;
8191                 read_tlv_fields!(reader, {
8192                         (1, pending_outbound_payments_no_retry, option),
8193                         (2, pending_intercepted_htlcs, option),
8194                         (3, pending_outbound_payments, option),
8195                         (4, pending_claiming_payments, option),
8196                         (5, received_network_pubkey, option),
8197                         (6, monitor_update_blocked_actions_per_peer, option),
8198                         (7, fake_scid_rand_bytes, option),
8199                         (8, events_override, option),
8200                         (9, claimable_htlc_purposes, vec_type),
8201                         (11, probing_cookie_secret, option),
8202                         (13, claimable_htlc_onion_fields, optional_vec),
8203                 });
8204                 if fake_scid_rand_bytes.is_none() {
8205                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
8206                 }
8207
8208                 if probing_cookie_secret.is_none() {
8209                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
8210                 }
8211
8212                 if let Some(events) = events_override {
8213                         pending_events_read = events;
8214                 }
8215
8216                 if !channel_closures.is_empty() {
8217                         pending_events_read.append(&mut channel_closures);
8218                 }
8219
8220                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
8221                         pending_outbound_payments = Some(pending_outbound_payments_compat);
8222                 } else if pending_outbound_payments.is_none() {
8223                         let mut outbounds = HashMap::new();
8224                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
8225                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
8226                         }
8227                         pending_outbound_payments = Some(outbounds);
8228                 }
8229                 let pending_outbounds = OutboundPayments {
8230                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
8231                         retry_lock: Mutex::new(())
8232                 };
8233
8234                 {
8235                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
8236                         // ChannelMonitor data for any channels for which we do not have authorative state
8237                         // (i.e. those for which we just force-closed above or we otherwise don't have a
8238                         // corresponding `Channel` at all).
8239                         // This avoids several edge-cases where we would otherwise "forget" about pending
8240                         // payments which are still in-flight via their on-chain state.
8241                         // We only rebuild the pending payments map if we were most recently serialized by
8242                         // 0.0.102+
8243                         for (_, monitor) in args.channel_monitors.iter() {
8244                                 if id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id()).is_none() {
8245                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
8246                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
8247                                                         if path.hops.is_empty() {
8248                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
8249                                                                 return Err(DecodeError::InvalidValue);
8250                                                         }
8251
8252                                                         let path_amt = path.final_value_msat();
8253                                                         let mut session_priv_bytes = [0; 32];
8254                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
8255                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
8256                                                                 hash_map::Entry::Occupied(mut entry) => {
8257                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
8258                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
8259                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
8260                                                                 },
8261                                                                 hash_map::Entry::Vacant(entry) => {
8262                                                                         let path_fee = path.fee_msat();
8263                                                                         entry.insert(PendingOutboundPayment::Retryable {
8264                                                                                 retry_strategy: None,
8265                                                                                 attempts: PaymentAttempts::new(),
8266                                                                                 payment_params: None,
8267                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
8268                                                                                 payment_hash: htlc.payment_hash,
8269                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
8270                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
8271                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
8272                                                                                 pending_amt_msat: path_amt,
8273                                                                                 pending_fee_msat: Some(path_fee),
8274                                                                                 total_msat: path_amt,
8275                                                                                 starting_block_height: best_block_height,
8276                                                                         });
8277                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
8278                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
8279                                                                 }
8280                                                         }
8281                                                 }
8282                                         }
8283                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
8284                                                 match htlc_source {
8285                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
8286                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
8287                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
8288                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
8289                                                                 };
8290                                                                 // The ChannelMonitor is now responsible for this HTLC's
8291                                                                 // failure/success and will let us know what its outcome is. If we
8292                                                                 // still have an entry for this HTLC in `forward_htlcs` or
8293                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
8294                                                                 // the monitor was when forwarding the payment.
8295                                                                 forward_htlcs.retain(|_, forwards| {
8296                                                                         forwards.retain(|forward| {
8297                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
8298                                                                                         if pending_forward_matches_htlc(&htlc_info) {
8299                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
8300                                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8301                                                                                                 false
8302                                                                                         } else { true }
8303                                                                                 } else { true }
8304                                                                         });
8305                                                                         !forwards.is_empty()
8306                                                                 });
8307                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
8308                                                                         if pending_forward_matches_htlc(&htlc_info) {
8309                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
8310                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8311                                                                                 pending_events_read.retain(|(event, _)| {
8312                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
8313                                                                                                 intercepted_id != ev_id
8314                                                                                         } else { true }
8315                                                                                 });
8316                                                                                 false
8317                                                                         } else { true }
8318                                                                 });
8319                                                         },
8320                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
8321                                                                 if let Some(preimage) = preimage_opt {
8322                                                                         let pending_events = Mutex::new(pending_events_read);
8323                                                                         // Note that we set `from_onchain` to "false" here,
8324                                                                         // deliberately keeping the pending payment around forever.
8325                                                                         // Given it should only occur when we have a channel we're
8326                                                                         // force-closing for being stale that's okay.
8327                                                                         // The alternative would be to wipe the state when claiming,
8328                                                                         // generating a `PaymentPathSuccessful` event but regenerating
8329                                                                         // it and the `PaymentSent` on every restart until the
8330                                                                         // `ChannelMonitor` is removed.
8331                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv, path, false, &pending_events, &args.logger);
8332                                                                         pending_events_read = pending_events.into_inner().unwrap();
8333                                                                 }
8334                                                         },
8335                                                 }
8336                                         }
8337                                 }
8338                         }
8339                 }
8340
8341                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
8342                         // If we have pending HTLCs to forward, assume we either dropped a
8343                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
8344                         // shut down before the timer hit. Either way, set the time_forwardable to a small
8345                         // constant as enough time has likely passed that we should simply handle the forwards
8346                         // now, or at least after the user gets a chance to reconnect to our peers.
8347                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
8348                                 time_forwardable: Duration::from_secs(2),
8349                         }, None));
8350                 }
8351
8352                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
8353                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
8354
8355                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
8356                 if let Some(purposes) = claimable_htlc_purposes {
8357                         if purposes.len() != claimable_htlcs_list.len() {
8358                                 return Err(DecodeError::InvalidValue);
8359                         }
8360                         if let Some(onion_fields) = claimable_htlc_onion_fields {
8361                                 if onion_fields.len() != claimable_htlcs_list.len() {
8362                                         return Err(DecodeError::InvalidValue);
8363                                 }
8364                                 for (purpose, (onion, (payment_hash, htlcs))) in
8365                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
8366                                 {
8367                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8368                                                 purpose, htlcs, onion_fields: onion,
8369                                         });
8370                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8371                                 }
8372                         } else {
8373                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
8374                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8375                                                 purpose, htlcs, onion_fields: None,
8376                                         });
8377                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8378                                 }
8379                         }
8380                 } else {
8381                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
8382                         // include a `_legacy_hop_data` in the `OnionPayload`.
8383                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
8384                                 if htlcs.is_empty() {
8385                                         return Err(DecodeError::InvalidValue);
8386                                 }
8387                                 let purpose = match &htlcs[0].onion_payload {
8388                                         OnionPayload::Invoice { _legacy_hop_data } => {
8389                                                 if let Some(hop_data) = _legacy_hop_data {
8390                                                         events::PaymentPurpose::InvoicePayment {
8391                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
8392                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
8393                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
8394                                                                                 Ok((payment_preimage, _)) => payment_preimage,
8395                                                                                 Err(()) => {
8396                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", log_bytes!(payment_hash.0));
8397                                                                                         return Err(DecodeError::InvalidValue);
8398                                                                                 }
8399                                                                         }
8400                                                                 },
8401                                                                 payment_secret: hop_data.payment_secret,
8402                                                         }
8403                                                 } else { return Err(DecodeError::InvalidValue); }
8404                                         },
8405                                         OnionPayload::Spontaneous(payment_preimage) =>
8406                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
8407                                 };
8408                                 claimable_payments.insert(payment_hash, ClaimablePayment {
8409                                         purpose, htlcs, onion_fields: None,
8410                                 });
8411                         }
8412                 }
8413
8414                 let mut secp_ctx = Secp256k1::new();
8415                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
8416
8417                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
8418                         Ok(key) => key,
8419                         Err(()) => return Err(DecodeError::InvalidValue)
8420                 };
8421                 if let Some(network_pubkey) = received_network_pubkey {
8422                         if network_pubkey != our_network_pubkey {
8423                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
8424                                 return Err(DecodeError::InvalidValue);
8425                         }
8426                 }
8427
8428                 let mut outbound_scid_aliases = HashSet::new();
8429                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
8430                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8431                         let peer_state = &mut *peer_state_lock;
8432                         for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
8433                                 if chan.outbound_scid_alias() == 0 {
8434                                         let mut outbound_scid_alias;
8435                                         loop {
8436                                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias
8437                                                         .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
8438                                                 if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
8439                                         }
8440                                         chan.set_outbound_scid_alias(outbound_scid_alias);
8441                                 } else if !outbound_scid_aliases.insert(chan.outbound_scid_alias()) {
8442                                         // Note that in rare cases its possible to hit this while reading an older
8443                                         // channel if we just happened to pick a colliding outbound alias above.
8444                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
8445                                         return Err(DecodeError::InvalidValue);
8446                                 }
8447                                 if chan.is_usable() {
8448                                         if short_to_chan_info.insert(chan.outbound_scid_alias(), (chan.get_counterparty_node_id(), *chan_id)).is_some() {
8449                                                 // Note that in rare cases its possible to hit this while reading an older
8450                                                 // channel if we just happened to pick a colliding outbound alias above.
8451                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
8452                                                 return Err(DecodeError::InvalidValue);
8453                                         }
8454                                 }
8455                         }
8456                 }
8457
8458                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
8459
8460                 for (_, monitor) in args.channel_monitors.iter() {
8461                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
8462                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
8463                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
8464                                         let mut claimable_amt_msat = 0;
8465                                         let mut receiver_node_id = Some(our_network_pubkey);
8466                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
8467                                         if phantom_shared_secret.is_some() {
8468                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
8469                                                         .expect("Failed to get node_id for phantom node recipient");
8470                                                 receiver_node_id = Some(phantom_pubkey)
8471                                         }
8472                                         for claimable_htlc in payment.htlcs {
8473                                                 claimable_amt_msat += claimable_htlc.value;
8474
8475                                                 // Add a holding-cell claim of the payment to the Channel, which should be
8476                                                 // applied ~immediately on peer reconnection. Because it won't generate a
8477                                                 // new commitment transaction we can just provide the payment preimage to
8478                                                 // the corresponding ChannelMonitor and nothing else.
8479                                                 //
8480                                                 // We do so directly instead of via the normal ChannelMonitor update
8481                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
8482                                                 // we're not allowed to call it directly yet. Further, we do the update
8483                                                 // without incrementing the ChannelMonitor update ID as there isn't any
8484                                                 // reason to.
8485                                                 // If we were to generate a new ChannelMonitor update ID here and then
8486                                                 // crash before the user finishes block connect we'd end up force-closing
8487                                                 // this channel as well. On the flip side, there's no harm in restarting
8488                                                 // without the new monitor persisted - we'll end up right back here on
8489                                                 // restart.
8490                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
8491                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
8492                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
8493                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8494                                                         let peer_state = &mut *peer_state_lock;
8495                                                         if let Some(channel) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
8496                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
8497                                                         }
8498                                                 }
8499                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
8500                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
8501                                                 }
8502                                         }
8503                                         pending_events_read.push_back((events::Event::PaymentClaimed {
8504                                                 receiver_node_id,
8505                                                 payment_hash,
8506                                                 purpose: payment.purpose,
8507                                                 amount_msat: claimable_amt_msat,
8508                                         }, None));
8509                                 }
8510                         }
8511                 }
8512
8513                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
8514                         if let Some(peer_state) = per_peer_state.get(&node_id) {
8515                                 for (_, actions) in monitor_update_blocked_actions.iter() {
8516                                         for action in actions.iter() {
8517                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
8518                                                         downstream_counterparty_and_funding_outpoint:
8519                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
8520                                                 } = action {
8521                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
8522                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
8523                                                                         .entry(blocked_channel_outpoint.to_channel_id())
8524                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
8525                                                         }
8526                                                 }
8527                                         }
8528                                 }
8529                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
8530                         } else {
8531                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
8532                                 return Err(DecodeError::InvalidValue);
8533                         }
8534                 }
8535
8536                 let channel_manager = ChannelManager {
8537                         genesis_hash,
8538                         fee_estimator: bounded_fee_estimator,
8539                         chain_monitor: args.chain_monitor,
8540                         tx_broadcaster: args.tx_broadcaster,
8541                         router: args.router,
8542
8543                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
8544
8545                         inbound_payment_key: expanded_inbound_key,
8546                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
8547                         pending_outbound_payments: pending_outbounds,
8548                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
8549
8550                         forward_htlcs: Mutex::new(forward_htlcs),
8551                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
8552                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
8553                         id_to_peer: Mutex::new(id_to_peer),
8554                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
8555                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
8556
8557                         probing_cookie_secret: probing_cookie_secret.unwrap(),
8558
8559                         our_network_pubkey,
8560                         secp_ctx,
8561
8562                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
8563
8564                         per_peer_state: FairRwLock::new(per_peer_state),
8565
8566                         pending_events: Mutex::new(pending_events_read),
8567                         pending_events_processor: AtomicBool::new(false),
8568                         pending_background_events: Mutex::new(pending_background_events),
8569                         total_consistency_lock: RwLock::new(()),
8570                         #[cfg(debug_assertions)]
8571                         background_events_processed_since_startup: AtomicBool::new(false),
8572                         persistence_notifier: Notifier::new(),
8573
8574                         entropy_source: args.entropy_source,
8575                         node_signer: args.node_signer,
8576                         signer_provider: args.signer_provider,
8577
8578                         logger: args.logger,
8579                         default_configuration: args.default_config,
8580                 };
8581
8582                 for htlc_source in failed_htlcs.drain(..) {
8583                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
8584                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
8585                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
8586                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
8587                 }
8588
8589                 //TODO: Broadcast channel update for closed channels, but only after we've made a
8590                 //connection or two.
8591
8592                 Ok((best_block_hash.clone(), channel_manager))
8593         }
8594 }
8595
8596 #[cfg(test)]
8597 mod tests {
8598         use bitcoin::hashes::Hash;
8599         use bitcoin::hashes::sha256::Hash as Sha256;
8600         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
8601         use core::sync::atomic::Ordering;
8602         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
8603         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
8604         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
8605         use crate::ln::functional_test_utils::*;
8606         use crate::ln::msgs;
8607         use crate::ln::msgs::ChannelMessageHandler;
8608         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
8609         use crate::util::errors::APIError;
8610         use crate::util::test_utils;
8611         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
8612         use crate::sign::EntropySource;
8613
8614         #[test]
8615         fn test_notify_limits() {
8616                 // Check that a few cases which don't require the persistence of a new ChannelManager,
8617                 // indeed, do not cause the persistence of a new ChannelManager.
8618                 let chanmon_cfgs = create_chanmon_cfgs(3);
8619                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
8620                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
8621                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
8622
8623                 // All nodes start with a persistable update pending as `create_network` connects each node
8624                 // with all other nodes to make most tests simpler.
8625                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8626                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8627                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
8628
8629                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
8630
8631                 // We check that the channel info nodes have doesn't change too early, even though we try
8632                 // to connect messages with new values
8633                 chan.0.contents.fee_base_msat *= 2;
8634                 chan.1.contents.fee_base_msat *= 2;
8635                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
8636                         &nodes[1].node.get_our_node_id()).pop().unwrap();
8637                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
8638                         &nodes[0].node.get_our_node_id()).pop().unwrap();
8639
8640                 // The first two nodes (which opened a channel) should now require fresh persistence
8641                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8642                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8643                 // ... but the last node should not.
8644                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8645                 // After persisting the first two nodes they should no longer need fresh persistence.
8646                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8647                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8648
8649                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
8650                 // about the channel.
8651                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
8652                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
8653                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8654
8655                 // The nodes which are a party to the channel should also ignore messages from unrelated
8656                 // parties.
8657                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8658                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8659                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8660                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8661                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8662                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8663
8664                 // At this point the channel info given by peers should still be the same.
8665                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8666                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8667
8668                 // An earlier version of handle_channel_update didn't check the directionality of the
8669                 // update message and would always update the local fee info, even if our peer was
8670                 // (spuriously) forwarding us our own channel_update.
8671                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
8672                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
8673                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
8674
8675                 // First deliver each peers' own message, checking that the node doesn't need to be
8676                 // persisted and that its channel info remains the same.
8677                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
8678                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
8679                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8680                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8681                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8682                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8683
8684                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
8685                 // the channel info has updated.
8686                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
8687                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
8688                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8689                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8690                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
8691                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
8692         }
8693
8694         #[test]
8695         fn test_keysend_dup_hash_partial_mpp() {
8696                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
8697                 // expected.
8698                 let chanmon_cfgs = create_chanmon_cfgs(2);
8699                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8700                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8701                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8702                 create_announced_chan_between_nodes(&nodes, 0, 1);
8703
8704                 // First, send a partial MPP payment.
8705                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
8706                 let mut mpp_route = route.clone();
8707                 mpp_route.paths.push(mpp_route.paths[0].clone());
8708
8709                 let payment_id = PaymentId([42; 32]);
8710                 // Use the utility function send_payment_along_path to send the payment with MPP data which
8711                 // indicates there are more HTLCs coming.
8712                 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.
8713                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
8714                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
8715                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
8716                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
8717                 check_added_monitors!(nodes[0], 1);
8718                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8719                 assert_eq!(events.len(), 1);
8720                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
8721
8722                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
8723                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8724                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8725                 check_added_monitors!(nodes[0], 1);
8726                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8727                 assert_eq!(events.len(), 1);
8728                 let ev = events.drain(..).next().unwrap();
8729                 let payment_event = SendEvent::from_event(ev);
8730                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8731                 check_added_monitors!(nodes[1], 0);
8732                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8733                 expect_pending_htlcs_forwardable!(nodes[1]);
8734                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
8735                 check_added_monitors!(nodes[1], 1);
8736                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8737                 assert!(updates.update_add_htlcs.is_empty());
8738                 assert!(updates.update_fulfill_htlcs.is_empty());
8739                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8740                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8741                 assert!(updates.update_fee.is_none());
8742                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8743                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8744                 expect_payment_failed!(nodes[0], our_payment_hash, true);
8745
8746                 // Send the second half of the original MPP payment.
8747                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
8748                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
8749                 check_added_monitors!(nodes[0], 1);
8750                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8751                 assert_eq!(events.len(), 1);
8752                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
8753
8754                 // Claim the full MPP payment. Note that we can't use a test utility like
8755                 // claim_funds_along_route because the ordering of the messages causes the second half of the
8756                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
8757                 // lightning messages manually.
8758                 nodes[1].node.claim_funds(payment_preimage);
8759                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
8760                 check_added_monitors!(nodes[1], 2);
8761
8762                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8763                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
8764                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
8765                 check_added_monitors!(nodes[0], 1);
8766                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8767                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
8768                 check_added_monitors!(nodes[1], 1);
8769                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8770                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
8771                 check_added_monitors!(nodes[1], 1);
8772                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8773                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
8774                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
8775                 check_added_monitors!(nodes[0], 1);
8776                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
8777                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
8778                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8779                 check_added_monitors!(nodes[0], 1);
8780                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
8781                 check_added_monitors!(nodes[1], 1);
8782                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
8783                 check_added_monitors!(nodes[1], 1);
8784                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8785                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
8786                 check_added_monitors!(nodes[0], 1);
8787
8788                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
8789                 // path's success and a PaymentPathSuccessful event for each path's success.
8790                 let events = nodes[0].node.get_and_clear_pending_events();
8791                 assert_eq!(events.len(), 3);
8792                 match events[0] {
8793                         Event::PaymentSent { payment_id: ref id, payment_preimage: ref preimage, payment_hash: ref hash, .. } => {
8794                                 assert_eq!(Some(payment_id), *id);
8795                                 assert_eq!(payment_preimage, *preimage);
8796                                 assert_eq!(our_payment_hash, *hash);
8797                         },
8798                         _ => panic!("Unexpected event"),
8799                 }
8800                 match events[1] {
8801                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8802                                 assert_eq!(payment_id, *actual_payment_id);
8803                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8804                                 assert_eq!(route.paths[0], *path);
8805                         },
8806                         _ => panic!("Unexpected event"),
8807                 }
8808                 match events[2] {
8809                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8810                                 assert_eq!(payment_id, *actual_payment_id);
8811                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8812                                 assert_eq!(route.paths[0], *path);
8813                         },
8814                         _ => panic!("Unexpected event"),
8815                 }
8816         }
8817
8818         #[test]
8819         fn test_keysend_dup_payment_hash() {
8820                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
8821                 //      outbound regular payment fails as expected.
8822                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
8823                 //      fails as expected.
8824                 let chanmon_cfgs = create_chanmon_cfgs(2);
8825                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8826                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8827                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8828                 create_announced_chan_between_nodes(&nodes, 0, 1);
8829                 let scorer = test_utils::TestScorer::new();
8830                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8831
8832                 // To start (1), send a regular payment but don't claim it.
8833                 let expected_route = [&nodes[1]];
8834                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
8835
8836                 // Next, attempt a keysend payment and make sure it fails.
8837                 let route_params = RouteParameters {
8838                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV),
8839                         final_value_msat: 100_000,
8840                 };
8841                 let route = find_route(
8842                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
8843                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
8844                 ).unwrap();
8845                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8846                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8847                 check_added_monitors!(nodes[0], 1);
8848                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8849                 assert_eq!(events.len(), 1);
8850                 let ev = events.drain(..).next().unwrap();
8851                 let payment_event = SendEvent::from_event(ev);
8852                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8853                 check_added_monitors!(nodes[1], 0);
8854                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8855                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
8856                 // fails), the second will process the resulting failure and fail the HTLC backward
8857                 expect_pending_htlcs_forwardable!(nodes[1]);
8858                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
8859                 check_added_monitors!(nodes[1], 1);
8860                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8861                 assert!(updates.update_add_htlcs.is_empty());
8862                 assert!(updates.update_fulfill_htlcs.is_empty());
8863                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8864                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8865                 assert!(updates.update_fee.is_none());
8866                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8867                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8868                 expect_payment_failed!(nodes[0], payment_hash, true);
8869
8870                 // Finally, claim the original payment.
8871                 claim_payment(&nodes[0], &expected_route, payment_preimage);
8872
8873                 // To start (2), send a keysend payment but don't claim it.
8874                 let payment_preimage = PaymentPreimage([42; 32]);
8875                 let route = find_route(
8876                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
8877                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
8878                 ).unwrap();
8879                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8880                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8881                 check_added_monitors!(nodes[0], 1);
8882                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8883                 assert_eq!(events.len(), 1);
8884                 let event = events.pop().unwrap();
8885                 let path = vec![&nodes[1]];
8886                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
8887
8888                 // Next, attempt a regular payment and make sure it fails.
8889                 let payment_secret = PaymentSecret([43; 32]);
8890                 nodes[0].node.send_payment_with_route(&route, payment_hash,
8891                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
8892                 check_added_monitors!(nodes[0], 1);
8893                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8894                 assert_eq!(events.len(), 1);
8895                 let ev = events.drain(..).next().unwrap();
8896                 let payment_event = SendEvent::from_event(ev);
8897                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8898                 check_added_monitors!(nodes[1], 0);
8899                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8900                 expect_pending_htlcs_forwardable!(nodes[1]);
8901                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
8902                 check_added_monitors!(nodes[1], 1);
8903                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8904                 assert!(updates.update_add_htlcs.is_empty());
8905                 assert!(updates.update_fulfill_htlcs.is_empty());
8906                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8907                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8908                 assert!(updates.update_fee.is_none());
8909                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8910                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8911                 expect_payment_failed!(nodes[0], payment_hash, true);
8912
8913                 // Finally, succeed the keysend payment.
8914                 claim_payment(&nodes[0], &expected_route, payment_preimage);
8915         }
8916
8917         #[test]
8918         fn test_keysend_hash_mismatch() {
8919                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
8920                 // preimage doesn't match the msg's payment hash.
8921                 let chanmon_cfgs = create_chanmon_cfgs(2);
8922                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8923                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8924                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8925
8926                 let payer_pubkey = nodes[0].node.get_our_node_id();
8927                 let payee_pubkey = nodes[1].node.get_our_node_id();
8928
8929                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
8930                 let route_params = RouteParameters {
8931                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40),
8932                         final_value_msat: 10_000,
8933                 };
8934                 let network_graph = nodes[0].network_graph.clone();
8935                 let first_hops = nodes[0].node.list_usable_channels();
8936                 let scorer = test_utils::TestScorer::new();
8937                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8938                 let route = find_route(
8939                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
8940                         nodes[0].logger, &scorer, &(), &random_seed_bytes
8941                 ).unwrap();
8942
8943                 let test_preimage = PaymentPreimage([42; 32]);
8944                 let mismatch_payment_hash = PaymentHash([43; 32]);
8945                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
8946                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
8947                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
8948                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
8949                 check_added_monitors!(nodes[0], 1);
8950
8951                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8952                 assert_eq!(updates.update_add_htlcs.len(), 1);
8953                 assert!(updates.update_fulfill_htlcs.is_empty());
8954                 assert!(updates.update_fail_htlcs.is_empty());
8955                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8956                 assert!(updates.update_fee.is_none());
8957                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
8958
8959                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
8960         }
8961
8962         #[test]
8963         fn test_keysend_msg_with_secret_err() {
8964                 // Test that we error as expected if we receive a keysend payment that includes a payment secret.
8965                 let chanmon_cfgs = create_chanmon_cfgs(2);
8966                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8967                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8968                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8969
8970                 let payer_pubkey = nodes[0].node.get_our_node_id();
8971                 let payee_pubkey = nodes[1].node.get_our_node_id();
8972
8973                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
8974                 let route_params = RouteParameters {
8975                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40),
8976                         final_value_msat: 10_000,
8977                 };
8978                 let network_graph = nodes[0].network_graph.clone();
8979                 let first_hops = nodes[0].node.list_usable_channels();
8980                 let scorer = test_utils::TestScorer::new();
8981                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8982                 let route = find_route(
8983                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
8984                         nodes[0].logger, &scorer, &(), &random_seed_bytes
8985                 ).unwrap();
8986
8987                 let test_preimage = PaymentPreimage([42; 32]);
8988                 let test_secret = PaymentSecret([43; 32]);
8989                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
8990                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
8991                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
8992                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
8993                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
8994                         PaymentId(payment_hash.0), None, session_privs).unwrap();
8995                 check_added_monitors!(nodes[0], 1);
8996
8997                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8998                 assert_eq!(updates.update_add_htlcs.len(), 1);
8999                 assert!(updates.update_fulfill_htlcs.is_empty());
9000                 assert!(updates.update_fail_htlcs.is_empty());
9001                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9002                 assert!(updates.update_fee.is_none());
9003                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
9004
9005                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
9006         }
9007
9008         #[test]
9009         fn test_multi_hop_missing_secret() {
9010                 let chanmon_cfgs = create_chanmon_cfgs(4);
9011                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
9012                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
9013                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
9014
9015                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
9016                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
9017                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
9018                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
9019
9020                 // Marshall an MPP route.
9021                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
9022                 let path = route.paths[0].clone();
9023                 route.paths.push(path);
9024                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
9025                 route.paths[0].hops[0].short_channel_id = chan_1_id;
9026                 route.paths[0].hops[1].short_channel_id = chan_3_id;
9027                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
9028                 route.paths[1].hops[0].short_channel_id = chan_2_id;
9029                 route.paths[1].hops[1].short_channel_id = chan_4_id;
9030
9031                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
9032                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
9033                 .unwrap_err() {
9034                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
9035                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
9036                         },
9037                         _ => panic!("unexpected error")
9038                 }
9039         }
9040
9041         #[test]
9042         fn test_drop_disconnected_peers_when_removing_channels() {
9043                 let chanmon_cfgs = create_chanmon_cfgs(2);
9044                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9045                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9046                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9047
9048                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9049
9050                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
9051                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9052
9053                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
9054                 check_closed_broadcast!(nodes[0], true);
9055                 check_added_monitors!(nodes[0], 1);
9056                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
9057
9058                 {
9059                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
9060                         // disconnected and the channel between has been force closed.
9061                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
9062                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
9063                         assert_eq!(nodes_0_per_peer_state.len(), 1);
9064                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
9065                 }
9066
9067                 nodes[0].node.timer_tick_occurred();
9068
9069                 {
9070                         // Assert that nodes[1] has now been removed.
9071                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
9072                 }
9073         }
9074
9075         #[test]
9076         fn bad_inbound_payment_hash() {
9077                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
9078                 let chanmon_cfgs = create_chanmon_cfgs(2);
9079                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9080                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9081                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9082
9083                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
9084                 let payment_data = msgs::FinalOnionHopData {
9085                         payment_secret,
9086                         total_msat: 100_000,
9087                 };
9088
9089                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
9090                 // payment verification fails as expected.
9091                 let mut bad_payment_hash = payment_hash.clone();
9092                 bad_payment_hash.0[0] += 1;
9093                 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) {
9094                         Ok(_) => panic!("Unexpected ok"),
9095                         Err(()) => {
9096                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
9097                         }
9098                 }
9099
9100                 // Check that using the original payment hash succeeds.
9101                 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());
9102         }
9103
9104         #[test]
9105         fn test_id_to_peer_coverage() {
9106                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
9107                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
9108                 // the channel is successfully closed.
9109                 let chanmon_cfgs = create_chanmon_cfgs(2);
9110                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9111                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9112                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9113
9114                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
9115                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9116                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
9117                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9118                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9119
9120                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
9121                 let channel_id = &tx.txid().into_inner();
9122                 {
9123                         // Ensure that the `id_to_peer` map is empty until either party has received the
9124                         // funding transaction, and have the real `channel_id`.
9125                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
9126                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9127                 }
9128
9129                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
9130                 {
9131                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
9132                         // as it has the funding transaction.
9133                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9134                         assert_eq!(nodes_0_lock.len(), 1);
9135                         assert!(nodes_0_lock.contains_key(channel_id));
9136                 }
9137
9138                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9139
9140                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9141
9142                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9143                 {
9144                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9145                         assert_eq!(nodes_0_lock.len(), 1);
9146                         assert!(nodes_0_lock.contains_key(channel_id));
9147                 }
9148                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
9149
9150                 {
9151                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
9152                         // as it has the funding transaction.
9153                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9154                         assert_eq!(nodes_1_lock.len(), 1);
9155                         assert!(nodes_1_lock.contains_key(channel_id));
9156                 }
9157                 check_added_monitors!(nodes[1], 1);
9158                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9159                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
9160                 check_added_monitors!(nodes[0], 1);
9161                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
9162                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
9163                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
9164                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
9165
9166                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
9167                 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()));
9168                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
9169                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
9170
9171                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
9172                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
9173                 {
9174                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
9175                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
9176                         // fee for the closing transaction has been negotiated and the parties has the other
9177                         // party's signature for the fee negotiated closing transaction.)
9178                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
9179                         assert_eq!(nodes_0_lock.len(), 1);
9180                         assert!(nodes_0_lock.contains_key(channel_id));
9181                 }
9182
9183                 {
9184                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
9185                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
9186                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
9187                         // kept in the `nodes[1]`'s `id_to_peer` map.
9188                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9189                         assert_eq!(nodes_1_lock.len(), 1);
9190                         assert!(nodes_1_lock.contains_key(channel_id));
9191                 }
9192
9193                 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()));
9194                 {
9195                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
9196                         // therefore has all it needs to fully close the channel (both signatures for the
9197                         // closing transaction).
9198                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
9199                         // fully closed by `nodes[0]`.
9200                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
9201
9202                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
9203                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
9204                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
9205                         assert_eq!(nodes_1_lock.len(), 1);
9206                         assert!(nodes_1_lock.contains_key(channel_id));
9207                 }
9208
9209                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
9210
9211                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
9212                 {
9213                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
9214                         // they both have everything required to fully close the channel.
9215                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
9216                 }
9217                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
9218
9219                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
9220                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
9221         }
9222
9223         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
9224                 let expected_message = format!("Not connected to node: {}", expected_public_key);
9225                 check_api_error_message(expected_message, res_err)
9226         }
9227
9228         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
9229                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
9230                 check_api_error_message(expected_message, res_err)
9231         }
9232
9233         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
9234                 match res_err {
9235                         Err(APIError::APIMisuseError { err }) => {
9236                                 assert_eq!(err, expected_err_message);
9237                         },
9238                         Err(APIError::ChannelUnavailable { err }) => {
9239                                 assert_eq!(err, expected_err_message);
9240                         },
9241                         Ok(_) => panic!("Unexpected Ok"),
9242                         Err(_) => panic!("Unexpected Error"),
9243                 }
9244         }
9245
9246         #[test]
9247         fn test_api_calls_with_unkown_counterparty_node() {
9248                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
9249                 // expected if the `counterparty_node_id` is an unkown peer in the
9250                 // `ChannelManager::per_peer_state` map.
9251                 let chanmon_cfg = create_chanmon_cfgs(2);
9252                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
9253                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
9254                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
9255
9256                 // Dummy values
9257                 let channel_id = [4; 32];
9258                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
9259                 let intercept_id = InterceptId([0; 32]);
9260
9261                 // Test the API functions.
9262                 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);
9263
9264                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
9265
9266                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
9267
9268                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
9269
9270                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
9271
9272                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
9273
9274                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
9275         }
9276
9277         #[test]
9278         fn test_connection_limiting() {
9279                 // Test that we limit un-channel'd peers and un-funded channels properly.
9280                 let chanmon_cfgs = create_chanmon_cfgs(2);
9281                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9282                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9283                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9284
9285                 // Note that create_network connects the nodes together for us
9286
9287                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9288                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9289
9290                 let mut funding_tx = None;
9291                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9292                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9293                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9294
9295                         if idx == 0 {
9296                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9297                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
9298                                 funding_tx = Some(tx.clone());
9299                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
9300                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9301
9302                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9303                                 check_added_monitors!(nodes[1], 1);
9304                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
9305
9306                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9307
9308                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
9309                                 check_added_monitors!(nodes[0], 1);
9310                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
9311                         }
9312                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9313                 }
9314
9315                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
9316                 open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9317                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9318                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9319                         open_channel_msg.temporary_channel_id);
9320
9321                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
9322                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
9323                 // limit.
9324                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
9325                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
9326                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9327                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9328                         peer_pks.push(random_pk);
9329                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9330                                 features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9331                 }
9332                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9333                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9334                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9335                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap_err();
9336
9337                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
9338                 // them if we have too many un-channel'd peers.
9339                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9340                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
9341                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
9342                 for ev in chan_closed_events {
9343                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
9344                 }
9345                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9346                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9347                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9348                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap_err();
9349
9350                 // but of course if the connection is outbound its allowed...
9351                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9352                         features: nodes[0].node.init_features(), remote_network_address: None }, false).unwrap();
9353                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9354
9355                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
9356                 // Even though we accept one more connection from new peers, we won't actually let them
9357                 // open channels.
9358                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
9359                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9360                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
9361                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
9362                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9363                 }
9364                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9365                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9366                         open_channel_msg.temporary_channel_id);
9367
9368                 // Of course, however, outbound channels are always allowed
9369                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
9370                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
9371
9372                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
9373                 // "protected" and can connect again.
9374                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
9375                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9376                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9377                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
9378
9379                 // Further, because the first channel was funded, we can open another channel with
9380                 // last_random_pk.
9381                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9382                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9383         }
9384
9385         #[test]
9386         fn test_outbound_chans_unlimited() {
9387                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
9388                 let chanmon_cfgs = create_chanmon_cfgs(2);
9389                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9390                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9391                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9392
9393                 // Note that create_network connects the nodes together for us
9394
9395                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9396                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9397
9398                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9399                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9400                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9401                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9402                 }
9403
9404                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
9405                 // rejected.
9406                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9407                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9408                         open_channel_msg.temporary_channel_id);
9409
9410                 // but we can still open an outbound channel.
9411                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9412                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
9413
9414                 // but even with such an outbound channel, additional inbound channels will still fail.
9415                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9416                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9417                         open_channel_msg.temporary_channel_id);
9418         }
9419
9420         #[test]
9421         fn test_0conf_limiting() {
9422                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
9423                 // flag set and (sometimes) accept channels as 0conf.
9424                 let chanmon_cfgs = create_chanmon_cfgs(2);
9425                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9426                 let mut settings = test_default_channel_config();
9427                 settings.manually_accept_inbound_channels = true;
9428                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
9429                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9430
9431                 // Note that create_network connects the nodes together for us
9432
9433                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9434                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9435
9436                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
9437                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9438                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9439                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9440                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9441                                 features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9442
9443                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
9444                         let events = nodes[1].node.get_and_clear_pending_events();
9445                         match events[0] {
9446                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
9447                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
9448                                 }
9449                                 _ => panic!("Unexpected event"),
9450                         }
9451                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
9452                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9453                 }
9454
9455                 // If we try to accept a channel from another peer non-0conf it will fail.
9456                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9457                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9458                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9459                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9460                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9461                 let events = nodes[1].node.get_and_clear_pending_events();
9462                 match events[0] {
9463                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9464                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
9465                                         Err(APIError::APIMisuseError { err }) =>
9466                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
9467                                         _ => panic!(),
9468                                 }
9469                         }
9470                         _ => panic!("Unexpected event"),
9471                 }
9472                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9473                         open_channel_msg.temporary_channel_id);
9474
9475                 // ...however if we accept the same channel 0conf it should work just fine.
9476                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9477                 let events = nodes[1].node.get_and_clear_pending_events();
9478                 match events[0] {
9479                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9480                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
9481                         }
9482                         _ => panic!("Unexpected event"),
9483                 }
9484                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9485         }
9486
9487         #[cfg(anchors)]
9488         #[test]
9489         fn test_anchors_zero_fee_htlc_tx_fallback() {
9490                 // Tests that if both nodes support anchors, but the remote node does not want to accept
9491                 // anchor channels at the moment, an error it sent to the local node such that it can retry
9492                 // the channel without the anchors feature.
9493                 let chanmon_cfgs = create_chanmon_cfgs(2);
9494                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9495                 let mut anchors_config = test_default_channel_config();
9496                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
9497                 anchors_config.manually_accept_inbound_channels = true;
9498                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
9499                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9500
9501                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
9502                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9503                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
9504
9505                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9506                 let events = nodes[1].node.get_and_clear_pending_events();
9507                 match events[0] {
9508                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9509                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
9510                         }
9511                         _ => panic!("Unexpected event"),
9512                 }
9513
9514                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
9515                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
9516
9517                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9518                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
9519
9520                 check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
9521         }
9522
9523         #[test]
9524         fn test_update_channel_config() {
9525                 let chanmon_cfg = create_chanmon_cfgs(2);
9526                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
9527                 let mut user_config = test_default_channel_config();
9528                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
9529                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
9530                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
9531                 let channel = &nodes[0].node.list_channels()[0];
9532
9533                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
9534                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9535                 assert_eq!(events.len(), 0);
9536
9537                 user_config.channel_config.forwarding_fee_base_msat += 10;
9538                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
9539                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
9540                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9541                 assert_eq!(events.len(), 1);
9542                 match &events[0] {
9543                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9544                         _ => panic!("expected BroadcastChannelUpdate event"),
9545                 }
9546
9547                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
9548                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9549                 assert_eq!(events.len(), 0);
9550
9551                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
9552                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
9553                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
9554                         ..Default::default()
9555                 }).unwrap();
9556                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
9557                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9558                 assert_eq!(events.len(), 1);
9559                 match &events[0] {
9560                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9561                         _ => panic!("expected BroadcastChannelUpdate event"),
9562                 }
9563
9564                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
9565                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
9566                         forwarding_fee_proportional_millionths: Some(new_fee),
9567                         ..Default::default()
9568                 }).unwrap();
9569                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
9570                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
9571                 let events = nodes[0].node.get_and_clear_pending_msg_events();
9572                 assert_eq!(events.len(), 1);
9573                 match &events[0] {
9574                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
9575                         _ => panic!("expected BroadcastChannelUpdate event"),
9576                 }
9577         }
9578 }
9579
9580 #[cfg(ldk_bench)]
9581 pub mod bench {
9582         use crate::chain::Listen;
9583         use crate::chain::chainmonitor::{ChainMonitor, Persist};
9584         use crate::sign::{KeysManager, InMemorySigner};
9585         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
9586         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
9587         use crate::ln::functional_test_utils::*;
9588         use crate::ln::msgs::{ChannelMessageHandler, Init};
9589         use crate::routing::gossip::NetworkGraph;
9590         use crate::routing::router::{PaymentParameters, RouteParameters};
9591         use crate::util::test_utils;
9592         use crate::util::config::UserConfig;
9593
9594         use bitcoin::hashes::Hash;
9595         use bitcoin::hashes::sha256::Hash as Sha256;
9596         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
9597
9598         use crate::sync::{Arc, Mutex};
9599
9600         use criterion::Criterion;
9601
9602         type Manager<'a, P> = ChannelManager<
9603                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
9604                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
9605                         &'a test_utils::TestLogger, &'a P>,
9606                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
9607                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
9608                 &'a test_utils::TestLogger>;
9609
9610         struct ANodeHolder<'a, P: Persist<InMemorySigner>> {
9611                 node: &'a Manager<'a, P>,
9612         }
9613         impl<'a, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'a, P> {
9614                 type CM = Manager<'a, P>;
9615                 #[inline]
9616                 fn node(&self) -> &Manager<'a, P> { self.node }
9617                 #[inline]
9618                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
9619         }
9620
9621         pub fn bench_sends(bench: &mut Criterion) {
9622                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
9623         }
9624
9625         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
9626                 // Do a simple benchmark of sending a payment back and forth between two nodes.
9627                 // Note that this is unrealistic as each payment send will require at least two fsync
9628                 // calls per node.
9629                 let network = bitcoin::Network::Testnet;
9630
9631                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
9632                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
9633                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
9634                 let scorer = Mutex::new(test_utils::TestScorer::new());
9635                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
9636
9637                 let mut config: UserConfig = Default::default();
9638                 config.channel_handshake_config.minimum_depth = 1;
9639
9640                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
9641                 let seed_a = [1u8; 32];
9642                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
9643                 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 {
9644                         network,
9645                         best_block: BestBlock::from_network(network),
9646                 });
9647                 let node_a_holder = ANodeHolder { node: &node_a };
9648
9649                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
9650                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
9651                 let seed_b = [2u8; 32];
9652                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
9653                 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 {
9654                         network,
9655                         best_block: BestBlock::from_network(network),
9656                 });
9657                 let node_b_holder = ANodeHolder { node: &node_b };
9658
9659                 node_a.peer_connected(&node_b.get_our_node_id(), &Init { features: node_b.init_features(), remote_network_address: None }, true).unwrap();
9660                 node_b.peer_connected(&node_a.get_our_node_id(), &Init { features: node_a.init_features(), remote_network_address: None }, false).unwrap();
9661                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
9662                 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()));
9663                 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()));
9664
9665                 let tx;
9666                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
9667                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
9668                                 value: 8_000_000, script_pubkey: output_script,
9669                         }]};
9670                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
9671                 } else { panic!(); }
9672
9673                 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()));
9674                 let events_b = node_b.get_and_clear_pending_events();
9675                 assert_eq!(events_b.len(), 1);
9676                 match events_b[0] {
9677                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9678                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9679                         },
9680                         _ => panic!("Unexpected event"),
9681                 }
9682
9683                 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()));
9684                 let events_a = node_a.get_and_clear_pending_events();
9685                 assert_eq!(events_a.len(), 1);
9686                 match events_a[0] {
9687                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9688                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9689                         },
9690                         _ => panic!("Unexpected event"),
9691                 }
9692
9693                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
9694
9695                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
9696                 Listen::block_connected(&node_a, &block, 1);
9697                 Listen::block_connected(&node_b, &block, 1);
9698
9699                 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()));
9700                 let msg_events = node_a.get_and_clear_pending_msg_events();
9701                 assert_eq!(msg_events.len(), 2);
9702                 match msg_events[0] {
9703                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
9704                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
9705                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
9706                         },
9707                         _ => panic!(),
9708                 }
9709                 match msg_events[1] {
9710                         MessageSendEvent::SendChannelUpdate { .. } => {},
9711                         _ => panic!(),
9712                 }
9713
9714                 let events_a = node_a.get_and_clear_pending_events();
9715                 assert_eq!(events_a.len(), 1);
9716                 match events_a[0] {
9717                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9718                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9719                         },
9720                         _ => panic!("Unexpected event"),
9721                 }
9722
9723                 let events_b = node_b.get_and_clear_pending_events();
9724                 assert_eq!(events_b.len(), 1);
9725                 match events_b[0] {
9726                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9727                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9728                         },
9729                         _ => panic!("Unexpected event"),
9730                 }
9731
9732                 let mut payment_count: u64 = 0;
9733                 macro_rules! send_payment {
9734                         ($node_a: expr, $node_b: expr) => {
9735                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
9736                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
9737                                 let mut payment_preimage = PaymentPreimage([0; 32]);
9738                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
9739                                 payment_count += 1;
9740                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
9741                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
9742
9743                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
9744                                         PaymentId(payment_hash.0), RouteParameters {
9745                                                 payment_params, final_value_msat: 10_000,
9746                                         }, Retry::Attempts(0)).unwrap();
9747                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
9748                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
9749                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
9750                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
9751                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
9752                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
9753                                 $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()));
9754
9755                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
9756                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
9757                                 $node_b.claim_funds(payment_preimage);
9758                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
9759
9760                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
9761                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
9762                                                 assert_eq!(node_id, $node_a.get_our_node_id());
9763                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
9764                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
9765                                         },
9766                                         _ => panic!("Failed to generate claim event"),
9767                                 }
9768
9769                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
9770                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
9771                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
9772                                 $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()));
9773
9774                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
9775                         }
9776                 }
9777
9778                 bench.bench_function(bench_name, |b| b.iter(|| {
9779                         send_payment!(node_a, node_b);
9780                         send_payment!(node_b, node_a);
9781                 }));
9782         }
9783 }