Help users support sending MPP keysend
[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, 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};
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 type ShutdownResult = (Option<(OutPoint, ChannelMonitorUpdate)>, Vec<(HTLCSource, PaymentHash, PublicKey, [u8; 32])>);
363
364 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
365 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
366 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
367 /// peer_state lock. We then return the set of things that need to be done outside the lock in
368 /// this struct and call handle_error!() on it.
369
370 struct MsgHandleErrInternal {
371         err: msgs::LightningError,
372         chan_id: Option<([u8; 32], u128)>, // If Some a channel of ours has been closed
373         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
374 }
375 impl MsgHandleErrInternal {
376         #[inline]
377         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
378                 Self {
379                         err: LightningError {
380                                 err: err.clone(),
381                                 action: msgs::ErrorAction::SendErrorMessage {
382                                         msg: msgs::ErrorMessage {
383                                                 channel_id,
384                                                 data: err
385                                         },
386                                 },
387                         },
388                         chan_id: None,
389                         shutdown_finish: None,
390                 }
391         }
392         #[inline]
393         fn from_no_close(err: msgs::LightningError) -> Self {
394                 Self { err, chan_id: None, shutdown_finish: None }
395         }
396         #[inline]
397         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
398                 Self {
399                         err: LightningError {
400                                 err: err.clone(),
401                                 action: msgs::ErrorAction::SendErrorMessage {
402                                         msg: msgs::ErrorMessage {
403                                                 channel_id,
404                                                 data: err
405                                         },
406                                 },
407                         },
408                         chan_id: Some((channel_id, user_channel_id)),
409                         shutdown_finish: Some((shutdown_res, channel_update)),
410                 }
411         }
412         #[inline]
413         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
414                 Self {
415                         err: match err {
416                                 ChannelError::Warn(msg) =>  LightningError {
417                                         err: msg.clone(),
418                                         action: msgs::ErrorAction::SendWarningMessage {
419                                                 msg: msgs::WarningMessage {
420                                                         channel_id,
421                                                         data: msg
422                                                 },
423                                                 log_level: Level::Warn,
424                                         },
425                                 },
426                                 ChannelError::Ignore(msg) => LightningError {
427                                         err: msg,
428                                         action: msgs::ErrorAction::IgnoreError,
429                                 },
430                                 ChannelError::Close(msg) => LightningError {
431                                         err: msg.clone(),
432                                         action: msgs::ErrorAction::SendErrorMessage {
433                                                 msg: msgs::ErrorMessage {
434                                                         channel_id,
435                                                         data: msg
436                                                 },
437                                         },
438                                 },
439                         },
440                         chan_id: None,
441                         shutdown_finish: None,
442                 }
443         }
444 }
445
446 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
447 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
448 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
449 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
450 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
451
452 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
453 /// be sent in the order they appear in the return value, however sometimes the order needs to be
454 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
455 /// they were originally sent). In those cases, this enum is also returned.
456 #[derive(Clone, PartialEq)]
457 pub(super) enum RAACommitmentOrder {
458         /// Send the CommitmentUpdate messages first
459         CommitmentFirst,
460         /// Send the RevokeAndACK message first
461         RevokeAndACKFirst,
462 }
463
464 /// Information about a payment which is currently being claimed.
465 struct ClaimingPayment {
466         amount_msat: u64,
467         payment_purpose: events::PaymentPurpose,
468         receiver_node_id: PublicKey,
469 }
470 impl_writeable_tlv_based!(ClaimingPayment, {
471         (0, amount_msat, required),
472         (2, payment_purpose, required),
473         (4, receiver_node_id, required),
474 });
475
476 struct ClaimablePayment {
477         purpose: events::PaymentPurpose,
478         onion_fields: Option<RecipientOnionFields>,
479         htlcs: Vec<ClaimableHTLC>,
480 }
481
482 /// Information about claimable or being-claimed payments
483 struct ClaimablePayments {
484         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
485         /// failed/claimed by the user.
486         ///
487         /// Note that, no consistency guarantees are made about the channels given here actually
488         /// existing anymore by the time you go to read them!
489         ///
490         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
491         /// we don't get a duplicate payment.
492         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
493
494         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
495         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
496         /// as an [`events::Event::PaymentClaimed`].
497         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
498 }
499
500 /// Events which we process internally but cannot be procsesed immediately at the generation site
501 /// for some reason. They are handled in timer_tick_occurred, so may be processed with
502 /// quite some time lag.
503 enum BackgroundEvent {
504         /// Handle a ChannelMonitorUpdate
505         ///
506         /// Note that any such events are lost on shutdown, so in general they must be updates which
507         /// are regenerated on startup.
508         MonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
509 }
510
511 #[derive(Debug)]
512 pub(crate) enum MonitorUpdateCompletionAction {
513         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
514         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
515         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
516         /// event can be generated.
517         PaymentClaimed { payment_hash: PaymentHash },
518         /// Indicates an [`events::Event`] should be surfaced to the user.
519         EmitEvent { event: events::Event },
520 }
521
522 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
523         (0, PaymentClaimed) => { (0, payment_hash, required) },
524         (2, EmitEvent) => { (0, event, upgradable_required) },
525 );
526
527 #[derive(Clone, Debug, PartialEq, Eq)]
528 pub(crate) enum EventCompletionAction {
529         ReleaseRAAChannelMonitorUpdate {
530                 counterparty_node_id: PublicKey,
531                 channel_funding_outpoint: OutPoint,
532         },
533 }
534 impl_writeable_tlv_based_enum!(EventCompletionAction,
535         (0, ReleaseRAAChannelMonitorUpdate) => {
536                 (0, channel_funding_outpoint, required),
537                 (2, counterparty_node_id, required),
538         };
539 );
540
541 /// State we hold per-peer.
542 pub(super) struct PeerState<Signer: ChannelSigner> {
543         /// `temporary_channel_id` or `channel_id` -> `channel`.
544         ///
545         /// Holds all channels where the peer is the counterparty. Once a channel has been assigned a
546         /// `channel_id`, the `temporary_channel_id` key in the map is updated and is replaced by the
547         /// `channel_id`.
548         pub(super) channel_by_id: HashMap<[u8; 32], Channel<Signer>>,
549         /// The latest `InitFeatures` we heard from the peer.
550         latest_features: InitFeatures,
551         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
552         /// for broadcast messages, where ordering isn't as strict).
553         pub(super) pending_msg_events: Vec<MessageSendEvent>,
554         /// Map from a specific channel to some action(s) that should be taken when all pending
555         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
556         ///
557         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
558         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
559         /// channels with a peer this will just be one allocation and will amount to a linear list of
560         /// channels to walk, avoiding the whole hashing rigmarole.
561         ///
562         /// Note that the channel may no longer exist. For example, if a channel was closed but we
563         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
564         /// for a missing channel. While a malicious peer could construct a second channel with the
565         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
566         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
567         /// duplicates do not occur, so such channels should fail without a monitor update completing.
568         monitor_update_blocked_actions: BTreeMap<[u8; 32], Vec<MonitorUpdateCompletionAction>>,
569         /// The peer is currently connected (i.e. we've seen a
570         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
571         /// [`ChannelMessageHandler::peer_disconnected`].
572         is_connected: bool,
573 }
574
575 impl <Signer: ChannelSigner> PeerState<Signer> {
576         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
577         /// If true is passed for `require_disconnected`, the function will return false if we haven't
578         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
579         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
580                 if require_disconnected && self.is_connected {
581                         return false
582                 }
583                 self.channel_by_id.is_empty() && self.monitor_update_blocked_actions.is_empty()
584         }
585 }
586
587 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
588 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
589 ///
590 /// For users who don't want to bother doing their own payment preimage storage, we also store that
591 /// here.
592 ///
593 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
594 /// and instead encoding it in the payment secret.
595 struct PendingInboundPayment {
596         /// The payment secret that the sender must use for us to accept this payment
597         payment_secret: PaymentSecret,
598         /// Time at which this HTLC expires - blocks with a header time above this value will result in
599         /// this payment being removed.
600         expiry_time: u64,
601         /// Arbitrary identifier the user specifies (or not)
602         user_payment_id: u64,
603         // Other required attributes of the payment, optionally enforced:
604         payment_preimage: Option<PaymentPreimage>,
605         min_value_msat: Option<u64>,
606 }
607
608 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
609 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
610 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
611 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
612 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
613 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
614 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
615 /// of [`KeysManager`] and [`DefaultRouter`].
616 ///
617 /// This is not exported to bindings users as Arcs don't make sense in bindings
618 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
619         Arc<M>,
620         Arc<T>,
621         Arc<KeysManager>,
622         Arc<KeysManager>,
623         Arc<KeysManager>,
624         Arc<F>,
625         Arc<DefaultRouter<
626                 Arc<NetworkGraph<Arc<L>>>,
627                 Arc<L>,
628                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
629                 ProbabilisticScoringFeeParameters,
630                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
631         >>,
632         Arc<L>
633 >;
634
635 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
636 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
637 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
638 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
639 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
640 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
641 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
642 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
643 /// of [`KeysManager`] and [`DefaultRouter`].
644 ///
645 /// This is not exported to bindings users as Arcs don't make sense in bindings
646 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>;
647
648 /// A trivial trait which describes any [`ChannelManager`] used in testing.
649 #[cfg(any(test, feature = "_test_utils"))]
650 pub trait AChannelManager {
651         type Watch: chain::Watch<Self::Signer>;
652         type M: Deref<Target = Self::Watch>;
653         type Broadcaster: BroadcasterInterface;
654         type T: Deref<Target = Self::Broadcaster>;
655         type EntropySource: EntropySource;
656         type ES: Deref<Target = Self::EntropySource>;
657         type NodeSigner: NodeSigner;
658         type NS: Deref<Target = Self::NodeSigner>;
659         type Signer: WriteableEcdsaChannelSigner;
660         type SignerProvider: SignerProvider<Signer = Self::Signer>;
661         type SP: Deref<Target = Self::SignerProvider>;
662         type FeeEstimator: FeeEstimator;
663         type F: Deref<Target = Self::FeeEstimator>;
664         type Router: Router;
665         type R: Deref<Target = Self::Router>;
666         type Logger: Logger;
667         type L: Deref<Target = Self::Logger>;
668         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
669 }
670 #[cfg(any(test, feature = "_test_utils"))]
671 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
672 for ChannelManager<M, T, ES, NS, SP, F, R, L>
673 where
674         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer> + Sized,
675         T::Target: BroadcasterInterface + Sized,
676         ES::Target: EntropySource + Sized,
677         NS::Target: NodeSigner + Sized,
678         SP::Target: SignerProvider + Sized,
679         F::Target: FeeEstimator + Sized,
680         R::Target: Router + Sized,
681         L::Target: Logger + Sized,
682 {
683         type Watch = M::Target;
684         type M = M;
685         type Broadcaster = T::Target;
686         type T = T;
687         type EntropySource = ES::Target;
688         type ES = ES;
689         type NodeSigner = NS::Target;
690         type NS = NS;
691         type Signer = <SP::Target as SignerProvider>::Signer;
692         type SignerProvider = SP::Target;
693         type SP = SP;
694         type FeeEstimator = F::Target;
695         type F = F;
696         type Router = R::Target;
697         type R = R;
698         type Logger = L::Target;
699         type L = L;
700         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
701 }
702
703 /// Manager which keeps track of a number of channels and sends messages to the appropriate
704 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
705 ///
706 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
707 /// to individual Channels.
708 ///
709 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
710 /// all peers during write/read (though does not modify this instance, only the instance being
711 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
712 /// called [`funding_transaction_generated`] for outbound channels) being closed.
713 ///
714 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
715 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
716 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
717 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
718 /// the serialization process). If the deserialized version is out-of-date compared to the
719 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
720 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
721 ///
722 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
723 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
724 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
725 ///
726 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
727 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
728 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
729 /// offline for a full minute. In order to track this, you must call
730 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
731 ///
732 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
733 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
734 /// not have a channel with being unable to connect to us or open new channels with us if we have
735 /// many peers with unfunded channels.
736 ///
737 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
738 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
739 /// never limited. Please ensure you limit the count of such channels yourself.
740 ///
741 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
742 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
743 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
744 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
745 /// you're using lightning-net-tokio.
746 ///
747 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
748 /// [`funding_created`]: msgs::FundingCreated
749 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
750 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
751 /// [`update_channel`]: chain::Watch::update_channel
752 /// [`ChannelUpdate`]: msgs::ChannelUpdate
753 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
754 /// [`read`]: ReadableArgs::read
755 //
756 // Lock order:
757 // The tree structure below illustrates the lock order requirements for the different locks of the
758 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
759 // and should then be taken in the order of the lowest to the highest level in the tree.
760 // Note that locks on different branches shall not be taken at the same time, as doing so will
761 // create a new lock order for those specific locks in the order they were taken.
762 //
763 // Lock order tree:
764 //
765 // `total_consistency_lock`
766 //  |
767 //  |__`forward_htlcs`
768 //  |   |
769 //  |   |__`pending_intercepted_htlcs`
770 //  |
771 //  |__`per_peer_state`
772 //  |   |
773 //  |   |__`pending_inbound_payments`
774 //  |       |
775 //  |       |__`claimable_payments`
776 //  |       |
777 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
778 //  |           |
779 //  |           |__`peer_state`
780 //  |               |
781 //  |               |__`id_to_peer`
782 //  |               |
783 //  |               |__`short_to_chan_info`
784 //  |               |
785 //  |               |__`outbound_scid_aliases`
786 //  |               |
787 //  |               |__`best_block`
788 //  |               |
789 //  |               |__`pending_events`
790 //  |                   |
791 //  |                   |__`pending_background_events`
792 //
793 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
794 where
795         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
796         T::Target: BroadcasterInterface,
797         ES::Target: EntropySource,
798         NS::Target: NodeSigner,
799         SP::Target: SignerProvider,
800         F::Target: FeeEstimator,
801         R::Target: Router,
802         L::Target: Logger,
803 {
804         default_configuration: UserConfig,
805         genesis_hash: BlockHash,
806         fee_estimator: LowerBoundedFeeEstimator<F>,
807         chain_monitor: M,
808         tx_broadcaster: T,
809         #[allow(unused)]
810         router: R,
811
812         /// See `ChannelManager` struct-level documentation for lock order requirements.
813         #[cfg(test)]
814         pub(super) best_block: RwLock<BestBlock>,
815         #[cfg(not(test))]
816         best_block: RwLock<BestBlock>,
817         secp_ctx: Secp256k1<secp256k1::All>,
818
819         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
820         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
821         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
822         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
823         ///
824         /// See `ChannelManager` struct-level documentation for lock order requirements.
825         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
826
827         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
828         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
829         /// (if the channel has been force-closed), however we track them here to prevent duplicative
830         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
831         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
832         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
833         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
834         /// after reloading from disk while replaying blocks against ChannelMonitors.
835         ///
836         /// See `PendingOutboundPayment` documentation for more info.
837         ///
838         /// See `ChannelManager` struct-level documentation for lock order requirements.
839         pending_outbound_payments: OutboundPayments,
840
841         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
842         ///
843         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
844         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
845         /// and via the classic SCID.
846         ///
847         /// Note that no consistency guarantees are made about the existence of a channel with the
848         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
849         ///
850         /// See `ChannelManager` struct-level documentation for lock order requirements.
851         #[cfg(test)]
852         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
853         #[cfg(not(test))]
854         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
855         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
856         /// until the user tells us what we should do with them.
857         ///
858         /// See `ChannelManager` struct-level documentation for lock order requirements.
859         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
860
861         /// The sets of payments which are claimable or currently being claimed. See
862         /// [`ClaimablePayments`]' individual field docs for more info.
863         ///
864         /// See `ChannelManager` struct-level documentation for lock order requirements.
865         claimable_payments: Mutex<ClaimablePayments>,
866
867         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
868         /// and some closed channels which reached a usable state prior to being closed. This is used
869         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
870         /// active channel list on load.
871         ///
872         /// See `ChannelManager` struct-level documentation for lock order requirements.
873         outbound_scid_aliases: Mutex<HashSet<u64>>,
874
875         /// `channel_id` -> `counterparty_node_id`.
876         ///
877         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
878         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
879         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
880         ///
881         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
882         /// the corresponding channel for the event, as we only have access to the `channel_id` during
883         /// the handling of the events.
884         ///
885         /// Note that no consistency guarantees are made about the existence of a peer with the
886         /// `counterparty_node_id` in our other maps.
887         ///
888         /// TODO:
889         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
890         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
891         /// would break backwards compatability.
892         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
893         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
894         /// required to access the channel with the `counterparty_node_id`.
895         ///
896         /// See `ChannelManager` struct-level documentation for lock order requirements.
897         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
898
899         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
900         ///
901         /// Outbound SCID aliases are added here once the channel is available for normal use, with
902         /// SCIDs being added once the funding transaction is confirmed at the channel's required
903         /// confirmation depth.
904         ///
905         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
906         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
907         /// channel with the `channel_id` in our other maps.
908         ///
909         /// See `ChannelManager` struct-level documentation for lock order requirements.
910         #[cfg(test)]
911         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
912         #[cfg(not(test))]
913         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, [u8; 32])>>,
914
915         our_network_pubkey: PublicKey,
916
917         inbound_payment_key: inbound_payment::ExpandedKey,
918
919         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
920         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
921         /// we encrypt the namespace identifier using these bytes.
922         ///
923         /// [fake scids]: crate::util::scid_utils::fake_scid
924         fake_scid_rand_bytes: [u8; 32],
925
926         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
927         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
928         /// keeping additional state.
929         probing_cookie_secret: [u8; 32],
930
931         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
932         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
933         /// very far in the past, and can only ever be up to two hours in the future.
934         highest_seen_timestamp: AtomicUsize,
935
936         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
937         /// basis, as well as the peer's latest features.
938         ///
939         /// If we are connected to a peer we always at least have an entry here, even if no channels
940         /// are currently open with that peer.
941         ///
942         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
943         /// operate on the inner value freely. This opens up for parallel per-peer operation for
944         /// channels.
945         ///
946         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
947         ///
948         /// See `ChannelManager` struct-level documentation for lock order requirements.
949         #[cfg(not(any(test, feature = "_test_utils")))]
950         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
951         #[cfg(any(test, feature = "_test_utils"))]
952         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<<SP::Target as SignerProvider>::Signer>>>>,
953
954         /// The set of events which we need to give to the user to handle. In some cases an event may
955         /// require some further action after the user handles it (currently only blocking a monitor
956         /// update from being handed to the user to ensure the included changes to the channel state
957         /// are handled by the user before they're persisted durably to disk). In that case, the second
958         /// element in the tuple is set to `Some` with further details of the action.
959         ///
960         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
961         /// could be in the middle of being processed without the direct mutex held.
962         ///
963         /// See `ChannelManager` struct-level documentation for lock order requirements.
964         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
965         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
966         pending_events_processor: AtomicBool,
967         /// See `ChannelManager` struct-level documentation for lock order requirements.
968         pending_background_events: Mutex<Vec<BackgroundEvent>>,
969         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
970         /// Essentially just when we're serializing ourselves out.
971         /// Taken first everywhere where we are making changes before any other locks.
972         /// When acquiring this lock in read mode, rather than acquiring it directly, call
973         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
974         /// Notifier the lock contains sends out a notification when the lock is released.
975         total_consistency_lock: RwLock<()>,
976
977         persistence_notifier: Notifier,
978
979         entropy_source: ES,
980         node_signer: NS,
981         signer_provider: SP,
982
983         logger: L,
984 }
985
986 /// Chain-related parameters used to construct a new `ChannelManager`.
987 ///
988 /// Typically, the block-specific parameters are derived from the best block hash for the network,
989 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
990 /// are not needed when deserializing a previously constructed `ChannelManager`.
991 #[derive(Clone, Copy, PartialEq)]
992 pub struct ChainParameters {
993         /// The network for determining the `chain_hash` in Lightning messages.
994         pub network: Network,
995
996         /// The hash and height of the latest block successfully connected.
997         ///
998         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
999         pub best_block: BestBlock,
1000 }
1001
1002 #[derive(Copy, Clone, PartialEq)]
1003 enum NotifyOption {
1004         DoPersist,
1005         SkipPersist,
1006 }
1007
1008 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1009 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1010 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1011 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1012 /// sending the aforementioned notification (since the lock being released indicates that the
1013 /// updates are ready for persistence).
1014 ///
1015 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1016 /// notify or not based on whether relevant changes have been made, providing a closure to
1017 /// `optionally_notify` which returns a `NotifyOption`.
1018 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1019         persistence_notifier: &'a Notifier,
1020         should_persist: F,
1021         // We hold onto this result so the lock doesn't get released immediately.
1022         _read_guard: RwLockReadGuard<'a, ()>,
1023 }
1024
1025 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1026         fn notify_on_drop(lock: &'a RwLock<()>, notifier: &'a Notifier) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1027                 PersistenceNotifierGuard::optionally_notify(lock, notifier, || -> NotifyOption { NotifyOption::DoPersist })
1028         }
1029
1030         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1031                 let read_guard = lock.read().unwrap();
1032
1033                 PersistenceNotifierGuard {
1034                         persistence_notifier: notifier,
1035                         should_persist: persist_check,
1036                         _read_guard: read_guard,
1037                 }
1038         }
1039 }
1040
1041 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1042         fn drop(&mut self) {
1043                 if (self.should_persist)() == NotifyOption::DoPersist {
1044                         self.persistence_notifier.notify();
1045                 }
1046         }
1047 }
1048
1049 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1050 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1051 ///
1052 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1053 ///
1054 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1055 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1056 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1057 /// the maximum required amount in lnd as of March 2021.
1058 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1059
1060 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1061 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1062 ///
1063 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1064 ///
1065 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1066 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1067 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1068 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1069 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1070 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1071 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1072 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1073 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1074 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1075 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1076 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1077 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1078
1079 /// Minimum CLTV difference between the current block height and received inbound payments.
1080 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1081 /// this value.
1082 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1083 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1084 // a payment was being routed, so we add an extra block to be safe.
1085 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1086
1087 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1088 // ie that if the next-hop peer fails the HTLC within
1089 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1090 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1091 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1092 // LATENCY_GRACE_PERIOD_BLOCKS.
1093 #[deny(const_err)]
1094 #[allow(dead_code)]
1095 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;
1096
1097 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1098 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1099 #[deny(const_err)]
1100 #[allow(dead_code)]
1101 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1102
1103 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1104 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1105
1106 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
1107 /// idempotency of payments by [`PaymentId`]. See
1108 /// [`OutboundPayments::remove_stale_resolved_payments`].
1109 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
1110
1111 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1112 /// until we mark the channel disabled and gossip the update.
1113 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1114
1115 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1116 /// we mark the channel enabled and gossip the update.
1117 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1118
1119 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1120 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1121 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1122 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1123
1124 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1125 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1126 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1127
1128 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1129 /// many peers we reject new (inbound) connections.
1130 const MAX_NO_CHANNEL_PEERS: usize = 250;
1131
1132 /// Information needed for constructing an invoice route hint for this channel.
1133 #[derive(Clone, Debug, PartialEq)]
1134 pub struct CounterpartyForwardingInfo {
1135         /// Base routing fee in millisatoshis.
1136         pub fee_base_msat: u32,
1137         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1138         pub fee_proportional_millionths: u32,
1139         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1140         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1141         /// `cltv_expiry_delta` for more details.
1142         pub cltv_expiry_delta: u16,
1143 }
1144
1145 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1146 /// to better separate parameters.
1147 #[derive(Clone, Debug, PartialEq)]
1148 pub struct ChannelCounterparty {
1149         /// The node_id of our counterparty
1150         pub node_id: PublicKey,
1151         /// The Features the channel counterparty provided upon last connection.
1152         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1153         /// many routing-relevant features are present in the init context.
1154         pub features: InitFeatures,
1155         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1156         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1157         /// claiming at least this value on chain.
1158         ///
1159         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1160         ///
1161         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1162         pub unspendable_punishment_reserve: u64,
1163         /// Information on the fees and requirements that the counterparty requires when forwarding
1164         /// payments to us through this channel.
1165         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1166         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1167         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1168         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1169         pub outbound_htlc_minimum_msat: Option<u64>,
1170         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1171         pub outbound_htlc_maximum_msat: Option<u64>,
1172 }
1173
1174 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1175 #[derive(Clone, Debug, PartialEq)]
1176 pub struct ChannelDetails {
1177         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1178         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1179         /// Note that this means this value is *not* persistent - it can change once during the
1180         /// lifetime of the channel.
1181         pub channel_id: [u8; 32],
1182         /// Parameters which apply to our counterparty. See individual fields for more information.
1183         pub counterparty: ChannelCounterparty,
1184         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1185         /// our counterparty already.
1186         ///
1187         /// Note that, if this has been set, `channel_id` will be equivalent to
1188         /// `funding_txo.unwrap().to_channel_id()`.
1189         pub funding_txo: Option<OutPoint>,
1190         /// The features which this channel operates with. See individual features for more info.
1191         ///
1192         /// `None` until negotiation completes and the channel type is finalized.
1193         pub channel_type: Option<ChannelTypeFeatures>,
1194         /// The position of the funding transaction in the chain. None if the funding transaction has
1195         /// not yet been confirmed and the channel fully opened.
1196         ///
1197         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1198         /// payments instead of this. See [`get_inbound_payment_scid`].
1199         ///
1200         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1201         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1202         ///
1203         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1204         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1205         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1206         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1207         /// [`confirmations_required`]: Self::confirmations_required
1208         pub short_channel_id: Option<u64>,
1209         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1210         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1211         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1212         /// `Some(0)`).
1213         ///
1214         /// This will be `None` as long as the channel is not available for routing outbound payments.
1215         ///
1216         /// [`short_channel_id`]: Self::short_channel_id
1217         /// [`confirmations_required`]: Self::confirmations_required
1218         pub outbound_scid_alias: Option<u64>,
1219         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1220         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1221         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1222         /// when they see a payment to be routed to us.
1223         ///
1224         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1225         /// previous values for inbound payment forwarding.
1226         ///
1227         /// [`short_channel_id`]: Self::short_channel_id
1228         pub inbound_scid_alias: Option<u64>,
1229         /// The value, in satoshis, of this channel as appears in the funding output
1230         pub channel_value_satoshis: u64,
1231         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1232         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1233         /// this value on chain.
1234         ///
1235         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1236         ///
1237         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1238         ///
1239         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1240         pub unspendable_punishment_reserve: Option<u64>,
1241         /// The `user_channel_id` passed in to create_channel, or a random value if the channel was
1242         /// inbound. This may be zero for inbound channels serialized with LDK versions prior to
1243         /// 0.0.113.
1244         pub user_channel_id: u128,
1245         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1246         /// which is applied to commitment and HTLC transactions.
1247         ///
1248         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1249         pub feerate_sat_per_1000_weight: Option<u32>,
1250         /// Our total balance.  This is the amount we would get if we close the channel.
1251         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1252         /// amount is not likely to be recoverable on close.
1253         ///
1254         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1255         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1256         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1257         /// This does not consider any on-chain fees.
1258         ///
1259         /// See also [`ChannelDetails::outbound_capacity_msat`]
1260         pub balance_msat: u64,
1261         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1262         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1263         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1264         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1265         ///
1266         /// See also [`ChannelDetails::balance_msat`]
1267         ///
1268         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1269         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1270         /// should be able to spend nearly this amount.
1271         pub outbound_capacity_msat: u64,
1272         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1273         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1274         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1275         /// to use a limit as close as possible to the HTLC limit we can currently send.
1276         ///
1277         /// See also [`ChannelDetails::balance_msat`] and [`ChannelDetails::outbound_capacity_msat`].
1278         pub next_outbound_htlc_limit_msat: u64,
1279         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1280         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1281         /// available for inclusion in new inbound HTLCs).
1282         /// Note that there are some corner cases not fully handled here, so the actual available
1283         /// inbound capacity may be slightly higher than this.
1284         ///
1285         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1286         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1287         /// However, our counterparty should be able to spend nearly this amount.
1288         pub inbound_capacity_msat: u64,
1289         /// The number of required confirmations on the funding transaction before the funding will be
1290         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1291         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1292         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1293         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1294         ///
1295         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1296         ///
1297         /// [`is_outbound`]: ChannelDetails::is_outbound
1298         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1299         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1300         pub confirmations_required: Option<u32>,
1301         /// The current number of confirmations on the funding transaction.
1302         ///
1303         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1304         pub confirmations: Option<u32>,
1305         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1306         /// until we can claim our funds after we force-close the channel. During this time our
1307         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1308         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1309         /// time to claim our non-HTLC-encumbered funds.
1310         ///
1311         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1312         pub force_close_spend_delay: Option<u16>,
1313         /// True if the channel was initiated (and thus funded) by us.
1314         pub is_outbound: bool,
1315         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1316         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1317         /// required confirmation count has been reached (and we were connected to the peer at some
1318         /// point after the funding transaction received enough confirmations). The required
1319         /// confirmation count is provided in [`confirmations_required`].
1320         ///
1321         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1322         pub is_channel_ready: bool,
1323         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1324         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1325         ///
1326         /// This is a strict superset of `is_channel_ready`.
1327         pub is_usable: bool,
1328         /// True if this channel is (or will be) publicly-announced.
1329         pub is_public: bool,
1330         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1331         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1332         pub inbound_htlc_minimum_msat: Option<u64>,
1333         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1334         pub inbound_htlc_maximum_msat: Option<u64>,
1335         /// Set of configurable parameters that affect channel operation.
1336         ///
1337         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1338         pub config: Option<ChannelConfig>,
1339 }
1340
1341 impl ChannelDetails {
1342         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1343         /// This should be used for providing invoice hints or in any other context where our
1344         /// counterparty will forward a payment to us.
1345         ///
1346         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1347         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1348         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1349                 self.inbound_scid_alias.or(self.short_channel_id)
1350         }
1351
1352         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1353         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1354         /// we're sending or forwarding a payment outbound over this channel.
1355         ///
1356         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1357         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1358         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1359                 self.short_channel_id.or(self.outbound_scid_alias)
1360         }
1361
1362         fn from_channel<Signer: WriteableEcdsaChannelSigner>(channel: &Channel<Signer>,
1363                 best_block_height: u32, latest_features: InitFeatures) -> Self {
1364
1365                 let balance = channel.get_available_balances();
1366                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1367                         channel.get_holder_counterparty_selected_channel_reserve_satoshis();
1368                 ChannelDetails {
1369                         channel_id: channel.channel_id(),
1370                         counterparty: ChannelCounterparty {
1371                                 node_id: channel.get_counterparty_node_id(),
1372                                 features: latest_features,
1373                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1374                                 forwarding_info: channel.counterparty_forwarding_info(),
1375                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1376                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1377                                 // message (as they are always the first message from the counterparty).
1378                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1379                                 // default `0` value set by `Channel::new_outbound`.
1380                                 outbound_htlc_minimum_msat: if channel.have_received_message() {
1381                                         Some(channel.get_counterparty_htlc_minimum_msat()) } else { None },
1382                                 outbound_htlc_maximum_msat: channel.get_counterparty_htlc_maximum_msat(),
1383                         },
1384                         funding_txo: channel.get_funding_txo(),
1385                         // Note that accept_channel (or open_channel) is always the first message, so
1386                         // `have_received_message` indicates that type negotiation has completed.
1387                         channel_type: if channel.have_received_message() { Some(channel.get_channel_type().clone()) } else { None },
1388                         short_channel_id: channel.get_short_channel_id(),
1389                         outbound_scid_alias: if channel.is_usable() { Some(channel.outbound_scid_alias()) } else { None },
1390                         inbound_scid_alias: channel.latest_inbound_scid_alias(),
1391                         channel_value_satoshis: channel.get_value_satoshis(),
1392                         feerate_sat_per_1000_weight: Some(channel.get_feerate_sat_per_1000_weight()),
1393                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1394                         balance_msat: balance.balance_msat,
1395                         inbound_capacity_msat: balance.inbound_capacity_msat,
1396                         outbound_capacity_msat: balance.outbound_capacity_msat,
1397                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1398                         user_channel_id: channel.get_user_id(),
1399                         confirmations_required: channel.minimum_depth(),
1400                         confirmations: Some(channel.get_funding_tx_confirmations(best_block_height)),
1401                         force_close_spend_delay: channel.get_counterparty_selected_contest_delay(),
1402                         is_outbound: channel.is_outbound(),
1403                         is_channel_ready: channel.is_usable(),
1404                         is_usable: channel.is_live(),
1405                         is_public: channel.should_announce(),
1406                         inbound_htlc_minimum_msat: Some(channel.get_holder_htlc_minimum_msat()),
1407                         inbound_htlc_maximum_msat: channel.get_holder_htlc_maximum_msat(),
1408                         config: Some(channel.config()),
1409                 }
1410         }
1411 }
1412
1413 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1414 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1415 #[derive(Debug, PartialEq)]
1416 pub enum RecentPaymentDetails {
1417         /// When a payment is still being sent and awaiting successful delivery.
1418         Pending {
1419                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1420                 /// abandoned.
1421                 payment_hash: PaymentHash,
1422                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1423                 /// not just the amount currently inflight.
1424                 total_msat: u64,
1425         },
1426         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1427         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1428         /// payment is removed from tracking.
1429         Fulfilled {
1430                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1431                 /// made before LDK version 0.0.104.
1432                 payment_hash: Option<PaymentHash>,
1433         },
1434         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1435         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1436         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1437         Abandoned {
1438                 /// Hash of the payment that we have given up trying to send.
1439                 payment_hash: PaymentHash,
1440         },
1441 }
1442
1443 /// Route hints used in constructing invoices for [phantom node payents].
1444 ///
1445 /// [phantom node payments]: crate::sign::PhantomKeysManager
1446 #[derive(Clone)]
1447 pub struct PhantomRouteHints {
1448         /// The list of channels to be included in the invoice route hints.
1449         pub channels: Vec<ChannelDetails>,
1450         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1451         /// route hints.
1452         pub phantom_scid: u64,
1453         /// The pubkey of the real backing node that would ultimately receive the payment.
1454         pub real_node_pubkey: PublicKey,
1455 }
1456
1457 macro_rules! handle_error {
1458         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1459                 // In testing, ensure there are no deadlocks where the lock is already held upon
1460                 // entering the macro.
1461                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1462                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1463
1464                 match $internal {
1465                         Ok(msg) => Ok(msg),
1466                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish }) => {
1467                                 let mut msg_events = Vec::with_capacity(2);
1468
1469                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1470                                         $self.finish_force_close_channel(shutdown_res);
1471                                         if let Some(update) = update_option {
1472                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1473                                                         msg: update
1474                                                 });
1475                                         }
1476                                         if let Some((channel_id, user_channel_id)) = chan_id {
1477                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1478                                                         channel_id, user_channel_id,
1479                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() }
1480                                                 }, None));
1481                                         }
1482                                 }
1483
1484                                 log_error!($self.logger, "{}", err.err);
1485                                 if let msgs::ErrorAction::IgnoreError = err.action {
1486                                 } else {
1487                                         msg_events.push(events::MessageSendEvent::HandleError {
1488                                                 node_id: $counterparty_node_id,
1489                                                 action: err.action.clone()
1490                                         });
1491                                 }
1492
1493                                 if !msg_events.is_empty() {
1494                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1495                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1496                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1497                                                 peer_state.pending_msg_events.append(&mut msg_events);
1498                                         }
1499                                 }
1500
1501                                 // Return error in case higher-API need one
1502                                 Err(err)
1503                         },
1504                 }
1505         } }
1506 }
1507
1508 macro_rules! update_maps_on_chan_removal {
1509         ($self: expr, $channel: expr) => {{
1510                 $self.id_to_peer.lock().unwrap().remove(&$channel.channel_id());
1511                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1512                 if let Some(short_id) = $channel.get_short_channel_id() {
1513                         short_to_chan_info.remove(&short_id);
1514                 } else {
1515                         // If the channel was never confirmed on-chain prior to its closure, remove the
1516                         // outbound SCID alias we used for it from the collision-prevention set. While we
1517                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1518                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1519                         // opening a million channels with us which are closed before we ever reach the funding
1520                         // stage.
1521                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel.outbound_scid_alias());
1522                         debug_assert!(alias_removed);
1523                 }
1524                 short_to_chan_info.remove(&$channel.outbound_scid_alias());
1525         }}
1526 }
1527
1528 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1529 macro_rules! convert_chan_err {
1530         ($self: ident, $err: expr, $channel: expr, $channel_id: expr) => {
1531                 match $err {
1532                         ChannelError::Warn(msg) => {
1533                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1534                         },
1535                         ChannelError::Ignore(msg) => {
1536                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1537                         },
1538                         ChannelError::Close(msg) => {
1539                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1540                                 update_maps_on_chan_removal!($self, $channel);
1541                                 let shutdown_res = $channel.force_shutdown(true);
1542                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.get_user_id(),
1543                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok()))
1544                         },
1545                 }
1546         }
1547 }
1548
1549 macro_rules! break_chan_entry {
1550         ($self: ident, $res: expr, $entry: expr) => {
1551                 match $res {
1552                         Ok(res) => res,
1553                         Err(e) => {
1554                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1555                                 if drop {
1556                                         $entry.remove_entry();
1557                                 }
1558                                 break Err(res);
1559                         }
1560                 }
1561         }
1562 }
1563
1564 macro_rules! try_chan_entry {
1565         ($self: ident, $res: expr, $entry: expr) => {
1566                 match $res {
1567                         Ok(res) => res,
1568                         Err(e) => {
1569                                 let (drop, res) = convert_chan_err!($self, e, $entry.get_mut(), $entry.key());
1570                                 if drop {
1571                                         $entry.remove_entry();
1572                                 }
1573                                 return Err(res);
1574                         }
1575                 }
1576         }
1577 }
1578
1579 macro_rules! remove_channel {
1580         ($self: expr, $entry: expr) => {
1581                 {
1582                         let channel = $entry.remove_entry().1;
1583                         update_maps_on_chan_removal!($self, channel);
1584                         channel
1585                 }
1586         }
1587 }
1588
1589 macro_rules! send_channel_ready {
1590         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1591                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1592                         node_id: $channel.get_counterparty_node_id(),
1593                         msg: $channel_ready_msg,
1594                 });
1595                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1596                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1597                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1598                 let outbound_alias_insert = short_to_chan_info.insert($channel.outbound_scid_alias(), ($channel.get_counterparty_node_id(), $channel.channel_id()));
1599                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1600                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1601                 if let Some(real_scid) = $channel.get_short_channel_id() {
1602                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.get_counterparty_node_id(), $channel.channel_id()));
1603                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1604                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1605                 }
1606         }}
1607 }
1608
1609 macro_rules! emit_channel_pending_event {
1610         ($locked_events: expr, $channel: expr) => {
1611                 if $channel.should_emit_channel_pending_event() {
1612                         $locked_events.push_back((events::Event::ChannelPending {
1613                                 channel_id: $channel.channel_id(),
1614                                 former_temporary_channel_id: $channel.temporary_channel_id(),
1615                                 counterparty_node_id: $channel.get_counterparty_node_id(),
1616                                 user_channel_id: $channel.get_user_id(),
1617                                 funding_txo: $channel.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1618                         }, None));
1619                         $channel.set_channel_pending_event_emitted();
1620                 }
1621         }
1622 }
1623
1624 macro_rules! emit_channel_ready_event {
1625         ($locked_events: expr, $channel: expr) => {
1626                 if $channel.should_emit_channel_ready_event() {
1627                         debug_assert!($channel.channel_pending_event_emitted());
1628                         $locked_events.push_back((events::Event::ChannelReady {
1629                                 channel_id: $channel.channel_id(),
1630                                 user_channel_id: $channel.get_user_id(),
1631                                 counterparty_node_id: $channel.get_counterparty_node_id(),
1632                                 channel_type: $channel.get_channel_type().clone(),
1633                         }, None));
1634                         $channel.set_channel_ready_event_emitted();
1635                 }
1636         }
1637 }
1638
1639 macro_rules! handle_monitor_update_completion {
1640         ($self: ident, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1641                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1642                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1643                         $self.best_block.read().unwrap().height());
1644                 let counterparty_node_id = $chan.get_counterparty_node_id();
1645                 let channel_update = if updates.channel_ready.is_some() && $chan.is_usable() {
1646                         // We only send a channel_update in the case where we are just now sending a
1647                         // channel_ready and the channel is in a usable state. We may re-send a
1648                         // channel_update later through the announcement_signatures process for public
1649                         // channels, but there's no reason not to just inform our counterparty of our fees
1650                         // now.
1651                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1652                                 Some(events::MessageSendEvent::SendChannelUpdate {
1653                                         node_id: counterparty_node_id,
1654                                         msg,
1655                                 })
1656                         } else { None }
1657                 } else { None };
1658
1659                 let update_actions = $peer_state.monitor_update_blocked_actions
1660                         .remove(&$chan.channel_id()).unwrap_or(Vec::new());
1661
1662                 let htlc_forwards = $self.handle_channel_resumption(
1663                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1664                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1665                         updates.funding_broadcastable, updates.channel_ready,
1666                         updates.announcement_sigs);
1667                 if let Some(upd) = channel_update {
1668                         $peer_state.pending_msg_events.push(upd);
1669                 }
1670
1671                 let channel_id = $chan.channel_id();
1672                 core::mem::drop($peer_state_lock);
1673                 core::mem::drop($per_peer_state_lock);
1674
1675                 $self.handle_monitor_update_completion_actions(update_actions);
1676
1677                 if let Some(forwards) = htlc_forwards {
1678                         $self.forward_htlcs(&mut [forwards][..]);
1679                 }
1680                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1681                 for failure in updates.failed_htlcs.drain(..) {
1682                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1683                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1684                 }
1685         } }
1686 }
1687
1688 macro_rules! handle_new_monitor_update {
1689         ($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) => { {
1690                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1691                 // any case so that it won't deadlock.
1692                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1693                 match $update_res {
1694                         ChannelMonitorUpdateStatus::InProgress => {
1695                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
1696                                         log_bytes!($chan.channel_id()[..]));
1697                                 Ok(())
1698                         },
1699                         ChannelMonitorUpdateStatus::PermanentFailure => {
1700                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
1701                                         log_bytes!($chan.channel_id()[..]));
1702                                 update_maps_on_chan_removal!($self, $chan);
1703                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown(
1704                                         "ChannelMonitor storage failure".to_owned(), $chan.channel_id(),
1705                                         $chan.get_user_id(), $chan.force_shutdown(false),
1706                                         $self.get_channel_update_for_broadcast(&$chan).ok()));
1707                                 $remove;
1708                                 res
1709                         },
1710                         ChannelMonitorUpdateStatus::Completed => {
1711                                 $chan.complete_one_mon_update($update_id);
1712                                 if $chan.no_monitor_updates_pending() {
1713                                         handle_monitor_update_completion!($self, $update_id, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
1714                                 }
1715                                 Ok(())
1716                         },
1717                 }
1718         } };
1719         ($self: ident, $update_res: expr, $update_id: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
1720                 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())
1721         }
1722 }
1723
1724 macro_rules! process_events_body {
1725         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
1726                 let mut processed_all_events = false;
1727                 while !processed_all_events {
1728                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
1729                                 return;
1730                         }
1731
1732                         let mut result = NotifyOption::SkipPersist;
1733
1734                         {
1735                                 // We'll acquire our total consistency lock so that we can be sure no other
1736                                 // persists happen while processing monitor events.
1737                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
1738
1739                                 // TODO: This behavior should be documented. It's unintuitive that we query
1740                                 // ChannelMonitors when clearing other events.
1741                                 if $self.process_pending_monitor_events() {
1742                                         result = NotifyOption::DoPersist;
1743                                 }
1744                         }
1745
1746                         let pending_events = $self.pending_events.lock().unwrap().clone();
1747                         let num_events = pending_events.len();
1748                         if !pending_events.is_empty() {
1749                                 result = NotifyOption::DoPersist;
1750                         }
1751
1752                         let mut post_event_actions = Vec::new();
1753
1754                         for (event, action_opt) in pending_events {
1755                                 $event_to_handle = event;
1756                                 $handle_event;
1757                                 if let Some(action) = action_opt {
1758                                         post_event_actions.push(action);
1759                                 }
1760                         }
1761
1762                         {
1763                                 let mut pending_events = $self.pending_events.lock().unwrap();
1764                                 pending_events.drain(..num_events);
1765                                 processed_all_events = pending_events.is_empty();
1766                                 $self.pending_events_processor.store(false, Ordering::Release);
1767                         }
1768
1769                         if !post_event_actions.is_empty() {
1770                                 $self.handle_post_event_actions(post_event_actions);
1771                                 // If we had some actions, go around again as we may have more events now
1772                                 processed_all_events = false;
1773                         }
1774
1775                         if result == NotifyOption::DoPersist {
1776                                 $self.persistence_notifier.notify();
1777                         }
1778                 }
1779         }
1780 }
1781
1782 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>
1783 where
1784         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
1785         T::Target: BroadcasterInterface,
1786         ES::Target: EntropySource,
1787         NS::Target: NodeSigner,
1788         SP::Target: SignerProvider,
1789         F::Target: FeeEstimator,
1790         R::Target: Router,
1791         L::Target: Logger,
1792 {
1793         /// Constructs a new `ChannelManager` to hold several channels and route between them.
1794         ///
1795         /// This is the main "logic hub" for all channel-related actions, and implements
1796         /// [`ChannelMessageHandler`].
1797         ///
1798         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1799         ///
1800         /// Users need to notify the new `ChannelManager` when a new block is connected or
1801         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
1802         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
1803         /// more details.
1804         ///
1805         /// [`block_connected`]: chain::Listen::block_connected
1806         /// [`block_disconnected`]: chain::Listen::block_disconnected
1807         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
1808         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 {
1809                 let mut secp_ctx = Secp256k1::new();
1810                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
1811                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
1812                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
1813                 ChannelManager {
1814                         default_configuration: config.clone(),
1815                         genesis_hash: genesis_block(params.network).header.block_hash(),
1816                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
1817                         chain_monitor,
1818                         tx_broadcaster,
1819                         router,
1820
1821                         best_block: RwLock::new(params.best_block),
1822
1823                         outbound_scid_aliases: Mutex::new(HashSet::new()),
1824                         pending_inbound_payments: Mutex::new(HashMap::new()),
1825                         pending_outbound_payments: OutboundPayments::new(),
1826                         forward_htlcs: Mutex::new(HashMap::new()),
1827                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
1828                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
1829                         id_to_peer: Mutex::new(HashMap::new()),
1830                         short_to_chan_info: FairRwLock::new(HashMap::new()),
1831
1832                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
1833                         secp_ctx,
1834
1835                         inbound_payment_key: expanded_inbound_key,
1836                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
1837
1838                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
1839
1840                         highest_seen_timestamp: AtomicUsize::new(0),
1841
1842                         per_peer_state: FairRwLock::new(HashMap::new()),
1843
1844                         pending_events: Mutex::new(VecDeque::new()),
1845                         pending_events_processor: AtomicBool::new(false),
1846                         pending_background_events: Mutex::new(Vec::new()),
1847                         total_consistency_lock: RwLock::new(()),
1848                         persistence_notifier: Notifier::new(),
1849
1850                         entropy_source,
1851                         node_signer,
1852                         signer_provider,
1853
1854                         logger,
1855                 }
1856         }
1857
1858         /// Gets the current configuration applied to all new channels.
1859         pub fn get_current_default_configuration(&self) -> &UserConfig {
1860                 &self.default_configuration
1861         }
1862
1863         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
1864                 let height = self.best_block.read().unwrap().height();
1865                 let mut outbound_scid_alias = 0;
1866                 let mut i = 0;
1867                 loop {
1868                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
1869                                 outbound_scid_alias += 1;
1870                         } else {
1871                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
1872                         }
1873                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
1874                                 break;
1875                         }
1876                         i += 1;
1877                         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"); }
1878                 }
1879                 outbound_scid_alias
1880         }
1881
1882         /// Creates a new outbound channel to the given remote node and with the given value.
1883         ///
1884         /// `user_channel_id` will be provided back as in
1885         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
1886         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
1887         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
1888         /// is simply copied to events and otherwise ignored.
1889         ///
1890         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
1891         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
1892         ///
1893         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
1894         /// generate a shutdown scriptpubkey or destination script set by
1895         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
1896         ///
1897         /// Note that we do not check if you are currently connected to the given peer. If no
1898         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
1899         /// the channel eventually being silently forgotten (dropped on reload).
1900         ///
1901         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
1902         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
1903         /// [`ChannelDetails::channel_id`] until after
1904         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
1905         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
1906         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
1907         ///
1908         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
1909         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
1910         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
1911         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> {
1912                 if channel_value_satoshis < 1000 {
1913                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
1914                 }
1915
1916                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
1917                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
1918                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
1919
1920                 let per_peer_state = self.per_peer_state.read().unwrap();
1921
1922                 let peer_state_mutex = per_peer_state.get(&their_network_key)
1923                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
1924
1925                 let mut peer_state = peer_state_mutex.lock().unwrap();
1926                 let channel = {
1927                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
1928                         let their_features = &peer_state.latest_features;
1929                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
1930                         match Channel::new_outbound(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
1931                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
1932                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
1933                         {
1934                                 Ok(res) => res,
1935                                 Err(e) => {
1936                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
1937                                         return Err(e);
1938                                 },
1939                         }
1940                 };
1941                 let res = channel.get_open_channel(self.genesis_hash.clone());
1942
1943                 let temporary_channel_id = channel.channel_id();
1944                 match peer_state.channel_by_id.entry(temporary_channel_id) {
1945                         hash_map::Entry::Occupied(_) => {
1946                                 if cfg!(fuzzing) {
1947                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
1948                                 } else {
1949                                         panic!("RNG is bad???");
1950                                 }
1951                         },
1952                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
1953                 }
1954
1955                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
1956                         node_id: their_network_key,
1957                         msg: res,
1958                 });
1959                 Ok(temporary_channel_id)
1960         }
1961
1962         fn list_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<<SP::Target as SignerProvider>::Signer>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
1963                 // Allocate our best estimate of the number of channels we have in the `res`
1964                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
1965                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
1966                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
1967                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
1968                 // the same channel.
1969                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
1970                 {
1971                         let best_block_height = self.best_block.read().unwrap().height();
1972                         let per_peer_state = self.per_peer_state.read().unwrap();
1973                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
1974                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
1975                                 let peer_state = &mut *peer_state_lock;
1976                                 for (_channel_id, channel) in peer_state.channel_by_id.iter().filter(f) {
1977                                         let details = ChannelDetails::from_channel(channel, best_block_height,
1978                                                 peer_state.latest_features.clone());
1979                                         res.push(details);
1980                                 }
1981                         }
1982                 }
1983                 res
1984         }
1985
1986         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
1987         /// more information.
1988         pub fn list_channels(&self) -> Vec<ChannelDetails> {
1989                 self.list_channels_with_filter(|_| true)
1990         }
1991
1992         /// Gets the list of usable channels, in random order. Useful as an argument to
1993         /// [`Router::find_route`] to ensure non-announced channels are used.
1994         ///
1995         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
1996         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
1997         /// are.
1998         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
1999                 // Note we use is_live here instead of usable which leads to somewhat confused
2000                 // internal/external nomenclature, but that's ok cause that's probably what the user
2001                 // really wanted anyway.
2002                 self.list_channels_with_filter(|&(_, ref channel)| channel.is_live())
2003         }
2004
2005         /// Gets the list of channels we have with a given counterparty, in random order.
2006         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2007                 let best_block_height = self.best_block.read().unwrap().height();
2008                 let per_peer_state = self.per_peer_state.read().unwrap();
2009
2010                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2011                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2012                         let peer_state = &mut *peer_state_lock;
2013                         let features = &peer_state.latest_features;
2014                         return peer_state.channel_by_id
2015                                 .iter()
2016                                 .map(|(_, channel)|
2017                                         ChannelDetails::from_channel(channel, best_block_height, features.clone()))
2018                                 .collect();
2019                 }
2020                 vec![]
2021         }
2022
2023         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2024         /// successful path, or have unresolved HTLCs.
2025         ///
2026         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2027         /// result of a crash. If such a payment exists, is not listed here, and an
2028         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2029         ///
2030         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2031         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2032                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2033                         .filter_map(|(_, pending_outbound_payment)| match pending_outbound_payment {
2034                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2035                                         Some(RecentPaymentDetails::Pending {
2036                                                 payment_hash: *payment_hash,
2037                                                 total_msat: *total_msat,
2038                                         })
2039                                 },
2040                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2041                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2042                                 },
2043                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2044                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2045                                 },
2046                                 PendingOutboundPayment::Legacy { .. } => None
2047                         })
2048                         .collect()
2049         }
2050
2051         /// Helper function that issues the channel close events
2052         fn issue_channel_close_events(&self, channel: &Channel<<SP::Target as SignerProvider>::Signer>, closure_reason: ClosureReason) {
2053                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2054                 match channel.unbroadcasted_funding() {
2055                         Some(transaction) => {
2056                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2057                                         channel_id: channel.channel_id(), transaction
2058                                 }, None));
2059                         },
2060                         None => {},
2061                 }
2062                 pending_events_lock.push_back((events::Event::ChannelClosed {
2063                         channel_id: channel.channel_id(),
2064                         user_channel_id: channel.get_user_id(),
2065                         reason: closure_reason
2066                 }, None));
2067         }
2068
2069         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> {
2070                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2071
2072                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2073                 let result: Result<(), _> = loop {
2074                         let per_peer_state = self.per_peer_state.read().unwrap();
2075
2076                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2077                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2078
2079                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2080                         let peer_state = &mut *peer_state_lock;
2081                         match peer_state.channel_by_id.entry(channel_id.clone()) {
2082                                 hash_map::Entry::Occupied(mut chan_entry) => {
2083                                         let funding_txo_opt = chan_entry.get().get_funding_txo();
2084                                         let their_features = &peer_state.latest_features;
2085                                         let (shutdown_msg, mut monitor_update_opt, htlcs) = chan_entry.get_mut()
2086                                                 .get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2087                                         failed_htlcs = htlcs;
2088
2089                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2090                                         // here as we don't need the monitor update to complete until we send a
2091                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2092                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2093                                                 node_id: *counterparty_node_id,
2094                                                 msg: shutdown_msg,
2095                                         });
2096
2097                                         // Update the monitor with the shutdown script if necessary.
2098                                         if let Some(monitor_update) = monitor_update_opt.take() {
2099                                                 let update_id = monitor_update.update_id;
2100                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
2101                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
2102                                         }
2103
2104                                         if chan_entry.get().is_shutdown() {
2105                                                 let channel = remove_channel!(self, chan_entry);
2106                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
2107                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2108                                                                 msg: channel_update
2109                                                         });
2110                                                 }
2111                                                 self.issue_channel_close_events(&channel, ClosureReason::HolderForceClosed);
2112                                         }
2113                                         break Ok(());
2114                                 },
2115                                 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) })
2116                         }
2117                 };
2118
2119                 for htlc_source in failed_htlcs.drain(..) {
2120                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2121                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2122                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2123                 }
2124
2125                 let _ = handle_error!(self, result, *counterparty_node_id);
2126                 Ok(())
2127         }
2128
2129         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2130         /// will be accepted on the given channel, and after additional timeout/the closing of all
2131         /// pending HTLCs, the channel will be closed on chain.
2132         ///
2133         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2134         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2135         ///    estimate.
2136         ///  * If our counterparty is the channel initiator, we will require a channel closing
2137         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2138         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2139         ///    counterparty to pay as much fee as they'd like, however.
2140         ///
2141         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2142         ///
2143         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2144         /// generate a shutdown scriptpubkey or destination script set by
2145         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2146         /// channel.
2147         ///
2148         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2149         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2150         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2151         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2152         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2153                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2154         }
2155
2156         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2157         /// will be accepted on the given channel, and after additional timeout/the closing of all
2158         /// pending HTLCs, the channel will be closed on chain.
2159         ///
2160         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2161         /// the channel being closed or not:
2162         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2163         ///    transaction. The upper-bound is set by
2164         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2165         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2166         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2167         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2168         ///    will appear on a force-closure transaction, whichever is lower).
2169         ///
2170         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2171         /// Will fail if a shutdown script has already been set for this channel by
2172         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2173         /// also be compatible with our and the counterparty's features.
2174         ///
2175         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2176         ///
2177         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2178         /// generate a shutdown scriptpubkey or destination script set by
2179         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2180         /// channel.
2181         ///
2182         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2183         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2184         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2185         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2186         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> {
2187                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2188         }
2189
2190         #[inline]
2191         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2192                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2193                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2194                 for htlc_source in failed_htlcs.drain(..) {
2195                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2196                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2197                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2198                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2199                 }
2200                 if let Some((funding_txo, monitor_update)) = monitor_update_option {
2201                         // There isn't anything we can do if we get an update failure - we're already
2202                         // force-closing. The monitor update on the required in-memory copy should broadcast
2203                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2204                         // ignore the result here.
2205                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2206                 }
2207         }
2208
2209         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2210         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2211         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2212         -> Result<PublicKey, APIError> {
2213                 let per_peer_state = self.per_peer_state.read().unwrap();
2214                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2215                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2216                 let mut chan = {
2217                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2218                         let peer_state = &mut *peer_state_lock;
2219                         if let hash_map::Entry::Occupied(chan) = peer_state.channel_by_id.entry(channel_id.clone()) {
2220                                 if let Some(peer_msg) = peer_msg {
2221                                         self.issue_channel_close_events(chan.get(),ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) });
2222                                 } else {
2223                                         self.issue_channel_close_events(chan.get(),ClosureReason::HolderForceClosed);
2224                                 }
2225                                 remove_channel!(self, chan)
2226                         } else {
2227                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*channel_id), peer_node_id) });
2228                         }
2229                 };
2230                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2231                 self.finish_force_close_channel(chan.force_shutdown(broadcast));
2232                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
2233                         let mut peer_state = peer_state_mutex.lock().unwrap();
2234                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2235                                 msg: update
2236                         });
2237                 }
2238
2239                 Ok(chan.get_counterparty_node_id())
2240         }
2241
2242         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2243                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2244                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2245                         Ok(counterparty_node_id) => {
2246                                 let per_peer_state = self.per_peer_state.read().unwrap();
2247                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2248                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2249                                         peer_state.pending_msg_events.push(
2250                                                 events::MessageSendEvent::HandleError {
2251                                                         node_id: counterparty_node_id,
2252                                                         action: msgs::ErrorAction::SendErrorMessage {
2253                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2254                                                         },
2255                                                 }
2256                                         );
2257                                 }
2258                                 Ok(())
2259                         },
2260                         Err(e) => Err(e)
2261                 }
2262         }
2263
2264         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2265         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2266         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2267         /// channel.
2268         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2269         -> Result<(), APIError> {
2270                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2271         }
2272
2273         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2274         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2275         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2276         ///
2277         /// You can always get the latest local transaction(s) to broadcast from
2278         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2279         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2280         -> Result<(), APIError> {
2281                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2282         }
2283
2284         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2285         /// for each to the chain and rejecting new HTLCs on each.
2286         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2287                 for chan in self.list_channels() {
2288                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2289                 }
2290         }
2291
2292         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2293         /// local transaction(s).
2294         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2295                 for chan in self.list_channels() {
2296                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2297                 }
2298         }
2299
2300         fn construct_recv_pending_htlc_info(&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32],
2301                 payment_hash: PaymentHash, amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>) -> Result<PendingHTLCInfo, ReceiveError>
2302         {
2303                 // final_incorrect_cltv_expiry
2304                 if hop_data.outgoing_cltv_value > cltv_expiry {
2305                         return Err(ReceiveError {
2306                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2307                                 err_code: 18,
2308                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2309                         })
2310                 }
2311                 // final_expiry_too_soon
2312                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2313                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2314                 //
2315                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2316                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2317                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2318                 let current_height: u32 = self.best_block.read().unwrap().height();
2319                 if (hop_data.outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2320                         let mut err_data = Vec::with_capacity(12);
2321                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2322                         err_data.extend_from_slice(&current_height.to_be_bytes());
2323                         return Err(ReceiveError {
2324                                 err_code: 0x4000 | 15, err_data,
2325                                 msg: "The final CLTV expiry is too soon to handle",
2326                         });
2327                 }
2328                 if hop_data.amt_to_forward > amt_msat {
2329                         return Err(ReceiveError {
2330                                 err_code: 19,
2331                                 err_data: amt_msat.to_be_bytes().to_vec(),
2332                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2333                         });
2334                 }
2335
2336                 let routing = match hop_data.format {
2337                         msgs::OnionHopDataFormat::NonFinalNode { .. } => {
2338                                 return Err(ReceiveError {
2339                                         err_code: 0x4000|22,
2340                                         err_data: Vec::new(),
2341                                         msg: "Got non final data with an HMAC of 0",
2342                                 });
2343                         },
2344                         msgs::OnionHopDataFormat::FinalNode { payment_data, keysend_preimage, payment_metadata } => {
2345                                 if payment_data.is_some() && keysend_preimage.is_some() {
2346                                         return Err(ReceiveError {
2347                                                 err_code: 0x4000|22,
2348                                                 err_data: Vec::new(),
2349                                                 msg: "We don't support MPP keysend payments",
2350                                         });
2351                                 } else if let Some(data) = payment_data {
2352                                         PendingHTLCRouting::Receive {
2353                                                 payment_data: data,
2354                                                 payment_metadata,
2355                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2356                                                 phantom_shared_secret,
2357                                         }
2358                                 } else if let Some(payment_preimage) = keysend_preimage {
2359                                         // We need to check that the sender knows the keysend preimage before processing this
2360                                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2361                                         // could discover the final destination of X, by probing the adjacent nodes on the route
2362                                         // with a keysend payment of identical payment hash to X and observing the processing
2363                                         // time discrepancies due to a hash collision with X.
2364                                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2365                                         if hashed_preimage != payment_hash {
2366                                                 return Err(ReceiveError {
2367                                                         err_code: 0x4000|22,
2368                                                         err_data: Vec::new(),
2369                                                         msg: "Payment preimage didn't match payment hash",
2370                                                 });
2371                                         }
2372
2373                                         PendingHTLCRouting::ReceiveKeysend {
2374                                                 payment_preimage,
2375                                                 payment_metadata,
2376                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2377                                         }
2378                                 } else {
2379                                         return Err(ReceiveError {
2380                                                 err_code: 0x4000|0x2000|3,
2381                                                 err_data: Vec::new(),
2382                                                 msg: "We require payment_secrets",
2383                                         });
2384                                 }
2385                         },
2386                 };
2387                 Ok(PendingHTLCInfo {
2388                         routing,
2389                         payment_hash,
2390                         incoming_shared_secret: shared_secret,
2391                         incoming_amt_msat: Some(amt_msat),
2392                         outgoing_amt_msat: hop_data.amt_to_forward,
2393                         outgoing_cltv_value: hop_data.outgoing_cltv_value,
2394                 })
2395         }
2396
2397         fn decode_update_add_htlc_onion(&self, msg: &msgs::UpdateAddHTLC) -> PendingHTLCStatus {
2398                 macro_rules! return_malformed_err {
2399                         ($msg: expr, $err_code: expr) => {
2400                                 {
2401                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2402                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2403                                                 channel_id: msg.channel_id,
2404                                                 htlc_id: msg.htlc_id,
2405                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2406                                                 failure_code: $err_code,
2407                                         }));
2408                                 }
2409                         }
2410                 }
2411
2412                 if let Err(_) = msg.onion_routing_packet.public_key {
2413                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2414                 }
2415
2416                 let shared_secret = self.node_signer.ecdh(
2417                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2418                 ).unwrap().secret_bytes();
2419
2420                 if msg.onion_routing_packet.version != 0 {
2421                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2422                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2423                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2424                         //receiving node would have to brute force to figure out which version was put in the
2425                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2426                         //node knows the HMAC matched, so they already know what is there...
2427                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2428                 }
2429                 macro_rules! return_err {
2430                         ($msg: expr, $err_code: expr, $data: expr) => {
2431                                 {
2432                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2433                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2434                                                 channel_id: msg.channel_id,
2435                                                 htlc_id: msg.htlc_id,
2436                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2437                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2438                                         }));
2439                                 }
2440                         }
2441                 }
2442
2443                 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) {
2444                         Ok(res) => res,
2445                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2446                                 return_malformed_err!(err_msg, err_code);
2447                         },
2448                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2449                                 return_err!(err_msg, err_code, &[0; 0]);
2450                         },
2451                 };
2452
2453                 let pending_forward_info = match next_hop {
2454                         onion_utils::Hop::Receive(next_hop_data) => {
2455                                 // OUR PAYMENT!
2456                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry, None) {
2457                                         Ok(info) => {
2458                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
2459                                                 // message, however that would leak that we are the recipient of this payment, so
2460                                                 // instead we stay symmetric with the forwarding case, only responding (after a
2461                                                 // delay) once they've send us a commitment_signed!
2462                                                 PendingHTLCStatus::Forward(info)
2463                                         },
2464                                         Err(ReceiveError { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
2465                                 }
2466                         },
2467                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
2468                                 let new_pubkey = msg.onion_routing_packet.public_key.unwrap();
2469                                 let outgoing_packet = msgs::OnionPacket {
2470                                         version: 0,
2471                                         public_key: onion_utils::next_hop_packet_pubkey(&self.secp_ctx, new_pubkey, &shared_secret),
2472                                         hop_data: new_packet_bytes,
2473                                         hmac: next_hop_hmac.clone(),
2474                                 };
2475
2476                                 let short_channel_id = match next_hop_data.format {
2477                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
2478                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
2479                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
2480                                         },
2481                                 };
2482
2483                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
2484                                         routing: PendingHTLCRouting::Forward {
2485                                                 onion_packet: outgoing_packet,
2486                                                 short_channel_id,
2487                                         },
2488                                         payment_hash: msg.payment_hash.clone(),
2489                                         incoming_shared_secret: shared_secret,
2490                                         incoming_amt_msat: Some(msg.amount_msat),
2491                                         outgoing_amt_msat: next_hop_data.amt_to_forward,
2492                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
2493                                 })
2494                         }
2495                 };
2496
2497                 if let &PendingHTLCStatus::Forward(PendingHTLCInfo { ref routing, ref outgoing_amt_msat, ref outgoing_cltv_value, .. }) = &pending_forward_info {
2498                         // If short_channel_id is 0 here, we'll reject the HTLC as there cannot be a channel
2499                         // with a short_channel_id of 0. This is important as various things later assume
2500                         // short_channel_id is non-0 in any ::Forward.
2501                         if let &PendingHTLCRouting::Forward { ref short_channel_id, .. } = routing {
2502                                 if let Some((err, mut code, chan_update)) = loop {
2503                                         let id_option = self.short_to_chan_info.read().unwrap().get(short_channel_id).cloned();
2504                                         let forwarding_chan_info_opt = match id_option {
2505                                                 None => { // unknown_next_peer
2506                                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2507                                                         // phantom or an intercept.
2508                                                         if (self.default_configuration.accept_intercept_htlcs &&
2509                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, *short_channel_id, &self.genesis_hash)) ||
2510                                                            fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, *short_channel_id, &self.genesis_hash)
2511                                                         {
2512                                                                 None
2513                                                         } else {
2514                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2515                                                         }
2516                                                 },
2517                                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2518                                         };
2519                                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2520                                                 let per_peer_state = self.per_peer_state.read().unwrap();
2521                                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2522                                                 if peer_state_mutex_opt.is_none() {
2523                                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2524                                                 }
2525                                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2526                                                 let peer_state = &mut *peer_state_lock;
2527                                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id) {
2528                                                         None => {
2529                                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2530                                                                 // have no consistency guarantees.
2531                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2532                                                         },
2533                                                         Some(chan) => chan
2534                                                 };
2535                                                 if !chan.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2536                                                         // Note that the behavior here should be identical to the above block - we
2537                                                         // should NOT reveal the existence or non-existence of a private channel if
2538                                                         // we don't allow forwards outbound over them.
2539                                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2540                                                 }
2541                                                 if chan.get_channel_type().supports_scid_privacy() && *short_channel_id != chan.outbound_scid_alias() {
2542                                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2543                                                         // "refuse to forward unless the SCID alias was used", so we pretend
2544                                                         // we don't have the channel here.
2545                                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2546                                                 }
2547                                                 let chan_update_opt = self.get_channel_update_for_onion(*short_channel_id, chan).ok();
2548
2549                                                 // Note that we could technically not return an error yet here and just hope
2550                                                 // that the connection is reestablished or monitor updated by the time we get
2551                                                 // around to doing the actual forward, but better to fail early if we can and
2552                                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2553                                                 // on a small/per-node/per-channel scale.
2554                                                 if !chan.is_live() { // channel_disabled
2555                                                         // If the channel_update we're going to return is disabled (i.e. the
2556                                                         // peer has been disabled for some time), return `channel_disabled`,
2557                                                         // otherwise return `temporary_channel_failure`.
2558                                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
2559                                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
2560                                                         } else {
2561                                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
2562                                                         }
2563                                                 }
2564                                                 if *outgoing_amt_msat < chan.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2565                                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2566                                                 }
2567                                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, *outgoing_amt_msat, *outgoing_cltv_value) {
2568                                                         break Some((err, code, chan_update_opt));
2569                                                 }
2570                                                 chan_update_opt
2571                                         } else {
2572                                                 if (msg.cltv_expiry as u64) < (*outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
2573                                                         // We really should set `incorrect_cltv_expiry` here but as we're not
2574                                                         // forwarding over a real channel we can't generate a channel_update
2575                                                         // for it. Instead we just return a generic temporary_node_failure.
2576                                                         break Some((
2577                                                                 "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
2578                                                                 0x2000 | 2, None,
2579                                                         ));
2580                                                 }
2581                                                 None
2582                                         };
2583
2584                                         let cur_height = self.best_block.read().unwrap().height() + 1;
2585                                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
2586                                         // but we want to be robust wrt to counterparty packet sanitization (see
2587                                         // HTLC_FAIL_BACK_BUFFER rationale).
2588                                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
2589                                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
2590                                         }
2591                                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
2592                                                 break Some(("CLTV expiry is too far in the future", 21, None));
2593                                         }
2594                                         // If the HTLC expires ~now, don't bother trying to forward it to our
2595                                         // counterparty. They should fail it anyway, but we don't want to bother with
2596                                         // the round-trips or risk them deciding they definitely want the HTLC and
2597                                         // force-closing to ensure they get it if we're offline.
2598                                         // We previously had a much more aggressive check here which tried to ensure
2599                                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
2600                                         // but there is no need to do that, and since we're a bit conservative with our
2601                                         // risk threshold it just results in failing to forward payments.
2602                                         if (*outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
2603                                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
2604                                         }
2605
2606                                         break None;
2607                                 }
2608                                 {
2609                                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
2610                                         if let Some(chan_update) = chan_update {
2611                                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
2612                                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
2613                                                 }
2614                                                 else if code == 0x1000 | 13 {
2615                                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
2616                                                 }
2617                                                 else if code == 0x1000 | 20 {
2618                                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
2619                                                         0u16.write(&mut res).expect("Writes cannot fail");
2620                                                 }
2621                                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
2622                                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
2623                                                 chan_update.write(&mut res).expect("Writes cannot fail");
2624                                         } else if code & 0x1000 == 0x1000 {
2625                                                 // If we're trying to return an error that requires a `channel_update` but
2626                                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
2627                                                 // generate an update), just use the generic "temporary_node_failure"
2628                                                 // instead.
2629                                                 code = 0x2000 | 2;
2630                                         }
2631                                         return_err!(err, code, &res.0[..]);
2632                                 }
2633                         }
2634                 }
2635
2636                 pending_forward_info
2637         }
2638
2639         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
2640         /// public, and thus should be called whenever the result is going to be passed out in a
2641         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
2642         ///
2643         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
2644         /// corresponding to the channel's counterparty locked, as the channel been removed from the
2645         /// storage and the `peer_state` lock has been dropped.
2646         ///
2647         /// [`channel_update`]: msgs::ChannelUpdate
2648         /// [`internal_closing_signed`]: Self::internal_closing_signed
2649         fn get_channel_update_for_broadcast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2650                 if !chan.should_announce() {
2651                         return Err(LightningError {
2652                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
2653                                 action: msgs::ErrorAction::IgnoreError
2654                         });
2655                 }
2656                 if chan.get_short_channel_id().is_none() {
2657                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
2658                 }
2659                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.channel_id()));
2660                 self.get_channel_update_for_unicast(chan)
2661         }
2662
2663         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
2664         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
2665         /// and thus MUST NOT be called unless the recipient of the resulting message has already
2666         /// provided evidence that they know about the existence of the channel.
2667         ///
2668         /// Note that through [`internal_closing_signed`], this function is called without the
2669         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
2670         /// removed from the storage and the `peer_state` lock has been dropped.
2671         ///
2672         /// [`channel_update`]: msgs::ChannelUpdate
2673         /// [`internal_closing_signed`]: Self::internal_closing_signed
2674         fn get_channel_update_for_unicast(&self, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2675                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.channel_id()));
2676                 let short_channel_id = match chan.get_short_channel_id().or(chan.latest_inbound_scid_alias()) {
2677                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
2678                         Some(id) => id,
2679                 };
2680
2681                 self.get_channel_update_for_onion(short_channel_id, chan)
2682         }
2683         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2684                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.channel_id()));
2685                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.get_counterparty_node_id().serialize()[..];
2686
2687                 let enabled = chan.is_usable() && match chan.channel_update_status() {
2688                         ChannelUpdateStatus::Enabled => true,
2689                         ChannelUpdateStatus::DisabledStaged(_) => true,
2690                         ChannelUpdateStatus::Disabled => false,
2691                         ChannelUpdateStatus::EnabledStaged(_) => false,
2692                 };
2693
2694                 let unsigned = msgs::UnsignedChannelUpdate {
2695                         chain_hash: self.genesis_hash,
2696                         short_channel_id,
2697                         timestamp: chan.get_update_time_counter(),
2698                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
2699                         cltv_expiry_delta: chan.get_cltv_expiry_delta(),
2700                         htlc_minimum_msat: chan.get_counterparty_htlc_minimum_msat(),
2701                         htlc_maximum_msat: chan.get_announced_htlc_max_msat(),
2702                         fee_base_msat: chan.get_outbound_forwarding_fee_base_msat(),
2703                         fee_proportional_millionths: chan.get_fee_proportional_millionths(),
2704                         excess_data: Vec::new(),
2705                 };
2706                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
2707                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
2708                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
2709                 // channel.
2710                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
2711
2712                 Ok(msgs::ChannelUpdate {
2713                         signature: sig,
2714                         contents: unsigned
2715                 })
2716         }
2717
2718         #[cfg(test)]
2719         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> {
2720                 let _lck = self.total_consistency_lock.read().unwrap();
2721                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv_bytes)
2722         }
2723
2724         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> {
2725                 // The top-level caller should hold the total_consistency_lock read lock.
2726                 debug_assert!(self.total_consistency_lock.try_write().is_err());
2727
2728                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.hops.first().unwrap().short_channel_id);
2729                 let prng_seed = self.entropy_source.get_secure_random_bytes();
2730                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
2731
2732                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
2733                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
2734                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
2735
2736                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
2737                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
2738
2739                 let err: Result<(), _> = loop {
2740                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
2741                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
2742                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
2743                         };
2744
2745                         let per_peer_state = self.per_peer_state.read().unwrap();
2746                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
2747                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
2748                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2749                         let peer_state = &mut *peer_state_lock;
2750                         if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(id) {
2751                                 if !chan.get().is_live() {
2752                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
2753                                 }
2754                                 let funding_txo = chan.get().get_funding_txo().unwrap();
2755                                 let send_res = chan.get_mut().send_htlc_and_commit(htlc_msat, payment_hash.clone(),
2756                                         htlc_cltv, HTLCSource::OutboundRoute {
2757                                                 path: path.clone(),
2758                                                 session_priv: session_priv.clone(),
2759                                                 first_hop_htlc_msat: htlc_msat,
2760                                                 payment_id,
2761                                         }, onion_packet, &self.logger);
2762                                 match break_chan_entry!(self, send_res, chan) {
2763                                         Some(monitor_update) => {
2764                                                 let update_id = monitor_update.update_id;
2765                                                 let update_res = self.chain_monitor.update_channel(funding_txo, monitor_update);
2766                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan) {
2767                                                         break Err(e);
2768                                                 }
2769                                                 if update_res == ChannelMonitorUpdateStatus::InProgress {
2770                                                         // Note that MonitorUpdateInProgress here indicates (per function
2771                                                         // docs) that we will resend the commitment update once monitor
2772                                                         // updating completes. Therefore, we must return an error
2773                                                         // indicating that it is unsafe to retry the payment wholesale,
2774                                                         // which we do in the send_payment check for
2775                                                         // MonitorUpdateInProgress, below.
2776                                                         return Err(APIError::MonitorUpdateInProgress);
2777                                                 }
2778                                         },
2779                                         None => { },
2780                                 }
2781                         } else {
2782                                 // The channel was likely removed after we fetched the id from the
2783                                 // `short_to_chan_info` map, but before we successfully locked the
2784                                 // `channel_by_id` map.
2785                                 // This can occur as no consistency guarantees exists between the two maps.
2786                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
2787                         }
2788                         return Ok(());
2789                 };
2790
2791                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
2792                         Ok(_) => unreachable!(),
2793                         Err(e) => {
2794                                 Err(APIError::ChannelUnavailable { err: e.err })
2795                         },
2796                 }
2797         }
2798
2799         /// Sends a payment along a given route.
2800         ///
2801         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
2802         /// fields for more info.
2803         ///
2804         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
2805         /// [`PeerManager::process_events`]).
2806         ///
2807         /// # Avoiding Duplicate Payments
2808         ///
2809         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
2810         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
2811         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
2812         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
2813         /// second payment with the same [`PaymentId`].
2814         ///
2815         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
2816         /// tracking of payments, including state to indicate once a payment has completed. Because you
2817         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
2818         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
2819         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
2820         ///
2821         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
2822         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
2823         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
2824         /// [`ChannelManager::list_recent_payments`] for more information.
2825         ///
2826         /// # Possible Error States on [`PaymentSendFailure`]
2827         ///
2828         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
2829         /// each entry matching the corresponding-index entry in the route paths, see
2830         /// [`PaymentSendFailure`] for more info.
2831         ///
2832         /// In general, a path may raise:
2833         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
2834         ///    node public key) is specified.
2835         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
2836         ///    (including due to previous monitor update failure or new permanent monitor update
2837         ///    failure).
2838         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
2839         ///    relevant updates.
2840         ///
2841         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
2842         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
2843         /// different route unless you intend to pay twice!
2844         ///
2845         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2846         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
2847         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
2848         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
2849         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
2850         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2851                 let best_block_height = self.best_block.read().unwrap().height();
2852                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2853                 self.pending_outbound_payments
2854                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id, &self.entropy_source, &self.node_signer, best_block_height,
2855                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2856                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2857         }
2858
2859         /// Similar to [`ChannelManager::send_payment`], but will automatically find a route based on
2860         /// `route_params` and retry failed payment paths based on `retry_strategy`.
2861         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
2862                 let best_block_height = self.best_block.read().unwrap().height();
2863                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2864                 self.pending_outbound_payments
2865                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
2866                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
2867                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
2868                                 &self.pending_events,
2869                                 |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2870                                 self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2871         }
2872
2873         #[cfg(test)]
2874         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> {
2875                 let best_block_height = self.best_block.read().unwrap().height();
2876                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2877                 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,
2878                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2879                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2880         }
2881
2882         #[cfg(test)]
2883         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> {
2884                 let best_block_height = self.best_block.read().unwrap().height();
2885                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
2886         }
2887
2888         #[cfg(test)]
2889         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
2890                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
2891         }
2892
2893
2894         /// Signals that no further retries for the given payment should occur. Useful if you have a
2895         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
2896         /// retries are exhausted.
2897         ///
2898         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
2899         /// as there are no remaining pending HTLCs for this payment.
2900         ///
2901         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
2902         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
2903         /// determine the ultimate status of a payment.
2904         ///
2905         /// If an [`Event::PaymentFailed`] event is generated and we restart without this
2906         /// [`ChannelManager`] having been persisted, another [`Event::PaymentFailed`] may be generated.
2907         ///
2908         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
2909         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2910         pub fn abandon_payment(&self, payment_id: PaymentId) {
2911                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2912                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
2913         }
2914
2915         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
2916         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
2917         /// the preimage, it must be a cryptographically secure random value that no intermediate node
2918         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
2919         /// never reach the recipient.
2920         ///
2921         /// See [`send_payment`] documentation for more details on the return value of this function
2922         /// and idempotency guarantees provided by the [`PaymentId`] key.
2923         ///
2924         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
2925         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
2926         ///
2927         /// [`send_payment`]: Self::send_payment
2928         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
2929                 let best_block_height = self.best_block.read().unwrap().height();
2930                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2931                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
2932                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
2933                         &self.node_signer, best_block_height,
2934                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2935                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2936         }
2937
2938         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
2939         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
2940         ///
2941         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
2942         /// payments.
2943         ///
2944         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
2945         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> {
2946                 let best_block_height = self.best_block.read().unwrap().height();
2947                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2948                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
2949                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
2950                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
2951                         &self.logger, &self.pending_events,
2952                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
2953                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv))
2954         }
2955
2956         /// Send a payment that is probing the given route for liquidity. We calculate the
2957         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
2958         /// us to easily discern them from real payments.
2959         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
2960                 let best_block_height = self.best_block.read().unwrap().height();
2961                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2962                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret, &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         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
2968         /// payment probe.
2969         #[cfg(test)]
2970         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
2971                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
2972         }
2973
2974         /// Handles the generation of a funding transaction, optionally (for tests) with a function
2975         /// which checks the correctness of the funding transaction given the associated channel.
2976         fn funding_transaction_generated_intern<FundingOutput: Fn(&Channel<<SP::Target as SignerProvider>::Signer>, &Transaction) -> Result<OutPoint, APIError>>(
2977                 &self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
2978         ) -> Result<(), APIError> {
2979                 let per_peer_state = self.per_peer_state.read().unwrap();
2980                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2981                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2982
2983                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2984                 let peer_state = &mut *peer_state_lock;
2985                 let (msg, chan) = match peer_state.channel_by_id.remove(temporary_channel_id) {
2986                         Some(mut chan) => {
2987                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
2988
2989                                 let funding_res = chan.get_outbound_funding_created(funding_transaction, funding_txo, &self.logger)
2990                                         .map_err(|e| if let ChannelError::Close(msg) = e {
2991                                                 MsgHandleErrInternal::from_finish_shutdown(msg, chan.channel_id(), chan.get_user_id(), chan.force_shutdown(true), None)
2992                                         } else { unreachable!(); });
2993                                 match funding_res {
2994                                         Ok(funding_msg) => (funding_msg, chan),
2995                                         Err(_) => {
2996                                                 mem::drop(peer_state_lock);
2997                                                 mem::drop(per_peer_state);
2998
2999                                                 let _ = handle_error!(self, funding_res, chan.get_counterparty_node_id());
3000                                                 return Err(APIError::ChannelUnavailable {
3001                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3002                                                 });
3003                                         },
3004                                 }
3005                         },
3006                         None => {
3007                                 return Err(APIError::ChannelUnavailable {
3008                                         err: format!(
3009                                                 "Channel with id {} not found for the passed counterparty node_id {}",
3010                                                 log_bytes!(*temporary_channel_id), counterparty_node_id),
3011                                 })
3012                         },
3013                 };
3014
3015                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3016                         node_id: chan.get_counterparty_node_id(),
3017                         msg,
3018                 });
3019                 match peer_state.channel_by_id.entry(chan.channel_id()) {
3020                         hash_map::Entry::Occupied(_) => {
3021                                 panic!("Generated duplicate funding txid?");
3022                         },
3023                         hash_map::Entry::Vacant(e) => {
3024                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3025                                 if id_to_peer.insert(chan.channel_id(), chan.get_counterparty_node_id()).is_some() {
3026                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3027                                 }
3028                                 e.insert(chan);
3029                         }
3030                 }
3031                 Ok(())
3032         }
3033
3034         #[cfg(test)]
3035         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> {
3036                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3037                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3038                 })
3039         }
3040
3041         /// Call this upon creation of a funding transaction for the given channel.
3042         ///
3043         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3044         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3045         ///
3046         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3047         /// across the p2p network.
3048         ///
3049         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3050         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3051         ///
3052         /// May panic if the output found in the funding transaction is duplicative with some other
3053         /// channel (note that this should be trivially prevented by using unique funding transaction
3054         /// keys per-channel).
3055         ///
3056         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3057         /// counterparty's signature the funding transaction will automatically be broadcast via the
3058         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3059         ///
3060         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3061         /// not currently support replacing a funding transaction on an existing channel. Instead,
3062         /// create a new channel with a conflicting funding transaction.
3063         ///
3064         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3065         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3066         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3067         /// for more details.
3068         ///
3069         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3070         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3071         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3072                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3073
3074                 for inp in funding_transaction.input.iter() {
3075                         if inp.witness.is_empty() {
3076                                 return Err(APIError::APIMisuseError {
3077                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3078                                 });
3079                         }
3080                 }
3081                 {
3082                         let height = self.best_block.read().unwrap().height();
3083                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3084                         // lower than the next block height. However, the modules constituting our Lightning
3085                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3086                         // module is ahead of LDK, only allow one more block of headroom.
3087                         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 {
3088                                 return Err(APIError::APIMisuseError {
3089                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3090                                 });
3091                         }
3092                 }
3093                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3094                         if tx.output.len() > u16::max_value() as usize {
3095                                 return Err(APIError::APIMisuseError {
3096                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3097                                 });
3098                         }
3099
3100                         let mut output_index = None;
3101                         let expected_spk = chan.get_funding_redeemscript().to_v0_p2wsh();
3102                         for (idx, outp) in tx.output.iter().enumerate() {
3103                                 if outp.script_pubkey == expected_spk && outp.value == chan.get_value_satoshis() {
3104                                         if output_index.is_some() {
3105                                                 return Err(APIError::APIMisuseError {
3106                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3107                                                 });
3108                                         }
3109                                         output_index = Some(idx as u16);
3110                                 }
3111                         }
3112                         if output_index.is_none() {
3113                                 return Err(APIError::APIMisuseError {
3114                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3115                                 });
3116                         }
3117                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3118                 })
3119         }
3120
3121         /// Atomically updates the [`ChannelConfig`] for the given channels.
3122         ///
3123         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3124         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3125         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3126         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3127         ///
3128         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3129         /// `counterparty_node_id` is provided.
3130         ///
3131         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3132         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3133         ///
3134         /// If an error is returned, none of the updates should be considered applied.
3135         ///
3136         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3137         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3138         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3139         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3140         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3141         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3142         /// [`APIMisuseError`]: APIError::APIMisuseError
3143         pub fn update_channel_config(
3144                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3145         ) -> Result<(), APIError> {
3146                 if config.cltv_expiry_delta < MIN_CLTV_EXPIRY_DELTA {
3147                         return Err(APIError::APIMisuseError {
3148                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3149                         });
3150                 }
3151
3152                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(
3153                         &self.total_consistency_lock, &self.persistence_notifier,
3154                 );
3155                 let per_peer_state = self.per_peer_state.read().unwrap();
3156                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3157                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3158                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3159                 let peer_state = &mut *peer_state_lock;
3160                 for channel_id in channel_ids {
3161                         if !peer_state.channel_by_id.contains_key(channel_id) {
3162                                 return Err(APIError::ChannelUnavailable {
3163                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", log_bytes!(*channel_id), counterparty_node_id),
3164                                 });
3165                         }
3166                 }
3167                 for channel_id in channel_ids {
3168                         let channel = peer_state.channel_by_id.get_mut(channel_id).unwrap();
3169                         if !channel.update_config(config) {
3170                                 continue;
3171                         }
3172                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3173                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3174                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3175                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3176                                         node_id: channel.get_counterparty_node_id(),
3177                                         msg,
3178                                 });
3179                         }
3180                 }
3181                 Ok(())
3182         }
3183
3184         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3185         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3186         ///
3187         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3188         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3189         ///
3190         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3191         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3192         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3193         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3194         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3195         ///
3196         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3197         /// you from forwarding more than you received.
3198         ///
3199         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3200         /// backwards.
3201         ///
3202         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3203         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3204         // TODO: when we move to deciding the best outbound channel at forward time, only take
3205         // `next_node_id` and not `next_hop_channel_id`
3206         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> {
3207                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3208
3209                 let next_hop_scid = {
3210                         let peer_state_lock = self.per_peer_state.read().unwrap();
3211                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3212                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3213                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3214                         let peer_state = &mut *peer_state_lock;
3215                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3216                                 Some(chan) => {
3217                                         if !chan.is_usable() {
3218                                                 return Err(APIError::ChannelUnavailable {
3219                                                         err: format!("Channel with id {} not fully established", log_bytes!(*next_hop_channel_id))
3220                                                 })
3221                                         }
3222                                         chan.get_short_channel_id().unwrap_or(chan.outbound_scid_alias())
3223                                 },
3224                                 None => return Err(APIError::ChannelUnavailable {
3225                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}", log_bytes!(*next_hop_channel_id), next_node_id)
3226                                 })
3227                         }
3228                 };
3229
3230                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3231                         .ok_or_else(|| APIError::APIMisuseError {
3232                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3233                         })?;
3234
3235                 let routing = match payment.forward_info.routing {
3236                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3237                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3238                         },
3239                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3240                 };
3241                 let pending_htlc_info = PendingHTLCInfo {
3242                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3243                 };
3244
3245                 let mut per_source_pending_forward = [(
3246                         payment.prev_short_channel_id,
3247                         payment.prev_funding_outpoint,
3248                         payment.prev_user_channel_id,
3249                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3250                 )];
3251                 self.forward_htlcs(&mut per_source_pending_forward);
3252                 Ok(())
3253         }
3254
3255         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3256         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3257         ///
3258         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3259         /// backwards.
3260         ///
3261         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3262         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3263                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3264
3265                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3266                         .ok_or_else(|| APIError::APIMisuseError {
3267                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3268                         })?;
3269
3270                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3271                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3272                                 short_channel_id: payment.prev_short_channel_id,
3273                                 outpoint: payment.prev_funding_outpoint,
3274                                 htlc_id: payment.prev_htlc_id,
3275                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3276                                 phantom_shared_secret: None,
3277                         });
3278
3279                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3280                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3281                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3282                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3283
3284                 Ok(())
3285         }
3286
3287         /// Processes HTLCs which are pending waiting on random forward delay.
3288         ///
3289         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3290         /// Will likely generate further events.
3291         pub fn process_pending_htlc_forwards(&self) {
3292                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3293
3294                 let mut new_events = VecDeque::new();
3295                 let mut failed_forwards = Vec::new();
3296                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3297                 {
3298                         let mut forward_htlcs = HashMap::new();
3299                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3300
3301                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3302                                 if short_chan_id != 0 {
3303                                         macro_rules! forwarding_channel_not_found {
3304                                                 () => {
3305                                                         for forward_info in pending_forwards.drain(..) {
3306                                                                 match forward_info {
3307                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3308                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3309                                                                                 forward_info: PendingHTLCInfo {
3310                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3311                                                                                         outgoing_cltv_value, incoming_amt_msat: _
3312                                                                                 }
3313                                                                         }) => {
3314                                                                                 macro_rules! failure_handler {
3315                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3316                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3317
3318                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3319                                                                                                         short_channel_id: prev_short_channel_id,
3320                                                                                                         outpoint: prev_funding_outpoint,
3321                                                                                                         htlc_id: prev_htlc_id,
3322                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3323                                                                                                         phantom_shared_secret: $phantom_ss,
3324                                                                                                 });
3325
3326                                                                                                 let reason = if $next_hop_unknown {
3327                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3328                                                                                                 } else {
3329                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3330                                                                                                 };
3331
3332                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3333                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3334                                                                                                         reason
3335                                                                                                 ));
3336                                                                                                 continue;
3337                                                                                         }
3338                                                                                 }
3339                                                                                 macro_rules! fail_forward {
3340                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3341                                                                                                 {
3342                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3343                                                                                                 }
3344                                                                                         }
3345                                                                                 }
3346                                                                                 macro_rules! failed_payment {
3347                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3348                                                                                                 {
3349                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3350                                                                                                 }
3351                                                                                         }
3352                                                                                 }
3353                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3354                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3355                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3356                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3357                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3358                                                                                                         Ok(res) => res,
3359                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3360                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3361                                                                                                                 // In this scenario, the phantom would have sent us an
3362                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3363                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3364                                                                                                                 // of the onion.
3365                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3366                                                                                                         },
3367                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3368                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3369                                                                                                         },
3370                                                                                                 };
3371                                                                                                 match next_hop {
3372                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3373                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data, incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value, Some(phantom_shared_secret)) {
3374                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3375                                                                                                                         Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3376                                                                                                                 }
3377                                                                                                         },
3378                                                                                                         _ => panic!(),
3379                                                                                                 }
3380                                                                                         } else {
3381                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3382                                                                                         }
3383                                                                                 } else {
3384                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3385                                                                                 }
3386                                                                         },
3387                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3388                                                                                 // Channel went away before we could fail it. This implies
3389                                                                                 // the channel is now on chain and our counterparty is
3390                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3391                                                                                 // problem, not ours.
3392                                                                         }
3393                                                                 }
3394                                                         }
3395                                                 }
3396                                         }
3397                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
3398                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3399                                                 None => {
3400                                                         forwarding_channel_not_found!();
3401                                                         continue;
3402                                                 }
3403                                         };
3404                                         let per_peer_state = self.per_peer_state.read().unwrap();
3405                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3406                                         if peer_state_mutex_opt.is_none() {
3407                                                 forwarding_channel_not_found!();
3408                                                 continue;
3409                                         }
3410                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3411                                         let peer_state = &mut *peer_state_lock;
3412                                         match peer_state.channel_by_id.entry(forward_chan_id) {
3413                                                 hash_map::Entry::Vacant(_) => {
3414                                                         forwarding_channel_not_found!();
3415                                                         continue;
3416                                                 },
3417                                                 hash_map::Entry::Occupied(mut chan) => {
3418                                                         for forward_info in pending_forwards.drain(..) {
3419                                                                 match forward_info {
3420                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3421                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id: _,
3422                                                                                 forward_info: PendingHTLCInfo {
3423                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
3424                                                                                         routing: PendingHTLCRouting::Forward { onion_packet, .. }, incoming_amt_msat: _,
3425                                                                                 },
3426                                                                         }) => {
3427                                                                                 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);
3428                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3429                                                                                         short_channel_id: prev_short_channel_id,
3430                                                                                         outpoint: prev_funding_outpoint,
3431                                                                                         htlc_id: prev_htlc_id,
3432                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3433                                                                                         // Phantom payments are only PendingHTLCRouting::Receive.
3434                                                                                         phantom_shared_secret: None,
3435                                                                                 });
3436                                                                                 if let Err(e) = chan.get_mut().queue_add_htlc(outgoing_amt_msat,
3437                                                                                         payment_hash, outgoing_cltv_value, htlc_source.clone(),
3438                                                                                         onion_packet, &self.logger)
3439                                                                                 {
3440                                                                                         if let ChannelError::Ignore(msg) = e {
3441                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3442                                                                                         } else {
3443                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3444                                                                                         }
3445                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3446                                                                                         failed_forwards.push((htlc_source, payment_hash,
3447                                                                                                 HTLCFailReason::reason(failure_code, data),
3448                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().get_counterparty_node_id()), channel_id: forward_chan_id }
3449                                                                                         ));
3450                                                                                         continue;
3451                                                                                 }
3452                                                                         },
3453                                                                         HTLCForwardInfo::AddHTLC { .. } => {
3454                                                                                 panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3455                                                                         },
3456                                                                         HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3457                                                                                 log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3458                                                                                 if let Err(e) = chan.get_mut().queue_fail_htlc(
3459                                                                                         htlc_id, err_packet, &self.logger
3460                                                                                 ) {
3461                                                                                         if let ChannelError::Ignore(msg) = e {
3462                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
3463                                                                                         } else {
3464                                                                                                 panic!("Stated return value requirements in queue_fail_htlc() were not met");
3465                                                                                         }
3466                                                                                         // fail-backs are best-effort, we probably already have one
3467                                                                                         // pending, and if not that's OK, if not, the channel is on
3468                                                                                         // the chain and sending the HTLC-Timeout is their problem.
3469                                                                                         continue;
3470                                                                                 }
3471                                                                         },
3472                                                                 }
3473                                                         }
3474                                                 }
3475                                         }
3476                                 } else {
3477                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
3478                                                 match forward_info {
3479                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3480                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3481                                                                 forward_info: PendingHTLCInfo {
3482                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat, ..
3483                                                                 }
3484                                                         }) => {
3485                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
3486                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret } => {
3487                                                                                 let _legacy_hop_data = Some(payment_data.clone());
3488                                                                                 let onion_fields =
3489                                                                                         RecipientOnionFields { payment_secret: Some(payment_data.payment_secret), payment_metadata };
3490                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
3491                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
3492                                                                         },
3493                                                                         PendingHTLCRouting::ReceiveKeysend { payment_preimage, payment_metadata, incoming_cltv_expiry } => {
3494                                                                                 let onion_fields = RecipientOnionFields { payment_secret: None, payment_metadata };
3495                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
3496                                                                                         None, None, onion_fields)
3497                                                                         },
3498                                                                         _ => {
3499                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
3500                                                                         }
3501                                                                 };
3502                                                                 let mut claimable_htlc = ClaimableHTLC {
3503                                                                         prev_hop: HTLCPreviousHopData {
3504                                                                                 short_channel_id: prev_short_channel_id,
3505                                                                                 outpoint: prev_funding_outpoint,
3506                                                                                 htlc_id: prev_htlc_id,
3507                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3508                                                                                 phantom_shared_secret,
3509                                                                         },
3510                                                                         // We differentiate the received value from the sender intended value
3511                                                                         // if possible so that we don't prematurely mark MPP payments complete
3512                                                                         // if routing nodes overpay
3513                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
3514                                                                         sender_intended_value: outgoing_amt_msat,
3515                                                                         timer_ticks: 0,
3516                                                                         total_value_received: None,
3517                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
3518                                                                         cltv_expiry,
3519                                                                         onion_payload,
3520                                                                 };
3521
3522                                                                 let mut committed_to_claimable = false;
3523
3524                                                                 macro_rules! fail_htlc {
3525                                                                         ($htlc: expr, $payment_hash: expr) => {
3526                                                                                 debug_assert!(!committed_to_claimable);
3527                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
3528                                                                                 htlc_msat_height_data.extend_from_slice(
3529                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
3530                                                                                 );
3531                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
3532                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
3533                                                                                                 outpoint: prev_funding_outpoint,
3534                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
3535                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
3536                                                                                                 phantom_shared_secret,
3537                                                                                         }), payment_hash,
3538                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
3539                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
3540                                                                                 ));
3541                                                                                 continue 'next_forwardable_htlc;
3542                                                                         }
3543                                                                 }
3544                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
3545                                                                 let mut receiver_node_id = self.our_network_pubkey;
3546                                                                 if phantom_shared_secret.is_some() {
3547                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
3548                                                                                 .expect("Failed to get node_id for phantom node recipient");
3549                                                                 }
3550
3551                                                                 macro_rules! check_total_value {
3552                                                                         ($payment_data: expr, $payment_preimage: expr) => {{
3553                                                                                 let mut payment_claimable_generated = false;
3554                                                                                 let purpose = || {
3555                                                                                         events::PaymentPurpose::InvoicePayment {
3556                                                                                                 payment_preimage: $payment_preimage,
3557                                                                                                 payment_secret: $payment_data.payment_secret,
3558                                                                                         }
3559                                                                                 };
3560                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
3561                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
3562                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3563                                                                                 }
3564                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
3565                                                                                         .entry(payment_hash)
3566                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
3567                                                                                         .or_insert_with(|| {
3568                                                                                                 committed_to_claimable = true;
3569                                                                                                 ClaimablePayment {
3570                                                                                                         purpose: purpose(), htlcs: Vec::new(), onion_fields: None,
3571                                                                                                 }
3572                                                                                         });
3573                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
3574                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
3575                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3576                                                                                         }
3577                                                                                 } else {
3578                                                                                         claimable_payment.onion_fields = Some(onion_fields);
3579                                                                                 }
3580                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
3581                                                                                 if htlcs.len() == 1 {
3582                                                                                         if let OnionPayload::Spontaneous(_) = htlcs[0].onion_payload {
3583                                                                                                 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));
3584                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3585                                                                                         }
3586                                                                                 }
3587                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
3588                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
3589                                                                                 for htlc in htlcs.iter() {
3590                                                                                         total_value += htlc.sender_intended_value;
3591                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
3592                                                                                         match &htlc.onion_payload {
3593                                                                                                 OnionPayload::Invoice { .. } => {
3594                                                                                                         if htlc.total_msat != $payment_data.total_msat {
3595                                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
3596                                                                                                                         log_bytes!(payment_hash.0), $payment_data.total_msat, htlc.total_msat);
3597                                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
3598                                                                                                         }
3599                                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
3600                                                                                                 },
3601                                                                                                 _ => unreachable!(),
3602                                                                                         }
3603                                                                                 }
3604                                                                                 // The condition determining whether an MPP is complete must
3605                                                                                 // match exactly the condition used in `timer_tick_occurred`
3606                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
3607                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3608                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= $payment_data.total_msat {
3609                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
3610                                                                                                 log_bytes!(payment_hash.0));
3611                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3612                                                                                 } else if total_value >= $payment_data.total_msat {
3613                                                                                         #[allow(unused_assignments)] {
3614                                                                                                 committed_to_claimable = true;
3615                                                                                         }
3616                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
3617                                                                                         htlcs.push(claimable_htlc);
3618                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
3619                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
3620                                                                                         new_events.push_back((events::Event::PaymentClaimable {
3621                                                                                                 receiver_node_id: Some(receiver_node_id),
3622                                                                                                 payment_hash,
3623                                                                                                 purpose: purpose(),
3624                                                                                                 amount_msat,
3625                                                                                                 via_channel_id: Some(prev_channel_id),
3626                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
3627                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
3628                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
3629                                                                                         }, None));
3630                                                                                         payment_claimable_generated = true;
3631                                                                                 } else {
3632                                                                                         // Nothing to do - we haven't reached the total
3633                                                                                         // payment value yet, wait until we receive more
3634                                                                                         // MPP parts.
3635                                                                                         htlcs.push(claimable_htlc);
3636                                                                                         #[allow(unused_assignments)] {
3637                                                                                                 committed_to_claimable = true;
3638                                                                                         }
3639                                                                                 }
3640                                                                                 payment_claimable_generated
3641                                                                         }}
3642                                                                 }
3643
3644                                                                 // Check that the payment hash and secret are known. Note that we
3645                                                                 // MUST take care to handle the "unknown payment hash" and
3646                                                                 // "incorrect payment secret" cases here identically or we'd expose
3647                                                                 // that we are the ultimate recipient of the given payment hash.
3648                                                                 // Further, we must not expose whether we have any other HTLCs
3649                                                                 // associated with the same payment_hash pending or not.
3650                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
3651                                                                 match payment_secrets.entry(payment_hash) {
3652                                                                         hash_map::Entry::Vacant(_) => {
3653                                                                                 match claimable_htlc.onion_payload {
3654                                                                                         OnionPayload::Invoice { .. } => {
3655                                                                                                 let payment_data = payment_data.unwrap();
3656                                                                                                 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) {
3657                                                                                                         Ok(result) => result,
3658                                                                                                         Err(()) => {
3659                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", log_bytes!(payment_hash.0));
3660                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3661                                                                                                         }
3662                                                                                                 };
3663                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
3664                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
3665                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
3666                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
3667                                                                                                                         log_bytes!(payment_hash.0), cltv_expiry, expected_min_expiry_height);
3668                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3669                                                                                                         }
3670                                                                                                 }
3671                                                                                                 check_total_value!(payment_data, payment_preimage);
3672                                                                                         },
3673                                                                                         OnionPayload::Spontaneous(preimage) => {
3674                                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
3675                                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
3676                                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3677                                                                                                 }
3678                                                                                                 match claimable_payments.claimable_payments.entry(payment_hash) {
3679                                                                                                         hash_map::Entry::Vacant(e) => {
3680                                                                                                                 let amount_msat = claimable_htlc.value;
3681                                                                                                                 claimable_htlc.total_value_received = Some(amount_msat);
3682                                                                                                                 let claim_deadline = Some(claimable_htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER);
3683                                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
3684                                                                                                                 e.insert(ClaimablePayment {
3685                                                                                                                         purpose: purpose.clone(),
3686                                                                                                                         onion_fields: Some(onion_fields.clone()),
3687                                                                                                                         htlcs: vec![claimable_htlc],
3688                                                                                                                 });
3689                                                                                                                 let prev_channel_id = prev_funding_outpoint.to_channel_id();
3690                                                                                                                 new_events.push_back((events::Event::PaymentClaimable {
3691                                                                                                                         receiver_node_id: Some(receiver_node_id),
3692                                                                                                                         payment_hash,
3693                                                                                                                         amount_msat,
3694                                                                                                                         purpose,
3695                                                                                                                         via_channel_id: Some(prev_channel_id),
3696                                                                                                                         via_user_channel_id: Some(prev_user_channel_id),
3697                                                                                                                         claim_deadline,
3698                                                                                                                         onion_fields: Some(onion_fields),
3699                                                                                                                 }, None));
3700                                                                                                         },
3701                                                                                                         hash_map::Entry::Occupied(_) => {
3702                                                                                                                 log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} for a duplicative payment hash", log_bytes!(payment_hash.0));
3703                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3704                                                                                                         }
3705                                                                                                 }
3706                                                                                         }
3707                                                                                 }
3708                                                                         },
3709                                                                         hash_map::Entry::Occupied(inbound_payment) => {
3710                                                                                 if payment_data.is_none() {
3711                                                                                         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));
3712                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3713                                                                                 };
3714                                                                                 let payment_data = payment_data.unwrap();
3715                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
3716                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
3717                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3718                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
3719                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
3720                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
3721                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3722                                                                                 } else {
3723                                                                                         let payment_claimable_generated = check_total_value!(payment_data, inbound_payment.get().payment_preimage);
3724                                                                                         if payment_claimable_generated {
3725                                                                                                 inbound_payment.remove_entry();
3726                                                                                         }
3727                                                                                 }
3728                                                                         },
3729                                                                 };
3730                                                         },
3731                                                         HTLCForwardInfo::FailHTLC { .. } => {
3732                                                                 panic!("Got pending fail of our own HTLC");
3733                                                         }
3734                                                 }
3735                                         }
3736                                 }
3737                         }
3738                 }
3739
3740                 let best_block_height = self.best_block.read().unwrap().height();
3741                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
3742                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
3743                         &self.pending_events, &self.logger,
3744                         |path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv|
3745                         self.send_payment_along_path(path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage, session_priv));
3746
3747                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
3748                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
3749                 }
3750                 self.forward_htlcs(&mut phantom_receives);
3751
3752                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
3753                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
3754                 // nice to do the work now if we can rather than while we're trying to get messages in the
3755                 // network stack.
3756                 self.check_free_holding_cells();
3757
3758                 if new_events.is_empty() { return }
3759                 let mut events = self.pending_events.lock().unwrap();
3760                 events.append(&mut new_events);
3761         }
3762
3763         /// Free the background events, generally called from timer_tick_occurred.
3764         ///
3765         /// Exposed for testing to allow us to process events quickly without generating accidental
3766         /// BroadcastChannelUpdate events in timer_tick_occurred.
3767         ///
3768         /// Expects the caller to have a total_consistency_lock read lock.
3769         fn process_background_events(&self) -> bool {
3770                 let mut background_events = Vec::new();
3771                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
3772                 if background_events.is_empty() {
3773                         return false;
3774                 }
3775
3776                 for event in background_events.drain(..) {
3777                         match event {
3778                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
3779                                         // The channel has already been closed, so no use bothering to care about the
3780                                         // monitor updating completing.
3781                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
3782                                 },
3783                         }
3784                 }
3785                 true
3786         }
3787
3788         #[cfg(any(test, feature = "_test_utils"))]
3789         /// Process background events, for functional testing
3790         pub fn test_process_background_events(&self) {
3791                 self.process_background_events();
3792         }
3793
3794         fn update_channel_fee(&self, chan_id: &[u8; 32], chan: &mut Channel<<SP::Target as SignerProvider>::Signer>, new_feerate: u32) -> NotifyOption {
3795                 if !chan.is_outbound() { return NotifyOption::SkipPersist; }
3796                 // If the feerate has decreased by less than half, don't bother
3797                 if new_feerate <= chan.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.get_feerate_sat_per_1000_weight() {
3798                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
3799                                 log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3800                         return NotifyOption::SkipPersist;
3801                 }
3802                 if !chan.is_live() {
3803                         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).",
3804                                 log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3805                         return NotifyOption::SkipPersist;
3806                 }
3807                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
3808                         log_bytes!(chan_id[..]), chan.get_feerate_sat_per_1000_weight(), new_feerate);
3809
3810                 chan.queue_update_fee(new_feerate, &self.logger);
3811                 NotifyOption::DoPersist
3812         }
3813
3814         #[cfg(fuzzing)]
3815         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
3816         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
3817         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
3818         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
3819         pub fn maybe_update_chan_fees(&self) {
3820                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3821                         let mut should_persist = NotifyOption::SkipPersist;
3822
3823                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3824
3825                         let per_peer_state = self.per_peer_state.read().unwrap();
3826                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
3827                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3828                                 let peer_state = &mut *peer_state_lock;
3829                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
3830                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
3831                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3832                                 }
3833                         }
3834
3835                         should_persist
3836                 });
3837         }
3838
3839         /// Performs actions which should happen on startup and roughly once per minute thereafter.
3840         ///
3841         /// This currently includes:
3842         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
3843         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
3844         ///    than a minute, informing the network that they should no longer attempt to route over
3845         ///    the channel.
3846         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
3847         ///    with the current [`ChannelConfig`].
3848         ///  * Removing peers which have disconnected but and no longer have any channels.
3849         ///
3850         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
3851         /// estimate fetches.
3852         ///
3853         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3854         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
3855         pub fn timer_tick_occurred(&self) {
3856                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3857                         let mut should_persist = NotifyOption::SkipPersist;
3858                         if self.process_background_events() { should_persist = NotifyOption::DoPersist; }
3859
3860                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3861
3862                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
3863                         let mut timed_out_mpp_htlcs = Vec::new();
3864                         let mut pending_peers_awaiting_removal = Vec::new();
3865                         {
3866                                 let per_peer_state = self.per_peer_state.read().unwrap();
3867                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
3868                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3869                                         let peer_state = &mut *peer_state_lock;
3870                                         let pending_msg_events = &mut peer_state.pending_msg_events;
3871                                         let counterparty_node_id = *counterparty_node_id;
3872                                         peer_state.channel_by_id.retain(|chan_id, chan| {
3873                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
3874                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3875
3876                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
3877                                                         let (needs_close, err) = convert_chan_err!(self, e, chan, chan_id);
3878                                                         handle_errors.push((Err(err), counterparty_node_id));
3879                                                         if needs_close { return false; }
3880                                                 }
3881
3882                                                 match chan.channel_update_status() {
3883                                                         ChannelUpdateStatus::Enabled if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
3884                                                         ChannelUpdateStatus::Disabled if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
3885                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.is_live()
3886                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
3887                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.is_live()
3888                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
3889                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.is_live() => {
3890                                                                 n += 1;
3891                                                                 if n >= DISABLE_GOSSIP_TICKS {
3892                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
3893                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3894                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3895                                                                                         msg: update
3896                                                                                 });
3897                                                                         }
3898                                                                         should_persist = NotifyOption::DoPersist;
3899                                                                 } else {
3900                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
3901                                                                 }
3902                                                         },
3903                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.is_live() => {
3904                                                                 n += 1;
3905                                                                 if n >= ENABLE_GOSSIP_TICKS {
3906                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
3907                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3908                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3909                                                                                         msg: update
3910                                                                                 });
3911                                                                         }
3912                                                                         should_persist = NotifyOption::DoPersist;
3913                                                                 } else {
3914                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
3915                                                                 }
3916                                                         },
3917                                                         _ => {},
3918                                                 }
3919
3920                                                 chan.maybe_expire_prev_config();
3921
3922                                                 true
3923                                         });
3924                                         if peer_state.ok_to_remove(true) {
3925                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
3926                                         }
3927                                 }
3928                         }
3929
3930                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
3931                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
3932                         // of to that peer is later closed while still being disconnected (i.e. force closed),
3933                         // we therefore need to remove the peer from `peer_state` separately.
3934                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
3935                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
3936                         // negative effects on parallelism as much as possible.
3937                         if pending_peers_awaiting_removal.len() > 0 {
3938                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
3939                                 for counterparty_node_id in pending_peers_awaiting_removal {
3940                                         match per_peer_state.entry(counterparty_node_id) {
3941                                                 hash_map::Entry::Occupied(entry) => {
3942                                                         // Remove the entry if the peer is still disconnected and we still
3943                                                         // have no channels to the peer.
3944                                                         let remove_entry = {
3945                                                                 let peer_state = entry.get().lock().unwrap();
3946                                                                 peer_state.ok_to_remove(true)
3947                                                         };
3948                                                         if remove_entry {
3949                                                                 entry.remove_entry();
3950                                                         }
3951                                                 },
3952                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
3953                                         }
3954                                 }
3955                         }
3956
3957                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
3958                                 if payment.htlcs.is_empty() {
3959                                         // This should be unreachable
3960                                         debug_assert!(false);
3961                                         return false;
3962                                 }
3963                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
3964                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
3965                                         // In this case we're not going to handle any timeouts of the parts here.
3966                                         // This condition determining whether the MPP is complete here must match
3967                                         // exactly the condition used in `process_pending_htlc_forwards`.
3968                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
3969                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
3970                                         {
3971                                                 return true;
3972                                         } else if payment.htlcs.iter_mut().any(|htlc| {
3973                                                 htlc.timer_ticks += 1;
3974                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
3975                                         }) {
3976                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
3977                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
3978                                                 return false;
3979                                         }
3980                                 }
3981                                 true
3982                         });
3983
3984                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
3985                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
3986                                 let reason = HTLCFailReason::from_failure_code(23);
3987                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
3988                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
3989                         }
3990
3991                         for (err, counterparty_node_id) in handle_errors.drain(..) {
3992                                 let _ = handle_error!(self, err, counterparty_node_id);
3993                         }
3994
3995                         self.pending_outbound_payments.remove_stale_resolved_payments(&self.pending_events);
3996
3997                         // Technically we don't need to do this here, but if we have holding cell entries in a
3998                         // channel that need freeing, it's better to do that here and block a background task
3999                         // than block the message queueing pipeline.
4000                         if self.check_free_holding_cells() {
4001                                 should_persist = NotifyOption::DoPersist;
4002                         }
4003
4004                         should_persist
4005                 });
4006         }
4007
4008         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4009         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4010         /// along the path (including in our own channel on which we received it).
4011         ///
4012         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4013         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4014         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4015         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4016         ///
4017         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4018         /// [`ChannelManager::claim_funds`]), you should still monitor for
4019         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4020         /// startup during which time claims that were in-progress at shutdown may be replayed.
4021         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4022                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4023         }
4024
4025         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4026         /// reason for the failure.
4027         ///
4028         /// See [`FailureCode`] for valid failure codes.
4029         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4030                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4031
4032                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4033                 if let Some(payment) = removed_source {
4034                         for htlc in payment.htlcs {
4035                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4036                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4037                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4038                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4039                         }
4040                 }
4041         }
4042
4043         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4044         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4045                 match failure_code {
4046                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code as u16),
4047                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code as u16),
4048                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4049                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4050                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4051                                 HTLCFailReason::reason(failure_code as u16, htlc_msat_height_data)
4052                         }
4053                 }
4054         }
4055
4056         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4057         /// that we want to return and a channel.
4058         ///
4059         /// This is for failures on the channel on which the HTLC was *received*, not failures
4060         /// forwarding
4061         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<<SP::Target as SignerProvider>::Signer>) -> (u16, Vec<u8>) {
4062                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4063                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4064                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4065                 // an inbound SCID alias before the real SCID.
4066                 let scid_pref = if chan.should_announce() {
4067                         chan.get_short_channel_id().or(chan.latest_inbound_scid_alias())
4068                 } else {
4069                         chan.latest_inbound_scid_alias().or(chan.get_short_channel_id())
4070                 };
4071                 if let Some(scid) = scid_pref {
4072                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4073                 } else {
4074                         (0x4000|10, Vec::new())
4075                 }
4076         }
4077
4078
4079         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4080         /// that we want to return and a channel.
4081         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>) {
4082                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4083                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4084                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4085                         if desired_err_code == 0x1000 | 20 {
4086                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4087                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4088                                 0u16.write(&mut enc).expect("Writes cannot fail");
4089                         }
4090                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4091                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4092                         upd.write(&mut enc).expect("Writes cannot fail");
4093                         (desired_err_code, enc.0)
4094                 } else {
4095                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4096                         // which means we really shouldn't have gotten a payment to be forwarded over this
4097                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4098                         // PERM|no_such_channel should be fine.
4099                         (0x4000|10, Vec::new())
4100                 }
4101         }
4102
4103         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4104         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4105         // be surfaced to the user.
4106         fn fail_holding_cell_htlcs(
4107                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
4108                 counterparty_node_id: &PublicKey
4109         ) {
4110                 let (failure_code, onion_failure_data) = {
4111                         let per_peer_state = self.per_peer_state.read().unwrap();
4112                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4113                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4114                                 let peer_state = &mut *peer_state_lock;
4115                                 match peer_state.channel_by_id.entry(channel_id) {
4116                                         hash_map::Entry::Occupied(chan_entry) => {
4117                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
4118                                         },
4119                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4120                                 }
4121                         } else { (0x4000|10, Vec::new()) }
4122                 };
4123
4124                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4125                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4126                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4127                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4128                 }
4129         }
4130
4131         /// Fails an HTLC backwards to the sender of it to us.
4132         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4133         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4134                 // Ensure that no peer state channel storage lock is held when calling this function.
4135                 // This ensures that future code doesn't introduce a lock-order requirement for
4136                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4137                 // this function with any `per_peer_state` peer lock acquired would.
4138                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4139                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4140                 }
4141
4142                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4143                 //identify whether we sent it or not based on the (I presume) very different runtime
4144                 //between the branches here. We should make this async and move it into the forward HTLCs
4145                 //timer handling.
4146
4147                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4148                 // from block_connected which may run during initialization prior to the chain_monitor
4149                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4150                 match source {
4151                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4152                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4153                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4154                                         &self.pending_events, &self.logger)
4155                                 { self.push_pending_forwards_ev(); }
4156                         },
4157                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint }) => {
4158                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", log_bytes!(payment_hash.0), onion_error);
4159                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4160
4161                                 let mut push_forward_ev = false;
4162                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4163                                 if forward_htlcs.is_empty() {
4164                                         push_forward_ev = true;
4165                                 }
4166                                 match forward_htlcs.entry(*short_channel_id) {
4167                                         hash_map::Entry::Occupied(mut entry) => {
4168                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4169                                         },
4170                                         hash_map::Entry::Vacant(entry) => {
4171                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4172                                         }
4173                                 }
4174                                 mem::drop(forward_htlcs);
4175                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4176                                 let mut pending_events = self.pending_events.lock().unwrap();
4177                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4178                                         prev_channel_id: outpoint.to_channel_id(),
4179                                         failed_next_destination: destination,
4180                                 }, None));
4181                         },
4182                 }
4183         }
4184
4185         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4186         /// [`MessageSendEvent`]s needed to claim the payment.
4187         ///
4188         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4189         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4190         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4191         /// successful. It will generally be available in the next [`process_pending_events`] call.
4192         ///
4193         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4194         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4195         /// event matches your expectation. If you fail to do so and call this method, you may provide
4196         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4197         ///
4198         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4199         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4200         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4201         /// [`process_pending_events`]: EventsProvider::process_pending_events
4202         /// [`create_inbound_payment`]: Self::create_inbound_payment
4203         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4204         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4205                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4206
4207                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4208
4209                 let mut sources = {
4210                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4211                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4212                                 let mut receiver_node_id = self.our_network_pubkey;
4213                                 for htlc in payment.htlcs.iter() {
4214                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4215                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4216                                                         .expect("Failed to get node_id for phantom node recipient");
4217                                                 receiver_node_id = phantom_pubkey;
4218                                                 break;
4219                                         }
4220                                 }
4221
4222                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4223                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4224                                         payment_purpose: payment.purpose, receiver_node_id,
4225                                 });
4226                                 if dup_purpose.is_some() {
4227                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4228                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4229                                                 log_bytes!(payment_hash.0));
4230                                 }
4231                                 payment.htlcs
4232                         } else { return; }
4233                 };
4234                 debug_assert!(!sources.is_empty());
4235
4236                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
4237                 // and when we got here we need to check that the amount we're about to claim matches the
4238                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
4239                 // the MPP parts all have the same `total_msat`.
4240                 let mut claimable_amt_msat = 0;
4241                 let mut prev_total_msat = None;
4242                 let mut expected_amt_msat = None;
4243                 let mut valid_mpp = true;
4244                 let mut errs = Vec::new();
4245                 let per_peer_state = self.per_peer_state.read().unwrap();
4246                 for htlc in sources.iter() {
4247                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
4248                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
4249                                 debug_assert!(false);
4250                                 valid_mpp = false;
4251                                 break;
4252                         }
4253                         prev_total_msat = Some(htlc.total_msat);
4254
4255                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
4256                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
4257                                 debug_assert!(false);
4258                                 valid_mpp = false;
4259                                 break;
4260                         }
4261                         expected_amt_msat = htlc.total_value_received;
4262
4263                         if let OnionPayload::Spontaneous(_) = &htlc.onion_payload {
4264                                 // We don't currently support MPP for spontaneous payments, so just check
4265                                 // that there's one payment here and move on.
4266                                 if sources.len() != 1 {
4267                                         log_error!(self.logger, "Somehow ended up with an MPP spontaneous payment - this should not be reachable!");
4268                                         debug_assert!(false);
4269                                         valid_mpp = false;
4270                                         break;
4271                                 }
4272                         }
4273
4274                         claimable_amt_msat += htlc.value;
4275                 }
4276                 mem::drop(per_peer_state);
4277                 if sources.is_empty() || expected_amt_msat.is_none() {
4278                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4279                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4280                         return;
4281                 }
4282                 if claimable_amt_msat != expected_amt_msat.unwrap() {
4283                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4284                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4285                                 expected_amt_msat.unwrap(), claimable_amt_msat);
4286                         return;
4287                 }
4288                 if valid_mpp {
4289                         for htlc in sources.drain(..) {
4290                                 if let Err((pk, err)) = self.claim_funds_from_hop(
4291                                         htlc.prev_hop, payment_preimage,
4292                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
4293                                 {
4294                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4295                                                 // We got a temporary failure updating monitor, but will claim the
4296                                                 // HTLC when the monitor updating is restored (or on chain).
4297                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4298                                         } else { errs.push((pk, err)); }
4299                                 }
4300                         }
4301                 }
4302                 if !valid_mpp {
4303                         for htlc in sources.drain(..) {
4304                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4305                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4306                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4307                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
4308                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
4309                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4310                         }
4311                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4312                 }
4313
4314                 // Now we can handle any errors which were generated.
4315                 for (counterparty_node_id, err) in errs.drain(..) {
4316                         let res: Result<(), _> = Err(err);
4317                         let _ = handle_error!(self, res, counterparty_node_id);
4318                 }
4319         }
4320
4321         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
4322                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
4323         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
4324                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
4325
4326                 {
4327                         let per_peer_state = self.per_peer_state.read().unwrap();
4328                         let chan_id = prev_hop.outpoint.to_channel_id();
4329                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
4330                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
4331                                 None => None
4332                         };
4333
4334                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
4335                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
4336                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
4337                         ).unwrap_or(None);
4338
4339                         if peer_state_opt.is_some() {
4340                                 let mut peer_state_lock = peer_state_opt.unwrap();
4341                                 let peer_state = &mut *peer_state_lock;
4342                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(chan_id) {
4343                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
4344                                         let fulfill_res = chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
4345
4346                                         if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
4347                                                 if let Some(action) = completion_action(Some(htlc_value_msat)) {
4348                                                         log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
4349                                                                 log_bytes!(chan_id), action);
4350                                                         peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
4351                                                 }
4352                                                 let update_id = monitor_update.update_id;
4353                                                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, monitor_update);
4354                                                 let res = handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
4355                                                         peer_state, per_peer_state, chan);
4356                                                 if let Err(e) = res {
4357                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
4358                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
4359                                                         // update over and over again until morale improves.
4360                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
4361                                                         return Err((counterparty_node_id, e));
4362                                                 }
4363                                         }
4364                                         return Ok(());
4365                                 }
4366                         }
4367                 }
4368                 let preimage_update = ChannelMonitorUpdate {
4369                         update_id: CLOSED_CHANNEL_UPDATE_ID,
4370                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
4371                                 payment_preimage,
4372                         }],
4373                 };
4374                 // We update the ChannelMonitor on the backward link, after
4375                 // receiving an `update_fulfill_htlc` from the forward link.
4376                 let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
4377                 if update_res != ChannelMonitorUpdateStatus::Completed {
4378                         // TODO: This needs to be handled somehow - if we receive a monitor update
4379                         // with a preimage we *must* somehow manage to propagate it to the upstream
4380                         // channel, or we must have an ability to receive the same event and try
4381                         // again on restart.
4382                         log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
4383                                 payment_preimage, update_res);
4384                 }
4385                 // Note that we do process the completion action here. This totally could be a
4386                 // duplicate claim, but we have no way of knowing without interrogating the
4387                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
4388                 // generally always allowed to be duplicative (and it's specifically noted in
4389                 // `PaymentForwarded`).
4390                 self.handle_monitor_update_completion_actions(completion_action(None));
4391                 Ok(())
4392         }
4393
4394         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
4395                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
4396         }
4397
4398         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_id: [u8; 32]) {
4399                 match source {
4400                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
4401                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage, session_priv, path, from_onchain, &self.pending_events, &self.logger);
4402                         },
4403                         HTLCSource::PreviousHopData(hop_data) => {
4404                                 let prev_outpoint = hop_data.outpoint;
4405                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
4406                                         |htlc_claim_value_msat| {
4407                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
4408                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
4409                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
4410                                                         } else { None };
4411
4412                                                         let prev_channel_id = Some(prev_outpoint.to_channel_id());
4413                                                         let next_channel_id = Some(next_channel_id);
4414
4415                                                         Some(MonitorUpdateCompletionAction::EmitEvent { event: events::Event::PaymentForwarded {
4416                                                                 fee_earned_msat,
4417                                                                 claim_from_onchain_tx: from_onchain,
4418                                                                 prev_channel_id,
4419                                                                 next_channel_id,
4420                                                                 outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
4421                                                         }})
4422                                                 } else { None }
4423                                         });
4424                                 if let Err((pk, err)) = res {
4425                                         let result: Result<(), _> = Err(err);
4426                                         let _ = handle_error!(self, result, pk);
4427                                 }
4428                         },
4429                 }
4430         }
4431
4432         /// Gets the node_id held by this ChannelManager
4433         pub fn get_our_node_id(&self) -> PublicKey {
4434                 self.our_network_pubkey.clone()
4435         }
4436
4437         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
4438                 for action in actions.into_iter() {
4439                         match action {
4440                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
4441                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
4442                                         if let Some(ClaimingPayment { amount_msat, payment_purpose: purpose, receiver_node_id }) = payment {
4443                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
4444                                                         payment_hash, purpose, amount_msat, receiver_node_id: Some(receiver_node_id),
4445                                                 }, None));
4446                                         }
4447                                 },
4448                                 MonitorUpdateCompletionAction::EmitEvent { event } => {
4449                                         self.pending_events.lock().unwrap().push_back((event, None));
4450                                 },
4451                         }
4452                 }
4453         }
4454
4455         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
4456         /// update completion.
4457         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
4458                 channel: &mut Channel<<SP::Target as SignerProvider>::Signer>, raa: Option<msgs::RevokeAndACK>,
4459                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
4460                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
4461                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
4462         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
4463                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
4464                         log_bytes!(channel.channel_id()),
4465                         if raa.is_some() { "an" } else { "no" },
4466                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
4467                         if funding_broadcastable.is_some() { "" } else { "not " },
4468                         if channel_ready.is_some() { "sending" } else { "without" },
4469                         if announcement_sigs.is_some() { "sending" } else { "without" });
4470
4471                 let mut htlc_forwards = None;
4472
4473                 let counterparty_node_id = channel.get_counterparty_node_id();
4474                 if !pending_forwards.is_empty() {
4475                         htlc_forwards = Some((channel.get_short_channel_id().unwrap_or(channel.outbound_scid_alias()),
4476                                 channel.get_funding_txo().unwrap(), channel.get_user_id(), pending_forwards));
4477                 }
4478
4479                 if let Some(msg) = channel_ready {
4480                         send_channel_ready!(self, pending_msg_events, channel, msg);
4481                 }
4482                 if let Some(msg) = announcement_sigs {
4483                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4484                                 node_id: counterparty_node_id,
4485                                 msg,
4486                         });
4487                 }
4488
4489                 macro_rules! handle_cs { () => {
4490                         if let Some(update) = commitment_update {
4491                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4492                                         node_id: counterparty_node_id,
4493                                         updates: update,
4494                                 });
4495                         }
4496                 } }
4497                 macro_rules! handle_raa { () => {
4498                         if let Some(revoke_and_ack) = raa {
4499                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
4500                                         node_id: counterparty_node_id,
4501                                         msg: revoke_and_ack,
4502                                 });
4503                         }
4504                 } }
4505                 match order {
4506                         RAACommitmentOrder::CommitmentFirst => {
4507                                 handle_cs!();
4508                                 handle_raa!();
4509                         },
4510                         RAACommitmentOrder::RevokeAndACKFirst => {
4511                                 handle_raa!();
4512                                 handle_cs!();
4513                         },
4514                 }
4515
4516                 if let Some(tx) = funding_broadcastable {
4517                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
4518                         self.tx_broadcaster.broadcast_transaction(&tx);
4519                 }
4520
4521                 {
4522                         let mut pending_events = self.pending_events.lock().unwrap();
4523                         emit_channel_pending_event!(pending_events, channel);
4524                         emit_channel_ready_event!(pending_events, channel);
4525                 }
4526
4527                 htlc_forwards
4528         }
4529
4530         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
4531                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
4532
4533                 let counterparty_node_id = match counterparty_node_id {
4534                         Some(cp_id) => cp_id.clone(),
4535                         None => {
4536                                 // TODO: Once we can rely on the counterparty_node_id from the
4537                                 // monitor event, this and the id_to_peer map should be removed.
4538                                 let id_to_peer = self.id_to_peer.lock().unwrap();
4539                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
4540                                         Some(cp_id) => cp_id.clone(),
4541                                         None => return,
4542                                 }
4543                         }
4544                 };
4545                 let per_peer_state = self.per_peer_state.read().unwrap();
4546                 let mut peer_state_lock;
4547                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
4548                 if peer_state_mutex_opt.is_none() { return }
4549                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
4550                 let peer_state = &mut *peer_state_lock;
4551                 let mut channel = {
4552                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()){
4553                                 hash_map::Entry::Occupied(chan) => chan,
4554                                 hash_map::Entry::Vacant(_) => return,
4555                         }
4556                 };
4557                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}",
4558                         highest_applied_update_id, channel.get().get_latest_monitor_update_id());
4559                 if !channel.get().is_awaiting_monitor_update() || channel.get().get_latest_monitor_update_id() != highest_applied_update_id {
4560                         return;
4561                 }
4562                 handle_monitor_update_completion!(self, highest_applied_update_id, peer_state_lock, peer_state, per_peer_state, channel.get_mut());
4563         }
4564
4565         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
4566         ///
4567         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
4568         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
4569         /// the channel.
4570         ///
4571         /// The `user_channel_id` parameter will be provided back in
4572         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4573         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4574         ///
4575         /// Note that this method will return an error and reject the channel, if it requires support
4576         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
4577         /// used to accept such channels.
4578         ///
4579         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4580         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4581         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
4582                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
4583         }
4584
4585         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
4586         /// it as confirmed immediately.
4587         ///
4588         /// The `user_channel_id` parameter will be provided back in
4589         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4590         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4591         ///
4592         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
4593         /// and (if the counterparty agrees), enables forwarding of payments immediately.
4594         ///
4595         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
4596         /// transaction and blindly assumes that it will eventually confirm.
4597         ///
4598         /// If it does not confirm before we decide to close the channel, or if the funding transaction
4599         /// does not pay to the correct script the correct amount, *you will lose funds*.
4600         ///
4601         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4602         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4603         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> {
4604                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
4605         }
4606
4607         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
4608                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4609
4610                 let peers_without_funded_channels = self.peers_without_funded_channels(|peer| !peer.channel_by_id.is_empty());
4611                 let per_peer_state = self.per_peer_state.read().unwrap();
4612                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4613                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
4614                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4615                 let peer_state = &mut *peer_state_lock;
4616                 let is_only_peer_channel = peer_state.channel_by_id.len() == 1;
4617                 match peer_state.channel_by_id.entry(temporary_channel_id.clone()) {
4618                         hash_map::Entry::Occupied(mut channel) => {
4619                                 if !channel.get().inbound_is_awaiting_accept() {
4620                                         return Err(APIError::APIMisuseError { err: "The channel isn't currently awaiting to be accepted.".to_owned() });
4621                                 }
4622                                 if accept_0conf {
4623                                         channel.get_mut().set_0conf();
4624                                 } else if channel.get().get_channel_type().requires_zero_conf() {
4625                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
4626                                                 node_id: channel.get().get_counterparty_node_id(),
4627                                                 action: msgs::ErrorAction::SendErrorMessage{
4628                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
4629                                                 }
4630                                         };
4631                                         peer_state.pending_msg_events.push(send_msg_err_event);
4632                                         let _ = remove_channel!(self, channel);
4633                                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
4634                                 } else {
4635                                         // If this peer already has some channels, a new channel won't increase our number of peers
4636                                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
4637                                         // channels per-peer we can accept channels from a peer with existing ones.
4638                                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
4639                                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
4640                                                         node_id: channel.get().get_counterparty_node_id(),
4641                                                         action: msgs::ErrorAction::SendErrorMessage{
4642                                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
4643                                                         }
4644                                                 };
4645                                                 peer_state.pending_msg_events.push(send_msg_err_event);
4646                                                 let _ = remove_channel!(self, channel);
4647                                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
4648                                         }
4649                                 }
4650
4651                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4652                                         node_id: channel.get().get_counterparty_node_id(),
4653                                         msg: channel.get_mut().accept_inbound_channel(user_channel_id),
4654                                 });
4655                         }
4656                         hash_map::Entry::Vacant(_) => {
4657                                 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) });
4658                         }
4659                 }
4660                 Ok(())
4661         }
4662
4663         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
4664         /// or 0-conf channels.
4665         ///
4666         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
4667         /// non-0-conf channels we have with the peer.
4668         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
4669         where Filter: Fn(&PeerState<<SP::Target as SignerProvider>::Signer>) -> bool {
4670                 let mut peers_without_funded_channels = 0;
4671                 let best_block_height = self.best_block.read().unwrap().height();
4672                 {
4673                         let peer_state_lock = self.per_peer_state.read().unwrap();
4674                         for (_, peer_mtx) in peer_state_lock.iter() {
4675                                 let peer = peer_mtx.lock().unwrap();
4676                                 if !maybe_count_peer(&*peer) { continue; }
4677                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
4678                                 if num_unfunded_channels == peer.channel_by_id.len() {
4679                                         peers_without_funded_channels += 1;
4680                                 }
4681                         }
4682                 }
4683                 return peers_without_funded_channels;
4684         }
4685
4686         fn unfunded_channel_count(
4687                 peer: &PeerState<<SP::Target as SignerProvider>::Signer>, best_block_height: u32
4688         ) -> usize {
4689                 let mut num_unfunded_channels = 0;
4690                 for (_, chan) in peer.channel_by_id.iter() {
4691                         if !chan.is_outbound() && chan.minimum_depth().unwrap_or(1) != 0 &&
4692                                 chan.get_funding_tx_confirmations(best_block_height) == 0
4693                         {
4694                                 num_unfunded_channels += 1;
4695                         }
4696                 }
4697                 num_unfunded_channels
4698         }
4699
4700         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
4701                 if msg.chain_hash != self.genesis_hash {
4702                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
4703                 }
4704
4705                 if !self.default_configuration.accept_inbound_channels {
4706                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4707                 }
4708
4709                 let mut random_bytes = [0u8; 16];
4710                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
4711                 let user_channel_id = u128::from_be_bytes(random_bytes);
4712                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
4713
4714                 // Get the number of peers with channels, but without funded ones. We don't care too much
4715                 // about peers that never open a channel, so we filter by peers that have at least one
4716                 // channel, and then limit the number of those with unfunded channels.
4717                 let channeled_peers_without_funding = self.peers_without_funded_channels(|node| !node.channel_by_id.is_empty());
4718
4719                 let per_peer_state = self.per_peer_state.read().unwrap();
4720                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4721                     .ok_or_else(|| {
4722                                 debug_assert!(false);
4723                                 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())
4724                         })?;
4725                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4726                 let peer_state = &mut *peer_state_lock;
4727
4728                 // If this peer already has some channels, a new channel won't increase our number of peers
4729                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
4730                 // channels per-peer we can accept channels from a peer with existing ones.
4731                 if peer_state.channel_by_id.is_empty() &&
4732                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
4733                         !self.default_configuration.manually_accept_inbound_channels
4734                 {
4735                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
4736                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
4737                                 msg.temporary_channel_id.clone()));
4738                 }
4739
4740                 let best_block_height = self.best_block.read().unwrap().height();
4741                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
4742                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
4743                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
4744                                 msg.temporary_channel_id.clone()));
4745                 }
4746
4747                 let mut channel = match Channel::new_from_req(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
4748                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
4749                         &self.default_configuration, best_block_height, &self.logger, outbound_scid_alias)
4750                 {
4751                         Err(e) => {
4752                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4753                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
4754                         },
4755                         Ok(res) => res
4756                 };
4757                 match peer_state.channel_by_id.entry(channel.channel_id()) {
4758                         hash_map::Entry::Occupied(_) => {
4759                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4760                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()))
4761                         },
4762                         hash_map::Entry::Vacant(entry) => {
4763                                 if !self.default_configuration.manually_accept_inbound_channels {
4764                                         if channel.get_channel_type().requires_zero_conf() {
4765                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4766                                         }
4767                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4768                                                 node_id: counterparty_node_id.clone(),
4769                                                 msg: channel.accept_inbound_channel(user_channel_id),
4770                                         });
4771                                 } else {
4772                                         let mut pending_events = self.pending_events.lock().unwrap();
4773                                         pending_events.push_back((events::Event::OpenChannelRequest {
4774                                                 temporary_channel_id: msg.temporary_channel_id.clone(),
4775                                                 counterparty_node_id: counterparty_node_id.clone(),
4776                                                 funding_satoshis: msg.funding_satoshis,
4777                                                 push_msat: msg.push_msat,
4778                                                 channel_type: channel.get_channel_type().clone(),
4779                                         }, None));
4780                                 }
4781
4782                                 entry.insert(channel);
4783                         }
4784                 }
4785                 Ok(())
4786         }
4787
4788         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
4789                 let (value, output_script, user_id) = {
4790                         let per_peer_state = self.per_peer_state.read().unwrap();
4791                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4792                                 .ok_or_else(|| {
4793                                         debug_assert!(false);
4794                                         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)
4795                                 })?;
4796                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4797                         let peer_state = &mut *peer_state_lock;
4798                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
4799                                 hash_map::Entry::Occupied(mut chan) => {
4800                                         try_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), chan);
4801                                         (chan.get().get_value_satoshis(), chan.get().get_funding_redeemscript().to_v0_p2wsh(), chan.get().get_user_id())
4802                                 },
4803                                 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))
4804                         }
4805                 };
4806                 let mut pending_events = self.pending_events.lock().unwrap();
4807                 pending_events.push_back((events::Event::FundingGenerationReady {
4808                         temporary_channel_id: msg.temporary_channel_id,
4809                         counterparty_node_id: *counterparty_node_id,
4810                         channel_value_satoshis: value,
4811                         output_script,
4812                         user_channel_id: user_id,
4813                 }, None));
4814                 Ok(())
4815         }
4816
4817         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
4818                 let best_block = *self.best_block.read().unwrap();
4819
4820                 let per_peer_state = self.per_peer_state.read().unwrap();
4821                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4822                         .ok_or_else(|| {
4823                                 debug_assert!(false);
4824                                 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)
4825                         })?;
4826
4827                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4828                 let peer_state = &mut *peer_state_lock;
4829                 let ((funding_msg, monitor), chan) =
4830                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
4831                                 hash_map::Entry::Occupied(mut chan) => {
4832                                         (try_chan_entry!(self, chan.get_mut().funding_created(msg, best_block, &self.signer_provider, &self.logger), chan), chan.remove())
4833                                 },
4834                                 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))
4835                         };
4836
4837                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
4838                         hash_map::Entry::Occupied(_) => {
4839                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
4840                         },
4841                         hash_map::Entry::Vacant(e) => {
4842                                 match self.id_to_peer.lock().unwrap().entry(chan.channel_id()) {
4843                                         hash_map::Entry::Occupied(_) => {
4844                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
4845                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
4846                                                         funding_msg.channel_id))
4847                                         },
4848                                         hash_map::Entry::Vacant(i_e) => {
4849                                                 i_e.insert(chan.get_counterparty_node_id());
4850                                         }
4851                                 }
4852
4853                                 // There's no problem signing a counterparty's funding transaction if our monitor
4854                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
4855                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
4856                                 // until we have persisted our monitor.
4857                                 let new_channel_id = funding_msg.channel_id;
4858                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
4859                                         node_id: counterparty_node_id.clone(),
4860                                         msg: funding_msg,
4861                                 });
4862
4863                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
4864
4865                                 let chan = e.insert(chan);
4866                                 let mut res = handle_new_monitor_update!(self, monitor_res, 0, peer_state_lock, peer_state,
4867                                         per_peer_state, chan, MANUALLY_REMOVING, { peer_state.channel_by_id.remove(&new_channel_id) });
4868
4869                                 // Note that we reply with the new channel_id in error messages if we gave up on the
4870                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
4871                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
4872                                 // any messages referencing a previously-closed channel anyway.
4873                                 // We do not propagate the monitor update to the user as it would be for a monitor
4874                                 // that we didn't manage to store (and that we don't care about - we don't respond
4875                                 // with the funding_signed so the channel can never go on chain).
4876                                 if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
4877                                         res.0 = None;
4878                                 }
4879                                 res
4880                         }
4881                 }
4882         }
4883
4884         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
4885                 let best_block = *self.best_block.read().unwrap();
4886                 let per_peer_state = self.per_peer_state.read().unwrap();
4887                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4888                         .ok_or_else(|| {
4889                                 debug_assert!(false);
4890                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
4891                         })?;
4892
4893                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4894                 let peer_state = &mut *peer_state_lock;
4895                 match peer_state.channel_by_id.entry(msg.channel_id) {
4896                         hash_map::Entry::Occupied(mut chan) => {
4897                                 let monitor = try_chan_entry!(self,
4898                                         chan.get_mut().funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan);
4899                                 let update_res = self.chain_monitor.watch_channel(chan.get().get_funding_txo().unwrap(), monitor);
4900                                 let mut res = handle_new_monitor_update!(self, update_res, 0, peer_state_lock, peer_state, per_peer_state, chan);
4901                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
4902                                         // We weren't able to watch the channel to begin with, so no updates should be made on
4903                                         // it. Previously, full_stack_target found an (unreachable) panic when the
4904                                         // monitor update contained within `shutdown_finish` was applied.
4905                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
4906                                                 shutdown_finish.0.take();
4907                                         }
4908                                 }
4909                                 res
4910                         },
4911                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4912                 }
4913         }
4914
4915         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
4916                 let per_peer_state = self.per_peer_state.read().unwrap();
4917                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4918                         .ok_or_else(|| {
4919                                 debug_assert!(false);
4920                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
4921                         })?;
4922                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4923                 let peer_state = &mut *peer_state_lock;
4924                 match peer_state.channel_by_id.entry(msg.channel_id) {
4925                         hash_map::Entry::Occupied(mut chan) => {
4926                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, &self.node_signer,
4927                                         self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan);
4928                                 if let Some(announcement_sigs) = announcement_sigs_opt {
4929                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().channel_id()));
4930                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4931                                                 node_id: counterparty_node_id.clone(),
4932                                                 msg: announcement_sigs,
4933                                         });
4934                                 } else if chan.get().is_usable() {
4935                                         // If we're sending an announcement_signatures, we'll send the (public)
4936                                         // channel_update after sending a channel_announcement when we receive our
4937                                         // counterparty's announcement_signatures. Thus, we only bother to send a
4938                                         // channel_update here if the channel is not public, i.e. we're not sending an
4939                                         // announcement_signatures.
4940                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().channel_id()));
4941                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
4942                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4943                                                         node_id: counterparty_node_id.clone(),
4944                                                         msg,
4945                                                 });
4946                                         }
4947                                 }
4948
4949                                 {
4950                                         let mut pending_events = self.pending_events.lock().unwrap();
4951                                         emit_channel_ready_event!(pending_events, chan.get_mut());
4952                                 }
4953
4954                                 Ok(())
4955                         },
4956                         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))
4957                 }
4958         }
4959
4960         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
4961                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
4962                 let result: Result<(), _> = loop {
4963                         let per_peer_state = self.per_peer_state.read().unwrap();
4964                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
4965                                 .ok_or_else(|| {
4966                                         debug_assert!(false);
4967                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
4968                                 })?;
4969                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4970                         let peer_state = &mut *peer_state_lock;
4971                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
4972                                 hash_map::Entry::Occupied(mut chan_entry) => {
4973
4974                                         if !chan_entry.get().received_shutdown() {
4975                                                 log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
4976                                                         log_bytes!(msg.channel_id),
4977                                                         if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
4978                                         }
4979
4980                                         let funding_txo_opt = chan_entry.get().get_funding_txo();
4981                                         let (shutdown, monitor_update_opt, htlcs) = try_chan_entry!(self,
4982                                                 chan_entry.get_mut().shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_entry);
4983                                         dropped_htlcs = htlcs;
4984
4985                                         if let Some(msg) = shutdown {
4986                                                 // We can send the `shutdown` message before updating the `ChannelMonitor`
4987                                                 // here as we don't need the monitor update to complete until we send a
4988                                                 // `shutdown_signed`, which we'll delay if we're pending a monitor update.
4989                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
4990                                                         node_id: *counterparty_node_id,
4991                                                         msg,
4992                                                 });
4993                                         }
4994
4995                                         // Update the monitor with the shutdown script if necessary.
4996                                         if let Some(monitor_update) = monitor_update_opt {
4997                                                 let update_id = monitor_update.update_id;
4998                                                 let update_res = self.chain_monitor.update_channel(funding_txo_opt.unwrap(), monitor_update);
4999                                                 break handle_new_monitor_update!(self, update_res, update_id, peer_state_lock, peer_state, per_peer_state, chan_entry);
5000                                         }
5001                                         break Ok(());
5002                                 },
5003                                 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))
5004                         }
5005                 };
5006                 for htlc_source in dropped_htlcs.drain(..) {
5007                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5008                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5009                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5010                 }
5011
5012                 result
5013         }
5014
5015         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5016                 let per_peer_state = self.per_peer_state.read().unwrap();
5017                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5018                         .ok_or_else(|| {
5019                                 debug_assert!(false);
5020                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5021                         })?;
5022                 let (tx, chan_option) = {
5023                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5024                         let peer_state = &mut *peer_state_lock;
5025                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5026                                 hash_map::Entry::Occupied(mut chan_entry) => {
5027                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), chan_entry);
5028                                         if let Some(msg) = closing_signed {
5029                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5030                                                         node_id: counterparty_node_id.clone(),
5031                                                         msg,
5032                                                 });
5033                                         }
5034                                         if tx.is_some() {
5035                                                 // We're done with this channel, we've got a signed closing transaction and
5036                                                 // will send the closing_signed back to the remote peer upon return. This
5037                                                 // also implies there are no pending HTLCs left on the channel, so we can
5038                                                 // fully delete it from tracking (the channel monitor is still around to
5039                                                 // watch for old state broadcasts)!
5040                                                 (tx, Some(remove_channel!(self, chan_entry)))
5041                                         } else { (tx, None) }
5042                                 },
5043                                 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))
5044                         }
5045                 };
5046                 if let Some(broadcast_tx) = tx {
5047                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5048                         self.tx_broadcaster.broadcast_transaction(&broadcast_tx);
5049                 }
5050                 if let Some(chan) = chan_option {
5051                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5052                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5053                                 let peer_state = &mut *peer_state_lock;
5054                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5055                                         msg: update
5056                                 });
5057                         }
5058                         self.issue_channel_close_events(&chan, ClosureReason::CooperativeClosure);
5059                 }
5060                 Ok(())
5061         }
5062
5063         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5064                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5065                 //determine the state of the payment based on our response/if we forward anything/the time
5066                 //we take to respond. We should take care to avoid allowing such an attack.
5067                 //
5068                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5069                 //us repeatedly garbled in different ways, and compare our error messages, which are
5070                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5071                 //but we should prevent it anyway.
5072
5073                 let pending_forward_info = self.decode_update_add_htlc_onion(msg);
5074                 let per_peer_state = self.per_peer_state.read().unwrap();
5075                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5076                         .ok_or_else(|| {
5077                                 debug_assert!(false);
5078                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5079                         })?;
5080                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5081                 let peer_state = &mut *peer_state_lock;
5082                 match peer_state.channel_by_id.entry(msg.channel_id) {
5083                         hash_map::Entry::Occupied(mut chan) => {
5084
5085                                 let create_pending_htlc_status = |chan: &Channel<<SP::Target as SignerProvider>::Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
5086                                         // If the update_add is completely bogus, the call will Err and we will close,
5087                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
5088                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
5089                                         match pending_forward_info {
5090                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
5091                                                         let reason = if (error_code & 0x1000) != 0 {
5092                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
5093                                                                 HTLCFailReason::reason(real_code, error_data)
5094                                                         } else {
5095                                                                 HTLCFailReason::from_failure_code(error_code)
5096                                                         }.get_encrypted_failure_packet(incoming_shared_secret, &None);
5097                                                         let msg = msgs::UpdateFailHTLC {
5098                                                                 channel_id: msg.channel_id,
5099                                                                 htlc_id: msg.htlc_id,
5100                                                                 reason
5101                                                         };
5102                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
5103                                                 },
5104                                                 _ => pending_forward_info
5105                                         }
5106                                 };
5107                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), chan);
5108                         },
5109                         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))
5110                 }
5111                 Ok(())
5112         }
5113
5114         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
5115                 let (htlc_source, forwarded_htlc_value) = {
5116                         let per_peer_state = self.per_peer_state.read().unwrap();
5117                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5118                                 .ok_or_else(|| {
5119                                         debug_assert!(false);
5120                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5121                                 })?;
5122                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5123                         let peer_state = &mut *peer_state_lock;
5124                         match peer_state.channel_by_id.entry(msg.channel_id) {
5125                                 hash_map::Entry::Occupied(mut chan) => {
5126                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), chan)
5127                                 },
5128                                 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))
5129                         }
5130                 };
5131                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, msg.channel_id);
5132                 Ok(())
5133         }
5134
5135         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
5136                 let per_peer_state = self.per_peer_state.read().unwrap();
5137                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5138                         .ok_or_else(|| {
5139                                 debug_assert!(false);
5140                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5141                         })?;
5142                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5143                 let peer_state = &mut *peer_state_lock;
5144                 match peer_state.channel_by_id.entry(msg.channel_id) {
5145                         hash_map::Entry::Occupied(mut chan) => {
5146                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan);
5147                         },
5148                         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))
5149                 }
5150                 Ok(())
5151         }
5152
5153         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
5154                 let per_peer_state = self.per_peer_state.read().unwrap();
5155                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5156                         .ok_or_else(|| {
5157                                 debug_assert!(false);
5158                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5159                         })?;
5160                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5161                 let peer_state = &mut *peer_state_lock;
5162                 match peer_state.channel_by_id.entry(msg.channel_id) {
5163                         hash_map::Entry::Occupied(mut chan) => {
5164                                 if (msg.failure_code & 0x8000) == 0 {
5165                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
5166                                         try_chan_entry!(self, Err(chan_err), chan);
5167                                 }
5168                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan);
5169                                 Ok(())
5170                         },
5171                         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))
5172                 }
5173         }
5174
5175         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
5176                 let per_peer_state = self.per_peer_state.read().unwrap();
5177                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5178                         .ok_or_else(|| {
5179                                 debug_assert!(false);
5180                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5181                         })?;
5182                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5183                 let peer_state = &mut *peer_state_lock;
5184                 match peer_state.channel_by_id.entry(msg.channel_id) {
5185                         hash_map::Entry::Occupied(mut chan) => {
5186                                 let funding_txo = chan.get().get_funding_txo();
5187                                 let monitor_update_opt = try_chan_entry!(self, chan.get_mut().commitment_signed(&msg, &self.logger), chan);
5188                                 if let Some(monitor_update) = monitor_update_opt {
5189                                         let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5190                                         let update_id = monitor_update.update_id;
5191                                         handle_new_monitor_update!(self, update_res, update_id, peer_state_lock,
5192                                                 peer_state, per_peer_state, chan)
5193                                 } else { Ok(()) }
5194                         },
5195                         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))
5196                 }
5197         }
5198
5199         #[inline]
5200         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
5201                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
5202                         let mut push_forward_event = false;
5203                         let mut new_intercept_events = VecDeque::new();
5204                         let mut failed_intercept_forwards = Vec::new();
5205                         if !pending_forwards.is_empty() {
5206                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
5207                                         let scid = match forward_info.routing {
5208                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
5209                                                 PendingHTLCRouting::Receive { .. } => 0,
5210                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
5211                                         };
5212                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
5213                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
5214
5215                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5216                                         let forward_htlcs_empty = forward_htlcs.is_empty();
5217                                         match forward_htlcs.entry(scid) {
5218                                                 hash_map::Entry::Occupied(mut entry) => {
5219                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5220                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
5221                                                 },
5222                                                 hash_map::Entry::Vacant(entry) => {
5223                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
5224                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
5225                                                         {
5226                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
5227                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
5228                                                                 match pending_intercepts.entry(intercept_id) {
5229                                                                         hash_map::Entry::Vacant(entry) => {
5230                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
5231                                                                                         requested_next_hop_scid: scid,
5232                                                                                         payment_hash: forward_info.payment_hash,
5233                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
5234                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
5235                                                                                         intercept_id
5236                                                                                 }, None));
5237                                                                                 entry.insert(PendingAddHTLCInfo {
5238                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
5239                                                                         },
5240                                                                         hash_map::Entry::Occupied(_) => {
5241                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
5242                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
5243                                                                                         short_channel_id: prev_short_channel_id,
5244                                                                                         outpoint: prev_funding_outpoint,
5245                                                                                         htlc_id: prev_htlc_id,
5246                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
5247                                                                                         phantom_shared_secret: None,
5248                                                                                 });
5249
5250                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
5251                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
5252                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
5253                                                                                 ));
5254                                                                         }
5255                                                                 }
5256                                                         } else {
5257                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
5258                                                                 // payments are being processed.
5259                                                                 if forward_htlcs_empty {
5260                                                                         push_forward_event = true;
5261                                                                 }
5262                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
5263                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
5264                                                         }
5265                                                 }
5266                                         }
5267                                 }
5268                         }
5269
5270                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
5271                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
5272                         }
5273
5274                         if !new_intercept_events.is_empty() {
5275                                 let mut events = self.pending_events.lock().unwrap();
5276                                 events.append(&mut new_intercept_events);
5277                         }
5278                         if push_forward_event { self.push_pending_forwards_ev() }
5279                 }
5280         }
5281
5282         // We only want to push a PendingHTLCsForwardable event if no others are queued.
5283         fn push_pending_forwards_ev(&self) {
5284                 let mut pending_events = self.pending_events.lock().unwrap();
5285                 let forward_ev_exists = pending_events.iter()
5286                         .find(|(ev, _)| if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false })
5287                         .is_some();
5288                 if !forward_ev_exists {
5289                         pending_events.push_back((events::Event::PendingHTLCsForwardable {
5290                                 time_forwardable:
5291                                         Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
5292                         }, None));
5293                 }
5294         }
5295
5296         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
5297                 let (htlcs_to_fail, res) = {
5298                         let per_peer_state = self.per_peer_state.read().unwrap();
5299                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
5300                                 .ok_or_else(|| {
5301                                         debug_assert!(false);
5302                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5303                                 }).map(|mtx| mtx.lock().unwrap())?;
5304                         let peer_state = &mut *peer_state_lock;
5305                         match peer_state.channel_by_id.entry(msg.channel_id) {
5306                                 hash_map::Entry::Occupied(mut chan) => {
5307                                         let funding_txo = chan.get().get_funding_txo();
5308                                         let (htlcs_to_fail, monitor_update_opt) = try_chan_entry!(self, chan.get_mut().revoke_and_ack(&msg, &self.logger), chan);
5309                                         let res = if let Some(monitor_update) = monitor_update_opt {
5310                                                 let update_res = self.chain_monitor.update_channel(funding_txo.unwrap(), monitor_update);
5311                                                 let update_id = monitor_update.update_id;
5312                                                 handle_new_monitor_update!(self, update_res, update_id,
5313                                                         peer_state_lock, peer_state, per_peer_state, chan)
5314                                         } else { Ok(()) };
5315                                         (htlcs_to_fail, res)
5316                                 },
5317                                 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))
5318                         }
5319                 };
5320                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
5321                 res
5322         }
5323
5324         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
5325                 let per_peer_state = self.per_peer_state.read().unwrap();
5326                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5327                         .ok_or_else(|| {
5328                                 debug_assert!(false);
5329                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5330                         })?;
5331                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5332                 let peer_state = &mut *peer_state_lock;
5333                 match peer_state.channel_by_id.entry(msg.channel_id) {
5334                         hash_map::Entry::Occupied(mut chan) => {
5335                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg, &self.logger), chan);
5336                         },
5337                         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))
5338                 }
5339                 Ok(())
5340         }
5341
5342         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
5343                 let per_peer_state = self.per_peer_state.read().unwrap();
5344                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5345                         .ok_or_else(|| {
5346                                 debug_assert!(false);
5347                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5348                         })?;
5349                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5350                 let peer_state = &mut *peer_state_lock;
5351                 match peer_state.channel_by_id.entry(msg.channel_id) {
5352                         hash_map::Entry::Occupied(mut chan) => {
5353                                 if !chan.get().is_usable() {
5354                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
5355                                 }
5356
5357                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5358                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
5359                                                 &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
5360                                                 msg, &self.default_configuration
5361                                         ), chan),
5362                                         // Note that announcement_signatures fails if the channel cannot be announced,
5363                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5364                                         update_msg: Some(self.get_channel_update_for_broadcast(chan.get()).unwrap()),
5365                                 });
5366                         },
5367                         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))
5368                 }
5369                 Ok(())
5370         }
5371
5372         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
5373         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
5374                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
5375                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
5376                         None => {
5377                                 // It's not a local channel
5378                                 return Ok(NotifyOption::SkipPersist)
5379                         }
5380                 };
5381                 let per_peer_state = self.per_peer_state.read().unwrap();
5382                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
5383                 if peer_state_mutex_opt.is_none() {
5384                         return Ok(NotifyOption::SkipPersist)
5385                 }
5386                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5387                 let peer_state = &mut *peer_state_lock;
5388                 match peer_state.channel_by_id.entry(chan_id) {
5389                         hash_map::Entry::Occupied(mut chan) => {
5390                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5391                                         if chan.get().should_announce() {
5392                                                 // If the announcement is about a channel of ours which is public, some
5393                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
5394                                                 // a scary-looking error message and return Ok instead.
5395                                                 return Ok(NotifyOption::SkipPersist);
5396                                         }
5397                                         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));
5398                                 }
5399                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().get_counterparty_node_id().serialize()[..];
5400                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
5401                                 if were_node_one == msg_from_node_one {
5402                                         return Ok(NotifyOption::SkipPersist);
5403                                 } else {
5404                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
5405                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), chan);
5406                                 }
5407                         },
5408                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
5409                 }
5410                 Ok(NotifyOption::DoPersist)
5411         }
5412
5413         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
5414                 let htlc_forwards;
5415                 let need_lnd_workaround = {
5416                         let per_peer_state = self.per_peer_state.read().unwrap();
5417
5418                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5419                                 .ok_or_else(|| {
5420                                         debug_assert!(false);
5421                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5422                                 })?;
5423                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5424                         let peer_state = &mut *peer_state_lock;
5425                         match peer_state.channel_by_id.entry(msg.channel_id) {
5426                                 hash_map::Entry::Occupied(mut chan) => {
5427                                         // Currently, we expect all holding cell update_adds to be dropped on peer
5428                                         // disconnect, so Channel's reestablish will never hand us any holding cell
5429                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
5430                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
5431                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
5432                                                 msg, &self.logger, &self.node_signer, self.genesis_hash,
5433                                                 &self.default_configuration, &*self.best_block.read().unwrap()), chan);
5434                                         let mut channel_update = None;
5435                                         if let Some(msg) = responses.shutdown_msg {
5436                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5437                                                         node_id: counterparty_node_id.clone(),
5438                                                         msg,
5439                                                 });
5440                                         } else if chan.get().is_usable() {
5441                                                 // If the channel is in a usable state (ie the channel is not being shut
5442                                                 // down), send a unicast channel_update to our counterparty to make sure
5443                                                 // they have the latest channel parameters.
5444                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5445                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
5446                                                                 node_id: chan.get().get_counterparty_node_id(),
5447                                                                 msg,
5448                                                         });
5449                                                 }
5450                                         }
5451                                         let need_lnd_workaround = chan.get_mut().workaround_lnd_bug_4006.take();
5452                                         htlc_forwards = self.handle_channel_resumption(
5453                                                 &mut peer_state.pending_msg_events, chan.get_mut(), responses.raa, responses.commitment_update, responses.order,
5454                                                 Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
5455                                         if let Some(upd) = channel_update {
5456                                                 peer_state.pending_msg_events.push(upd);
5457                                         }
5458                                         need_lnd_workaround
5459                                 },
5460                                 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))
5461                         }
5462                 };
5463
5464                 if let Some(forwards) = htlc_forwards {
5465                         self.forward_htlcs(&mut [forwards][..]);
5466                 }
5467
5468                 if let Some(channel_ready_msg) = need_lnd_workaround {
5469                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
5470                 }
5471                 Ok(())
5472         }
5473
5474         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
5475         fn process_pending_monitor_events(&self) -> bool {
5476                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5477
5478                 let mut failed_channels = Vec::new();
5479                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
5480                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
5481                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
5482                         for monitor_event in monitor_events.drain(..) {
5483                                 match monitor_event {
5484                                         MonitorEvent::HTLCEvent(htlc_update) => {
5485                                                 if let Some(preimage) = htlc_update.payment_preimage {
5486                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
5487                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint.to_channel_id());
5488                                                 } else {
5489                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
5490                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
5491                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5492                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
5493                                                 }
5494                                         },
5495                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
5496                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
5497                                                 let counterparty_node_id_opt = match counterparty_node_id {
5498                                                         Some(cp_id) => Some(cp_id),
5499                                                         None => {
5500                                                                 // TODO: Once we can rely on the counterparty_node_id from the
5501                                                                 // monitor event, this and the id_to_peer map should be removed.
5502                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5503                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
5504                                                         }
5505                                                 };
5506                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
5507                                                         let per_peer_state = self.per_peer_state.read().unwrap();
5508                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
5509                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5510                                                                 let peer_state = &mut *peer_state_lock;
5511                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5512                                                                 if let hash_map::Entry::Occupied(chan_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
5513                                                                         let mut chan = remove_channel!(self, chan_entry);
5514                                                                         failed_channels.push(chan.force_shutdown(false));
5515                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5516                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5517                                                                                         msg: update
5518                                                                                 });
5519                                                                         }
5520                                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
5521                                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
5522                                                                         } else {
5523                                                                                 ClosureReason::CommitmentTxConfirmed
5524                                                                         };
5525                                                                         self.issue_channel_close_events(&chan, reason);
5526                                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5527                                                                                 node_id: chan.get_counterparty_node_id(),
5528                                                                                 action: msgs::ErrorAction::SendErrorMessage {
5529                                                                                         msg: msgs::ErrorMessage { channel_id: chan.channel_id(), data: "Channel force-closed".to_owned() }
5530                                                                                 },
5531                                                                         });
5532                                                                 }
5533                                                         }
5534                                                 }
5535                                         },
5536                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
5537                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
5538                                         },
5539                                 }
5540                         }
5541                 }
5542
5543                 for failure in failed_channels.drain(..) {
5544                         self.finish_force_close_channel(failure);
5545                 }
5546
5547                 has_pending_monitor_events
5548         }
5549
5550         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
5551         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
5552         /// update events as a separate process method here.
5553         #[cfg(fuzzing)]
5554         pub fn process_monitor_events(&self) {
5555                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
5556                         if self.process_pending_monitor_events() {
5557                                 NotifyOption::DoPersist
5558                         } else {
5559                                 NotifyOption::SkipPersist
5560                         }
5561                 });
5562         }
5563
5564         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
5565         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
5566         /// update was applied.
5567         fn check_free_holding_cells(&self) -> bool {
5568                 let mut has_monitor_update = false;
5569                 let mut failed_htlcs = Vec::new();
5570                 let mut handle_errors = Vec::new();
5571
5572                 // Walk our list of channels and find any that need to update. Note that when we do find an
5573                 // update, if it includes actions that must be taken afterwards, we have to drop the
5574                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
5575                 // manage to go through all our peers without finding a single channel to update.
5576                 'peer_loop: loop {
5577                         let per_peer_state = self.per_peer_state.read().unwrap();
5578                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5579                                 'chan_loop: loop {
5580                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5581                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
5582                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut() {
5583                                                 let counterparty_node_id = chan.get_counterparty_node_id();
5584                                                 let funding_txo = chan.get_funding_txo();
5585                                                 let (monitor_opt, holding_cell_failed_htlcs) =
5586                                                         chan.maybe_free_holding_cell_htlcs(&self.logger);
5587                                                 if !holding_cell_failed_htlcs.is_empty() {
5588                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
5589                                                 }
5590                                                 if let Some(monitor_update) = monitor_opt {
5591                                                         has_monitor_update = true;
5592
5593                                                         let update_res = self.chain_monitor.update_channel(
5594                                                                 funding_txo.expect("channel is live"), monitor_update);
5595                                                         let update_id = monitor_update.update_id;
5596                                                         let channel_id: [u8; 32] = *channel_id;
5597                                                         let res = handle_new_monitor_update!(self, update_res, update_id,
5598                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
5599                                                                 peer_state.channel_by_id.remove(&channel_id));
5600                                                         if res.is_err() {
5601                                                                 handle_errors.push((counterparty_node_id, res));
5602                                                         }
5603                                                         continue 'peer_loop;
5604                                                 }
5605                                         }
5606                                         break 'chan_loop;
5607                                 }
5608                         }
5609                         break 'peer_loop;
5610                 }
5611
5612                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
5613                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
5614                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
5615                 }
5616
5617                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5618                         let _ = handle_error!(self, err, counterparty_node_id);
5619                 }
5620
5621                 has_update
5622         }
5623
5624         /// Check whether any channels have finished removing all pending updates after a shutdown
5625         /// exchange and can now send a closing_signed.
5626         /// Returns whether any closing_signed messages were generated.
5627         fn maybe_generate_initial_closing_signed(&self) -> bool {
5628                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
5629                 let mut has_update = false;
5630                 {
5631                         let per_peer_state = self.per_peer_state.read().unwrap();
5632
5633                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5634                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5635                                 let peer_state = &mut *peer_state_lock;
5636                                 let pending_msg_events = &mut peer_state.pending_msg_events;
5637                                 peer_state.channel_by_id.retain(|channel_id, chan| {
5638                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
5639                                                 Ok((msg_opt, tx_opt)) => {
5640                                                         if let Some(msg) = msg_opt {
5641                                                                 has_update = true;
5642                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5643                                                                         node_id: chan.get_counterparty_node_id(), msg,
5644                                                                 });
5645                                                         }
5646                                                         if let Some(tx) = tx_opt {
5647                                                                 // We're done with this channel. We got a closing_signed and sent back
5648                                                                 // a closing_signed with a closing transaction to broadcast.
5649                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5650                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5651                                                                                 msg: update
5652                                                                         });
5653                                                                 }
5654
5655                                                                 self.issue_channel_close_events(chan, ClosureReason::CooperativeClosure);
5656
5657                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
5658                                                                 self.tx_broadcaster.broadcast_transaction(&tx);
5659                                                                 update_maps_on_chan_removal!(self, chan);
5660                                                                 false
5661                                                         } else { true }
5662                                                 },
5663                                                 Err(e) => {
5664                                                         has_update = true;
5665                                                         let (close_channel, res) = convert_chan_err!(self, e, chan, channel_id);
5666                                                         handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5667                                                         !close_channel
5668                                                 }
5669                                         }
5670                                 });
5671                         }
5672                 }
5673
5674                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5675                         let _ = handle_error!(self, err, counterparty_node_id);
5676                 }
5677
5678                 has_update
5679         }
5680
5681         /// Handle a list of channel failures during a block_connected or block_disconnected call,
5682         /// pushing the channel monitor update (if any) to the background events queue and removing the
5683         /// Channel object.
5684         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
5685                 for mut failure in failed_channels.drain(..) {
5686                         // Either a commitment transactions has been confirmed on-chain or
5687                         // Channel::block_disconnected detected that the funding transaction has been
5688                         // reorganized out of the main chain.
5689                         // We cannot broadcast our latest local state via monitor update (as
5690                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
5691                         // so we track the update internally and handle it when the user next calls
5692                         // timer_tick_occurred, guaranteeing we're running normally.
5693                         if let Some((funding_txo, update)) = failure.0.take() {
5694                                 assert_eq!(update.updates.len(), 1);
5695                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
5696                                         assert!(should_broadcast);
5697                                 } else { unreachable!(); }
5698                                 self.pending_background_events.lock().unwrap().push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup((funding_txo, update)));
5699                         }
5700                         self.finish_force_close_channel(failure);
5701                 }
5702         }
5703
5704         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> {
5705                 assert!(invoice_expiry_delta_secs <= 60*60*24*365); // Sadly bitcoin timestamps are u32s, so panic before 2106
5706
5707                 if min_value_msat.is_some() && min_value_msat.unwrap() > MAX_VALUE_MSAT {
5708                         return Err(APIError::APIMisuseError { err: format!("min_value_msat of {} greater than total 21 million bitcoin supply", min_value_msat.unwrap()) });
5709                 }
5710
5711                 let payment_secret = PaymentSecret(self.entropy_source.get_secure_random_bytes());
5712
5713                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5714                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5715                 match payment_secrets.entry(payment_hash) {
5716                         hash_map::Entry::Vacant(e) => {
5717                                 e.insert(PendingInboundPayment {
5718                                         payment_secret, min_value_msat, payment_preimage,
5719                                         user_payment_id: 0, // For compatibility with version 0.0.103 and earlier
5720                                         // We assume that highest_seen_timestamp is pretty close to the current time -
5721                                         // it's updated when we receive a new block with the maximum time we've seen in
5722                                         // a header. It should never be more than two hours in the future.
5723                                         // Thus, we add two hours here as a buffer to ensure we absolutely
5724                                         // never fail a payment too early.
5725                                         // Note that we assume that received blocks have reasonably up-to-date
5726                                         // timestamps.
5727                                         expiry_time: self.highest_seen_timestamp.load(Ordering::Acquire) as u64 + invoice_expiry_delta_secs as u64 + 7200,
5728                                 });
5729                         },
5730                         hash_map::Entry::Occupied(_) => return Err(APIError::APIMisuseError { err: "Duplicate payment hash".to_owned() }),
5731                 }
5732                 Ok(payment_secret)
5733         }
5734
5735         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
5736         /// to pay us.
5737         ///
5738         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
5739         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
5740         ///
5741         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
5742         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
5743         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
5744         /// passed directly to [`claim_funds`].
5745         ///
5746         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
5747         ///
5748         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5749         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5750         ///
5751         /// # Note
5752         ///
5753         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5754         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5755         ///
5756         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5757         ///
5758         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
5759         /// on versions of LDK prior to 0.0.114.
5760         ///
5761         /// [`claim_funds`]: Self::claim_funds
5762         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
5763         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
5764         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
5765         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
5766         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5767         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
5768                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
5769                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
5770                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
5771                         min_final_cltv_expiry_delta)
5772         }
5773
5774         /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
5775         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5776         ///
5777         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5778         ///
5779         /// # Note
5780         /// This method is deprecated and will be removed soon.
5781         ///
5782         /// [`create_inbound_payment`]: Self::create_inbound_payment
5783         #[deprecated]
5784         pub fn create_inbound_payment_legacy(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), APIError> {
5785                 let payment_preimage = PaymentPreimage(self.entropy_source.get_secure_random_bytes());
5786                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5787                 let payment_secret = self.set_payment_hash_secret_map(payment_hash, Some(payment_preimage), min_value_msat, invoice_expiry_delta_secs)?;
5788                 Ok((payment_hash, payment_secret))
5789         }
5790
5791         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
5792         /// stored external to LDK.
5793         ///
5794         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
5795         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
5796         /// the `min_value_msat` provided here, if one is provided.
5797         ///
5798         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
5799         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
5800         /// payments.
5801         ///
5802         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
5803         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
5804         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
5805         /// sender "proof-of-payment" unless they have paid the required amount.
5806         ///
5807         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
5808         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
5809         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
5810         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
5811         /// invoices when no timeout is set.
5812         ///
5813         /// Note that we use block header time to time-out pending inbound payments (with some margin
5814         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
5815         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
5816         /// If you need exact expiry semantics, you should enforce them upon receipt of
5817         /// [`PaymentClaimable`].
5818         ///
5819         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
5820         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
5821         ///
5822         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5823         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5824         ///
5825         /// # Note
5826         ///
5827         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5828         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5829         ///
5830         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5831         ///
5832         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
5833         /// on versions of LDK prior to 0.0.114.
5834         ///
5835         /// [`create_inbound_payment`]: Self::create_inbound_payment
5836         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
5837         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
5838                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
5839                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
5840                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
5841                         min_final_cltv_expiry)
5842         }
5843
5844         /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
5845         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5846         ///
5847         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5848         ///
5849         /// # Note
5850         /// This method is deprecated and will be removed soon.
5851         ///
5852         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5853         #[deprecated]
5854         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> {
5855                 self.set_payment_hash_secret_map(payment_hash, None, min_value_msat, invoice_expiry_delta_secs)
5856         }
5857
5858         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
5859         /// previously returned from [`create_inbound_payment`].
5860         ///
5861         /// [`create_inbound_payment`]: Self::create_inbound_payment
5862         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
5863                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
5864         }
5865
5866         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
5867         /// are used when constructing the phantom invoice's route hints.
5868         ///
5869         /// [phantom node payments]: crate::sign::PhantomKeysManager
5870         pub fn get_phantom_scid(&self) -> u64 {
5871                 let best_block_height = self.best_block.read().unwrap().height();
5872                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
5873                 loop {
5874                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
5875                         // Ensure the generated scid doesn't conflict with a real channel.
5876                         match short_to_chan_info.get(&scid_candidate) {
5877                                 Some(_) => continue,
5878                                 None => return scid_candidate
5879                         }
5880                 }
5881         }
5882
5883         /// Gets route hints for use in receiving [phantom node payments].
5884         ///
5885         /// [phantom node payments]: crate::sign::PhantomKeysManager
5886         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
5887                 PhantomRouteHints {
5888                         channels: self.list_usable_channels(),
5889                         phantom_scid: self.get_phantom_scid(),
5890                         real_node_pubkey: self.get_our_node_id(),
5891                 }
5892         }
5893
5894         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
5895         /// used when constructing the route hints for HTLCs intended to be intercepted. See
5896         /// [`ChannelManager::forward_intercepted_htlc`].
5897         ///
5898         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
5899         /// times to get a unique scid.
5900         pub fn get_intercept_scid(&self) -> u64 {
5901                 let best_block_height = self.best_block.read().unwrap().height();
5902                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
5903                 loop {
5904                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
5905                         // Ensure the generated scid doesn't conflict with a real channel.
5906                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
5907                         return scid_candidate
5908                 }
5909         }
5910
5911         /// Gets inflight HTLC information by processing pending outbound payments that are in
5912         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
5913         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
5914                 let mut inflight_htlcs = InFlightHtlcs::new();
5915
5916                 let per_peer_state = self.per_peer_state.read().unwrap();
5917                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
5918                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5919                         let peer_state = &mut *peer_state_lock;
5920                         for chan in peer_state.channel_by_id.values() {
5921                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
5922                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
5923                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
5924                                         }
5925                                 }
5926                         }
5927                 }
5928
5929                 inflight_htlcs
5930         }
5931
5932         #[cfg(any(test, fuzzing, feature = "_test_utils"))]
5933         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
5934                 let events = core::cell::RefCell::new(Vec::new());
5935                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
5936                 self.process_pending_events(&event_handler);
5937                 events.into_inner()
5938         }
5939
5940         #[cfg(feature = "_test_utils")]
5941         pub fn push_pending_event(&self, event: events::Event) {
5942                 let mut events = self.pending_events.lock().unwrap();
5943                 events.push_back((event, None));
5944         }
5945
5946         #[cfg(test)]
5947         pub fn pop_pending_event(&self) -> Option<events::Event> {
5948                 let mut events = self.pending_events.lock().unwrap();
5949                 events.pop_front().map(|(e, _)| e)
5950         }
5951
5952         #[cfg(test)]
5953         pub fn has_pending_payments(&self) -> bool {
5954                 self.pending_outbound_payments.has_pending_payments()
5955         }
5956
5957         #[cfg(test)]
5958         pub fn clear_pending_payments(&self) {
5959                 self.pending_outbound_payments.clear_pending_payments()
5960         }
5961
5962         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint) {
5963                 let mut errors = Vec::new();
5964                 loop {
5965                         let per_peer_state = self.per_peer_state.read().unwrap();
5966                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
5967                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
5968                                 let peer_state = &mut *peer_state_lck;
5969                                 if self.pending_events.lock().unwrap().iter()
5970                                         .any(|(_ev, action_opt)| action_opt == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5971                                                 channel_funding_outpoint, counterparty_node_id
5972                                         }))
5973                                 {
5974                                         // Check that, while holding the peer lock, we don't have another event
5975                                         // blocking any monitor updates for this channel. If we do, let those
5976                                         // events be the ones that ultimately release the monitor update(s).
5977                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another event is pending",
5978                                                 log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
5979                                         break;
5980                                 }
5981                                 if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
5982                                         debug_assert_eq!(chan.get().get_funding_txo().unwrap(), channel_funding_outpoint);
5983                                         if let Some((monitor_update, further_update_exists)) = chan.get_mut().unblock_next_blocked_monitor_update() {
5984                                                 log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
5985                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
5986                                                 let update_res = self.chain_monitor.update_channel(channel_funding_outpoint, monitor_update);
5987                                                 let update_id = monitor_update.update_id;
5988                                                 if let Err(e) = handle_new_monitor_update!(self, update_res, update_id,
5989                                                         peer_state_lck, peer_state, per_peer_state, chan)
5990                                                 {
5991                                                         errors.push((e, counterparty_node_id));
5992                                                 }
5993                                                 if further_update_exists {
5994                                                         // If there are more `ChannelMonitorUpdate`s to process, restart at the
5995                                                         // top of the loop.
5996                                                         continue;
5997                                                 }
5998                                         } else {
5999                                                 log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6000                                                         log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
6001                                         }
6002                                 }
6003                         } else {
6004                                 log_debug!(self.logger,
6005                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6006                                         log_pubkey!(counterparty_node_id));
6007                         }
6008                         break;
6009                 }
6010                 for (err, counterparty_node_id) in errors {
6011                         let res = Err::<(), _>(err);
6012                         let _ = handle_error!(self, res, counterparty_node_id);
6013                 }
6014         }
6015
6016         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6017                 for action in actions {
6018                         match action {
6019                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6020                                         channel_funding_outpoint, counterparty_node_id
6021                                 } => {
6022                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint);
6023                                 }
6024                         }
6025                 }
6026         }
6027
6028         /// Processes any events asynchronously in the order they were generated since the last call
6029         /// using the given event handler.
6030         ///
6031         /// See the trait-level documentation of [`EventsProvider`] for requirements.
6032         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
6033                 &self, handler: H
6034         ) {
6035                 let mut ev;
6036                 process_events_body!(self, ev, { handler(ev).await });
6037         }
6038 }
6039
6040 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>
6041 where
6042         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6043         T::Target: BroadcasterInterface,
6044         ES::Target: EntropySource,
6045         NS::Target: NodeSigner,
6046         SP::Target: SignerProvider,
6047         F::Target: FeeEstimator,
6048         R::Target: Router,
6049         L::Target: Logger,
6050 {
6051         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
6052         /// The returned array will contain `MessageSendEvent`s for different peers if
6053         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
6054         /// is always placed next to each other.
6055         ///
6056         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
6057         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
6058         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
6059         /// will randomly be placed first or last in the returned array.
6060         ///
6061         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
6062         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
6063         /// the `MessageSendEvent`s to the specific peer they were generated under.
6064         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
6065                 let events = RefCell::new(Vec::new());
6066                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6067                         let mut result = NotifyOption::SkipPersist;
6068
6069                         // TODO: This behavior should be documented. It's unintuitive that we query
6070                         // ChannelMonitors when clearing other events.
6071                         if self.process_pending_monitor_events() {
6072                                 result = NotifyOption::DoPersist;
6073                         }
6074
6075                         if self.check_free_holding_cells() {
6076                                 result = NotifyOption::DoPersist;
6077                         }
6078                         if self.maybe_generate_initial_closing_signed() {
6079                                 result = NotifyOption::DoPersist;
6080                         }
6081
6082                         let mut pending_events = Vec::new();
6083                         let per_peer_state = self.per_peer_state.read().unwrap();
6084                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6085                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6086                                 let peer_state = &mut *peer_state_lock;
6087                                 if peer_state.pending_msg_events.len() > 0 {
6088                                         pending_events.append(&mut peer_state.pending_msg_events);
6089                                 }
6090                         }
6091
6092                         if !pending_events.is_empty() {
6093                                 events.replace(pending_events);
6094                         }
6095
6096                         result
6097                 });
6098                 events.into_inner()
6099         }
6100 }
6101
6102 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>
6103 where
6104         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6105         T::Target: BroadcasterInterface,
6106         ES::Target: EntropySource,
6107         NS::Target: NodeSigner,
6108         SP::Target: SignerProvider,
6109         F::Target: FeeEstimator,
6110         R::Target: Router,
6111         L::Target: Logger,
6112 {
6113         /// Processes events that must be periodically handled.
6114         ///
6115         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
6116         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
6117         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
6118                 let mut ev;
6119                 process_events_body!(self, ev, handler.handle_event(ev));
6120         }
6121 }
6122
6123 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>
6124 where
6125         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6126         T::Target: BroadcasterInterface,
6127         ES::Target: EntropySource,
6128         NS::Target: NodeSigner,
6129         SP::Target: SignerProvider,
6130         F::Target: FeeEstimator,
6131         R::Target: Router,
6132         L::Target: Logger,
6133 {
6134         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6135                 {
6136                         let best_block = self.best_block.read().unwrap();
6137                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
6138                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
6139                         assert_eq!(best_block.height(), height - 1,
6140                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
6141                 }
6142
6143                 self.transactions_confirmed(header, txdata, height);
6144                 self.best_block_updated(header, height);
6145         }
6146
6147         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
6148                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6149                 let new_height = height - 1;
6150                 {
6151                         let mut best_block = self.best_block.write().unwrap();
6152                         assert_eq!(best_block.block_hash(), header.block_hash(),
6153                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
6154                         assert_eq!(best_block.height(), height,
6155                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
6156                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
6157                 }
6158
6159                 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));
6160         }
6161 }
6162
6163 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>
6164 where
6165         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6166         T::Target: BroadcasterInterface,
6167         ES::Target: EntropySource,
6168         NS::Target: NodeSigner,
6169         SP::Target: SignerProvider,
6170         F::Target: FeeEstimator,
6171         R::Target: Router,
6172         L::Target: Logger,
6173 {
6174         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
6175                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6176                 // during initialization prior to the chain_monitor being fully configured in some cases.
6177                 // See the docs for `ChannelManagerReadArgs` for more.
6178
6179                 let block_hash = header.block_hash();
6180                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
6181
6182                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6183                 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)
6184                         .map(|(a, b)| (a, Vec::new(), b)));
6185
6186                 let last_best_block_height = self.best_block.read().unwrap().height();
6187                 if height < last_best_block_height {
6188                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
6189                         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));
6190                 }
6191         }
6192
6193         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
6194                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6195                 // during initialization prior to the chain_monitor being fully configured in some cases.
6196                 // See the docs for `ChannelManagerReadArgs` for more.
6197
6198                 let block_hash = header.block_hash();
6199                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
6200
6201                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6202
6203                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
6204
6205                 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));
6206
6207                 macro_rules! max_time {
6208                         ($timestamp: expr) => {
6209                                 loop {
6210                                         // Update $timestamp to be the max of its current value and the block
6211                                         // timestamp. This should keep us close to the current time without relying on
6212                                         // having an explicit local time source.
6213                                         // Just in case we end up in a race, we loop until we either successfully
6214                                         // update $timestamp or decide we don't need to.
6215                                         let old_serial = $timestamp.load(Ordering::Acquire);
6216                                         if old_serial >= header.time as usize { break; }
6217                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
6218                                                 break;
6219                                         }
6220                                 }
6221                         }
6222                 }
6223                 max_time!(self.highest_seen_timestamp);
6224                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
6225                 payment_secrets.retain(|_, inbound_payment| {
6226                         inbound_payment.expiry_time > header.time as u64
6227                 });
6228         }
6229
6230         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
6231                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
6232                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
6233                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6234                         let peer_state = &mut *peer_state_lock;
6235                         for chan in peer_state.channel_by_id.values() {
6236                                 if let (Some(funding_txo), Some(block_hash)) = (chan.get_funding_txo(), chan.get_funding_tx_confirmed_in()) {
6237                                         res.push((funding_txo.txid, Some(block_hash)));
6238                                 }
6239                         }
6240                 }
6241                 res
6242         }
6243
6244         fn transaction_unconfirmed(&self, txid: &Txid) {
6245                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6246                 self.do_chain_event(None, |channel| {
6247                         if let Some(funding_txo) = channel.get_funding_txo() {
6248                                 if funding_txo.txid == *txid {
6249                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
6250                                 } else { Ok((None, Vec::new(), None)) }
6251                         } else { Ok((None, Vec::new(), None)) }
6252                 });
6253         }
6254 }
6255
6256 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>
6257 where
6258         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6259         T::Target: BroadcasterInterface,
6260         ES::Target: EntropySource,
6261         NS::Target: NodeSigner,
6262         SP::Target: SignerProvider,
6263         F::Target: FeeEstimator,
6264         R::Target: Router,
6265         L::Target: Logger,
6266 {
6267         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
6268         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
6269         /// the function.
6270         fn do_chain_event<FN: Fn(&mut Channel<<SP::Target as SignerProvider>::Signer>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
6271                         (&self, height_opt: Option<u32>, f: FN) {
6272                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
6273                 // during initialization prior to the chain_monitor being fully configured in some cases.
6274                 // See the docs for `ChannelManagerReadArgs` for more.
6275
6276                 let mut failed_channels = Vec::new();
6277                 let mut timed_out_htlcs = Vec::new();
6278                 {
6279                         let per_peer_state = self.per_peer_state.read().unwrap();
6280                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6281                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6282                                 let peer_state = &mut *peer_state_lock;
6283                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6284                                 peer_state.channel_by_id.retain(|_, channel| {
6285                                         let res = f(channel);
6286                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
6287                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
6288                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
6289                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
6290                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.get_counterparty_node_id()), channel_id: channel.channel_id() }));
6291                                                 }
6292                                                 if let Some(channel_ready) = channel_ready_opt {
6293                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
6294                                                         if channel.is_usable() {
6295                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.channel_id()));
6296                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
6297                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
6298                                                                                 node_id: channel.get_counterparty_node_id(),
6299                                                                                 msg,
6300                                                                         });
6301                                                                 }
6302                                                         } else {
6303                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.channel_id()));
6304                                                         }
6305                                                 }
6306
6307                                                 {
6308                                                         let mut pending_events = self.pending_events.lock().unwrap();
6309                                                         emit_channel_ready_event!(pending_events, channel);
6310                                                 }
6311
6312                                                 if let Some(announcement_sigs) = announcement_sigs {
6313                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.channel_id()));
6314                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
6315                                                                 node_id: channel.get_counterparty_node_id(),
6316                                                                 msg: announcement_sigs,
6317                                                         });
6318                                                         if let Some(height) = height_opt {
6319                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
6320                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6321                                                                                 msg: announcement,
6322                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6323                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6324                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
6325                                                                         });
6326                                                                 }
6327                                                         }
6328                                                 }
6329                                                 if channel.is_our_channel_ready() {
6330                                                         if let Some(real_scid) = channel.get_short_channel_id() {
6331                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
6332                                                                 // to the short_to_chan_info map here. Note that we check whether we
6333                                                                 // can relay using the real SCID at relay-time (i.e.
6334                                                                 // enforce option_scid_alias then), and if the funding tx is ever
6335                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
6336                                                                 // is always consistent.
6337                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
6338                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.get_counterparty_node_id(), channel.channel_id()));
6339                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.get_counterparty_node_id(), channel.channel_id()),
6340                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
6341                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
6342                                                         }
6343                                                 }
6344                                         } else if let Err(reason) = res {
6345                                                 update_maps_on_chan_removal!(self, channel);
6346                                                 // It looks like our counterparty went on-chain or funding transaction was
6347                                                 // reorged out of the main chain. Close the channel.
6348                                                 failed_channels.push(channel.force_shutdown(true));
6349                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
6350                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6351                                                                 msg: update
6352                                                         });
6353                                                 }
6354                                                 let reason_message = format!("{}", reason);
6355                                                 self.issue_channel_close_events(channel, reason);
6356                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6357                                                         node_id: channel.get_counterparty_node_id(),
6358                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
6359                                                                 channel_id: channel.channel_id(),
6360                                                                 data: reason_message,
6361                                                         } },
6362                                                 });
6363                                                 return false;
6364                                         }
6365                                         true
6366                                 });
6367                         }
6368                 }
6369
6370                 if let Some(height) = height_opt {
6371                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
6372                                 payment.htlcs.retain(|htlc| {
6373                                         // If height is approaching the number of blocks we think it takes us to get
6374                                         // our commitment transaction confirmed before the HTLC expires, plus the
6375                                         // number of blocks we generally consider it to take to do a commitment update,
6376                                         // just give up on it and fail the HTLC.
6377                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
6378                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
6379                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
6380
6381                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
6382                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
6383                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
6384                                                 false
6385                                         } else { true }
6386                                 });
6387                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
6388                         });
6389
6390                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
6391                         intercepted_htlcs.retain(|_, htlc| {
6392                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
6393                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6394                                                 short_channel_id: htlc.prev_short_channel_id,
6395                                                 htlc_id: htlc.prev_htlc_id,
6396                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
6397                                                 phantom_shared_secret: None,
6398                                                 outpoint: htlc.prev_funding_outpoint,
6399                                         });
6400
6401                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
6402                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6403                                                 _ => unreachable!(),
6404                                         };
6405                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
6406                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
6407                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
6408                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
6409                                         false
6410                                 } else { true }
6411                         });
6412                 }
6413
6414                 self.handle_init_event_channel_failures(failed_channels);
6415
6416                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
6417                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
6418                 }
6419         }
6420
6421         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
6422         ///
6423         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
6424         /// [`ChannelManager`] and should instead register actions to be taken later.
6425         ///
6426         pub fn get_persistable_update_future(&self) -> Future {
6427                 self.persistence_notifier.get_future()
6428         }
6429
6430         #[cfg(any(test, feature = "_test_utils"))]
6431         pub fn get_persistence_condvar_value(&self) -> bool {
6432                 self.persistence_notifier.notify_pending()
6433         }
6434
6435         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
6436         /// [`chain::Confirm`] interfaces.
6437         pub fn current_best_block(&self) -> BestBlock {
6438                 self.best_block.read().unwrap().clone()
6439         }
6440
6441         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6442         /// [`ChannelManager`].
6443         pub fn node_features(&self) -> NodeFeatures {
6444                 provided_node_features(&self.default_configuration)
6445         }
6446
6447         /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6448         /// [`ChannelManager`].
6449         ///
6450         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6451         /// or not. Thus, this method is not public.
6452         #[cfg(any(feature = "_test_utils", test))]
6453         pub fn invoice_features(&self) -> InvoiceFeatures {
6454                 provided_invoice_features(&self.default_configuration)
6455         }
6456
6457         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6458         /// [`ChannelManager`].
6459         pub fn channel_features(&self) -> ChannelFeatures {
6460                 provided_channel_features(&self.default_configuration)
6461         }
6462
6463         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
6464         /// [`ChannelManager`].
6465         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
6466                 provided_channel_type_features(&self.default_configuration)
6467         }
6468
6469         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6470         /// [`ChannelManager`].
6471         pub fn init_features(&self) -> InitFeatures {
6472                 provided_init_features(&self.default_configuration)
6473         }
6474 }
6475
6476 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
6477         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
6478 where
6479         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6480         T::Target: BroadcasterInterface,
6481         ES::Target: EntropySource,
6482         NS::Target: NodeSigner,
6483         SP::Target: SignerProvider,
6484         F::Target: FeeEstimator,
6485         R::Target: Router,
6486         L::Target: Logger,
6487 {
6488         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
6489                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6490                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
6491         }
6492
6493         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
6494                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6495                         "Dual-funded channels not supported".to_owned(),
6496                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6497         }
6498
6499         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
6500                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6501                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
6502         }
6503
6504         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
6505                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6506                         "Dual-funded channels not supported".to_owned(),
6507                          msg.temporary_channel_id.clone())), *counterparty_node_id);
6508         }
6509
6510         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
6511                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6512                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
6513         }
6514
6515         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
6516                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6517                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
6518         }
6519
6520         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
6521                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6522                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
6523         }
6524
6525         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
6526                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6527                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
6528         }
6529
6530         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
6531                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6532                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
6533         }
6534
6535         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
6536                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6537                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
6538         }
6539
6540         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
6541                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6542                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
6543         }
6544
6545         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
6546                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6547                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
6548         }
6549
6550         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
6551                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6552                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
6553         }
6554
6555         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
6556                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6557                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
6558         }
6559
6560         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
6561                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6562                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
6563         }
6564
6565         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
6566                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6567                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
6568         }
6569
6570         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
6571                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6572                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
6573         }
6574
6575         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
6576                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6577                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
6578                                 persist
6579                         } else {
6580                                 NotifyOption::SkipPersist
6581                         }
6582                 });
6583         }
6584
6585         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
6586                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6587                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
6588         }
6589
6590         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
6591                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6592                 let mut failed_channels = Vec::new();
6593                 let mut per_peer_state = self.per_peer_state.write().unwrap();
6594                 let remove_peer = {
6595                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
6596                                 log_pubkey!(counterparty_node_id));
6597                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
6598                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6599                                 let peer_state = &mut *peer_state_lock;
6600                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6601                                 peer_state.channel_by_id.retain(|_, chan| {
6602                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
6603                                         if chan.is_shutdown() {
6604                                                 update_maps_on_chan_removal!(self, chan);
6605                                                 self.issue_channel_close_events(chan, ClosureReason::DisconnectedPeer);
6606                                                 return false;
6607                                         }
6608                                         true
6609                                 });
6610                                 pending_msg_events.retain(|msg| {
6611                                         match msg {
6612                                                 // V1 Channel Establishment
6613                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
6614                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
6615                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
6616                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
6617                                                 // V2 Channel Establishment
6618                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
6619                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
6620                                                 // Common Channel Establishment
6621                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
6622                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
6623                                                 // Interactive Transaction Construction
6624                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
6625                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
6626                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
6627                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
6628                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
6629                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
6630                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
6631                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
6632                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
6633                                                 // Channel Operations
6634                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
6635                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
6636                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
6637                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
6638                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
6639                                                 &events::MessageSendEvent::HandleError { .. } => false,
6640                                                 // Gossip
6641                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
6642                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
6643                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
6644                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
6645                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
6646                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
6647                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
6648                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
6649                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
6650                                         }
6651                                 });
6652                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
6653                                 peer_state.is_connected = false;
6654                                 peer_state.ok_to_remove(true)
6655                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
6656                 };
6657                 if remove_peer {
6658                         per_peer_state.remove(counterparty_node_id);
6659                 }
6660                 mem::drop(per_peer_state);
6661
6662                 for failure in failed_channels.drain(..) {
6663                         self.finish_force_close_channel(failure);
6664                 }
6665         }
6666
6667         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
6668                 if !init_msg.features.supports_static_remote_key() {
6669                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
6670                         return Err(());
6671                 }
6672
6673                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6674
6675                 // If we have too many peers connected which don't have funded channels, disconnect the
6676                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
6677                 // unfunded channels taking up space in memory for disconnected peers, we still let new
6678                 // peers connect, but we'll reject new channels from them.
6679                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
6680                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
6681
6682                 {
6683                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
6684                         match peer_state_lock.entry(counterparty_node_id.clone()) {
6685                                 hash_map::Entry::Vacant(e) => {
6686                                         if inbound_peer_limited {
6687                                                 return Err(());
6688                                         }
6689                                         e.insert(Mutex::new(PeerState {
6690                                                 channel_by_id: HashMap::new(),
6691                                                 latest_features: init_msg.features.clone(),
6692                                                 pending_msg_events: Vec::new(),
6693                                                 monitor_update_blocked_actions: BTreeMap::new(),
6694                                                 is_connected: true,
6695                                         }));
6696                                 },
6697                                 hash_map::Entry::Occupied(e) => {
6698                                         let mut peer_state = e.get().lock().unwrap();
6699                                         peer_state.latest_features = init_msg.features.clone();
6700
6701                                         let best_block_height = self.best_block.read().unwrap().height();
6702                                         if inbound_peer_limited &&
6703                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
6704                                                 peer_state.channel_by_id.len()
6705                                         {
6706                                                 return Err(());
6707                                         }
6708
6709                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
6710                                         peer_state.is_connected = true;
6711                                 },
6712                         }
6713                 }
6714
6715                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
6716
6717                 let per_peer_state = self.per_peer_state.read().unwrap();
6718                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6719                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6720                         let peer_state = &mut *peer_state_lock;
6721                         let pending_msg_events = &mut peer_state.pending_msg_events;
6722                         peer_state.channel_by_id.retain(|_, chan| {
6723                                 let retain = if chan.get_counterparty_node_id() == *counterparty_node_id {
6724                                         if !chan.have_received_message() {
6725                                                 // If we created this (outbound) channel while we were disconnected from the
6726                                                 // peer we probably failed to send the open_channel message, which is now
6727                                                 // lost. We can't have had anything pending related to this channel, so we just
6728                                                 // drop it.
6729                                                 false
6730                                         } else {
6731                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
6732                                                         node_id: chan.get_counterparty_node_id(),
6733                                                         msg: chan.get_channel_reestablish(&self.logger),
6734                                                 });
6735                                                 true
6736                                         }
6737                                 } else { true };
6738                                 if retain && chan.get_counterparty_node_id() != *counterparty_node_id {
6739                                         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) {
6740                                                 if let Ok(update_msg) = self.get_channel_update_for_broadcast(chan) {
6741                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelAnnouncement {
6742                                                                 node_id: *counterparty_node_id,
6743                                                                 msg, update_msg,
6744                                                         });
6745                                                 }
6746                                         }
6747                                 }
6748                                 retain
6749                         });
6750                 }
6751                 //TODO: Also re-broadcast announcement_signatures
6752                 Ok(())
6753         }
6754
6755         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
6756                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6757
6758                 if msg.channel_id == [0; 32] {
6759                         let channel_ids: Vec<[u8; 32]> = {
6760                                 let per_peer_state = self.per_peer_state.read().unwrap();
6761                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
6762                                 if peer_state_mutex_opt.is_none() { return; }
6763                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6764                                 let peer_state = &mut *peer_state_lock;
6765                                 peer_state.channel_by_id.keys().cloned().collect()
6766                         };
6767                         for channel_id in channel_ids {
6768                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6769                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
6770                         }
6771                 } else {
6772                         {
6773                                 // First check if we can advance the channel type and try again.
6774                                 let per_peer_state = self.per_peer_state.read().unwrap();
6775                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
6776                                 if peer_state_mutex_opt.is_none() { return; }
6777                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6778                                 let peer_state = &mut *peer_state_lock;
6779                                 if let Some(chan) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
6780                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash) {
6781                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
6782                                                         node_id: *counterparty_node_id,
6783                                                         msg,
6784                                                 });
6785                                                 return;
6786                                         }
6787                                 }
6788                         }
6789
6790                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6791                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
6792                 }
6793         }
6794
6795         fn provided_node_features(&self) -> NodeFeatures {
6796                 provided_node_features(&self.default_configuration)
6797         }
6798
6799         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
6800                 provided_init_features(&self.default_configuration)
6801         }
6802
6803         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
6804                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6805                         "Dual-funded channels not supported".to_owned(),
6806                          msg.channel_id.clone())), *counterparty_node_id);
6807         }
6808
6809         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
6810                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6811                         "Dual-funded channels not supported".to_owned(),
6812                          msg.channel_id.clone())), *counterparty_node_id);
6813         }
6814
6815         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
6816                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6817                         "Dual-funded channels not supported".to_owned(),
6818                          msg.channel_id.clone())), *counterparty_node_id);
6819         }
6820
6821         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
6822                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6823                         "Dual-funded channels not supported".to_owned(),
6824                          msg.channel_id.clone())), *counterparty_node_id);
6825         }
6826
6827         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
6828                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6829                         "Dual-funded channels not supported".to_owned(),
6830                          msg.channel_id.clone())), *counterparty_node_id);
6831         }
6832
6833         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
6834                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6835                         "Dual-funded channels not supported".to_owned(),
6836                          msg.channel_id.clone())), *counterparty_node_id);
6837         }
6838
6839         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
6840                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6841                         "Dual-funded channels not supported".to_owned(),
6842                          msg.channel_id.clone())), *counterparty_node_id);
6843         }
6844
6845         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
6846                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6847                         "Dual-funded channels not supported".to_owned(),
6848                          msg.channel_id.clone())), *counterparty_node_id);
6849         }
6850
6851         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
6852                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
6853                         "Dual-funded channels not supported".to_owned(),
6854                          msg.channel_id.clone())), *counterparty_node_id);
6855         }
6856 }
6857
6858 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6859 /// [`ChannelManager`].
6860 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
6861         provided_init_features(config).to_context()
6862 }
6863
6864 /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6865 /// [`ChannelManager`].
6866 ///
6867 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6868 /// or not. Thus, this method is not public.
6869 #[cfg(any(feature = "_test_utils", test))]
6870 pub(crate) fn provided_invoice_features(config: &UserConfig) -> InvoiceFeatures {
6871         provided_init_features(config).to_context()
6872 }
6873
6874 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6875 /// [`ChannelManager`].
6876 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
6877         provided_init_features(config).to_context()
6878 }
6879
6880 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
6881 /// [`ChannelManager`].
6882 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
6883         ChannelTypeFeatures::from_init(&provided_init_features(config))
6884 }
6885
6886 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6887 /// [`ChannelManager`].
6888 pub fn provided_init_features(_config: &UserConfig) -> InitFeatures {
6889         // Note that if new features are added here which other peers may (eventually) require, we
6890         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
6891         // [`ErroringMessageHandler`].
6892         let mut features = InitFeatures::empty();
6893         features.set_data_loss_protect_required();
6894         features.set_upfront_shutdown_script_optional();
6895         features.set_variable_length_onion_required();
6896         features.set_static_remote_key_required();
6897         features.set_payment_secret_required();
6898         features.set_basic_mpp_optional();
6899         features.set_wumbo_optional();
6900         features.set_shutdown_any_segwit_optional();
6901         features.set_channel_type_optional();
6902         features.set_scid_privacy_optional();
6903         features.set_zero_conf_optional();
6904         #[cfg(anchors)]
6905         { // Attributes are not allowed on if expressions on our current MSRV of 1.41.
6906                 if _config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
6907                         features.set_anchors_zero_fee_htlc_tx_optional();
6908                 }
6909         }
6910         features
6911 }
6912
6913 const SERIALIZATION_VERSION: u8 = 1;
6914 const MIN_SERIALIZATION_VERSION: u8 = 1;
6915
6916 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
6917         (2, fee_base_msat, required),
6918         (4, fee_proportional_millionths, required),
6919         (6, cltv_expiry_delta, required),
6920 });
6921
6922 impl_writeable_tlv_based!(ChannelCounterparty, {
6923         (2, node_id, required),
6924         (4, features, required),
6925         (6, unspendable_punishment_reserve, required),
6926         (8, forwarding_info, option),
6927         (9, outbound_htlc_minimum_msat, option),
6928         (11, outbound_htlc_maximum_msat, option),
6929 });
6930
6931 impl Writeable for ChannelDetails {
6932         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6933                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
6934                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
6935                 let user_channel_id_low = self.user_channel_id as u64;
6936                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
6937                 write_tlv_fields!(writer, {
6938                         (1, self.inbound_scid_alias, option),
6939                         (2, self.channel_id, required),
6940                         (3, self.channel_type, option),
6941                         (4, self.counterparty, required),
6942                         (5, self.outbound_scid_alias, option),
6943                         (6, self.funding_txo, option),
6944                         (7, self.config, option),
6945                         (8, self.short_channel_id, option),
6946                         (9, self.confirmations, option),
6947                         (10, self.channel_value_satoshis, required),
6948                         (12, self.unspendable_punishment_reserve, option),
6949                         (14, user_channel_id_low, required),
6950                         (16, self.balance_msat, required),
6951                         (18, self.outbound_capacity_msat, required),
6952                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
6953                         // filled in, so we can safely unwrap it here.
6954                         (19, self.next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
6955                         (20, self.inbound_capacity_msat, required),
6956                         (22, self.confirmations_required, option),
6957                         (24, self.force_close_spend_delay, option),
6958                         (26, self.is_outbound, required),
6959                         (28, self.is_channel_ready, required),
6960                         (30, self.is_usable, required),
6961                         (32, self.is_public, required),
6962                         (33, self.inbound_htlc_minimum_msat, option),
6963                         (35, self.inbound_htlc_maximum_msat, option),
6964                         (37, user_channel_id_high_opt, option),
6965                         (39, self.feerate_sat_per_1000_weight, option),
6966                 });
6967                 Ok(())
6968         }
6969 }
6970
6971 impl Readable for ChannelDetails {
6972         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6973                 _init_and_read_tlv_fields!(reader, {
6974                         (1, inbound_scid_alias, option),
6975                         (2, channel_id, required),
6976                         (3, channel_type, option),
6977                         (4, counterparty, required),
6978                         (5, outbound_scid_alias, option),
6979                         (6, funding_txo, option),
6980                         (7, config, option),
6981                         (8, short_channel_id, option),
6982                         (9, confirmations, option),
6983                         (10, channel_value_satoshis, required),
6984                         (12, unspendable_punishment_reserve, option),
6985                         (14, user_channel_id_low, required),
6986                         (16, balance_msat, required),
6987                         (18, outbound_capacity_msat, required),
6988                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
6989                         // filled in, so we can safely unwrap it here.
6990                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
6991                         (20, inbound_capacity_msat, required),
6992                         (22, confirmations_required, option),
6993                         (24, force_close_spend_delay, option),
6994                         (26, is_outbound, required),
6995                         (28, is_channel_ready, required),
6996                         (30, is_usable, required),
6997                         (32, is_public, required),
6998                         (33, inbound_htlc_minimum_msat, option),
6999                         (35, inbound_htlc_maximum_msat, option),
7000                         (37, user_channel_id_high_opt, option),
7001                         (39, feerate_sat_per_1000_weight, option),
7002                 });
7003
7004                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7005                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7006                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
7007                 let user_channel_id = user_channel_id_low as u128 +
7008                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
7009
7010                 Ok(Self {
7011                         inbound_scid_alias,
7012                         channel_id: channel_id.0.unwrap(),
7013                         channel_type,
7014                         counterparty: counterparty.0.unwrap(),
7015                         outbound_scid_alias,
7016                         funding_txo,
7017                         config,
7018                         short_channel_id,
7019                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
7020                         unspendable_punishment_reserve,
7021                         user_channel_id,
7022                         balance_msat: balance_msat.0.unwrap(),
7023                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
7024                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
7025                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
7026                         confirmations_required,
7027                         confirmations,
7028                         force_close_spend_delay,
7029                         is_outbound: is_outbound.0.unwrap(),
7030                         is_channel_ready: is_channel_ready.0.unwrap(),
7031                         is_usable: is_usable.0.unwrap(),
7032                         is_public: is_public.0.unwrap(),
7033                         inbound_htlc_minimum_msat,
7034                         inbound_htlc_maximum_msat,
7035                         feerate_sat_per_1000_weight,
7036                 })
7037         }
7038 }
7039
7040 impl_writeable_tlv_based!(PhantomRouteHints, {
7041         (2, channels, vec_type),
7042         (4, phantom_scid, required),
7043         (6, real_node_pubkey, required),
7044 });
7045
7046 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
7047         (0, Forward) => {
7048                 (0, onion_packet, required),
7049                 (2, short_channel_id, required),
7050         },
7051         (1, Receive) => {
7052                 (0, payment_data, required),
7053                 (1, phantom_shared_secret, option),
7054                 (2, incoming_cltv_expiry, required),
7055                 (3, payment_metadata, option),
7056         },
7057         (2, ReceiveKeysend) => {
7058                 (0, payment_preimage, required),
7059                 (2, incoming_cltv_expiry, required),
7060                 (3, payment_metadata, option),
7061         },
7062 ;);
7063
7064 impl_writeable_tlv_based!(PendingHTLCInfo, {
7065         (0, routing, required),
7066         (2, incoming_shared_secret, required),
7067         (4, payment_hash, required),
7068         (6, outgoing_amt_msat, required),
7069         (8, outgoing_cltv_value, required),
7070         (9, incoming_amt_msat, option),
7071 });
7072
7073
7074 impl Writeable for HTLCFailureMsg {
7075         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7076                 match self {
7077                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
7078                                 0u8.write(writer)?;
7079                                 channel_id.write(writer)?;
7080                                 htlc_id.write(writer)?;
7081                                 reason.write(writer)?;
7082                         },
7083                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7084                                 channel_id, htlc_id, sha256_of_onion, failure_code
7085                         }) => {
7086                                 1u8.write(writer)?;
7087                                 channel_id.write(writer)?;
7088                                 htlc_id.write(writer)?;
7089                                 sha256_of_onion.write(writer)?;
7090                                 failure_code.write(writer)?;
7091                         },
7092                 }
7093                 Ok(())
7094         }
7095 }
7096
7097 impl Readable for HTLCFailureMsg {
7098         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7099                 let id: u8 = Readable::read(reader)?;
7100                 match id {
7101                         0 => {
7102                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
7103                                         channel_id: Readable::read(reader)?,
7104                                         htlc_id: Readable::read(reader)?,
7105                                         reason: Readable::read(reader)?,
7106                                 }))
7107                         },
7108                         1 => {
7109                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
7110                                         channel_id: Readable::read(reader)?,
7111                                         htlc_id: Readable::read(reader)?,
7112                                         sha256_of_onion: Readable::read(reader)?,
7113                                         failure_code: Readable::read(reader)?,
7114                                 }))
7115                         },
7116                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
7117                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
7118                         // messages contained in the variants.
7119                         // In version 0.0.101, support for reading the variants with these types was added, and
7120                         // we should migrate to writing these variants when UpdateFailHTLC or
7121                         // UpdateFailMalformedHTLC get TLV fields.
7122                         2 => {
7123                                 let length: BigSize = Readable::read(reader)?;
7124                                 let mut s = FixedLengthReader::new(reader, length.0);
7125                                 let res = Readable::read(&mut s)?;
7126                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7127                                 Ok(HTLCFailureMsg::Relay(res))
7128                         },
7129                         3 => {
7130                                 let length: BigSize = Readable::read(reader)?;
7131                                 let mut s = FixedLengthReader::new(reader, length.0);
7132                                 let res = Readable::read(&mut s)?;
7133                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
7134                                 Ok(HTLCFailureMsg::Malformed(res))
7135                         },
7136                         _ => Err(DecodeError::UnknownRequiredFeature),
7137                 }
7138         }
7139 }
7140
7141 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
7142         (0, Forward),
7143         (1, Fail),
7144 );
7145
7146 impl_writeable_tlv_based!(HTLCPreviousHopData, {
7147         (0, short_channel_id, required),
7148         (1, phantom_shared_secret, option),
7149         (2, outpoint, required),
7150         (4, htlc_id, required),
7151         (6, incoming_packet_shared_secret, required)
7152 });
7153
7154 impl Writeable for ClaimableHTLC {
7155         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7156                 let (payment_data, keysend_preimage) = match &self.onion_payload {
7157                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
7158                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
7159                 };
7160                 write_tlv_fields!(writer, {
7161                         (0, self.prev_hop, required),
7162                         (1, self.total_msat, required),
7163                         (2, self.value, required),
7164                         (3, self.sender_intended_value, required),
7165                         (4, payment_data, option),
7166                         (5, self.total_value_received, option),
7167                         (6, self.cltv_expiry, required),
7168                         (8, keysend_preimage, option),
7169                 });
7170                 Ok(())
7171         }
7172 }
7173
7174 impl Readable for ClaimableHTLC {
7175         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7176                 let mut prev_hop = crate::util::ser::RequiredWrapper(None);
7177                 let mut value = 0;
7178                 let mut sender_intended_value = None;
7179                 let mut payment_data: Option<msgs::FinalOnionHopData> = None;
7180                 let mut cltv_expiry = 0;
7181                 let mut total_value_received = None;
7182                 let mut total_msat = None;
7183                 let mut keysend_preimage: Option<PaymentPreimage> = None;
7184                 read_tlv_fields!(reader, {
7185                         (0, prev_hop, required),
7186                         (1, total_msat, option),
7187                         (2, value, required),
7188                         (3, sender_intended_value, option),
7189                         (4, payment_data, option),
7190                         (5, total_value_received, option),
7191                         (6, cltv_expiry, required),
7192                         (8, keysend_preimage, option)
7193                 });
7194                 let onion_payload = match keysend_preimage {
7195                         Some(p) => {
7196                                 if payment_data.is_some() {
7197                                         return Err(DecodeError::InvalidValue)
7198                                 }
7199                                 if total_msat.is_none() {
7200                                         total_msat = Some(value);
7201                                 }
7202                                 OnionPayload::Spontaneous(p)
7203                         },
7204                         None => {
7205                                 if total_msat.is_none() {
7206                                         if payment_data.is_none() {
7207                                                 return Err(DecodeError::InvalidValue)
7208                                         }
7209                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
7210                                 }
7211                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
7212                         },
7213                 };
7214                 Ok(Self {
7215                         prev_hop: prev_hop.0.unwrap(),
7216                         timer_ticks: 0,
7217                         value,
7218                         sender_intended_value: sender_intended_value.unwrap_or(value),
7219                         total_value_received,
7220                         total_msat: total_msat.unwrap(),
7221                         onion_payload,
7222                         cltv_expiry,
7223                 })
7224         }
7225 }
7226
7227 impl Readable for HTLCSource {
7228         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7229                 let id: u8 = Readable::read(reader)?;
7230                 match id {
7231                         0 => {
7232                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
7233                                 let mut first_hop_htlc_msat: u64 = 0;
7234                                 let mut path_hops: Option<Vec<RouteHop>> = Some(Vec::new());
7235                                 let mut payment_id = None;
7236                                 let mut payment_params: Option<PaymentParameters> = None;
7237                                 let mut blinded_tail: Option<BlindedTail> = None;
7238                                 read_tlv_fields!(reader, {
7239                                         (0, session_priv, required),
7240                                         (1, payment_id, option),
7241                                         (2, first_hop_htlc_msat, required),
7242                                         (4, path_hops, vec_type),
7243                                         (5, payment_params, (option: ReadableArgs, 0)),
7244                                         (6, blinded_tail, option),
7245                                 });
7246                                 if payment_id.is_none() {
7247                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
7248                                         // instead.
7249                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
7250                                 }
7251                                 let path = Path { hops: path_hops.ok_or(DecodeError::InvalidValue)?, blinded_tail };
7252                                 if path.hops.len() == 0 {
7253                                         return Err(DecodeError::InvalidValue);
7254                                 }
7255                                 if let Some(params) = payment_params.as_mut() {
7256                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
7257                                                 if final_cltv_expiry_delta == &0 {
7258                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
7259                                                 }
7260                                         }
7261                                 }
7262                                 Ok(HTLCSource::OutboundRoute {
7263                                         session_priv: session_priv.0.unwrap(),
7264                                         first_hop_htlc_msat,
7265                                         path,
7266                                         payment_id: payment_id.unwrap(),
7267                                 })
7268                         }
7269                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
7270                         _ => Err(DecodeError::UnknownRequiredFeature),
7271                 }
7272         }
7273 }
7274
7275 impl Writeable for HTLCSource {
7276         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
7277                 match self {
7278                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
7279                                 0u8.write(writer)?;
7280                                 let payment_id_opt = Some(payment_id);
7281                                 write_tlv_fields!(writer, {
7282                                         (0, session_priv, required),
7283                                         (1, payment_id_opt, option),
7284                                         (2, first_hop_htlc_msat, required),
7285                                         // 3 was previously used to write a PaymentSecret for the payment.
7286                                         (4, path.hops, vec_type),
7287                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
7288                                         (6, path.blinded_tail, option),
7289                                  });
7290                         }
7291                         HTLCSource::PreviousHopData(ref field) => {
7292                                 1u8.write(writer)?;
7293                                 field.write(writer)?;
7294                         }
7295                 }
7296                 Ok(())
7297         }
7298 }
7299
7300 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
7301         (0, forward_info, required),
7302         (1, prev_user_channel_id, (default_value, 0)),
7303         (2, prev_short_channel_id, required),
7304         (4, prev_htlc_id, required),
7305         (6, prev_funding_outpoint, required),
7306 });
7307
7308 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
7309         (1, FailHTLC) => {
7310                 (0, htlc_id, required),
7311                 (2, err_packet, required),
7312         };
7313         (0, AddHTLC)
7314 );
7315
7316 impl_writeable_tlv_based!(PendingInboundPayment, {
7317         (0, payment_secret, required),
7318         (2, expiry_time, required),
7319         (4, user_payment_id, required),
7320         (6, payment_preimage, required),
7321         (8, min_value_msat, required),
7322 });
7323
7324 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>
7325 where
7326         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7327         T::Target: BroadcasterInterface,
7328         ES::Target: EntropySource,
7329         NS::Target: NodeSigner,
7330         SP::Target: SignerProvider,
7331         F::Target: FeeEstimator,
7332         R::Target: Router,
7333         L::Target: Logger,
7334 {
7335         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7336                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
7337
7338                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
7339
7340                 self.genesis_hash.write(writer)?;
7341                 {
7342                         let best_block = self.best_block.read().unwrap();
7343                         best_block.height().write(writer)?;
7344                         best_block.block_hash().write(writer)?;
7345                 }
7346
7347                 let mut serializable_peer_count: u64 = 0;
7348                 {
7349                         let per_peer_state = self.per_peer_state.read().unwrap();
7350                         let mut unfunded_channels = 0;
7351                         let mut number_of_channels = 0;
7352                         for (_, peer_state_mutex) in per_peer_state.iter() {
7353                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7354                                 let peer_state = &mut *peer_state_lock;
7355                                 if !peer_state.ok_to_remove(false) {
7356                                         serializable_peer_count += 1;
7357                                 }
7358                                 number_of_channels += peer_state.channel_by_id.len();
7359                                 for (_, channel) in peer_state.channel_by_id.iter() {
7360                                         if !channel.is_funding_initiated() {
7361                                                 unfunded_channels += 1;
7362                                         }
7363                                 }
7364                         }
7365
7366                         ((number_of_channels - unfunded_channels) as u64).write(writer)?;
7367
7368                         for (_, peer_state_mutex) in per_peer_state.iter() {
7369                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7370                                 let peer_state = &mut *peer_state_lock;
7371                                 for (_, channel) in peer_state.channel_by_id.iter() {
7372                                         if channel.is_funding_initiated() {
7373                                                 channel.write(writer)?;
7374                                         }
7375                                 }
7376                         }
7377                 }
7378
7379                 {
7380                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
7381                         (forward_htlcs.len() as u64).write(writer)?;
7382                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
7383                                 short_channel_id.write(writer)?;
7384                                 (pending_forwards.len() as u64).write(writer)?;
7385                                 for forward in pending_forwards {
7386                                         forward.write(writer)?;
7387                                 }
7388                         }
7389                 }
7390
7391                 let per_peer_state = self.per_peer_state.write().unwrap();
7392
7393                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
7394                 let claimable_payments = self.claimable_payments.lock().unwrap();
7395                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
7396
7397                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
7398                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
7399                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
7400                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
7401                         payment_hash.write(writer)?;
7402                         (payment.htlcs.len() as u64).write(writer)?;
7403                         for htlc in payment.htlcs.iter() {
7404                                 htlc.write(writer)?;
7405                         }
7406                         htlc_purposes.push(&payment.purpose);
7407                         htlc_onion_fields.push(&payment.onion_fields);
7408                 }
7409
7410                 let mut monitor_update_blocked_actions_per_peer = None;
7411                 let mut peer_states = Vec::new();
7412                 for (_, peer_state_mutex) in per_peer_state.iter() {
7413                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
7414                         // of a lockorder violation deadlock - no other thread can be holding any
7415                         // per_peer_state lock at all.
7416                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
7417                 }
7418
7419                 (serializable_peer_count).write(writer)?;
7420                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
7421                         // Peers which we have no channels to should be dropped once disconnected. As we
7422                         // disconnect all peers when shutting down and serializing the ChannelManager, we
7423                         // consider all peers as disconnected here. There's therefore no need write peers with
7424                         // no channels.
7425                         if !peer_state.ok_to_remove(false) {
7426                                 peer_pubkey.write(writer)?;
7427                                 peer_state.latest_features.write(writer)?;
7428                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
7429                                         monitor_update_blocked_actions_per_peer
7430                                                 .get_or_insert_with(Vec::new)
7431                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
7432                                 }
7433                         }
7434                 }
7435
7436                 let events = self.pending_events.lock().unwrap();
7437                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
7438                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
7439                 // refuse to read the new ChannelManager.
7440                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
7441                 if events_not_backwards_compatible {
7442                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
7443                         // well save the space and not write any events here.
7444                         0u64.write(writer)?;
7445                 } else {
7446                         (events.len() as u64).write(writer)?;
7447                         for (event, _) in events.iter() {
7448                                 event.write(writer)?;
7449                         }
7450                 }
7451
7452                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
7453                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
7454                 // the closing monitor updates were always effectively replayed on startup (either directly
7455                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
7456                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
7457                 0u64.write(writer)?;
7458
7459                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
7460                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
7461                 // likely to be identical.
7462                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7463                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
7464
7465                 (pending_inbound_payments.len() as u64).write(writer)?;
7466                 for (hash, pending_payment) in pending_inbound_payments.iter() {
7467                         hash.write(writer)?;
7468                         pending_payment.write(writer)?;
7469                 }
7470
7471                 // For backwards compat, write the session privs and their total length.
7472                 let mut num_pending_outbounds_compat: u64 = 0;
7473                 for (_, outbound) in pending_outbound_payments.iter() {
7474                         if !outbound.is_fulfilled() && !outbound.abandoned() {
7475                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
7476                         }
7477                 }
7478                 num_pending_outbounds_compat.write(writer)?;
7479                 for (_, outbound) in pending_outbound_payments.iter() {
7480                         match outbound {
7481                                 PendingOutboundPayment::Legacy { session_privs } |
7482                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7483                                         for session_priv in session_privs.iter() {
7484                                                 session_priv.write(writer)?;
7485                                         }
7486                                 }
7487                                 PendingOutboundPayment::Fulfilled { .. } => {},
7488                                 PendingOutboundPayment::Abandoned { .. } => {},
7489                         }
7490                 }
7491
7492                 // Encode without retry info for 0.0.101 compatibility.
7493                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
7494                 for (id, outbound) in pending_outbound_payments.iter() {
7495                         match outbound {
7496                                 PendingOutboundPayment::Legacy { session_privs } |
7497                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
7498                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
7499                                 },
7500                                 _ => {},
7501                         }
7502                 }
7503
7504                 let mut pending_intercepted_htlcs = None;
7505                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
7506                 if our_pending_intercepts.len() != 0 {
7507                         pending_intercepted_htlcs = Some(our_pending_intercepts);
7508                 }
7509
7510                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
7511                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
7512                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
7513                         // map. Thus, if there are no entries we skip writing a TLV for it.
7514                         pending_claiming_payments = None;
7515                 }
7516
7517                 write_tlv_fields!(writer, {
7518                         (1, pending_outbound_payments_no_retry, required),
7519                         (2, pending_intercepted_htlcs, option),
7520                         (3, pending_outbound_payments, required),
7521                         (4, pending_claiming_payments, option),
7522                         (5, self.our_network_pubkey, required),
7523                         (6, monitor_update_blocked_actions_per_peer, option),
7524                         (7, self.fake_scid_rand_bytes, required),
7525                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
7526                         (9, htlc_purposes, vec_type),
7527                         (11, self.probing_cookie_secret, required),
7528                         (13, htlc_onion_fields, optional_vec),
7529                 });
7530
7531                 Ok(())
7532         }
7533 }
7534
7535 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
7536         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
7537                 (self.len() as u64).write(w)?;
7538                 for (event, action) in self.iter() {
7539                         event.write(w)?;
7540                         action.write(w)?;
7541                         #[cfg(debug_assertions)] {
7542                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
7543                                 // be persisted and are regenerated on restart. However, if such an event has a
7544                                 // post-event-handling action we'll write nothing for the event and would have to
7545                                 // either forget the action or fail on deserialization (which we do below). Thus,
7546                                 // check that the event is sane here.
7547                                 let event_encoded = event.encode();
7548                                 let event_read: Option<Event> =
7549                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
7550                                 if action.is_some() { assert!(event_read.is_some()); }
7551                         }
7552                 }
7553                 Ok(())
7554         }
7555 }
7556 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
7557         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7558                 let len: u64 = Readable::read(reader)?;
7559                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
7560                 let mut events: Self = VecDeque::with_capacity(cmp::min(
7561                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
7562                         len) as usize);
7563                 for _ in 0..len {
7564                         let ev_opt = MaybeReadable::read(reader)?;
7565                         let action = Readable::read(reader)?;
7566                         if let Some(ev) = ev_opt {
7567                                 events.push_back((ev, action));
7568                         } else if action.is_some() {
7569                                 return Err(DecodeError::InvalidValue);
7570                         }
7571                 }
7572                 Ok(events)
7573         }
7574 }
7575
7576 /// Arguments for the creation of a ChannelManager that are not deserialized.
7577 ///
7578 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
7579 /// is:
7580 /// 1) Deserialize all stored [`ChannelMonitor`]s.
7581 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
7582 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
7583 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
7584 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
7585 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
7586 ///    same way you would handle a [`chain::Filter`] call using
7587 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
7588 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
7589 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
7590 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
7591 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
7592 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
7593 ///    the next step.
7594 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
7595 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
7596 ///
7597 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
7598 /// call any other methods on the newly-deserialized [`ChannelManager`].
7599 ///
7600 /// Note that because some channels may be closed during deserialization, it is critical that you
7601 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
7602 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
7603 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
7604 /// not force-close the same channels but consider them live), you may end up revoking a state for
7605 /// which you've already broadcasted the transaction.
7606 ///
7607 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
7608 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7609 where
7610         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7611         T::Target: BroadcasterInterface,
7612         ES::Target: EntropySource,
7613         NS::Target: NodeSigner,
7614         SP::Target: SignerProvider,
7615         F::Target: FeeEstimator,
7616         R::Target: Router,
7617         L::Target: Logger,
7618 {
7619         /// A cryptographically secure source of entropy.
7620         pub entropy_source: ES,
7621
7622         /// A signer that is able to perform node-scoped cryptographic operations.
7623         pub node_signer: NS,
7624
7625         /// The keys provider which will give us relevant keys. Some keys will be loaded during
7626         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
7627         /// signing data.
7628         pub signer_provider: SP,
7629
7630         /// The fee_estimator for use in the ChannelManager in the future.
7631         ///
7632         /// No calls to the FeeEstimator will be made during deserialization.
7633         pub fee_estimator: F,
7634         /// The chain::Watch for use in the ChannelManager in the future.
7635         ///
7636         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
7637         /// you have deserialized ChannelMonitors separately and will add them to your
7638         /// chain::Watch after deserializing this ChannelManager.
7639         pub chain_monitor: M,
7640
7641         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
7642         /// used to broadcast the latest local commitment transactions of channels which must be
7643         /// force-closed during deserialization.
7644         pub tx_broadcaster: T,
7645         /// The router which will be used in the ChannelManager in the future for finding routes
7646         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
7647         ///
7648         /// No calls to the router will be made during deserialization.
7649         pub router: R,
7650         /// The Logger for use in the ChannelManager and which may be used to log information during
7651         /// deserialization.
7652         pub logger: L,
7653         /// Default settings used for new channels. Any existing channels will continue to use the
7654         /// runtime settings which were stored when the ChannelManager was serialized.
7655         pub default_config: UserConfig,
7656
7657         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
7658         /// value.get_funding_txo() should be the key).
7659         ///
7660         /// If a monitor is inconsistent with the channel state during deserialization the channel will
7661         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
7662         /// is true for missing channels as well. If there is a monitor missing for which we find
7663         /// channel data Err(DecodeError::InvalidValue) will be returned.
7664         ///
7665         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
7666         /// this struct.
7667         ///
7668         /// This is not exported to bindings users because we have no HashMap bindings
7669         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
7670 }
7671
7672 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7673                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
7674 where
7675         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7676         T::Target: BroadcasterInterface,
7677         ES::Target: EntropySource,
7678         NS::Target: NodeSigner,
7679         SP::Target: SignerProvider,
7680         F::Target: FeeEstimator,
7681         R::Target: Router,
7682         L::Target: Logger,
7683 {
7684         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
7685         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
7686         /// populate a HashMap directly from C.
7687         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,
7688                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
7689                 Self {
7690                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
7691                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
7692                 }
7693         }
7694 }
7695
7696 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
7697 // SipmleArcChannelManager type:
7698 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7699         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
7700 where
7701         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7702         T::Target: BroadcasterInterface,
7703         ES::Target: EntropySource,
7704         NS::Target: NodeSigner,
7705         SP::Target: SignerProvider,
7706         F::Target: FeeEstimator,
7707         R::Target: Router,
7708         L::Target: Logger,
7709 {
7710         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
7711                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
7712                 Ok((blockhash, Arc::new(chan_manager)))
7713         }
7714 }
7715
7716 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7717         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
7718 where
7719         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7720         T::Target: BroadcasterInterface,
7721         ES::Target: EntropySource,
7722         NS::Target: NodeSigner,
7723         SP::Target: SignerProvider,
7724         F::Target: FeeEstimator,
7725         R::Target: Router,
7726         L::Target: Logger,
7727 {
7728         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
7729                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
7730
7731                 let genesis_hash: BlockHash = Readable::read(reader)?;
7732                 let best_block_height: u32 = Readable::read(reader)?;
7733                 let best_block_hash: BlockHash = Readable::read(reader)?;
7734
7735                 let mut failed_htlcs = Vec::new();
7736
7737                 let channel_count: u64 = Readable::read(reader)?;
7738                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
7739                 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));
7740                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
7741                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
7742                 let mut channel_closures = VecDeque::new();
7743                 let mut pending_background_events = Vec::new();
7744                 for _ in 0..channel_count {
7745                         let mut channel: Channel<<SP::Target as SignerProvider>::Signer> = Channel::read(reader, (
7746                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
7747                         ))?;
7748                         let funding_txo = channel.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
7749                         funding_txo_set.insert(funding_txo.clone());
7750                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
7751                                 if channel.get_latest_complete_monitor_update_id() > monitor.get_latest_update_id() {
7752                                         // If the channel is ahead of the monitor, return InvalidValue:
7753                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
7754                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
7755                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_complete_monitor_update_id());
7756                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
7757                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
7758                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
7759                                         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");
7760                                         return Err(DecodeError::InvalidValue);
7761                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
7762                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
7763                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
7764                                                 channel.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
7765                                         // But if the channel is behind of the monitor, close the channel:
7766                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
7767                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
7768                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
7769                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
7770                                         let (monitor_update, mut new_failed_htlcs) = channel.force_shutdown(true);
7771                                         if let Some(monitor_update) = monitor_update {
7772                                                 pending_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup(monitor_update));
7773                                         }
7774                                         failed_htlcs.append(&mut new_failed_htlcs);
7775                                         channel_closures.push_back((events::Event::ChannelClosed {
7776                                                 channel_id: channel.channel_id(),
7777                                                 user_channel_id: channel.get_user_id(),
7778                                                 reason: ClosureReason::OutdatedChannelManager
7779                                         }, None));
7780                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
7781                                                 let mut found_htlc = false;
7782                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
7783                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
7784                                                 }
7785                                                 if !found_htlc {
7786                                                         // If we have some HTLCs in the channel which are not present in the newer
7787                                                         // ChannelMonitor, they have been removed and should be failed back to
7788                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
7789                                                         // were actually claimed we'd have generated and ensured the previous-hop
7790                                                         // claim update ChannelMonitor updates were persisted prior to persising
7791                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
7792                                                         // backwards leg of the HTLC will simply be rejected.
7793                                                         log_info!(args.logger,
7794                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
7795                                                                 log_bytes!(channel.channel_id()), log_bytes!(payment_hash.0));
7796                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.get_counterparty_node_id(), channel.channel_id()));
7797                                                 }
7798                                         }
7799                                 } else {
7800                                         log_info!(args.logger, "Successfully loaded channel {}", log_bytes!(channel.channel_id()));
7801                                         if let Some(short_channel_id) = channel.get_short_channel_id() {
7802                                                 short_to_chan_info.insert(short_channel_id, (channel.get_counterparty_node_id(), channel.channel_id()));
7803                                         }
7804                                         if channel.is_funding_initiated() {
7805                                                 id_to_peer.insert(channel.channel_id(), channel.get_counterparty_node_id());
7806                                         }
7807                                         match peer_channels.entry(channel.get_counterparty_node_id()) {
7808                                                 hash_map::Entry::Occupied(mut entry) => {
7809                                                         let by_id_map = entry.get_mut();
7810                                                         by_id_map.insert(channel.channel_id(), channel);
7811                                                 },
7812                                                 hash_map::Entry::Vacant(entry) => {
7813                                                         let mut by_id_map = HashMap::new();
7814                                                         by_id_map.insert(channel.channel_id(), channel);
7815                                                         entry.insert(by_id_map);
7816                                                 }
7817                                         }
7818                                 }
7819                         } else if channel.is_awaiting_initial_mon_persist() {
7820                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
7821                                 // was in-progress, we never broadcasted the funding transaction and can still
7822                                 // safely discard the channel.
7823                                 let _ = channel.force_shutdown(false);
7824                                 channel_closures.push_back((events::Event::ChannelClosed {
7825                                         channel_id: channel.channel_id(),
7826                                         user_channel_id: channel.get_user_id(),
7827                                         reason: ClosureReason::DisconnectedPeer,
7828                                 }, None));
7829                         } else {
7830                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.channel_id()));
7831                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
7832                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
7833                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
7834                                 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");
7835                                 return Err(DecodeError::InvalidValue);
7836                         }
7837                 }
7838
7839                 for (funding_txo, _) in args.channel_monitors.iter() {
7840                         if !funding_txo_set.contains(funding_txo) {
7841                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
7842                                         log_bytes!(funding_txo.to_channel_id()));
7843                                 let monitor_update = ChannelMonitorUpdate {
7844                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
7845                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
7846                                 };
7847                                 pending_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
7848                         }
7849                 }
7850
7851                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
7852                 let forward_htlcs_count: u64 = Readable::read(reader)?;
7853                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
7854                 for _ in 0..forward_htlcs_count {
7855                         let short_channel_id = Readable::read(reader)?;
7856                         let pending_forwards_count: u64 = Readable::read(reader)?;
7857                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
7858                         for _ in 0..pending_forwards_count {
7859                                 pending_forwards.push(Readable::read(reader)?);
7860                         }
7861                         forward_htlcs.insert(short_channel_id, pending_forwards);
7862                 }
7863
7864                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
7865                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
7866                 for _ in 0..claimable_htlcs_count {
7867                         let payment_hash = Readable::read(reader)?;
7868                         let previous_hops_len: u64 = Readable::read(reader)?;
7869                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
7870                         for _ in 0..previous_hops_len {
7871                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
7872                         }
7873                         claimable_htlcs_list.push((payment_hash, previous_hops));
7874                 }
7875
7876                 let peer_count: u64 = Readable::read(reader)?;
7877                 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>>)>()));
7878                 for _ in 0..peer_count {
7879                         let peer_pubkey = Readable::read(reader)?;
7880                         let peer_state = PeerState {
7881                                 channel_by_id: peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new()),
7882                                 latest_features: Readable::read(reader)?,
7883                                 pending_msg_events: Vec::new(),
7884                                 monitor_update_blocked_actions: BTreeMap::new(),
7885                                 is_connected: false,
7886                         };
7887                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
7888                 }
7889
7890                 let event_count: u64 = Readable::read(reader)?;
7891                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
7892                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
7893                 for _ in 0..event_count {
7894                         match MaybeReadable::read(reader)? {
7895                                 Some(event) => pending_events_read.push_back((event, None)),
7896                                 None => continue,
7897                         }
7898                 }
7899
7900                 let background_event_count: u64 = Readable::read(reader)?;
7901                 for _ in 0..background_event_count {
7902                         match <u8 as Readable>::read(reader)? {
7903                                 0 => {
7904                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
7905                                         // however we really don't (and never did) need them - we regenerate all
7906                                         // on-startup monitor updates.
7907                                         let _: OutPoint = Readable::read(reader)?;
7908                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
7909                                 }
7910                                 _ => return Err(DecodeError::InvalidValue),
7911                         }
7912                 }
7913
7914                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
7915                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
7916
7917                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
7918                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
7919                 for _ in 0..pending_inbound_payment_count {
7920                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
7921                                 return Err(DecodeError::InvalidValue);
7922                         }
7923                 }
7924
7925                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
7926                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
7927                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
7928                 for _ in 0..pending_outbound_payments_count_compat {
7929                         let session_priv = Readable::read(reader)?;
7930                         let payment = PendingOutboundPayment::Legacy {
7931                                 session_privs: [session_priv].iter().cloned().collect()
7932                         };
7933                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
7934                                 return Err(DecodeError::InvalidValue)
7935                         };
7936                 }
7937
7938                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
7939                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
7940                 let mut pending_outbound_payments = None;
7941                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
7942                 let mut received_network_pubkey: Option<PublicKey> = None;
7943                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
7944                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
7945                 let mut claimable_htlc_purposes = None;
7946                 let mut claimable_htlc_onion_fields = None;
7947                 let mut pending_claiming_payments = Some(HashMap::new());
7948                 let mut monitor_update_blocked_actions_per_peer = Some(Vec::new());
7949                 let mut events_override = None;
7950                 read_tlv_fields!(reader, {
7951                         (1, pending_outbound_payments_no_retry, option),
7952                         (2, pending_intercepted_htlcs, option),
7953                         (3, pending_outbound_payments, option),
7954                         (4, pending_claiming_payments, option),
7955                         (5, received_network_pubkey, option),
7956                         (6, monitor_update_blocked_actions_per_peer, option),
7957                         (7, fake_scid_rand_bytes, option),
7958                         (8, events_override, option),
7959                         (9, claimable_htlc_purposes, vec_type),
7960                         (11, probing_cookie_secret, option),
7961                         (13, claimable_htlc_onion_fields, optional_vec),
7962                 });
7963                 if fake_scid_rand_bytes.is_none() {
7964                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
7965                 }
7966
7967                 if probing_cookie_secret.is_none() {
7968                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
7969                 }
7970
7971                 if let Some(events) = events_override {
7972                         pending_events_read = events;
7973                 }
7974
7975                 if !channel_closures.is_empty() {
7976                         pending_events_read.append(&mut channel_closures);
7977                 }
7978
7979                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
7980                         pending_outbound_payments = Some(pending_outbound_payments_compat);
7981                 } else if pending_outbound_payments.is_none() {
7982                         let mut outbounds = HashMap::new();
7983                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
7984                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
7985                         }
7986                         pending_outbound_payments = Some(outbounds);
7987                 }
7988                 let pending_outbounds = OutboundPayments {
7989                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
7990                         retry_lock: Mutex::new(())
7991                 };
7992
7993                 {
7994                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
7995                         // ChannelMonitor data for any channels for which we do not have authorative state
7996                         // (i.e. those for which we just force-closed above or we otherwise don't have a
7997                         // corresponding `Channel` at all).
7998                         // This avoids several edge-cases where we would otherwise "forget" about pending
7999                         // payments which are still in-flight via their on-chain state.
8000                         // We only rebuild the pending payments map if we were most recently serialized by
8001                         // 0.0.102+
8002                         for (_, monitor) in args.channel_monitors.iter() {
8003                                 if id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id()).is_none() {
8004                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
8005                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
8006                                                         if path.hops.is_empty() {
8007                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
8008                                                                 return Err(DecodeError::InvalidValue);
8009                                                         }
8010
8011                                                         let path_amt = path.final_value_msat();
8012                                                         let mut session_priv_bytes = [0; 32];
8013                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
8014                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
8015                                                                 hash_map::Entry::Occupied(mut entry) => {
8016                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
8017                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
8018                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
8019                                                                 },
8020                                                                 hash_map::Entry::Vacant(entry) => {
8021                                                                         let path_fee = path.fee_msat();
8022                                                                         entry.insert(PendingOutboundPayment::Retryable {
8023                                                                                 retry_strategy: None,
8024                                                                                 attempts: PaymentAttempts::new(),
8025                                                                                 payment_params: None,
8026                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
8027                                                                                 payment_hash: htlc.payment_hash,
8028                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
8029                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
8030                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
8031                                                                                 pending_amt_msat: path_amt,
8032                                                                                 pending_fee_msat: Some(path_fee),
8033                                                                                 total_msat: path_amt,
8034                                                                                 starting_block_height: best_block_height,
8035                                                                         });
8036                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
8037                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
8038                                                                 }
8039                                                         }
8040                                                 }
8041                                         }
8042                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
8043                                                 match htlc_source {
8044                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
8045                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
8046                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
8047                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
8048                                                                 };
8049                                                                 // The ChannelMonitor is now responsible for this HTLC's
8050                                                                 // failure/success and will let us know what its outcome is. If we
8051                                                                 // still have an entry for this HTLC in `forward_htlcs` or
8052                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
8053                                                                 // the monitor was when forwarding the payment.
8054                                                                 forward_htlcs.retain(|_, forwards| {
8055                                                                         forwards.retain(|forward| {
8056                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
8057                                                                                         if pending_forward_matches_htlc(&htlc_info) {
8058                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
8059                                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8060                                                                                                 false
8061                                                                                         } else { true }
8062                                                                                 } else { true }
8063                                                                         });
8064                                                                         !forwards.is_empty()
8065                                                                 });
8066                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
8067                                                                         if pending_forward_matches_htlc(&htlc_info) {
8068                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
8069                                                                                         log_bytes!(htlc.payment_hash.0), log_bytes!(monitor.get_funding_txo().0.to_channel_id()));
8070                                                                                 pending_events_read.retain(|(event, _)| {
8071                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
8072                                                                                                 intercepted_id != ev_id
8073                                                                                         } else { true }
8074                                                                                 });
8075                                                                                 false
8076                                                                         } else { true }
8077                                                                 });
8078                                                         },
8079                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
8080                                                                 if let Some(preimage) = preimage_opt {
8081                                                                         let pending_events = Mutex::new(pending_events_read);
8082                                                                         // Note that we set `from_onchain` to "false" here,
8083                                                                         // deliberately keeping the pending payment around forever.
8084                                                                         // Given it should only occur when we have a channel we're
8085                                                                         // force-closing for being stale that's okay.
8086                                                                         // The alternative would be to wipe the state when claiming,
8087                                                                         // generating a `PaymentPathSuccessful` event but regenerating
8088                                                                         // it and the `PaymentSent` on every restart until the
8089                                                                         // `ChannelMonitor` is removed.
8090                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv, path, false, &pending_events, &args.logger);
8091                                                                         pending_events_read = pending_events.into_inner().unwrap();
8092                                                                 }
8093                                                         },
8094                                                 }
8095                                         }
8096                                 }
8097                         }
8098                 }
8099
8100                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
8101                         // If we have pending HTLCs to forward, assume we either dropped a
8102                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
8103                         // shut down before the timer hit. Either way, set the time_forwardable to a small
8104                         // constant as enough time has likely passed that we should simply handle the forwards
8105                         // now, or at least after the user gets a chance to reconnect to our peers.
8106                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
8107                                 time_forwardable: Duration::from_secs(2),
8108                         }, None));
8109                 }
8110
8111                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
8112                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
8113
8114                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
8115                 if let Some(purposes) = claimable_htlc_purposes {
8116                         if purposes.len() != claimable_htlcs_list.len() {
8117                                 return Err(DecodeError::InvalidValue);
8118                         }
8119                         if let Some(onion_fields) = claimable_htlc_onion_fields {
8120                                 if onion_fields.len() != claimable_htlcs_list.len() {
8121                                         return Err(DecodeError::InvalidValue);
8122                                 }
8123                                 for (purpose, (onion, (payment_hash, htlcs))) in
8124                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
8125                                 {
8126                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8127                                                 purpose, htlcs, onion_fields: onion,
8128                                         });
8129                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8130                                 }
8131                         } else {
8132                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
8133                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
8134                                                 purpose, htlcs, onion_fields: None,
8135                                         });
8136                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
8137                                 }
8138                         }
8139                 } else {
8140                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
8141                         // include a `_legacy_hop_data` in the `OnionPayload`.
8142                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
8143                                 if htlcs.is_empty() {
8144                                         return Err(DecodeError::InvalidValue);
8145                                 }
8146                                 let purpose = match &htlcs[0].onion_payload {
8147                                         OnionPayload::Invoice { _legacy_hop_data } => {
8148                                                 if let Some(hop_data) = _legacy_hop_data {
8149                                                         events::PaymentPurpose::InvoicePayment {
8150                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
8151                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
8152                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
8153                                                                                 Ok((payment_preimage, _)) => payment_preimage,
8154                                                                                 Err(()) => {
8155                                                                                         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));
8156                                                                                         return Err(DecodeError::InvalidValue);
8157                                                                                 }
8158                                                                         }
8159                                                                 },
8160                                                                 payment_secret: hop_data.payment_secret,
8161                                                         }
8162                                                 } else { return Err(DecodeError::InvalidValue); }
8163                                         },
8164                                         OnionPayload::Spontaneous(payment_preimage) =>
8165                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
8166                                 };
8167                                 claimable_payments.insert(payment_hash, ClaimablePayment {
8168                                         purpose, htlcs, onion_fields: None,
8169                                 });
8170                         }
8171                 }
8172
8173                 let mut secp_ctx = Secp256k1::new();
8174                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
8175
8176                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
8177                         Ok(key) => key,
8178                         Err(()) => return Err(DecodeError::InvalidValue)
8179                 };
8180                 if let Some(network_pubkey) = received_network_pubkey {
8181                         if network_pubkey != our_network_pubkey {
8182                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
8183                                 return Err(DecodeError::InvalidValue);
8184                         }
8185                 }
8186
8187                 let mut outbound_scid_aliases = HashSet::new();
8188                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
8189                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8190                         let peer_state = &mut *peer_state_lock;
8191                         for (chan_id, chan) in peer_state.channel_by_id.iter_mut() {
8192                                 if chan.outbound_scid_alias() == 0 {
8193                                         let mut outbound_scid_alias;
8194                                         loop {
8195                                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias
8196                                                         .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
8197                                                 if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
8198                                         }
8199                                         chan.set_outbound_scid_alias(outbound_scid_alias);
8200                                 } else if !outbound_scid_aliases.insert(chan.outbound_scid_alias()) {
8201                                         // Note that in rare cases its possible to hit this while reading an older
8202                                         // channel if we just happened to pick a colliding outbound alias above.
8203                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
8204                                         return Err(DecodeError::InvalidValue);
8205                                 }
8206                                 if chan.is_usable() {
8207                                         if short_to_chan_info.insert(chan.outbound_scid_alias(), (chan.get_counterparty_node_id(), *chan_id)).is_some() {
8208                                                 // Note that in rare cases its possible to hit this while reading an older
8209                                                 // channel if we just happened to pick a colliding outbound alias above.
8210                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
8211                                                 return Err(DecodeError::InvalidValue);
8212                                         }
8213                                 }
8214                         }
8215                 }
8216
8217                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
8218
8219                 for (_, monitor) in args.channel_monitors.iter() {
8220                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
8221                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
8222                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
8223                                         let mut claimable_amt_msat = 0;
8224                                         let mut receiver_node_id = Some(our_network_pubkey);
8225                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
8226                                         if phantom_shared_secret.is_some() {
8227                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
8228                                                         .expect("Failed to get node_id for phantom node recipient");
8229                                                 receiver_node_id = Some(phantom_pubkey)
8230                                         }
8231                                         for claimable_htlc in payment.htlcs {
8232                                                 claimable_amt_msat += claimable_htlc.value;
8233
8234                                                 // Add a holding-cell claim of the payment to the Channel, which should be
8235                                                 // applied ~immediately on peer reconnection. Because it won't generate a
8236                                                 // new commitment transaction we can just provide the payment preimage to
8237                                                 // the corresponding ChannelMonitor and nothing else.
8238                                                 //
8239                                                 // We do so directly instead of via the normal ChannelMonitor update
8240                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
8241                                                 // we're not allowed to call it directly yet. Further, we do the update
8242                                                 // without incrementing the ChannelMonitor update ID as there isn't any
8243                                                 // reason to.
8244                                                 // If we were to generate a new ChannelMonitor update ID here and then
8245                                                 // crash before the user finishes block connect we'd end up force-closing
8246                                                 // this channel as well. On the flip side, there's no harm in restarting
8247                                                 // without the new monitor persisted - we'll end up right back here on
8248                                                 // restart.
8249                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
8250                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
8251                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
8252                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8253                                                         let peer_state = &mut *peer_state_lock;
8254                                                         if let Some(channel) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
8255                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
8256                                                         }
8257                                                 }
8258                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
8259                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
8260                                                 }
8261                                         }
8262                                         pending_events_read.push_back((events::Event::PaymentClaimed {
8263                                                 receiver_node_id,
8264                                                 payment_hash,
8265                                                 purpose: payment.purpose,
8266                                                 amount_msat: claimable_amt_msat,
8267                                         }, None));
8268                                 }
8269                         }
8270                 }
8271
8272                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
8273                         if let Some(peer_state) = per_peer_state.get_mut(&node_id) {
8274                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
8275                         } else {
8276                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
8277                                 return Err(DecodeError::InvalidValue);
8278                         }
8279                 }
8280
8281                 let channel_manager = ChannelManager {
8282                         genesis_hash,
8283                         fee_estimator: bounded_fee_estimator,
8284                         chain_monitor: args.chain_monitor,
8285                         tx_broadcaster: args.tx_broadcaster,
8286                         router: args.router,
8287
8288                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
8289
8290                         inbound_payment_key: expanded_inbound_key,
8291                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
8292                         pending_outbound_payments: pending_outbounds,
8293                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
8294
8295                         forward_htlcs: Mutex::new(forward_htlcs),
8296                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
8297                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
8298                         id_to_peer: Mutex::new(id_to_peer),
8299                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
8300                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
8301
8302                         probing_cookie_secret: probing_cookie_secret.unwrap(),
8303
8304                         our_network_pubkey,
8305                         secp_ctx,
8306
8307                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
8308
8309                         per_peer_state: FairRwLock::new(per_peer_state),
8310
8311                         pending_events: Mutex::new(pending_events_read),
8312                         pending_events_processor: AtomicBool::new(false),
8313                         pending_background_events: Mutex::new(pending_background_events),
8314                         total_consistency_lock: RwLock::new(()),
8315                         persistence_notifier: Notifier::new(),
8316
8317                         entropy_source: args.entropy_source,
8318                         node_signer: args.node_signer,
8319                         signer_provider: args.signer_provider,
8320
8321                         logger: args.logger,
8322                         default_configuration: args.default_config,
8323                 };
8324
8325                 for htlc_source in failed_htlcs.drain(..) {
8326                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
8327                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
8328                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
8329                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
8330                 }
8331
8332                 //TODO: Broadcast channel update for closed channels, but only after we've made a
8333                 //connection or two.
8334
8335                 Ok((best_block_hash.clone(), channel_manager))
8336         }
8337 }
8338
8339 #[cfg(test)]
8340 mod tests {
8341         use bitcoin::hashes::Hash;
8342         use bitcoin::hashes::sha256::Hash as Sha256;
8343         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
8344         use core::sync::atomic::Ordering;
8345         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
8346         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
8347         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
8348         use crate::ln::functional_test_utils::*;
8349         use crate::ln::msgs;
8350         use crate::ln::msgs::ChannelMessageHandler;
8351         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
8352         use crate::util::errors::APIError;
8353         use crate::util::test_utils;
8354         use crate::util::config::ChannelConfig;
8355         use crate::sign::EntropySource;
8356
8357         #[test]
8358         fn test_notify_limits() {
8359                 // Check that a few cases which don't require the persistence of a new ChannelManager,
8360                 // indeed, do not cause the persistence of a new ChannelManager.
8361                 let chanmon_cfgs = create_chanmon_cfgs(3);
8362                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
8363                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
8364                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
8365
8366                 // All nodes start with a persistable update pending as `create_network` connects each node
8367                 // with all other nodes to make most tests simpler.
8368                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8369                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8370                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
8371
8372                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
8373
8374                 // We check that the channel info nodes have doesn't change too early, even though we try
8375                 // to connect messages with new values
8376                 chan.0.contents.fee_base_msat *= 2;
8377                 chan.1.contents.fee_base_msat *= 2;
8378                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
8379                         &nodes[1].node.get_our_node_id()).pop().unwrap();
8380                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
8381                         &nodes[0].node.get_our_node_id()).pop().unwrap();
8382
8383                 // The first two nodes (which opened a channel) should now require fresh persistence
8384                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8385                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8386                 // ... but the last node should not.
8387                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8388                 // After persisting the first two nodes they should no longer need fresh persistence.
8389                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8390                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8391
8392                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
8393                 // about the channel.
8394                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
8395                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
8396                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
8397
8398                 // The nodes which are a party to the channel should also ignore messages from unrelated
8399                 // parties.
8400                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8401                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8402                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
8403                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
8404                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8405                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8406
8407                 // At this point the channel info given by peers should still be the same.
8408                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8409                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8410
8411                 // An earlier version of handle_channel_update didn't check the directionality of the
8412                 // update message and would always update the local fee info, even if our peer was
8413                 // (spuriously) forwarding us our own channel_update.
8414                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
8415                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
8416                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
8417
8418                 // First deliver each peers' own message, checking that the node doesn't need to be
8419                 // persisted and that its channel info remains the same.
8420                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
8421                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
8422                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
8423                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
8424                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
8425                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
8426
8427                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
8428                 // the channel info has updated.
8429                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
8430                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
8431                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
8432                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
8433                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
8434                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
8435         }
8436
8437         #[test]
8438         fn test_keysend_dup_hash_partial_mpp() {
8439                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
8440                 // expected.
8441                 let chanmon_cfgs = create_chanmon_cfgs(2);
8442                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8443                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8444                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8445                 create_announced_chan_between_nodes(&nodes, 0, 1);
8446
8447                 // First, send a partial MPP payment.
8448                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
8449                 let mut mpp_route = route.clone();
8450                 mpp_route.paths.push(mpp_route.paths[0].clone());
8451
8452                 let payment_id = PaymentId([42; 32]);
8453                 // Use the utility function send_payment_along_path to send the payment with MPP data which
8454                 // indicates there are more HTLCs coming.
8455                 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.
8456                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
8457                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
8458                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
8459                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
8460                 check_added_monitors!(nodes[0], 1);
8461                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8462                 assert_eq!(events.len(), 1);
8463                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
8464
8465                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
8466                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8467                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8468                 check_added_monitors!(nodes[0], 1);
8469                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8470                 assert_eq!(events.len(), 1);
8471                 let ev = events.drain(..).next().unwrap();
8472                 let payment_event = SendEvent::from_event(ev);
8473                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8474                 check_added_monitors!(nodes[1], 0);
8475                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8476                 expect_pending_htlcs_forwardable!(nodes[1]);
8477                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
8478                 check_added_monitors!(nodes[1], 1);
8479                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8480                 assert!(updates.update_add_htlcs.is_empty());
8481                 assert!(updates.update_fulfill_htlcs.is_empty());
8482                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8483                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8484                 assert!(updates.update_fee.is_none());
8485                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8486                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8487                 expect_payment_failed!(nodes[0], our_payment_hash, true);
8488
8489                 // Send the second half of the original MPP payment.
8490                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
8491                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
8492                 check_added_monitors!(nodes[0], 1);
8493                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8494                 assert_eq!(events.len(), 1);
8495                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
8496
8497                 // Claim the full MPP payment. Note that we can't use a test utility like
8498                 // claim_funds_along_route because the ordering of the messages causes the second half of the
8499                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
8500                 // lightning messages manually.
8501                 nodes[1].node.claim_funds(payment_preimage);
8502                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
8503                 check_added_monitors!(nodes[1], 2);
8504
8505                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8506                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
8507                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
8508                 check_added_monitors!(nodes[0], 1);
8509                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8510                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
8511                 check_added_monitors!(nodes[1], 1);
8512                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8513                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
8514                 check_added_monitors!(nodes[1], 1);
8515                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8516                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
8517                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
8518                 check_added_monitors!(nodes[0], 1);
8519                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
8520                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
8521                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8522                 check_added_monitors!(nodes[0], 1);
8523                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
8524                 check_added_monitors!(nodes[1], 1);
8525                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
8526                 check_added_monitors!(nodes[1], 1);
8527                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
8528                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
8529                 check_added_monitors!(nodes[0], 1);
8530
8531                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
8532                 // path's success and a PaymentPathSuccessful event for each path's success.
8533                 let events = nodes[0].node.get_and_clear_pending_events();
8534                 assert_eq!(events.len(), 3);
8535                 match events[0] {
8536                         Event::PaymentSent { payment_id: ref id, payment_preimage: ref preimage, payment_hash: ref hash, .. } => {
8537                                 assert_eq!(Some(payment_id), *id);
8538                                 assert_eq!(payment_preimage, *preimage);
8539                                 assert_eq!(our_payment_hash, *hash);
8540                         },
8541                         _ => panic!("Unexpected event"),
8542                 }
8543                 match events[1] {
8544                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8545                                 assert_eq!(payment_id, *actual_payment_id);
8546                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8547                                 assert_eq!(route.paths[0], *path);
8548                         },
8549                         _ => panic!("Unexpected event"),
8550                 }
8551                 match events[2] {
8552                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
8553                                 assert_eq!(payment_id, *actual_payment_id);
8554                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
8555                                 assert_eq!(route.paths[0], *path);
8556                         },
8557                         _ => panic!("Unexpected event"),
8558                 }
8559         }
8560
8561         #[test]
8562         fn test_keysend_dup_payment_hash() {
8563                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
8564                 //      outbound regular payment fails as expected.
8565                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
8566                 //      fails as expected.
8567                 let chanmon_cfgs = create_chanmon_cfgs(2);
8568                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8569                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8570                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8571                 create_announced_chan_between_nodes(&nodes, 0, 1);
8572                 let scorer = test_utils::TestScorer::new();
8573                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8574
8575                 // To start (1), send a regular payment but don't claim it.
8576                 let expected_route = [&nodes[1]];
8577                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
8578
8579                 // Next, attempt a keysend payment and make sure it fails.
8580                 let route_params = RouteParameters {
8581                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
8582                         final_value_msat: 100_000,
8583                 };
8584                 let route = find_route(
8585                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
8586                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
8587                 ).unwrap();
8588                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8589                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8590                 check_added_monitors!(nodes[0], 1);
8591                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8592                 assert_eq!(events.len(), 1);
8593                 let ev = events.drain(..).next().unwrap();
8594                 let payment_event = SendEvent::from_event(ev);
8595                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8596                 check_added_monitors!(nodes[1], 0);
8597                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8598                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
8599                 // fails), the second will process the resulting failure and fail the HTLC backward
8600                 expect_pending_htlcs_forwardable!(nodes[1]);
8601                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
8602                 check_added_monitors!(nodes[1], 1);
8603                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8604                 assert!(updates.update_add_htlcs.is_empty());
8605                 assert!(updates.update_fulfill_htlcs.is_empty());
8606                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8607                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8608                 assert!(updates.update_fee.is_none());
8609                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8610                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8611                 expect_payment_failed!(nodes[0], payment_hash, true);
8612
8613                 // Finally, claim the original payment.
8614                 claim_payment(&nodes[0], &expected_route, payment_preimage);
8615
8616                 // To start (2), send a keysend payment but don't claim it.
8617                 let payment_preimage = PaymentPreimage([42; 32]);
8618                 let route = find_route(
8619                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
8620                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
8621                 ).unwrap();
8622                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
8623                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
8624                 check_added_monitors!(nodes[0], 1);
8625                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8626                 assert_eq!(events.len(), 1);
8627                 let event = events.pop().unwrap();
8628                 let path = vec![&nodes[1]];
8629                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
8630
8631                 // Next, attempt a regular payment and make sure it fails.
8632                 let payment_secret = PaymentSecret([43; 32]);
8633                 nodes[0].node.send_payment_with_route(&route, payment_hash,
8634                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
8635                 check_added_monitors!(nodes[0], 1);
8636                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
8637                 assert_eq!(events.len(), 1);
8638                 let ev = events.drain(..).next().unwrap();
8639                 let payment_event = SendEvent::from_event(ev);
8640                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
8641                 check_added_monitors!(nodes[1], 0);
8642                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
8643                 expect_pending_htlcs_forwardable!(nodes[1]);
8644                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
8645                 check_added_monitors!(nodes[1], 1);
8646                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
8647                 assert!(updates.update_add_htlcs.is_empty());
8648                 assert!(updates.update_fulfill_htlcs.is_empty());
8649                 assert_eq!(updates.update_fail_htlcs.len(), 1);
8650                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8651                 assert!(updates.update_fee.is_none());
8652                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
8653                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
8654                 expect_payment_failed!(nodes[0], payment_hash, true);
8655
8656                 // Finally, succeed the keysend payment.
8657                 claim_payment(&nodes[0], &expected_route, payment_preimage);
8658         }
8659
8660         #[test]
8661         fn test_keysend_hash_mismatch() {
8662                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
8663                 // preimage doesn't match the msg's payment hash.
8664                 let chanmon_cfgs = create_chanmon_cfgs(2);
8665                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8666                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8667                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8668
8669                 let payer_pubkey = nodes[0].node.get_our_node_id();
8670                 let payee_pubkey = nodes[1].node.get_our_node_id();
8671
8672                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
8673                 let route_params = RouteParameters {
8674                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
8675                         final_value_msat: 10_000,
8676                 };
8677                 let network_graph = nodes[0].network_graph.clone();
8678                 let first_hops = nodes[0].node.list_usable_channels();
8679                 let scorer = test_utils::TestScorer::new();
8680                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8681                 let route = find_route(
8682                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
8683                         nodes[0].logger, &scorer, &(), &random_seed_bytes
8684                 ).unwrap();
8685
8686                 let test_preimage = PaymentPreimage([42; 32]);
8687                 let mismatch_payment_hash = PaymentHash([43; 32]);
8688                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
8689                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
8690                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
8691                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
8692                 check_added_monitors!(nodes[0], 1);
8693
8694                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8695                 assert_eq!(updates.update_add_htlcs.len(), 1);
8696                 assert!(updates.update_fulfill_htlcs.is_empty());
8697                 assert!(updates.update_fail_htlcs.is_empty());
8698                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8699                 assert!(updates.update_fee.is_none());
8700                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
8701
8702                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
8703         }
8704
8705         #[test]
8706         fn test_keysend_msg_with_secret_err() {
8707                 // Test that we error as expected if we receive a keysend payment that includes a payment secret.
8708                 let chanmon_cfgs = create_chanmon_cfgs(2);
8709                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8710                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8711                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8712
8713                 let payer_pubkey = nodes[0].node.get_our_node_id();
8714                 let payee_pubkey = nodes[1].node.get_our_node_id();
8715
8716                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
8717                 let route_params = RouteParameters {
8718                         payment_params: PaymentParameters::for_keysend(payee_pubkey, 40, false),
8719                         final_value_msat: 10_000,
8720                 };
8721                 let network_graph = nodes[0].network_graph.clone();
8722                 let first_hops = nodes[0].node.list_usable_channels();
8723                 let scorer = test_utils::TestScorer::new();
8724                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
8725                 let route = find_route(
8726                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
8727                         nodes[0].logger, &scorer, &(), &random_seed_bytes
8728                 ).unwrap();
8729
8730                 let test_preimage = PaymentPreimage([42; 32]);
8731                 let test_secret = PaymentSecret([43; 32]);
8732                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
8733                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
8734                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
8735                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
8736                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
8737                         PaymentId(payment_hash.0), None, session_privs).unwrap();
8738                 check_added_monitors!(nodes[0], 1);
8739
8740                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
8741                 assert_eq!(updates.update_add_htlcs.len(), 1);
8742                 assert!(updates.update_fulfill_htlcs.is_empty());
8743                 assert!(updates.update_fail_htlcs.is_empty());
8744                 assert!(updates.update_fail_malformed_htlcs.is_empty());
8745                 assert!(updates.update_fee.is_none());
8746                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
8747
8748                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
8749         }
8750
8751         #[test]
8752         fn test_multi_hop_missing_secret() {
8753                 let chanmon_cfgs = create_chanmon_cfgs(4);
8754                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
8755                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
8756                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
8757
8758                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
8759                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
8760                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
8761                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
8762
8763                 // Marshall an MPP route.
8764                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
8765                 let path = route.paths[0].clone();
8766                 route.paths.push(path);
8767                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
8768                 route.paths[0].hops[0].short_channel_id = chan_1_id;
8769                 route.paths[0].hops[1].short_channel_id = chan_3_id;
8770                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
8771                 route.paths[1].hops[0].short_channel_id = chan_2_id;
8772                 route.paths[1].hops[1].short_channel_id = chan_4_id;
8773
8774                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
8775                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
8776                 .unwrap_err() {
8777                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
8778                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
8779                         },
8780                         _ => panic!("unexpected error")
8781                 }
8782         }
8783
8784         #[test]
8785         fn test_drop_disconnected_peers_when_removing_channels() {
8786                 let chanmon_cfgs = create_chanmon_cfgs(2);
8787                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8788                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8789                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8790
8791                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
8792
8793                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
8794                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
8795
8796                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
8797                 check_closed_broadcast!(nodes[0], true);
8798                 check_added_monitors!(nodes[0], 1);
8799                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed);
8800
8801                 {
8802                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
8803                         // disconnected and the channel between has been force closed.
8804                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
8805                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
8806                         assert_eq!(nodes_0_per_peer_state.len(), 1);
8807                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
8808                 }
8809
8810                 nodes[0].node.timer_tick_occurred();
8811
8812                 {
8813                         // Assert that nodes[1] has now been removed.
8814                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
8815                 }
8816         }
8817
8818         #[test]
8819         fn bad_inbound_payment_hash() {
8820                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
8821                 let chanmon_cfgs = create_chanmon_cfgs(2);
8822                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8823                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8824                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8825
8826                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
8827                 let payment_data = msgs::FinalOnionHopData {
8828                         payment_secret,
8829                         total_msat: 100_000,
8830                 };
8831
8832                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
8833                 // payment verification fails as expected.
8834                 let mut bad_payment_hash = payment_hash.clone();
8835                 bad_payment_hash.0[0] += 1;
8836                 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) {
8837                         Ok(_) => panic!("Unexpected ok"),
8838                         Err(()) => {
8839                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
8840                         }
8841                 }
8842
8843                 // Check that using the original payment hash succeeds.
8844                 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());
8845         }
8846
8847         #[test]
8848         fn test_id_to_peer_coverage() {
8849                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
8850                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
8851                 // the channel is successfully closed.
8852                 let chanmon_cfgs = create_chanmon_cfgs(2);
8853                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8854                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
8855                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
8856
8857                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
8858                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
8859                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
8860                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
8861                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
8862
8863                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
8864                 let channel_id = &tx.txid().into_inner();
8865                 {
8866                         // Ensure that the `id_to_peer` map is empty until either party has received the
8867                         // funding transaction, and have the real `channel_id`.
8868                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
8869                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
8870                 }
8871
8872                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
8873                 {
8874                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
8875                         // as it has the funding transaction.
8876                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
8877                         assert_eq!(nodes_0_lock.len(), 1);
8878                         assert!(nodes_0_lock.contains_key(channel_id));
8879                 }
8880
8881                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
8882
8883                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
8884
8885                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
8886                 {
8887                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
8888                         assert_eq!(nodes_0_lock.len(), 1);
8889                         assert!(nodes_0_lock.contains_key(channel_id));
8890                 }
8891                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
8892
8893                 {
8894                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
8895                         // as it has the funding transaction.
8896                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
8897                         assert_eq!(nodes_1_lock.len(), 1);
8898                         assert!(nodes_1_lock.contains_key(channel_id));
8899                 }
8900                 check_added_monitors!(nodes[1], 1);
8901                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
8902                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
8903                 check_added_monitors!(nodes[0], 1);
8904                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
8905                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
8906                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
8907                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
8908
8909                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
8910                 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()));
8911                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
8912                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
8913
8914                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
8915                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
8916                 {
8917                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
8918                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
8919                         // fee for the closing transaction has been negotiated and the parties has the other
8920                         // party's signature for the fee negotiated closing transaction.)
8921                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
8922                         assert_eq!(nodes_0_lock.len(), 1);
8923                         assert!(nodes_0_lock.contains_key(channel_id));
8924                 }
8925
8926                 {
8927                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
8928                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
8929                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
8930                         // kept in the `nodes[1]`'s `id_to_peer` map.
8931                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
8932                         assert_eq!(nodes_1_lock.len(), 1);
8933                         assert!(nodes_1_lock.contains_key(channel_id));
8934                 }
8935
8936                 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()));
8937                 {
8938                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
8939                         // therefore has all it needs to fully close the channel (both signatures for the
8940                         // closing transaction).
8941                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
8942                         // fully closed by `nodes[0]`.
8943                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
8944
8945                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
8946                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
8947                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
8948                         assert_eq!(nodes_1_lock.len(), 1);
8949                         assert!(nodes_1_lock.contains_key(channel_id));
8950                 }
8951
8952                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
8953
8954                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
8955                 {
8956                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
8957                         // they both have everything required to fully close the channel.
8958                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
8959                 }
8960                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
8961
8962                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
8963                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
8964         }
8965
8966         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
8967                 let expected_message = format!("Not connected to node: {}", expected_public_key);
8968                 check_api_error_message(expected_message, res_err)
8969         }
8970
8971         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
8972                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
8973                 check_api_error_message(expected_message, res_err)
8974         }
8975
8976         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
8977                 match res_err {
8978                         Err(APIError::APIMisuseError { err }) => {
8979                                 assert_eq!(err, expected_err_message);
8980                         },
8981                         Err(APIError::ChannelUnavailable { err }) => {
8982                                 assert_eq!(err, expected_err_message);
8983                         },
8984                         Ok(_) => panic!("Unexpected Ok"),
8985                         Err(_) => panic!("Unexpected Error"),
8986                 }
8987         }
8988
8989         #[test]
8990         fn test_api_calls_with_unkown_counterparty_node() {
8991                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
8992                 // expected if the `counterparty_node_id` is an unkown peer in the
8993                 // `ChannelManager::per_peer_state` map.
8994                 let chanmon_cfg = create_chanmon_cfgs(2);
8995                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
8996                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
8997                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
8998
8999                 // Dummy values
9000                 let channel_id = [4; 32];
9001                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
9002                 let intercept_id = InterceptId([0; 32]);
9003
9004                 // Test the API functions.
9005                 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);
9006
9007                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
9008
9009                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
9010
9011                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
9012
9013                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
9014
9015                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
9016
9017                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
9018         }
9019
9020         #[test]
9021         fn test_connection_limiting() {
9022                 // Test that we limit un-channel'd peers and un-funded channels properly.
9023                 let chanmon_cfgs = create_chanmon_cfgs(2);
9024                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9025                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9026                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9027
9028                 // Note that create_network connects the nodes together for us
9029
9030                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9031                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9032
9033                 let mut funding_tx = None;
9034                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9035                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9036                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9037
9038                         if idx == 0 {
9039                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
9040                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
9041                                 funding_tx = Some(tx.clone());
9042                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
9043                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
9044
9045                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
9046                                 check_added_monitors!(nodes[1], 1);
9047                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
9048
9049                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
9050
9051                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
9052                                 check_added_monitors!(nodes[0], 1);
9053                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
9054                         }
9055                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9056                 }
9057
9058                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
9059                 open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9060                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9061                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9062                         open_channel_msg.temporary_channel_id);
9063
9064                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
9065                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
9066                 // limit.
9067                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
9068                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
9069                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9070                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9071                         peer_pks.push(random_pk);
9072                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9073                                 features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9074                 }
9075                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9076                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9077                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9078                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap_err();
9079
9080                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
9081                 // them if we have too many un-channel'd peers.
9082                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9083                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
9084                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
9085                 for ev in chan_closed_events {
9086                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
9087                 }
9088                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9089                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9090                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9091                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap_err();
9092
9093                 // but of course if the connection is outbound its allowed...
9094                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9095                         features: nodes[0].node.init_features(), remote_network_address: None }, false).unwrap();
9096                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
9097
9098                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
9099                 // Even though we accept one more connection from new peers, we won't actually let them
9100                 // open channels.
9101                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
9102                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9103                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
9104                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
9105                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9106                 }
9107                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9108                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9109                         open_channel_msg.temporary_channel_id);
9110
9111                 // Of course, however, outbound channels are always allowed
9112                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
9113                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
9114
9115                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
9116                 // "protected" and can connect again.
9117                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
9118                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
9119                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9120                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
9121
9122                 // Further, because the first channel was funded, we can open another channel with
9123                 // last_random_pk.
9124                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9125                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9126         }
9127
9128         #[test]
9129         fn test_outbound_chans_unlimited() {
9130                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
9131                 let chanmon_cfgs = create_chanmon_cfgs(2);
9132                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9133                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9134                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9135
9136                 // Note that create_network connects the nodes together for us
9137
9138                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9139                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9140
9141                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
9142                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9143                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
9144                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9145                 }
9146
9147                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
9148                 // rejected.
9149                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9150                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9151                         open_channel_msg.temporary_channel_id);
9152
9153                 // but we can still open an outbound channel.
9154                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9155                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
9156
9157                 // but even with such an outbound channel, additional inbound channels will still fail.
9158                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9159                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
9160                         open_channel_msg.temporary_channel_id);
9161         }
9162
9163         #[test]
9164         fn test_0conf_limiting() {
9165                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
9166                 // flag set and (sometimes) accept channels as 0conf.
9167                 let chanmon_cfgs = create_chanmon_cfgs(2);
9168                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9169                 let mut settings = test_default_channel_config();
9170                 settings.manually_accept_inbound_channels = true;
9171                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
9172                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9173
9174                 // Note that create_network connects the nodes together for us
9175
9176                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
9177                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9178
9179                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
9180                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
9181                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9182                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9183                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
9184                                 features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9185
9186                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
9187                         let events = nodes[1].node.get_and_clear_pending_events();
9188                         match events[0] {
9189                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
9190                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
9191                                 }
9192                                 _ => panic!("Unexpected event"),
9193                         }
9194                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
9195                         open_channel_msg.temporary_channel_id = nodes[0].keys_manager.get_secure_random_bytes();
9196                 }
9197
9198                 // If we try to accept a channel from another peer non-0conf it will fail.
9199                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
9200                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
9201                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
9202                         features: nodes[0].node.init_features(), remote_network_address: None }, true).unwrap();
9203                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9204                 let events = nodes[1].node.get_and_clear_pending_events();
9205                 match events[0] {
9206                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9207                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
9208                                         Err(APIError::APIMisuseError { err }) =>
9209                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
9210                                         _ => panic!(),
9211                                 }
9212                         }
9213                         _ => panic!("Unexpected event"),
9214                 }
9215                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
9216                         open_channel_msg.temporary_channel_id);
9217
9218                 // ...however if we accept the same channel 0conf it should work just fine.
9219                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
9220                 let events = nodes[1].node.get_and_clear_pending_events();
9221                 match events[0] {
9222                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9223                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
9224                         }
9225                         _ => panic!("Unexpected event"),
9226                 }
9227                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
9228         }
9229
9230         #[cfg(anchors)]
9231         #[test]
9232         fn test_anchors_zero_fee_htlc_tx_fallback() {
9233                 // Tests that if both nodes support anchors, but the remote node does not want to accept
9234                 // anchor channels at the moment, an error it sent to the local node such that it can retry
9235                 // the channel without the anchors feature.
9236                 let chanmon_cfgs = create_chanmon_cfgs(2);
9237                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9238                 let mut anchors_config = test_default_channel_config();
9239                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
9240                 anchors_config.manually_accept_inbound_channels = true;
9241                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
9242                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9243
9244                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
9245                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9246                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
9247
9248                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
9249                 let events = nodes[1].node.get_and_clear_pending_events();
9250                 match events[0] {
9251                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
9252                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
9253                         }
9254                         _ => panic!("Unexpected event"),
9255                 }
9256
9257                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
9258                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
9259
9260                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
9261                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
9262
9263                 check_closed_event!(nodes[1], 1, ClosureReason::HolderForceClosed);
9264         }
9265 }
9266
9267 #[cfg(all(any(test, feature = "_test_utils"), feature = "_bench_unstable"))]
9268 pub mod bench {
9269         use crate::chain::Listen;
9270         use crate::chain::chainmonitor::{ChainMonitor, Persist};
9271         use crate::sign::{KeysManager, InMemorySigner};
9272         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
9273         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
9274         use crate::ln::functional_test_utils::*;
9275         use crate::ln::msgs::{ChannelMessageHandler, Init};
9276         use crate::routing::gossip::NetworkGraph;
9277         use crate::routing::router::{PaymentParameters, RouteParameters};
9278         use crate::util::test_utils;
9279         use crate::util::config::UserConfig;
9280
9281         use bitcoin::hashes::Hash;
9282         use bitcoin::hashes::sha256::Hash as Sha256;
9283         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
9284
9285         use crate::sync::{Arc, Mutex};
9286
9287         use test::Bencher;
9288
9289         type Manager<'a, P> = ChannelManager<
9290                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
9291                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
9292                         &'a test_utils::TestLogger, &'a P>,
9293                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
9294                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
9295                 &'a test_utils::TestLogger>;
9296
9297         struct ANodeHolder<'a, P: Persist<InMemorySigner>> {
9298                 node: &'a Manager<'a, P>,
9299         }
9300         impl<'a, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'a, P> {
9301                 type CM = Manager<'a, P>;
9302                 #[inline]
9303                 fn node(&self) -> &Manager<'a, P> { self.node }
9304                 #[inline]
9305                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
9306         }
9307
9308         #[cfg(test)]
9309         #[bench]
9310         fn bench_sends(bench: &mut Bencher) {
9311                 bench_two_sends(bench, test_utils::TestPersister::new(), test_utils::TestPersister::new());
9312         }
9313
9314         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Bencher, persister_a: P, persister_b: P) {
9315                 // Do a simple benchmark of sending a payment back and forth between two nodes.
9316                 // Note that this is unrealistic as each payment send will require at least two fsync
9317                 // calls per node.
9318                 let network = bitcoin::Network::Testnet;
9319
9320                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
9321                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
9322                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
9323                 let scorer = Mutex::new(test_utils::TestScorer::new());
9324                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
9325
9326                 let mut config: UserConfig = Default::default();
9327                 config.channel_handshake_config.minimum_depth = 1;
9328
9329                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
9330                 let seed_a = [1u8; 32];
9331                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
9332                 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 {
9333                         network,
9334                         best_block: BestBlock::from_network(network),
9335                 });
9336                 let node_a_holder = ANodeHolder { node: &node_a };
9337
9338                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
9339                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
9340                 let seed_b = [2u8; 32];
9341                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
9342                 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 {
9343                         network,
9344                         best_block: BestBlock::from_network(network),
9345                 });
9346                 let node_b_holder = ANodeHolder { node: &node_b };
9347
9348                 node_a.peer_connected(&node_b.get_our_node_id(), &Init { features: node_b.init_features(), remote_network_address: None }, true).unwrap();
9349                 node_b.peer_connected(&node_a.get_our_node_id(), &Init { features: node_a.init_features(), remote_network_address: None }, false).unwrap();
9350                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
9351                 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()));
9352                 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()));
9353
9354                 let tx;
9355                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
9356                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
9357                                 value: 8_000_000, script_pubkey: output_script,
9358                         }]};
9359                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
9360                 } else { panic!(); }
9361
9362                 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()));
9363                 let events_b = node_b.get_and_clear_pending_events();
9364                 assert_eq!(events_b.len(), 1);
9365                 match events_b[0] {
9366                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9367                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9368                         },
9369                         _ => panic!("Unexpected event"),
9370                 }
9371
9372                 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()));
9373                 let events_a = node_a.get_and_clear_pending_events();
9374                 assert_eq!(events_a.len(), 1);
9375                 match events_a[0] {
9376                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
9377                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9378                         },
9379                         _ => panic!("Unexpected event"),
9380                 }
9381
9382                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
9383
9384                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
9385                 Listen::block_connected(&node_a, &block, 1);
9386                 Listen::block_connected(&node_b, &block, 1);
9387
9388                 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()));
9389                 let msg_events = node_a.get_and_clear_pending_msg_events();
9390                 assert_eq!(msg_events.len(), 2);
9391                 match msg_events[0] {
9392                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
9393                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
9394                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
9395                         },
9396                         _ => panic!(),
9397                 }
9398                 match msg_events[1] {
9399                         MessageSendEvent::SendChannelUpdate { .. } => {},
9400                         _ => panic!(),
9401                 }
9402
9403                 let events_a = node_a.get_and_clear_pending_events();
9404                 assert_eq!(events_a.len(), 1);
9405                 match events_a[0] {
9406                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9407                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
9408                         },
9409                         _ => panic!("Unexpected event"),
9410                 }
9411
9412                 let events_b = node_b.get_and_clear_pending_events();
9413                 assert_eq!(events_b.len(), 1);
9414                 match events_b[0] {
9415                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
9416                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
9417                         },
9418                         _ => panic!("Unexpected event"),
9419                 }
9420
9421                 let mut payment_count: u64 = 0;
9422                 macro_rules! send_payment {
9423                         ($node_a: expr, $node_b: expr) => {
9424                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
9425                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
9426                                 let mut payment_preimage = PaymentPreimage([0; 32]);
9427                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
9428                                 payment_count += 1;
9429                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
9430                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
9431
9432                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
9433                                         PaymentId(payment_hash.0), RouteParameters {
9434                                                 payment_params, final_value_msat: 10_000,
9435                                         }, Retry::Attempts(0)).unwrap();
9436                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
9437                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
9438                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
9439                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
9440                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
9441                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
9442                                 $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()));
9443
9444                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
9445                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
9446                                 $node_b.claim_funds(payment_preimage);
9447                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
9448
9449                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
9450                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
9451                                                 assert_eq!(node_id, $node_a.get_our_node_id());
9452                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
9453                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
9454                                         },
9455                                         _ => panic!("Failed to generate claim event"),
9456                                 }
9457
9458                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
9459                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
9460                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
9461                                 $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()));
9462
9463                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
9464                         }
9465                 }
9466
9467                 bench.iter(|| {
9468                         send_payment!(node_a, node_b);
9469                         send_payment!(node_b, node_a);
9470                 });
9471         }
9472 }