Support receiving to 1-hop blinded payment paths.
[rust-lightning] / lightning / src / ln / channelmanager.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The top-level channel management and payment tracking stuff lives here.
11 //!
12 //! The [`ChannelManager`] is the main chunk of logic implementing the lightning protocol and is
13 //! responsible for tracking which channels are open, HTLCs are in flight and reestablishing those
14 //! upon reconnect to the relevant peer(s).
15 //!
16 //! It does not manage routing logic (see [`Router`] for that) nor does it manage constructing
17 //! on-chain transactions (it only monitors the chain to watch for any force-closes that might
18 //! imply it needs to fail HTLCs/payments/channels it manages).
19
20 use bitcoin::blockdata::block::BlockHeader;
21 use bitcoin::blockdata::transaction::Transaction;
22 use bitcoin::blockdata::constants::{genesis_block, ChainHash};
23 use bitcoin::network::constants::Network;
24
25 use bitcoin::hashes::Hash;
26 use bitcoin::hashes::sha256::Hash as Sha256;
27 use bitcoin::hash_types::{BlockHash, Txid};
28
29 use bitcoin::secp256k1::{SecretKey,PublicKey};
30 use bitcoin::secp256k1::Secp256k1;
31 use bitcoin::{LockTime, secp256k1, Sequence};
32
33 use crate::chain;
34 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
35 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
36 use crate::chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, HTLC_FAIL_BACK_BUFFER, CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS, ANTI_REORG_DELAY, MonitorEvent, CLOSED_CHANNEL_UPDATE_ID};
37 use crate::chain::transaction::{OutPoint, TransactionData};
38 use crate::events;
39 use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination, PaymentFailureReason};
40 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
41 // construct one themselves.
42 use crate::ln::{inbound_payment, ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
43 use crate::ln::channel::{Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel};
44 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
45 #[cfg(any(feature = "_test_utils", test))]
46 use crate::ln::features::Bolt11InvoiceFeatures;
47 use crate::routing::gossip::NetworkGraph;
48 use crate::routing::router::{BlindedTail, DefaultRouter, InFlightHtlcs, Path, Payee, PaymentParameters, Route, RouteParameters, Router};
49 use crate::routing::scoring::{ProbabilisticScorer, ProbabilisticScoringFeeParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::onion_utils::HTLCFailReason;
53 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError};
54 #[cfg(test)]
55 use crate::ln::outbound_payment;
56 use crate::ln::outbound_payment::{OutboundPayments, PaymentAttempts, PendingOutboundPayment, SendAlongPathArgs};
57 use crate::ln::wire::Encode;
58 use crate::sign::{EntropySource, KeysManager, NodeSigner, Recipient, SignerProvider, WriteableEcdsaChannelSigner};
59 use crate::util::config::{UserConfig, ChannelConfig, ChannelConfigUpdate};
60 use crate::util::wakers::{Future, Notifier};
61 use crate::util::scid_utils::fake_scid;
62 use crate::util::string::UntrustedString;
63 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
64 use crate::util::logger::{Level, Logger};
65 use crate::util::errors::APIError;
66
67 use alloc::collections::BTreeMap;
68
69 use crate::io;
70 use crate::prelude::*;
71 use core::{cmp, mem};
72 use core::cell::RefCell;
73 use crate::io::Read;
74 use crate::sync::{Arc, Mutex, RwLock, RwLockReadGuard, FairRwLock, LockTestExt, LockHeldState};
75 use core::sync::atomic::{AtomicUsize, AtomicBool, Ordering};
76 use core::time::Duration;
77 use core::ops::Deref;
78
79 // Re-export this for use in the public API.
80 pub use crate::ln::outbound_payment::{PaymentSendFailure, Retry, RetryableSendFailure, RecipientOnionFields};
81 use crate::ln::script::ShutdownScript;
82
83 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
84 //
85 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
86 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
87 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
88 //
89 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
90 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
91 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
92 // before we forward it.
93 //
94 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
95 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
96 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
97 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
98 // our payment, which we can use to decode errors or inform the user that the payment was sent.
99
100 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
101 pub(super) enum PendingHTLCRouting {
102         Forward {
103                 onion_packet: msgs::OnionPacket,
104                 /// The SCID from the onion that we should forward to. This could be a real SCID or a fake one
105                 /// generated using `get_fake_scid` from the scid_utils::fake_scid module.
106                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
107         },
108         Receive {
109                 payment_data: msgs::FinalOnionHopData,
110                 payment_metadata: Option<Vec<u8>>,
111                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
112                 phantom_shared_secret: Option<[u8; 32]>,
113                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
114                 custom_tlvs: Vec<(u64, Vec<u8>)>,
115         },
116         ReceiveKeysend {
117                 /// This was added in 0.0.116 and will break deserialization on downgrades.
118                 payment_data: Option<msgs::FinalOnionHopData>,
119                 payment_preimage: PaymentPreimage,
120                 payment_metadata: Option<Vec<u8>>,
121                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
122                 /// See [`RecipientOnionFields::custom_tlvs`] for more info.
123                 custom_tlvs: Vec<(u64, Vec<u8>)>,
124         },
125 }
126
127 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
128 pub(super) struct PendingHTLCInfo {
129         pub(super) routing: PendingHTLCRouting,
130         pub(super) incoming_shared_secret: [u8; 32],
131         payment_hash: PaymentHash,
132         /// Amount received
133         pub(super) incoming_amt_msat: Option<u64>, // Added in 0.0.113
134         /// Sender intended amount to forward or receive (actual amount received
135         /// may overshoot this in either case)
136         pub(super) outgoing_amt_msat: u64,
137         pub(super) outgoing_cltv_value: u32,
138         /// The fee being skimmed off the top of this HTLC. If this is a forward, it'll be the fee we are
139         /// skimming. If we're receiving this HTLC, it's the fee that our counterparty skimmed.
140         pub(super) skimmed_fee_msat: Option<u64>,
141 }
142
143 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
144 pub(super) enum HTLCFailureMsg {
145         Relay(msgs::UpdateFailHTLC),
146         Malformed(msgs::UpdateFailMalformedHTLC),
147 }
148
149 /// Stores whether we can't forward an HTLC or relevant forwarding info
150 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
151 pub(super) enum PendingHTLCStatus {
152         Forward(PendingHTLCInfo),
153         Fail(HTLCFailureMsg),
154 }
155
156 pub(super) struct PendingAddHTLCInfo {
157         pub(super) forward_info: PendingHTLCInfo,
158
159         // These fields are produced in `forward_htlcs()` and consumed in
160         // `process_pending_htlc_forwards()` for constructing the
161         // `HTLCSource::PreviousHopData` for failed and forwarded
162         // HTLCs.
163         //
164         // Note that this may be an outbound SCID alias for the associated channel.
165         prev_short_channel_id: u64,
166         prev_htlc_id: u64,
167         prev_funding_outpoint: OutPoint,
168         prev_user_channel_id: u128,
169 }
170
171 pub(super) enum HTLCForwardInfo {
172         AddHTLC(PendingAddHTLCInfo),
173         FailHTLC {
174                 htlc_id: u64,
175                 err_packet: msgs::OnionErrorPacket,
176         },
177 }
178
179 /// Tracks the inbound corresponding to an outbound HTLC
180 #[derive(Clone, Hash, PartialEq, Eq)]
181 pub(crate) struct HTLCPreviousHopData {
182         // Note that this may be an outbound SCID alias for the associated channel.
183         short_channel_id: u64,
184         user_channel_id: Option<u128>,
185         htlc_id: u64,
186         incoming_packet_shared_secret: [u8; 32],
187         phantom_shared_secret: Option<[u8; 32]>,
188
189         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
190         // channel with a preimage provided by the forward channel.
191         outpoint: OutPoint,
192 }
193
194 enum OnionPayload {
195         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
196         Invoice {
197                 /// This is only here for backwards-compatibility in serialization, in the future it can be
198                 /// removed, breaking clients running 0.0.106 and earlier.
199                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
200         },
201         /// Contains the payer-provided preimage.
202         Spontaneous(PaymentPreimage),
203 }
204
205 /// HTLCs that are to us and can be failed/claimed by the user
206 struct ClaimableHTLC {
207         prev_hop: HTLCPreviousHopData,
208         cltv_expiry: u32,
209         /// The amount (in msats) of this MPP part
210         value: u64,
211         /// The amount (in msats) that the sender intended to be sent in this MPP
212         /// part (used for validating total MPP amount)
213         sender_intended_value: u64,
214         onion_payload: OnionPayload,
215         timer_ticks: u8,
216         /// The total value received for a payment (sum of all MPP parts if the payment is a MPP).
217         /// Gets set to the amount reported when pushing [`Event::PaymentClaimable`].
218         total_value_received: Option<u64>,
219         /// The sender intended sum total of all MPP parts specified in the onion
220         total_msat: u64,
221         /// The extra fee our counterparty skimmed off the top of this HTLC.
222         counterparty_skimmed_fee_msat: Option<u64>,
223 }
224
225 impl From<&ClaimableHTLC> for events::ClaimedHTLC {
226         fn from(val: &ClaimableHTLC) -> Self {
227                 events::ClaimedHTLC {
228                         channel_id: val.prev_hop.outpoint.to_channel_id(),
229                         user_channel_id: val.prev_hop.user_channel_id.unwrap_or(0),
230                         cltv_expiry: val.cltv_expiry,
231                         value_msat: val.value,
232                 }
233         }
234 }
235
236 /// A payment identifier used to uniquely identify a payment to LDK.
237 ///
238 /// This is not exported to bindings users as we just use [u8; 32] directly
239 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
240 pub struct PaymentId(pub [u8; Self::LENGTH]);
241
242 impl PaymentId {
243         /// Number of bytes in the id.
244         pub const LENGTH: usize = 32;
245 }
246
247 impl Writeable for PaymentId {
248         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
249                 self.0.write(w)
250         }
251 }
252
253 impl Readable for PaymentId {
254         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
255                 let buf: [u8; 32] = Readable::read(r)?;
256                 Ok(PaymentId(buf))
257         }
258 }
259
260 impl core::fmt::Display for PaymentId {
261         fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
262                 crate::util::logger::DebugBytes(&self.0).fmt(f)
263         }
264 }
265
266 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
267 ///
268 /// This is not exported to bindings users as we just use [u8; 32] directly
269 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
270 pub struct InterceptId(pub [u8; 32]);
271
272 impl Writeable for InterceptId {
273         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
274                 self.0.write(w)
275         }
276 }
277
278 impl Readable for InterceptId {
279         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
280                 let buf: [u8; 32] = Readable::read(r)?;
281                 Ok(InterceptId(buf))
282         }
283 }
284
285 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
286 /// Uniquely describes an HTLC by its source. Just the guaranteed-unique subset of [`HTLCSource`].
287 pub(crate) enum SentHTLCId {
288         PreviousHopData { short_channel_id: u64, htlc_id: u64 },
289         OutboundRoute { session_priv: SecretKey },
290 }
291 impl SentHTLCId {
292         pub(crate) fn from_source(source: &HTLCSource) -> Self {
293                 match source {
294                         HTLCSource::PreviousHopData(hop_data) => Self::PreviousHopData {
295                                 short_channel_id: hop_data.short_channel_id,
296                                 htlc_id: hop_data.htlc_id,
297                         },
298                         HTLCSource::OutboundRoute { session_priv, .. } =>
299                                 Self::OutboundRoute { session_priv: *session_priv },
300                 }
301         }
302 }
303 impl_writeable_tlv_based_enum!(SentHTLCId,
304         (0, PreviousHopData) => {
305                 (0, short_channel_id, required),
306                 (2, htlc_id, required),
307         },
308         (2, OutboundRoute) => {
309                 (0, session_priv, required),
310         };
311 );
312
313
314 /// Tracks the inbound corresponding to an outbound HTLC
315 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
316 #[derive(Clone, PartialEq, Eq)]
317 pub(crate) enum HTLCSource {
318         PreviousHopData(HTLCPreviousHopData),
319         OutboundRoute {
320                 path: Path,
321                 session_priv: SecretKey,
322                 /// Technically we can recalculate this from the route, but we cache it here to avoid
323                 /// doing a double-pass on route when we get a failure back
324                 first_hop_htlc_msat: u64,
325                 payment_id: PaymentId,
326         },
327 }
328 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
329 impl core::hash::Hash for HTLCSource {
330         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
331                 match self {
332                         HTLCSource::PreviousHopData(prev_hop_data) => {
333                                 0u8.hash(hasher);
334                                 prev_hop_data.hash(hasher);
335                         },
336                         HTLCSource::OutboundRoute { path, session_priv, payment_id, first_hop_htlc_msat } => {
337                                 1u8.hash(hasher);
338                                 path.hash(hasher);
339                                 session_priv[..].hash(hasher);
340                                 payment_id.hash(hasher);
341                                 first_hop_htlc_msat.hash(hasher);
342                         },
343                 }
344         }
345 }
346 impl HTLCSource {
347         #[cfg(all(feature = "_test_vectors", not(feature = "grind_signatures")))]
348         #[cfg(test)]
349         pub fn dummy() -> Self {
350                 HTLCSource::OutboundRoute {
351                         path: Path { hops: Vec::new(), blinded_tail: None },
352                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
353                         first_hop_htlc_msat: 0,
354                         payment_id: PaymentId([2; 32]),
355                 }
356         }
357
358         #[cfg(debug_assertions)]
359         /// Checks whether this HTLCSource could possibly match the given HTLC output in a commitment
360         /// transaction. Useful to ensure different datastructures match up.
361         pub(crate) fn possibly_matches_output(&self, htlc: &super::chan_utils::HTLCOutputInCommitment) -> bool {
362                 if let HTLCSource::OutboundRoute { first_hop_htlc_msat, .. } = self {
363                         *first_hop_htlc_msat == htlc.amount_msat
364                 } else {
365                         // There's nothing we can check for forwarded HTLCs
366                         true
367                 }
368         }
369 }
370
371 struct InboundOnionErr {
372         err_code: u16,
373         err_data: Vec<u8>,
374         msg: &'static str,
375 }
376
377 /// This enum is used to specify which error data to send to peers when failing back an HTLC
378 /// using [`ChannelManager::fail_htlc_backwards_with_reason`].
379 ///
380 /// For more info on failure codes, see <https://github.com/lightning/bolts/blob/master/04-onion-routing.md#failure-messages>.
381 #[derive(Clone, Copy)]
382 pub enum FailureCode {
383         /// We had a temporary error processing the payment. Useful if no other error codes fit
384         /// and you want to indicate that the payer may want to retry.
385         TemporaryNodeFailure,
386         /// We have a required feature which was not in this onion. For example, you may require
387         /// some additional metadata that was not provided with this payment.
388         RequiredNodeFeatureMissing,
389         /// You may wish to use this when a `payment_preimage` is unknown, or the CLTV expiry of
390         /// the HTLC is too close to the current block height for safe handling.
391         /// Using this failure code in [`ChannelManager::fail_htlc_backwards_with_reason`] is
392         /// equivalent to calling [`ChannelManager::fail_htlc_backwards`].
393         IncorrectOrUnknownPaymentDetails,
394         /// We failed to process the payload after the onion was decrypted. You may wish to
395         /// use this when receiving custom HTLC TLVs with even type numbers that you don't recognize.
396         ///
397         /// If available, the tuple data may include the type number and byte offset in the
398         /// decrypted byte stream where the failure occurred.
399         InvalidOnionPayload(Option<(u64, u16)>),
400 }
401
402 impl Into<u16> for FailureCode {
403     fn into(self) -> u16 {
404                 match self {
405                         FailureCode::TemporaryNodeFailure => 0x2000 | 2,
406                         FailureCode::RequiredNodeFeatureMissing => 0x4000 | 0x2000 | 3,
407                         FailureCode::IncorrectOrUnknownPaymentDetails => 0x4000 | 15,
408                         FailureCode::InvalidOnionPayload(_) => 0x4000 | 22,
409                 }
410         }
411 }
412
413 /// Error type returned across the peer_state mutex boundary. When an Err is generated for a
414 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
415 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
416 /// peer_state lock. We then return the set of things that need to be done outside the lock in
417 /// this struct and call handle_error!() on it.
418
419 struct MsgHandleErrInternal {
420         err: msgs::LightningError,
421         chan_id: Option<(ChannelId, u128)>, // If Some a channel of ours has been closed
422         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
423         channel_capacity: Option<u64>,
424 }
425 impl MsgHandleErrInternal {
426         #[inline]
427         fn send_err_msg_no_close(err: String, channel_id: ChannelId) -> Self {
428                 Self {
429                         err: LightningError {
430                                 err: err.clone(),
431                                 action: msgs::ErrorAction::SendErrorMessage {
432                                         msg: msgs::ErrorMessage {
433                                                 channel_id,
434                                                 data: err
435                                         },
436                                 },
437                         },
438                         chan_id: None,
439                         shutdown_finish: None,
440                         channel_capacity: None,
441                 }
442         }
443         #[inline]
444         fn from_no_close(err: msgs::LightningError) -> Self {
445                 Self { err, chan_id: None, shutdown_finish: None, channel_capacity: None }
446         }
447         #[inline]
448         fn from_finish_shutdown(err: String, channel_id: ChannelId, user_channel_id: u128, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>, channel_capacity: u64) -> Self {
449                 Self {
450                         err: LightningError {
451                                 err: err.clone(),
452                                 action: msgs::ErrorAction::SendErrorMessage {
453                                         msg: msgs::ErrorMessage {
454                                                 channel_id,
455                                                 data: err
456                                         },
457                                 },
458                         },
459                         chan_id: Some((channel_id, user_channel_id)),
460                         shutdown_finish: Some((shutdown_res, channel_update)),
461                         channel_capacity: Some(channel_capacity)
462                 }
463         }
464         #[inline]
465         fn from_chan_no_close(err: ChannelError, channel_id: ChannelId) -> Self {
466                 Self {
467                         err: match err {
468                                 ChannelError::Warn(msg) =>  LightningError {
469                                         err: msg.clone(),
470                                         action: msgs::ErrorAction::SendWarningMessage {
471                                                 msg: msgs::WarningMessage {
472                                                         channel_id,
473                                                         data: msg
474                                                 },
475                                                 log_level: Level::Warn,
476                                         },
477                                 },
478                                 ChannelError::Ignore(msg) => LightningError {
479                                         err: msg,
480                                         action: msgs::ErrorAction::IgnoreError,
481                                 },
482                                 ChannelError::Close(msg) => LightningError {
483                                         err: msg.clone(),
484                                         action: msgs::ErrorAction::SendErrorMessage {
485                                                 msg: msgs::ErrorMessage {
486                                                         channel_id,
487                                                         data: msg
488                                                 },
489                                         },
490                                 },
491                         },
492                         chan_id: None,
493                         shutdown_finish: None,
494                         channel_capacity: None,
495                 }
496         }
497 }
498
499 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
500 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
501 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
502 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
503 pub(super) const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
504
505 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
506 /// be sent in the order they appear in the return value, however sometimes the order needs to be
507 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
508 /// they were originally sent). In those cases, this enum is also returned.
509 #[derive(Clone, PartialEq)]
510 pub(super) enum RAACommitmentOrder {
511         /// Send the CommitmentUpdate messages first
512         CommitmentFirst,
513         /// Send the RevokeAndACK message first
514         RevokeAndACKFirst,
515 }
516
517 /// Information about a payment which is currently being claimed.
518 struct ClaimingPayment {
519         amount_msat: u64,
520         payment_purpose: events::PaymentPurpose,
521         receiver_node_id: PublicKey,
522         htlcs: Vec<events::ClaimedHTLC>,
523         sender_intended_value: Option<u64>,
524 }
525 impl_writeable_tlv_based!(ClaimingPayment, {
526         (0, amount_msat, required),
527         (2, payment_purpose, required),
528         (4, receiver_node_id, required),
529         (5, htlcs, optional_vec),
530         (7, sender_intended_value, option),
531 });
532
533 struct ClaimablePayment {
534         purpose: events::PaymentPurpose,
535         onion_fields: Option<RecipientOnionFields>,
536         htlcs: Vec<ClaimableHTLC>,
537 }
538
539 /// Information about claimable or being-claimed payments
540 struct ClaimablePayments {
541         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
542         /// failed/claimed by the user.
543         ///
544         /// Note that, no consistency guarantees are made about the channels given here actually
545         /// existing anymore by the time you go to read them!
546         ///
547         /// When adding to the map, [`Self::pending_claiming_payments`] must also be checked to ensure
548         /// we don't get a duplicate payment.
549         claimable_payments: HashMap<PaymentHash, ClaimablePayment>,
550
551         /// Map from payment hash to the payment data for HTLCs which we have begun claiming, but which
552         /// are waiting on a [`ChannelMonitorUpdate`] to complete in order to be surfaced to the user
553         /// as an [`events::Event::PaymentClaimed`].
554         pending_claiming_payments: HashMap<PaymentHash, ClaimingPayment>,
555 }
556
557 /// Events which we process internally but cannot be processed immediately at the generation site
558 /// usually because we're running pre-full-init. They are handled immediately once we detect we are
559 /// running normally, and specifically must be processed before any other non-background
560 /// [`ChannelMonitorUpdate`]s are applied.
561 enum BackgroundEvent {
562         /// Handle a ChannelMonitorUpdate which closes the channel or for an already-closed channel.
563         /// This is only separated from [`Self::MonitorUpdateRegeneratedOnStartup`] as the
564         /// maybe-non-closing variant needs a public key to handle channel resumption, whereas if the
565         /// channel has been force-closed we do not need the counterparty node_id.
566         ///
567         /// Note that any such events are lost on shutdown, so in general they must be updates which
568         /// are regenerated on startup.
569         ClosedMonitorUpdateRegeneratedOnStartup((OutPoint, ChannelMonitorUpdate)),
570         /// Handle a ChannelMonitorUpdate which may or may not close the channel and may unblock the
571         /// channel to continue normal operation.
572         ///
573         /// In general this should be used rather than
574         /// [`Self::ClosedMonitorUpdateRegeneratedOnStartup`], however in cases where the
575         /// `counterparty_node_id` is not available as the channel has closed from a [`ChannelMonitor`]
576         /// error the other variant is acceptable.
577         ///
578         /// Note that any such events are lost on shutdown, so in general they must be updates which
579         /// are regenerated on startup.
580         MonitorUpdateRegeneratedOnStartup {
581                 counterparty_node_id: PublicKey,
582                 funding_txo: OutPoint,
583                 update: ChannelMonitorUpdate
584         },
585         /// Some [`ChannelMonitorUpdate`] (s) completed before we were serialized but we still have
586         /// them marked pending, thus we need to run any [`MonitorUpdateCompletionAction`] (s) pending
587         /// on a channel.
588         MonitorUpdatesComplete {
589                 counterparty_node_id: PublicKey,
590                 channel_id: ChannelId,
591         },
592 }
593
594 #[derive(Debug)]
595 pub(crate) enum MonitorUpdateCompletionAction {
596         /// Indicates that a payment ultimately destined for us was claimed and we should emit an
597         /// [`events::Event::PaymentClaimed`] to the user if we haven't yet generated such an event for
598         /// this payment. Note that this is only best-effort. On restart it's possible such a duplicate
599         /// event can be generated.
600         PaymentClaimed { payment_hash: PaymentHash },
601         /// Indicates an [`events::Event`] should be surfaced to the user and possibly resume the
602         /// operation of another channel.
603         ///
604         /// This is usually generated when we've forwarded an HTLC and want to block the outbound edge
605         /// from completing a monitor update which removes the payment preimage until the inbound edge
606         /// completes a monitor update containing the payment preimage. In that case, after the inbound
607         /// edge completes, we will surface an [`Event::PaymentForwarded`] as well as unblock the
608         /// outbound edge.
609         EmitEventAndFreeOtherChannel {
610                 event: events::Event,
611                 downstream_counterparty_and_funding_outpoint: Option<(PublicKey, OutPoint, RAAMonitorUpdateBlockingAction)>,
612         },
613 }
614
615 impl_writeable_tlv_based_enum_upgradable!(MonitorUpdateCompletionAction,
616         (0, PaymentClaimed) => { (0, payment_hash, required) },
617         (2, EmitEventAndFreeOtherChannel) => {
618                 (0, event, upgradable_required),
619                 // LDK prior to 0.0.116 did not have this field as the monitor update application order was
620                 // required by clients. If we downgrade to something prior to 0.0.116 this may result in
621                 // monitor updates which aren't properly blocked or resumed, however that's fine - we don't
622                 // support async monitor updates even in LDK 0.0.116 and once we do we'll require no
623                 // downgrades to prior versions.
624                 (1, downstream_counterparty_and_funding_outpoint, option),
625         },
626 );
627
628 #[derive(Clone, Debug, PartialEq, Eq)]
629 pub(crate) enum EventCompletionAction {
630         ReleaseRAAChannelMonitorUpdate {
631                 counterparty_node_id: PublicKey,
632                 channel_funding_outpoint: OutPoint,
633         },
634 }
635 impl_writeable_tlv_based_enum!(EventCompletionAction,
636         (0, ReleaseRAAChannelMonitorUpdate) => {
637                 (0, channel_funding_outpoint, required),
638                 (2, counterparty_node_id, required),
639         };
640 );
641
642 #[derive(Clone, PartialEq, Eq, Debug)]
643 /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
644 /// the blocked action here. See enum variants for more info.
645 pub(crate) enum RAAMonitorUpdateBlockingAction {
646         /// A forwarded payment was claimed. We block the downstream channel completing its monitor
647         /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
648         /// durably to disk.
649         ForwardedPaymentInboundClaim {
650                 /// The upstream channel ID (i.e. the inbound edge).
651                 channel_id: ChannelId,
652                 /// The HTLC ID on the inbound edge.
653                 htlc_id: u64,
654         },
655 }
656
657 impl RAAMonitorUpdateBlockingAction {
658         #[allow(unused)]
659         fn from_prev_hop_data(prev_hop: &HTLCPreviousHopData) -> Self {
660                 Self::ForwardedPaymentInboundClaim {
661                         channel_id: prev_hop.outpoint.to_channel_id(),
662                         htlc_id: prev_hop.htlc_id,
663                 }
664         }
665 }
666
667 impl_writeable_tlv_based_enum!(RAAMonitorUpdateBlockingAction,
668         (0, ForwardedPaymentInboundClaim) => { (0, channel_id, required), (2, htlc_id, required) }
669 ;);
670
671
672 /// State we hold per-peer.
673 pub(super) struct PeerState<SP: Deref> where SP::Target: SignerProvider {
674         /// `channel_id` -> `ChannelPhase`
675         ///
676         /// Holds all channels within corresponding `ChannelPhase`s where the peer is the counterparty.
677         pub(super) channel_by_id: HashMap<ChannelId, ChannelPhase<SP>>,
678         /// `temporary_channel_id` -> `InboundChannelRequest`.
679         ///
680         /// When manual channel acceptance is enabled, this holds all unaccepted inbound channels where
681         /// the peer is the counterparty. If the channel is accepted, then the entry in this table is
682         /// removed, and an InboundV1Channel is created and placed in the `inbound_v1_channel_by_id` table. If
683         /// the channel is rejected, then the entry is simply removed.
684         pub(super) inbound_channel_request_by_id: HashMap<ChannelId, InboundChannelRequest>,
685         /// The latest `InitFeatures` we heard from the peer.
686         latest_features: InitFeatures,
687         /// Messages to send to the peer - pushed to in the same lock that they are generated in (except
688         /// for broadcast messages, where ordering isn't as strict).
689         pub(super) pending_msg_events: Vec<MessageSendEvent>,
690         /// Map from Channel IDs to pending [`ChannelMonitorUpdate`]s which have been passed to the
691         /// user but which have not yet completed.
692         ///
693         /// Note that the channel may no longer exist. For example if the channel was closed but we
694         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
695         /// for a missing channel.
696         in_flight_monitor_updates: BTreeMap<OutPoint, Vec<ChannelMonitorUpdate>>,
697         /// Map from a specific channel to some action(s) that should be taken when all pending
698         /// [`ChannelMonitorUpdate`]s for the channel complete updating.
699         ///
700         /// Note that because we generally only have one entry here a HashMap is pretty overkill. A
701         /// BTreeMap currently stores more than ten elements per leaf node, so even up to a few
702         /// channels with a peer this will just be one allocation and will amount to a linear list of
703         /// channels to walk, avoiding the whole hashing rigmarole.
704         ///
705         /// Note that the channel may no longer exist. For example, if a channel was closed but we
706         /// later needed to claim an HTLC which is pending on-chain, we may generate a monitor update
707         /// for a missing channel. While a malicious peer could construct a second channel with the
708         /// same `temporary_channel_id` (or final `channel_id` in the case of 0conf channels or prior
709         /// to funding appearing on-chain), the downstream `ChannelMonitor` set is required to ensure
710         /// duplicates do not occur, so such channels should fail without a monitor update completing.
711         monitor_update_blocked_actions: BTreeMap<ChannelId, Vec<MonitorUpdateCompletionAction>>,
712         /// If another channel's [`ChannelMonitorUpdate`] needs to complete before a channel we have
713         /// with this peer can complete an RAA [`ChannelMonitorUpdate`] (e.g. because the RAA update
714         /// will remove a preimage that needs to be durably in an upstream channel first), we put an
715         /// entry here to note that the channel with the key's ID is blocked on a set of actions.
716         actions_blocking_raa_monitor_updates: BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
717         /// The peer is currently connected (i.e. we've seen a
718         /// [`ChannelMessageHandler::peer_connected`] and no corresponding
719         /// [`ChannelMessageHandler::peer_disconnected`].
720         is_connected: bool,
721 }
722
723 impl <SP: Deref> PeerState<SP> where SP::Target: SignerProvider {
724         /// Indicates that a peer meets the criteria where we're ok to remove it from our storage.
725         /// If true is passed for `require_disconnected`, the function will return false if we haven't
726         /// disconnected from the node already, ie. `PeerState::is_connected` is set to `true`.
727         fn ok_to_remove(&self, require_disconnected: bool) -> bool {
728                 if require_disconnected && self.is_connected {
729                         return false
730                 }
731                 self.channel_by_id.iter().filter(|(_, phase)| matches!(phase, ChannelPhase::Funded(_))).count() == 0
732                         && self.monitor_update_blocked_actions.is_empty()
733                         && self.in_flight_monitor_updates.is_empty()
734         }
735
736         // Returns a count of all channels we have with this peer, including unfunded channels.
737         fn total_channel_count(&self) -> usize {
738                 self.channel_by_id.len() + self.inbound_channel_request_by_id.len()
739         }
740
741         // Returns a bool indicating if the given `channel_id` matches a channel we have with this peer.
742         fn has_channel(&self, channel_id: &ChannelId) -> bool {
743                 self.channel_by_id.contains_key(channel_id) ||
744                         self.inbound_channel_request_by_id.contains_key(channel_id)
745         }
746 }
747
748 /// A not-yet-accepted inbound (from counterparty) channel. Once
749 /// accepted, the parameters will be used to construct a channel.
750 pub(super) struct InboundChannelRequest {
751         /// The original OpenChannel message.
752         pub open_channel_msg: msgs::OpenChannel,
753         /// The number of ticks remaining before the request expires.
754         pub ticks_remaining: i32,
755 }
756
757 /// The number of ticks that may elapse while we're waiting for an unaccepted inbound channel to be
758 /// accepted. An unaccepted channel that exceeds this limit will be abandoned.
759 const UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS: i32 = 2;
760
761 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
762 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
763 ///
764 /// For users who don't want to bother doing their own payment preimage storage, we also store that
765 /// here.
766 ///
767 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
768 /// and instead encoding it in the payment secret.
769 struct PendingInboundPayment {
770         /// The payment secret that the sender must use for us to accept this payment
771         payment_secret: PaymentSecret,
772         /// Time at which this HTLC expires - blocks with a header time above this value will result in
773         /// this payment being removed.
774         expiry_time: u64,
775         /// Arbitrary identifier the user specifies (or not)
776         user_payment_id: u64,
777         // Other required attributes of the payment, optionally enforced:
778         payment_preimage: Option<PaymentPreimage>,
779         min_value_msat: Option<u64>,
780 }
781
782 /// [`SimpleArcChannelManager`] is useful when you need a [`ChannelManager`] with a static lifetime, e.g.
783 /// when you're using `lightning-net-tokio` (since `tokio::spawn` requires parameters with static
784 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
785 /// [`SimpleRefChannelManager`] is the more appropriate type. Defining these type aliases prevents
786 /// issues such as overly long function definitions. Note that the `ChannelManager` can take any type
787 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
788 /// or, respectively, [`Router`] for its router, but this type alias chooses the concrete types
789 /// of [`KeysManager`] and [`DefaultRouter`].
790 ///
791 /// This is not exported to bindings users as Arcs don't make sense in bindings
792 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<
793         Arc<M>,
794         Arc<T>,
795         Arc<KeysManager>,
796         Arc<KeysManager>,
797         Arc<KeysManager>,
798         Arc<F>,
799         Arc<DefaultRouter<
800                 Arc<NetworkGraph<Arc<L>>>,
801                 Arc<L>,
802                 Arc<Mutex<ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>>>,
803                 ProbabilisticScoringFeeParameters,
804                 ProbabilisticScorer<Arc<NetworkGraph<Arc<L>>>, Arc<L>>,
805         >>,
806         Arc<L>
807 >;
808
809 /// [`SimpleRefChannelManager`] is a type alias for a ChannelManager reference, and is the reference
810 /// counterpart to the [`SimpleArcChannelManager`] type alias. Use this type by default when you don't
811 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
812 /// usage of lightning-net-tokio (since `tokio::spawn` requires parameters with static lifetimes).
813 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
814 /// issues such as overly long function definitions. Note that the ChannelManager can take any type
815 /// that implements [`NodeSigner`], [`EntropySource`], and [`SignerProvider`] for its keys manager,
816 /// or, respectively, [`Router`]  for its router, but this type alias chooses the concrete types
817 /// of [`KeysManager`] and [`DefaultRouter`].
818 ///
819 /// This is not exported to bindings users as Arcs don't make sense in bindings
820 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h, M, T, F, L> =
821         ChannelManager<
822                 &'a M,
823                 &'b T,
824                 &'c KeysManager,
825                 &'c KeysManager,
826                 &'c KeysManager,
827                 &'d F,
828                 &'e DefaultRouter<
829                         &'f NetworkGraph<&'g L>,
830                         &'g L,
831                         &'h Mutex<ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>>,
832                         ProbabilisticScoringFeeParameters,
833                         ProbabilisticScorer<&'f NetworkGraph<&'g L>, &'g L>
834                 >,
835                 &'g L
836         >;
837
838 macro_rules! define_test_pub_trait { ($vis: vis) => {
839 /// A trivial trait which describes any [`ChannelManager`] used in testing.
840 $vis trait AChannelManager {
841         type Watch: chain::Watch<Self::Signer> + ?Sized;
842         type M: Deref<Target = Self::Watch>;
843         type Broadcaster: BroadcasterInterface + ?Sized;
844         type T: Deref<Target = Self::Broadcaster>;
845         type EntropySource: EntropySource + ?Sized;
846         type ES: Deref<Target = Self::EntropySource>;
847         type NodeSigner: NodeSigner + ?Sized;
848         type NS: Deref<Target = Self::NodeSigner>;
849         type Signer: WriteableEcdsaChannelSigner + Sized;
850         type SignerProvider: SignerProvider<Signer = Self::Signer> + ?Sized;
851         type SP: Deref<Target = Self::SignerProvider>;
852         type FeeEstimator: FeeEstimator + ?Sized;
853         type F: Deref<Target = Self::FeeEstimator>;
854         type Router: Router + ?Sized;
855         type R: Deref<Target = Self::Router>;
856         type Logger: Logger + ?Sized;
857         type L: Deref<Target = Self::Logger>;
858         fn get_cm(&self) -> &ChannelManager<Self::M, Self::T, Self::ES, Self::NS, Self::SP, Self::F, Self::R, Self::L>;
859 }
860 } }
861 #[cfg(any(test, feature = "_test_utils"))]
862 define_test_pub_trait!(pub);
863 #[cfg(not(any(test, feature = "_test_utils")))]
864 define_test_pub_trait!(pub(crate));
865 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref> AChannelManager
866 for ChannelManager<M, T, ES, NS, SP, F, R, L>
867 where
868         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
869         T::Target: BroadcasterInterface,
870         ES::Target: EntropySource,
871         NS::Target: NodeSigner,
872         SP::Target: SignerProvider,
873         F::Target: FeeEstimator,
874         R::Target: Router,
875         L::Target: Logger,
876 {
877         type Watch = M::Target;
878         type M = M;
879         type Broadcaster = T::Target;
880         type T = T;
881         type EntropySource = ES::Target;
882         type ES = ES;
883         type NodeSigner = NS::Target;
884         type NS = NS;
885         type Signer = <SP::Target as SignerProvider>::Signer;
886         type SignerProvider = SP::Target;
887         type SP = SP;
888         type FeeEstimator = F::Target;
889         type F = F;
890         type Router = R::Target;
891         type R = R;
892         type Logger = L::Target;
893         type L = L;
894         fn get_cm(&self) -> &ChannelManager<M, T, ES, NS, SP, F, R, L> { self }
895 }
896
897 /// Manager which keeps track of a number of channels and sends messages to the appropriate
898 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
899 ///
900 /// Implements [`ChannelMessageHandler`], handling the multi-channel parts and passing things through
901 /// to individual Channels.
902 ///
903 /// Implements [`Writeable`] to write out all channel state to disk. Implies [`peer_disconnected`] for
904 /// all peers during write/read (though does not modify this instance, only the instance being
905 /// serialized). This will result in any channels which have not yet exchanged [`funding_created`] (i.e.,
906 /// called [`funding_transaction_generated`] for outbound channels) being closed.
907 ///
908 /// Note that you can be a bit lazier about writing out `ChannelManager` than you can be with
909 /// [`ChannelMonitor`]. With [`ChannelMonitor`] you MUST write each monitor update out to disk before
910 /// returning from [`chain::Watch::watch_channel`]/[`update_channel`], with ChannelManagers, writing updates
911 /// happens out-of-band (and will prevent any other `ChannelManager` operations from occurring during
912 /// the serialization process). If the deserialized version is out-of-date compared to the
913 /// [`ChannelMonitor`] passed by reference to [`read`], those channels will be force-closed based on the
914 /// `ChannelMonitor` state and no funds will be lost (mod on-chain transaction fees).
915 ///
916 /// Note that the deserializer is only implemented for `(`[`BlockHash`]`, `[`ChannelManager`]`)`, which
917 /// tells you the last block hash which was connected. You should get the best block tip before using the manager.
918 /// See [`chain::Listen`] and [`chain::Confirm`] for more details.
919 ///
920 /// Note that `ChannelManager` is responsible for tracking liveness of its channels and generating
921 /// [`ChannelUpdate`] messages informing peers that the channel is temporarily disabled. To avoid
922 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
923 /// offline for a full minute. In order to track this, you must call
924 /// [`timer_tick_occurred`] roughly once per minute, though it doesn't have to be perfect.
925 ///
926 /// To avoid trivial DoS issues, `ChannelManager` limits the number of inbound connections and
927 /// inbound channels without confirmed funding transactions. This may result in nodes which we do
928 /// not have a channel with being unable to connect to us or open new channels with us if we have
929 /// many peers with unfunded channels.
930 ///
931 /// Because it is an indication of trust, inbound channels which we've accepted as 0conf are
932 /// exempted from the count of unfunded channels. Similarly, outbound channels and connections are
933 /// never limited. Please ensure you limit the count of such channels yourself.
934 ///
935 /// Rather than using a plain `ChannelManager`, it is preferable to use either a [`SimpleArcChannelManager`]
936 /// a [`SimpleRefChannelManager`], for conciseness. See their documentation for more details, but
937 /// essentially you should default to using a [`SimpleRefChannelManager`], and use a
938 /// [`SimpleArcChannelManager`] when you require a `ChannelManager` with a static lifetime, such as when
939 /// you're using lightning-net-tokio.
940 ///
941 /// [`peer_disconnected`]: msgs::ChannelMessageHandler::peer_disconnected
942 /// [`funding_created`]: msgs::FundingCreated
943 /// [`funding_transaction_generated`]: Self::funding_transaction_generated
944 /// [`BlockHash`]: bitcoin::hash_types::BlockHash
945 /// [`update_channel`]: chain::Watch::update_channel
946 /// [`ChannelUpdate`]: msgs::ChannelUpdate
947 /// [`timer_tick_occurred`]: Self::timer_tick_occurred
948 /// [`read`]: ReadableArgs::read
949 //
950 // Lock order:
951 // The tree structure below illustrates the lock order requirements for the different locks of the
952 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
953 // and should then be taken in the order of the lowest to the highest level in the tree.
954 // Note that locks on different branches shall not be taken at the same time, as doing so will
955 // create a new lock order for those specific locks in the order they were taken.
956 //
957 // Lock order tree:
958 //
959 // `total_consistency_lock`
960 //  |
961 //  |__`forward_htlcs`
962 //  |   |
963 //  |   |__`pending_intercepted_htlcs`
964 //  |
965 //  |__`per_peer_state`
966 //  |   |
967 //  |   |__`pending_inbound_payments`
968 //  |       |
969 //  |       |__`claimable_payments`
970 //  |       |
971 //  |       |__`pending_outbound_payments` // This field's struct contains a map of pending outbounds
972 //  |           |
973 //  |           |__`peer_state`
974 //  |               |
975 //  |               |__`id_to_peer`
976 //  |               |
977 //  |               |__`short_to_chan_info`
978 //  |               |
979 //  |               |__`outbound_scid_aliases`
980 //  |               |
981 //  |               |__`best_block`
982 //  |               |
983 //  |               |__`pending_events`
984 //  |                   |
985 //  |                   |__`pending_background_events`
986 //
987 pub struct ChannelManager<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
988 where
989         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
990         T::Target: BroadcasterInterface,
991         ES::Target: EntropySource,
992         NS::Target: NodeSigner,
993         SP::Target: SignerProvider,
994         F::Target: FeeEstimator,
995         R::Target: Router,
996         L::Target: Logger,
997 {
998         default_configuration: UserConfig,
999         genesis_hash: BlockHash,
1000         fee_estimator: LowerBoundedFeeEstimator<F>,
1001         chain_monitor: M,
1002         tx_broadcaster: T,
1003         #[allow(unused)]
1004         router: R,
1005
1006         /// See `ChannelManager` struct-level documentation for lock order requirements.
1007         #[cfg(test)]
1008         pub(super) best_block: RwLock<BestBlock>,
1009         #[cfg(not(test))]
1010         best_block: RwLock<BestBlock>,
1011         secp_ctx: Secp256k1<secp256k1::All>,
1012
1013         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
1014         /// expose them to users via a PaymentClaimable event. HTLCs which do not meet the requirements
1015         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
1016         /// after we generate a PaymentClaimable upon receipt of all MPP parts or when they time out.
1017         ///
1018         /// See `ChannelManager` struct-level documentation for lock order requirements.
1019         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
1020
1021         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
1022         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
1023         /// (if the channel has been force-closed), however we track them here to prevent duplicative
1024         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
1025         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
1026         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
1027         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
1028         /// after reloading from disk while replaying blocks against ChannelMonitors.
1029         ///
1030         /// See `PendingOutboundPayment` documentation for more info.
1031         ///
1032         /// See `ChannelManager` struct-level documentation for lock order requirements.
1033         pending_outbound_payments: OutboundPayments,
1034
1035         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
1036         ///
1037         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
1038         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
1039         /// and via the classic SCID.
1040         ///
1041         /// Note that no consistency guarantees are made about the existence of a channel with the
1042         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
1043         ///
1044         /// See `ChannelManager` struct-level documentation for lock order requirements.
1045         #[cfg(test)]
1046         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1047         #[cfg(not(test))]
1048         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
1049         /// Storage for HTLCs that have been intercepted and bubbled up to the user. We hold them here
1050         /// until the user tells us what we should do with them.
1051         ///
1052         /// See `ChannelManager` struct-level documentation for lock order requirements.
1053         pending_intercepted_htlcs: Mutex<HashMap<InterceptId, PendingAddHTLCInfo>>,
1054
1055         /// The sets of payments which are claimable or currently being claimed. See
1056         /// [`ClaimablePayments`]' individual field docs for more info.
1057         ///
1058         /// See `ChannelManager` struct-level documentation for lock order requirements.
1059         claimable_payments: Mutex<ClaimablePayments>,
1060
1061         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
1062         /// and some closed channels which reached a usable state prior to being closed. This is used
1063         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
1064         /// active channel list on load.
1065         ///
1066         /// See `ChannelManager` struct-level documentation for lock order requirements.
1067         outbound_scid_aliases: Mutex<HashSet<u64>>,
1068
1069         /// `channel_id` -> `counterparty_node_id`.
1070         ///
1071         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
1072         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
1073         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
1074         ///
1075         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
1076         /// the corresponding channel for the event, as we only have access to the `channel_id` during
1077         /// the handling of the events.
1078         ///
1079         /// Note that no consistency guarantees are made about the existence of a peer with the
1080         /// `counterparty_node_id` in our other maps.
1081         ///
1082         /// TODO:
1083         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
1084         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
1085         /// would break backwards compatability.
1086         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
1087         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
1088         /// required to access the channel with the `counterparty_node_id`.
1089         ///
1090         /// See `ChannelManager` struct-level documentation for lock order requirements.
1091         id_to_peer: Mutex<HashMap<ChannelId, PublicKey>>,
1092
1093         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
1094         ///
1095         /// Outbound SCID aliases are added here once the channel is available for normal use, with
1096         /// SCIDs being added once the funding transaction is confirmed at the channel's required
1097         /// confirmation depth.
1098         ///
1099         /// Note that while this holds `counterparty_node_id`s and `channel_id`s, no consistency
1100         /// guarantees are made about the existence of a peer with the `counterparty_node_id` nor a
1101         /// channel with the `channel_id` in our other maps.
1102         ///
1103         /// See `ChannelManager` struct-level documentation for lock order requirements.
1104         #[cfg(test)]
1105         pub(super) short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1106         #[cfg(not(test))]
1107         short_to_chan_info: FairRwLock<HashMap<u64, (PublicKey, ChannelId)>>,
1108
1109         our_network_pubkey: PublicKey,
1110
1111         inbound_payment_key: inbound_payment::ExpandedKey,
1112
1113         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
1114         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
1115         /// we encrypt the namespace identifier using these bytes.
1116         ///
1117         /// [fake scids]: crate::util::scid_utils::fake_scid
1118         fake_scid_rand_bytes: [u8; 32],
1119
1120         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
1121         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
1122         /// keeping additional state.
1123         probing_cookie_secret: [u8; 32],
1124
1125         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
1126         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
1127         /// very far in the past, and can only ever be up to two hours in the future.
1128         highest_seen_timestamp: AtomicUsize,
1129
1130         /// The bulk of our storage. Currently the `per_peer_state` stores our channels on a per-peer
1131         /// basis, as well as the peer's latest features.
1132         ///
1133         /// If we are connected to a peer we always at least have an entry here, even if no channels
1134         /// are currently open with that peer.
1135         ///
1136         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
1137         /// operate on the inner value freely. This opens up for parallel per-peer operation for
1138         /// channels.
1139         ///
1140         /// Note that the same thread must never acquire two inner `PeerState` locks at the same time.
1141         ///
1142         /// See `ChannelManager` struct-level documentation for lock order requirements.
1143         #[cfg(not(any(test, feature = "_test_utils")))]
1144         per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1145         #[cfg(any(test, feature = "_test_utils"))]
1146         pub(super) per_peer_state: FairRwLock<HashMap<PublicKey, Mutex<PeerState<SP>>>>,
1147
1148         /// The set of events which we need to give to the user to handle. In some cases an event may
1149         /// require some further action after the user handles it (currently only blocking a monitor
1150         /// update from being handed to the user to ensure the included changes to the channel state
1151         /// are handled by the user before they're persisted durably to disk). In that case, the second
1152         /// element in the tuple is set to `Some` with further details of the action.
1153         ///
1154         /// Note that events MUST NOT be removed from pending_events after deserialization, as they
1155         /// could be in the middle of being processed without the direct mutex held.
1156         ///
1157         /// See `ChannelManager` struct-level documentation for lock order requirements.
1158         #[cfg(not(any(test, feature = "_test_utils")))]
1159         pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1160         #[cfg(any(test, feature = "_test_utils"))]
1161         pub(crate) pending_events: Mutex<VecDeque<(events::Event, Option<EventCompletionAction>)>>,
1162
1163         /// A simple atomic flag to ensure only one task at a time can be processing events asynchronously.
1164         pending_events_processor: AtomicBool,
1165
1166         /// If we are running during init (either directly during the deserialization method or in
1167         /// block connection methods which run after deserialization but before normal operation) we
1168         /// cannot provide the user with [`ChannelMonitorUpdate`]s through the normal update flow -
1169         /// prior to normal operation the user may not have loaded the [`ChannelMonitor`]s into their
1170         /// [`ChainMonitor`] and thus attempting to update it will fail or panic.
1171         ///
1172         /// Thus, we place them here to be handled as soon as possible once we are running normally.
1173         ///
1174         /// See `ChannelManager` struct-level documentation for lock order requirements.
1175         ///
1176         /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1177         pending_background_events: Mutex<Vec<BackgroundEvent>>,
1178         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
1179         /// Essentially just when we're serializing ourselves out.
1180         /// Taken first everywhere where we are making changes before any other locks.
1181         /// When acquiring this lock in read mode, rather than acquiring it directly, call
1182         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
1183         /// Notifier the lock contains sends out a notification when the lock is released.
1184         total_consistency_lock: RwLock<()>,
1185
1186         background_events_processed_since_startup: AtomicBool,
1187
1188         persistence_notifier: Notifier,
1189
1190         entropy_source: ES,
1191         node_signer: NS,
1192         signer_provider: SP,
1193
1194         logger: L,
1195 }
1196
1197 /// Chain-related parameters used to construct a new `ChannelManager`.
1198 ///
1199 /// Typically, the block-specific parameters are derived from the best block hash for the network,
1200 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
1201 /// are not needed when deserializing a previously constructed `ChannelManager`.
1202 #[derive(Clone, Copy, PartialEq)]
1203 pub struct ChainParameters {
1204         /// The network for determining the `chain_hash` in Lightning messages.
1205         pub network: Network,
1206
1207         /// The hash and height of the latest block successfully connected.
1208         ///
1209         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
1210         pub best_block: BestBlock,
1211 }
1212
1213 #[derive(Copy, Clone, PartialEq)]
1214 #[must_use]
1215 enum NotifyOption {
1216         DoPersist,
1217         SkipPersist,
1218 }
1219
1220 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
1221 /// desirable to notify any listeners on `await_persistable_update_timeout`/
1222 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
1223 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
1224 /// sending the aforementioned notification (since the lock being released indicates that the
1225 /// updates are ready for persistence).
1226 ///
1227 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
1228 /// notify or not based on whether relevant changes have been made, providing a closure to
1229 /// `optionally_notify` which returns a `NotifyOption`.
1230 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
1231         persistence_notifier: &'a Notifier,
1232         should_persist: F,
1233         // We hold onto this result so the lock doesn't get released immediately.
1234         _read_guard: RwLockReadGuard<'a, ()>,
1235 }
1236
1237 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
1238         fn notify_on_drop<C: AChannelManager>(cm: &'a C) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
1239                 let read_guard = cm.get_cm().total_consistency_lock.read().unwrap();
1240                 let _ = cm.get_cm().process_background_events(); // We always persist
1241
1242                 PersistenceNotifierGuard {
1243                         persistence_notifier: &cm.get_cm().persistence_notifier,
1244                         should_persist: || -> NotifyOption { NotifyOption::DoPersist },
1245                         _read_guard: read_guard,
1246                 }
1247
1248         }
1249
1250         /// Note that if any [`ChannelMonitorUpdate`]s are possibly generated,
1251         /// [`ChannelManager::process_background_events`] MUST be called first.
1252         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
1253                 let read_guard = lock.read().unwrap();
1254
1255                 PersistenceNotifierGuard {
1256                         persistence_notifier: notifier,
1257                         should_persist: persist_check,
1258                         _read_guard: read_guard,
1259                 }
1260         }
1261 }
1262
1263 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
1264         fn drop(&mut self) {
1265                 if (self.should_persist)() == NotifyOption::DoPersist {
1266                         self.persistence_notifier.notify();
1267                 }
1268         }
1269 }
1270
1271 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
1272 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
1273 ///
1274 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
1275 ///
1276 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
1277 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
1278 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
1279 /// the maximum required amount in lnd as of March 2021.
1280 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
1281
1282 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
1283 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
1284 ///
1285 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
1286 ///
1287 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
1288 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
1289 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
1290 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
1291 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
1292 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
1293 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
1294 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
1295 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
1296 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
1297 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
1298 // routing failure for any HTLC sender picking up an LDK node among the first hops.
1299 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
1300
1301 /// Minimum CLTV difference between the current block height and received inbound payments.
1302 /// Invoices generated for payment to us must set their `min_final_cltv_expiry_delta` field to at least
1303 /// this value.
1304 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
1305 // any payments to succeed. Further, we don't want payments to fail if a block was found while
1306 // a payment was being routed, so we add an extra block to be safe.
1307 pub const MIN_FINAL_CLTV_EXPIRY_DELTA: u16 = HTLC_FAIL_BACK_BUFFER as u16 + 3;
1308
1309 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
1310 // ie that if the next-hop peer fails the HTLC within
1311 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
1312 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
1313 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
1314 // LATENCY_GRACE_PERIOD_BLOCKS.
1315 #[deny(const_err)]
1316 #[allow(dead_code)]
1317 const CHECK_CLTV_EXPIRY_SANITY: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - CLTV_CLAIM_BUFFER - ANTI_REORG_DELAY - LATENCY_GRACE_PERIOD_BLOCKS;
1318
1319 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
1320 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
1321 #[deny(const_err)]
1322 #[allow(dead_code)]
1323 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
1324
1325 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
1326 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
1327
1328 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is disconnected
1329 /// until we mark the channel disabled and gossip the update.
1330 pub(crate) const DISABLE_GOSSIP_TICKS: u8 = 10;
1331
1332 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] where a peer is connected until
1333 /// we mark the channel enabled and gossip the update.
1334 pub(crate) const ENABLE_GOSSIP_TICKS: u8 = 5;
1335
1336 /// The maximum number of unfunded channels we can have per-peer before we start rejecting new
1337 /// (inbound) ones. The number of peers with unfunded channels is limited separately in
1338 /// [`MAX_UNFUNDED_CHANNEL_PEERS`].
1339 const MAX_UNFUNDED_CHANS_PER_PEER: usize = 4;
1340
1341 /// The maximum number of peers from which we will allow pending unfunded channels. Once we reach
1342 /// this many peers we reject new (inbound) channels from peers with which we don't have a channel.
1343 const MAX_UNFUNDED_CHANNEL_PEERS: usize = 50;
1344
1345 /// The maximum number of peers which we do not have a (funded) channel with. Once we reach this
1346 /// many peers we reject new (inbound) connections.
1347 const MAX_NO_CHANNEL_PEERS: usize = 250;
1348
1349 /// Information needed for constructing an invoice route hint for this channel.
1350 #[derive(Clone, Debug, PartialEq)]
1351 pub struct CounterpartyForwardingInfo {
1352         /// Base routing fee in millisatoshis.
1353         pub fee_base_msat: u32,
1354         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
1355         pub fee_proportional_millionths: u32,
1356         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
1357         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
1358         /// `cltv_expiry_delta` for more details.
1359         pub cltv_expiry_delta: u16,
1360 }
1361
1362 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
1363 /// to better separate parameters.
1364 #[derive(Clone, Debug, PartialEq)]
1365 pub struct ChannelCounterparty {
1366         /// The node_id of our counterparty
1367         pub node_id: PublicKey,
1368         /// The Features the channel counterparty provided upon last connection.
1369         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
1370         /// many routing-relevant features are present in the init context.
1371         pub features: InitFeatures,
1372         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
1373         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
1374         /// claiming at least this value on chain.
1375         ///
1376         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
1377         ///
1378         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
1379         pub unspendable_punishment_reserve: u64,
1380         /// Information on the fees and requirements that the counterparty requires when forwarding
1381         /// payments to us through this channel.
1382         pub forwarding_info: Option<CounterpartyForwardingInfo>,
1383         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1384         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1385         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1386         pub outbound_htlc_minimum_msat: Option<u64>,
1387         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1388         pub outbound_htlc_maximum_msat: Option<u64>,
1389 }
1390
1391 /// Details of a channel, as returned by [`ChannelManager::list_channels`] and [`ChannelManager::list_usable_channels`]
1392 ///
1393 /// Balances of a channel are available through [`ChainMonitor::get_claimable_balances`] and
1394 /// [`ChannelMonitor::get_claimable_balances`], calculated with respect to the corresponding on-chain
1395 /// transactions.
1396 ///
1397 /// [`ChainMonitor::get_claimable_balances`]: crate::chain::chainmonitor::ChainMonitor::get_claimable_balances
1398 #[derive(Clone, Debug, PartialEq)]
1399 pub struct ChannelDetails {
1400         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1401         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1402         /// Note that this means this value is *not* persistent - it can change once during the
1403         /// lifetime of the channel.
1404         pub channel_id: ChannelId,
1405         /// Parameters which apply to our counterparty. See individual fields for more information.
1406         pub counterparty: ChannelCounterparty,
1407         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1408         /// our counterparty already.
1409         ///
1410         /// Note that, if this has been set, `channel_id` will be equivalent to
1411         /// `funding_txo.unwrap().to_channel_id()`.
1412         pub funding_txo: Option<OutPoint>,
1413         /// The features which this channel operates with. See individual features for more info.
1414         ///
1415         /// `None` until negotiation completes and the channel type is finalized.
1416         pub channel_type: Option<ChannelTypeFeatures>,
1417         /// The position of the funding transaction in the chain. None if the funding transaction has
1418         /// not yet been confirmed and the channel fully opened.
1419         ///
1420         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1421         /// payments instead of this. See [`get_inbound_payment_scid`].
1422         ///
1423         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1424         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1425         ///
1426         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1427         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1428         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1429         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1430         /// [`confirmations_required`]: Self::confirmations_required
1431         pub short_channel_id: Option<u64>,
1432         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1433         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1434         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1435         /// `Some(0)`).
1436         ///
1437         /// This will be `None` as long as the channel is not available for routing outbound payments.
1438         ///
1439         /// [`short_channel_id`]: Self::short_channel_id
1440         /// [`confirmations_required`]: Self::confirmations_required
1441         pub outbound_scid_alias: Option<u64>,
1442         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1443         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1444         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1445         /// when they see a payment to be routed to us.
1446         ///
1447         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1448         /// previous values for inbound payment forwarding.
1449         ///
1450         /// [`short_channel_id`]: Self::short_channel_id
1451         pub inbound_scid_alias: Option<u64>,
1452         /// The value, in satoshis, of this channel as appears in the funding output
1453         pub channel_value_satoshis: u64,
1454         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1455         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1456         /// this value on chain.
1457         ///
1458         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1459         ///
1460         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1461         ///
1462         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1463         pub unspendable_punishment_reserve: Option<u64>,
1464         /// The `user_channel_id` value passed in to [`ChannelManager::create_channel`] for outbound
1465         /// channels, or to [`ChannelManager::accept_inbound_channel`] for inbound channels if
1466         /// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1467         /// `user_channel_id` will be randomized for an inbound channel.  This may be zero for objects
1468         /// serialized with LDK versions prior to 0.0.113.
1469         ///
1470         /// [`ChannelManager::create_channel`]: crate::ln::channelmanager::ChannelManager::create_channel
1471         /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
1472         /// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1473         pub user_channel_id: u128,
1474         /// The currently negotiated fee rate denominated in satoshi per 1000 weight units,
1475         /// which is applied to commitment and HTLC transactions.
1476         ///
1477         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.115.
1478         pub feerate_sat_per_1000_weight: Option<u32>,
1479         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1480         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1481         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1482         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1483         ///
1484         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1485         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1486         /// should be able to spend nearly this amount.
1487         pub outbound_capacity_msat: u64,
1488         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1489         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1490         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1491         /// to use a limit as close as possible to the HTLC limit we can currently send.
1492         ///
1493         /// See also [`ChannelDetails::next_outbound_htlc_minimum_msat`] and
1494         /// [`ChannelDetails::outbound_capacity_msat`].
1495         pub next_outbound_htlc_limit_msat: u64,
1496         /// The minimum value for sending a single HTLC to the remote peer. This is the equivalent of
1497         /// [`ChannelDetails::next_outbound_htlc_limit_msat`] but represents a lower-bound, rather than
1498         /// an upper-bound. This is intended for use when routing, allowing us to ensure we pick a
1499         /// route which is valid.
1500         pub next_outbound_htlc_minimum_msat: u64,
1501         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1502         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1503         /// available for inclusion in new inbound HTLCs).
1504         /// Note that there are some corner cases not fully handled here, so the actual available
1505         /// inbound capacity may be slightly higher than this.
1506         ///
1507         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1508         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1509         /// However, our counterparty should be able to spend nearly this amount.
1510         pub inbound_capacity_msat: u64,
1511         /// The number of required confirmations on the funding transaction before the funding will be
1512         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1513         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1514         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1515         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1516         ///
1517         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1518         ///
1519         /// [`is_outbound`]: ChannelDetails::is_outbound
1520         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1521         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1522         pub confirmations_required: Option<u32>,
1523         /// The current number of confirmations on the funding transaction.
1524         ///
1525         /// This value will be `None` for objects serialized with LDK versions prior to 0.0.113.
1526         pub confirmations: Option<u32>,
1527         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1528         /// until we can claim our funds after we force-close the channel. During this time our
1529         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1530         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1531         /// time to claim our non-HTLC-encumbered funds.
1532         ///
1533         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1534         pub force_close_spend_delay: Option<u16>,
1535         /// True if the channel was initiated (and thus funded) by us.
1536         pub is_outbound: bool,
1537         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1538         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1539         /// required confirmation count has been reached (and we were connected to the peer at some
1540         /// point after the funding transaction received enough confirmations). The required
1541         /// confirmation count is provided in [`confirmations_required`].
1542         ///
1543         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1544         pub is_channel_ready: bool,
1545         /// The stage of the channel's shutdown.
1546         /// `None` for `ChannelDetails` serialized on LDK versions prior to 0.0.116.
1547         pub channel_shutdown_state: Option<ChannelShutdownState>,
1548         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1549         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1550         ///
1551         /// This is a strict superset of `is_channel_ready`.
1552         pub is_usable: bool,
1553         /// True if this channel is (or will be) publicly-announced.
1554         pub is_public: bool,
1555         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1556         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1557         pub inbound_htlc_minimum_msat: Option<u64>,
1558         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1559         pub inbound_htlc_maximum_msat: Option<u64>,
1560         /// Set of configurable parameters that affect channel operation.
1561         ///
1562         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1563         pub config: Option<ChannelConfig>,
1564 }
1565
1566 impl ChannelDetails {
1567         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1568         /// This should be used for providing invoice hints or in any other context where our
1569         /// counterparty will forward a payment to us.
1570         ///
1571         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1572         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1573         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1574                 self.inbound_scid_alias.or(self.short_channel_id)
1575         }
1576
1577         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1578         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1579         /// we're sending or forwarding a payment outbound over this channel.
1580         ///
1581         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1582         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1583         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1584                 self.short_channel_id.or(self.outbound_scid_alias)
1585         }
1586
1587         fn from_channel_context<SP: Deref, F: Deref>(
1588                 context: &ChannelContext<SP>, best_block_height: u32, latest_features: InitFeatures,
1589                 fee_estimator: &LowerBoundedFeeEstimator<F>
1590         ) -> Self
1591         where
1592                 SP::Target: SignerProvider,
1593                 F::Target: FeeEstimator
1594         {
1595                 let balance = context.get_available_balances(fee_estimator);
1596                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1597                         context.get_holder_counterparty_selected_channel_reserve_satoshis();
1598                 ChannelDetails {
1599                         channel_id: context.channel_id(),
1600                         counterparty: ChannelCounterparty {
1601                                 node_id: context.get_counterparty_node_id(),
1602                                 features: latest_features,
1603                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1604                                 forwarding_info: context.counterparty_forwarding_info(),
1605                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1606                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1607                                 // message (as they are always the first message from the counterparty).
1608                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1609                                 // default `0` value set by `Channel::new_outbound`.
1610                                 outbound_htlc_minimum_msat: if context.have_received_message() {
1611                                         Some(context.get_counterparty_htlc_minimum_msat()) } else { None },
1612                                 outbound_htlc_maximum_msat: context.get_counterparty_htlc_maximum_msat(),
1613                         },
1614                         funding_txo: context.get_funding_txo(),
1615                         // Note that accept_channel (or open_channel) is always the first message, so
1616                         // `have_received_message` indicates that type negotiation has completed.
1617                         channel_type: if context.have_received_message() { Some(context.get_channel_type().clone()) } else { None },
1618                         short_channel_id: context.get_short_channel_id(),
1619                         outbound_scid_alias: if context.is_usable() { Some(context.outbound_scid_alias()) } else { None },
1620                         inbound_scid_alias: context.latest_inbound_scid_alias(),
1621                         channel_value_satoshis: context.get_value_satoshis(),
1622                         feerate_sat_per_1000_weight: Some(context.get_feerate_sat_per_1000_weight()),
1623                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1624                         inbound_capacity_msat: balance.inbound_capacity_msat,
1625                         outbound_capacity_msat: balance.outbound_capacity_msat,
1626                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1627                         next_outbound_htlc_minimum_msat: balance.next_outbound_htlc_minimum_msat,
1628                         user_channel_id: context.get_user_id(),
1629                         confirmations_required: context.minimum_depth(),
1630                         confirmations: Some(context.get_funding_tx_confirmations(best_block_height)),
1631                         force_close_spend_delay: context.get_counterparty_selected_contest_delay(),
1632                         is_outbound: context.is_outbound(),
1633                         is_channel_ready: context.is_usable(),
1634                         is_usable: context.is_live(),
1635                         is_public: context.should_announce(),
1636                         inbound_htlc_minimum_msat: Some(context.get_holder_htlc_minimum_msat()),
1637                         inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(),
1638                         config: Some(context.config()),
1639                         channel_shutdown_state: Some(context.shutdown_state()),
1640                 }
1641         }
1642 }
1643
1644 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
1645 /// Further information on the details of the channel shutdown.
1646 /// Upon channels being forced closed (i.e. commitment transaction confirmation detected
1647 /// by `ChainMonitor`), ChannelShutdownState will be set to `ShutdownComplete` or
1648 /// the channel will be removed shortly.
1649 /// Also note, that in normal operation, peers could disconnect at any of these states
1650 /// and require peer re-connection before making progress onto other states
1651 pub enum ChannelShutdownState {
1652         /// Channel has not sent or received a shutdown message.
1653         NotShuttingDown,
1654         /// Local node has sent a shutdown message for this channel.
1655         ShutdownInitiated,
1656         /// Shutdown message exchanges have concluded and the channels are in the midst of
1657         /// resolving all existing open HTLCs before closing can continue.
1658         ResolvingHTLCs,
1659         /// All HTLCs have been resolved, nodes are currently negotiating channel close onchain fee rates.
1660         NegotiatingClosingFee,
1661         /// We've successfully negotiated a closing_signed dance. At this point `ChannelManager` is about
1662         /// to drop the channel.
1663         ShutdownComplete,
1664 }
1665
1666 /// Used by [`ChannelManager::list_recent_payments`] to express the status of recent payments.
1667 /// These include payments that have yet to find a successful path, or have unresolved HTLCs.
1668 #[derive(Debug, PartialEq)]
1669 pub enum RecentPaymentDetails {
1670         /// When an invoice was requested and thus a payment has not yet been sent.
1671         AwaitingInvoice {
1672                 /// Identifier for the payment to ensure idempotency.
1673                 payment_id: PaymentId,
1674         },
1675         /// When a payment is still being sent and awaiting successful delivery.
1676         Pending {
1677                 /// Hash of the payment that is currently being sent but has yet to be fulfilled or
1678                 /// abandoned.
1679                 payment_hash: PaymentHash,
1680                 /// Total amount (in msat, excluding fees) across all paths for this payment,
1681                 /// not just the amount currently inflight.
1682                 total_msat: u64,
1683         },
1684         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
1685         /// been resolved. Upon receiving [`Event::PaymentSent`], we delay for a few minutes before the
1686         /// payment is removed from tracking.
1687         Fulfilled {
1688                 /// Hash of the payment that was claimed. `None` for serializations of [`ChannelManager`]
1689                 /// made before LDK version 0.0.104.
1690                 payment_hash: Option<PaymentHash>,
1691         },
1692         /// After a payment's retries are exhausted per the provided [`Retry`], or it is explicitly
1693         /// abandoned via [`ChannelManager::abandon_payment`], it is marked as abandoned until all
1694         /// pending HTLCs for this payment resolve and an [`Event::PaymentFailed`] is generated.
1695         Abandoned {
1696                 /// Hash of the payment that we have given up trying to send.
1697                 payment_hash: PaymentHash,
1698         },
1699 }
1700
1701 /// Route hints used in constructing invoices for [phantom node payents].
1702 ///
1703 /// [phantom node payments]: crate::sign::PhantomKeysManager
1704 #[derive(Clone)]
1705 pub struct PhantomRouteHints {
1706         /// The list of channels to be included in the invoice route hints.
1707         pub channels: Vec<ChannelDetails>,
1708         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1709         /// route hints.
1710         pub phantom_scid: u64,
1711         /// The pubkey of the real backing node that would ultimately receive the payment.
1712         pub real_node_pubkey: PublicKey,
1713 }
1714
1715 macro_rules! handle_error {
1716         ($self: ident, $internal: expr, $counterparty_node_id: expr) => { {
1717                 // In testing, ensure there are no deadlocks where the lock is already held upon
1718                 // entering the macro.
1719                 debug_assert_ne!($self.pending_events.held_by_thread(), LockHeldState::HeldByThread);
1720                 debug_assert_ne!($self.per_peer_state.held_by_thread(), LockHeldState::HeldByThread);
1721
1722                 match $internal {
1723                         Ok(msg) => Ok(msg),
1724                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish, channel_capacity }) => {
1725                                 let mut msg_events = Vec::with_capacity(2);
1726
1727                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1728                                         $self.finish_force_close_channel(shutdown_res);
1729                                         if let Some(update) = update_option {
1730                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1731                                                         msg: update
1732                                                 });
1733                                         }
1734                                         if let Some((channel_id, user_channel_id)) = chan_id {
1735                                                 $self.pending_events.lock().unwrap().push_back((events::Event::ChannelClosed {
1736                                                         channel_id, user_channel_id,
1737                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() },
1738                                                         counterparty_node_id: Some($counterparty_node_id),
1739                                                         channel_capacity_sats: channel_capacity,
1740                                                 }, None));
1741                                         }
1742                                 }
1743
1744                                 log_error!($self.logger, "{}", err.err);
1745                                 if let msgs::ErrorAction::IgnoreError = err.action {
1746                                 } else {
1747                                         msg_events.push(events::MessageSendEvent::HandleError {
1748                                                 node_id: $counterparty_node_id,
1749                                                 action: err.action.clone()
1750                                         });
1751                                 }
1752
1753                                 if !msg_events.is_empty() {
1754                                         let per_peer_state = $self.per_peer_state.read().unwrap();
1755                                         if let Some(peer_state_mutex) = per_peer_state.get(&$counterparty_node_id) {
1756                                                 let mut peer_state = peer_state_mutex.lock().unwrap();
1757                                                 peer_state.pending_msg_events.append(&mut msg_events);
1758                                         }
1759                                 }
1760
1761                                 // Return error in case higher-API need one
1762                                 Err(err)
1763                         },
1764                 }
1765         } };
1766         ($self: ident, $internal: expr) => {
1767                 match $internal {
1768                         Ok(res) => Ok(res),
1769                         Err((chan, msg_handle_err)) => {
1770                                 let counterparty_node_id = chan.get_counterparty_node_id();
1771                                 handle_error!($self, Err(msg_handle_err), counterparty_node_id).map_err(|err| (chan, err))
1772                         },
1773                 }
1774         };
1775 }
1776
1777 macro_rules! update_maps_on_chan_removal {
1778         ($self: expr, $channel_context: expr) => {{
1779                 $self.id_to_peer.lock().unwrap().remove(&$channel_context.channel_id());
1780                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1781                 if let Some(short_id) = $channel_context.get_short_channel_id() {
1782                         short_to_chan_info.remove(&short_id);
1783                 } else {
1784                         // If the channel was never confirmed on-chain prior to its closure, remove the
1785                         // outbound SCID alias we used for it from the collision-prevention set. While we
1786                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1787                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1788                         // opening a million channels with us which are closed before we ever reach the funding
1789                         // stage.
1790                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel_context.outbound_scid_alias());
1791                         debug_assert!(alias_removed);
1792                 }
1793                 short_to_chan_info.remove(&$channel_context.outbound_scid_alias());
1794         }}
1795 }
1796
1797 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1798 macro_rules! convert_chan_phase_err {
1799         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, MANUAL_CHANNEL_UPDATE, $channel_update: expr) => {
1800                 match $err {
1801                         ChannelError::Warn(msg) => {
1802                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), *$channel_id))
1803                         },
1804                         ChannelError::Ignore(msg) => {
1805                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), *$channel_id))
1806                         },
1807                         ChannelError::Close(msg) => {
1808                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", $channel_id, msg);
1809                                 update_maps_on_chan_removal!($self, $channel.context);
1810                                 let shutdown_res = $channel.context.force_shutdown(true);
1811                                 let user_id = $channel.context.get_user_id();
1812                                 let channel_capacity_satoshis = $channel.context.get_value_satoshis();
1813
1814                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, user_id,
1815                                         shutdown_res, $channel_update, channel_capacity_satoshis))
1816                         },
1817                 }
1818         };
1819         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, FUNDED_CHANNEL) => {
1820                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, { $self.get_channel_update_for_broadcast($channel).ok() })
1821         };
1822         ($self: ident, $err: expr, $channel: expr, $channel_id: expr, UNFUNDED_CHANNEL) => {
1823                 convert_chan_phase_err!($self, $err, $channel, $channel_id, MANUAL_CHANNEL_UPDATE, None)
1824         };
1825         ($self: ident, $err: expr, $channel_phase: expr, $channel_id: expr) => {
1826                 match $channel_phase {
1827                         ChannelPhase::Funded(channel) => {
1828                                 convert_chan_phase_err!($self, $err, channel, $channel_id, FUNDED_CHANNEL)
1829                         },
1830                         ChannelPhase::UnfundedOutboundV1(channel) => {
1831                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1832                         },
1833                         ChannelPhase::UnfundedInboundV1(channel) => {
1834                                 convert_chan_phase_err!($self, $err, channel, $channel_id, UNFUNDED_CHANNEL)
1835                         },
1836                 }
1837         };
1838 }
1839
1840 macro_rules! break_chan_phase_entry {
1841         ($self: ident, $res: expr, $entry: expr) => {
1842                 match $res {
1843                         Ok(res) => res,
1844                         Err(e) => {
1845                                 let key = *$entry.key();
1846                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1847                                 if drop {
1848                                         $entry.remove_entry();
1849                                 }
1850                                 break Err(res);
1851                         }
1852                 }
1853         }
1854 }
1855
1856 macro_rules! try_chan_phase_entry {
1857         ($self: ident, $res: expr, $entry: expr) => {
1858                 match $res {
1859                         Ok(res) => res,
1860                         Err(e) => {
1861                                 let key = *$entry.key();
1862                                 let (drop, res) = convert_chan_phase_err!($self, e, $entry.get_mut(), &key);
1863                                 if drop {
1864                                         $entry.remove_entry();
1865                                 }
1866                                 return Err(res);
1867                         }
1868                 }
1869         }
1870 }
1871
1872 macro_rules! remove_channel_phase {
1873         ($self: expr, $entry: expr) => {
1874                 {
1875                         let channel = $entry.remove_entry().1;
1876                         update_maps_on_chan_removal!($self, &channel.context());
1877                         channel
1878                 }
1879         }
1880 }
1881
1882 macro_rules! send_channel_ready {
1883         ($self: ident, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {{
1884                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1885                         node_id: $channel.context.get_counterparty_node_id(),
1886                         msg: $channel_ready_msg,
1887                 });
1888                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1889                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1890                 let mut short_to_chan_info = $self.short_to_chan_info.write().unwrap();
1891                 let outbound_alias_insert = short_to_chan_info.insert($channel.context.outbound_scid_alias(), ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1892                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1893                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1894                 if let Some(real_scid) = $channel.context.get_short_channel_id() {
1895                         let scid_insert = short_to_chan_info.insert(real_scid, ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()));
1896                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.context.get_counterparty_node_id(), $channel.context.channel_id()),
1897                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1898                 }
1899         }}
1900 }
1901
1902 macro_rules! emit_channel_pending_event {
1903         ($locked_events: expr, $channel: expr) => {
1904                 if $channel.context.should_emit_channel_pending_event() {
1905                         $locked_events.push_back((events::Event::ChannelPending {
1906                                 channel_id: $channel.context.channel_id(),
1907                                 former_temporary_channel_id: $channel.context.temporary_channel_id(),
1908                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1909                                 user_channel_id: $channel.context.get_user_id(),
1910                                 funding_txo: $channel.context.get_funding_txo().unwrap().into_bitcoin_outpoint(),
1911                         }, None));
1912                         $channel.context.set_channel_pending_event_emitted();
1913                 }
1914         }
1915 }
1916
1917 macro_rules! emit_channel_ready_event {
1918         ($locked_events: expr, $channel: expr) => {
1919                 if $channel.context.should_emit_channel_ready_event() {
1920                         debug_assert!($channel.context.channel_pending_event_emitted());
1921                         $locked_events.push_back((events::Event::ChannelReady {
1922                                 channel_id: $channel.context.channel_id(),
1923                                 user_channel_id: $channel.context.get_user_id(),
1924                                 counterparty_node_id: $channel.context.get_counterparty_node_id(),
1925                                 channel_type: $channel.context.get_channel_type().clone(),
1926                         }, None));
1927                         $channel.context.set_channel_ready_event_emitted();
1928                 }
1929         }
1930 }
1931
1932 macro_rules! handle_monitor_update_completion {
1933         ($self: ident, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr) => { {
1934                 let mut updates = $chan.monitor_updating_restored(&$self.logger,
1935                         &$self.node_signer, $self.genesis_hash, &$self.default_configuration,
1936                         $self.best_block.read().unwrap().height());
1937                 let counterparty_node_id = $chan.context.get_counterparty_node_id();
1938                 let channel_update = if updates.channel_ready.is_some() && $chan.context.is_usable() {
1939                         // We only send a channel_update in the case where we are just now sending a
1940                         // channel_ready and the channel is in a usable state. We may re-send a
1941                         // channel_update later through the announcement_signatures process for public
1942                         // channels, but there's no reason not to just inform our counterparty of our fees
1943                         // now.
1944                         if let Ok(msg) = $self.get_channel_update_for_unicast($chan) {
1945                                 Some(events::MessageSendEvent::SendChannelUpdate {
1946                                         node_id: counterparty_node_id,
1947                                         msg,
1948                                 })
1949                         } else { None }
1950                 } else { None };
1951
1952                 let update_actions = $peer_state.monitor_update_blocked_actions
1953                         .remove(&$chan.context.channel_id()).unwrap_or(Vec::new());
1954
1955                 let htlc_forwards = $self.handle_channel_resumption(
1956                         &mut $peer_state.pending_msg_events, $chan, updates.raa,
1957                         updates.commitment_update, updates.order, updates.accepted_htlcs,
1958                         updates.funding_broadcastable, updates.channel_ready,
1959                         updates.announcement_sigs);
1960                 if let Some(upd) = channel_update {
1961                         $peer_state.pending_msg_events.push(upd);
1962                 }
1963
1964                 let channel_id = $chan.context.channel_id();
1965                 core::mem::drop($peer_state_lock);
1966                 core::mem::drop($per_peer_state_lock);
1967
1968                 $self.handle_monitor_update_completion_actions(update_actions);
1969
1970                 if let Some(forwards) = htlc_forwards {
1971                         $self.forward_htlcs(&mut [forwards][..]);
1972                 }
1973                 $self.finalize_claims(updates.finalized_claimed_htlcs);
1974                 for failure in updates.failed_htlcs.drain(..) {
1975                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1976                         $self.fail_htlc_backwards_internal(&failure.0, &failure.1, &failure.2, receiver);
1977                 }
1978         } }
1979 }
1980
1981 macro_rules! handle_new_monitor_update {
1982         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, _internal, $remove: expr, $completed: expr) => { {
1983                 // update_maps_on_chan_removal needs to be able to take id_to_peer, so make sure we can in
1984                 // any case so that it won't deadlock.
1985                 debug_assert_ne!($self.id_to_peer.held_by_thread(), LockHeldState::HeldByThread);
1986                 debug_assert!($self.background_events_processed_since_startup.load(Ordering::Acquire));
1987                 match $update_res {
1988                         ChannelMonitorUpdateStatus::InProgress => {
1989                                 log_debug!($self.logger, "ChannelMonitor update for {} in flight, holding messages until the update completes.",
1990                                         &$chan.context.channel_id());
1991                                 Ok(false)
1992                         },
1993                         ChannelMonitorUpdateStatus::PermanentFailure => {
1994                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure",
1995                                         &$chan.context.channel_id());
1996                                 update_maps_on_chan_removal!($self, &$chan.context);
1997                                 let res = Err(MsgHandleErrInternal::from_finish_shutdown(
1998                                         "ChannelMonitor storage failure".to_owned(), $chan.context.channel_id(),
1999                                         $chan.context.get_user_id(), $chan.context.force_shutdown(false),
2000                                         $self.get_channel_update_for_broadcast(&$chan).ok(), $chan.context.get_value_satoshis()));
2001                                 $remove;
2002                                 res
2003                         },
2004                         ChannelMonitorUpdateStatus::Completed => {
2005                                 $completed;
2006                                 Ok(true)
2007                         },
2008                 }
2009         } };
2010         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING_INITIAL_MONITOR, $remove: expr) => {
2011                 handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2012                         $per_peer_state_lock, $chan, _internal, $remove,
2013                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan))
2014         };
2015         ($self: ident, $update_res: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr, INITIAL_MONITOR) => {
2016                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2017                         handle_new_monitor_update!($self, $update_res, $peer_state_lock, $peer_state,
2018                                 $per_peer_state_lock, chan, MANUALLY_REMOVING_INITIAL_MONITOR, { $chan_entry.remove() })
2019                 } else {
2020                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2021                         // update).
2022                         debug_assert!(false);
2023                         let channel_id = *$chan_entry.key();
2024                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2025                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2026                                 $chan_entry.get_mut(), &channel_id);
2027                         $chan_entry.remove();
2028                         Err(err)
2029                 }
2030         };
2031         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan: expr, MANUALLY_REMOVING, $remove: expr) => { {
2032                 let in_flight_updates = $peer_state.in_flight_monitor_updates.entry($funding_txo)
2033                         .or_insert_with(Vec::new);
2034                 // During startup, we push monitor updates as background events through to here in
2035                 // order to replay updates that were in-flight when we shut down. Thus, we have to
2036                 // filter for uniqueness here.
2037                 let idx = in_flight_updates.iter().position(|upd| upd == &$update)
2038                         .unwrap_or_else(|| {
2039                                 in_flight_updates.push($update);
2040                                 in_flight_updates.len() - 1
2041                         });
2042                 let update_res = $self.chain_monitor.update_channel($funding_txo, &in_flight_updates[idx]);
2043                 handle_new_monitor_update!($self, update_res, $peer_state_lock, $peer_state,
2044                         $per_peer_state_lock, $chan, _internal, $remove,
2045                         {
2046                                 let _ = in_flight_updates.remove(idx);
2047                                 if in_flight_updates.is_empty() && $chan.blocked_monitor_updates_pending() == 0 {
2048                                         handle_monitor_update_completion!($self, $peer_state_lock, $peer_state, $per_peer_state_lock, $chan);
2049                                 }
2050                         })
2051         } };
2052         ($self: ident, $funding_txo: expr, $update: expr, $peer_state_lock: expr, $peer_state: expr, $per_peer_state_lock: expr, $chan_entry: expr) => {
2053                 if let ChannelPhase::Funded(chan) = $chan_entry.get_mut() {
2054                         handle_new_monitor_update!($self, $funding_txo, $update, $peer_state_lock, $peer_state,
2055                                 $per_peer_state_lock, chan, MANUALLY_REMOVING, { $chan_entry.remove() })
2056                 } else {
2057                         // We're not supposed to handle monitor updates for unfunded channels (they have no monitors to
2058                         // update).
2059                         debug_assert!(false);
2060                         let channel_id = *$chan_entry.key();
2061                         let (_, err) = convert_chan_phase_err!($self, ChannelError::Close(
2062                                 "Cannot update monitor for unfunded channels as they don't have monitors yet".into()),
2063                                 $chan_entry.get_mut(), &channel_id);
2064                         $chan_entry.remove();
2065                         Err(err)
2066                 }
2067         }
2068 }
2069
2070 macro_rules! process_events_body {
2071         ($self: expr, $event_to_handle: expr, $handle_event: expr) => {
2072                 let mut processed_all_events = false;
2073                 while !processed_all_events {
2074                         if $self.pending_events_processor.compare_exchange(false, true, Ordering::Acquire, Ordering::Relaxed).is_err() {
2075                                 return;
2076                         }
2077
2078                         let mut result = NotifyOption::SkipPersist;
2079
2080                         {
2081                                 // We'll acquire our total consistency lock so that we can be sure no other
2082                                 // persists happen while processing monitor events.
2083                                 let _read_guard = $self.total_consistency_lock.read().unwrap();
2084
2085                                 // Because `handle_post_event_actions` may send `ChannelMonitorUpdate`s to the user we must
2086                                 // ensure any startup-generated background events are handled first.
2087                                 if $self.process_background_events() == NotifyOption::DoPersist { result = NotifyOption::DoPersist; }
2088
2089                                 // TODO: This behavior should be documented. It's unintuitive that we query
2090                                 // ChannelMonitors when clearing other events.
2091                                 if $self.process_pending_monitor_events() {
2092                                         result = NotifyOption::DoPersist;
2093                                 }
2094                         }
2095
2096                         let pending_events = $self.pending_events.lock().unwrap().clone();
2097                         let num_events = pending_events.len();
2098                         if !pending_events.is_empty() {
2099                                 result = NotifyOption::DoPersist;
2100                         }
2101
2102                         let mut post_event_actions = Vec::new();
2103
2104                         for (event, action_opt) in pending_events {
2105                                 $event_to_handle = event;
2106                                 $handle_event;
2107                                 if let Some(action) = action_opt {
2108                                         post_event_actions.push(action);
2109                                 }
2110                         }
2111
2112                         {
2113                                 let mut pending_events = $self.pending_events.lock().unwrap();
2114                                 pending_events.drain(..num_events);
2115                                 processed_all_events = pending_events.is_empty();
2116                                 // Note that `push_pending_forwards_ev` relies on `pending_events_processor` being
2117                                 // updated here with the `pending_events` lock acquired.
2118                                 $self.pending_events_processor.store(false, Ordering::Release);
2119                         }
2120
2121                         if !post_event_actions.is_empty() {
2122                                 $self.handle_post_event_actions(post_event_actions);
2123                                 // If we had some actions, go around again as we may have more events now
2124                                 processed_all_events = false;
2125                         }
2126
2127                         if result == NotifyOption::DoPersist {
2128                                 $self.persistence_notifier.notify();
2129                         }
2130                 }
2131         }
2132 }
2133
2134 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>
2135 where
2136         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
2137         T::Target: BroadcasterInterface,
2138         ES::Target: EntropySource,
2139         NS::Target: NodeSigner,
2140         SP::Target: SignerProvider,
2141         F::Target: FeeEstimator,
2142         R::Target: Router,
2143         L::Target: Logger,
2144 {
2145         /// Constructs a new `ChannelManager` to hold several channels and route between them.
2146         ///
2147         /// The current time or latest block header time can be provided as the `current_timestamp`.
2148         ///
2149         /// This is the main "logic hub" for all channel-related actions, and implements
2150         /// [`ChannelMessageHandler`].
2151         ///
2152         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
2153         ///
2154         /// Users need to notify the new `ChannelManager` when a new block is connected or
2155         /// disconnected using its [`block_connected`] and [`block_disconnected`] methods, starting
2156         /// from after [`params.best_block.block_hash`]. See [`chain::Listen`] and [`chain::Confirm`] for
2157         /// more details.
2158         ///
2159         /// [`block_connected`]: chain::Listen::block_connected
2160         /// [`block_disconnected`]: chain::Listen::block_disconnected
2161         /// [`params.best_block.block_hash`]: chain::BestBlock::block_hash
2162         pub fn new(
2163                 fee_est: F, chain_monitor: M, tx_broadcaster: T, router: R, logger: L, entropy_source: ES,
2164                 node_signer: NS, signer_provider: SP, config: UserConfig, params: ChainParameters,
2165                 current_timestamp: u32,
2166         ) -> Self {
2167                 let mut secp_ctx = Secp256k1::new();
2168                 secp_ctx.seeded_randomize(&entropy_source.get_secure_random_bytes());
2169                 let inbound_pmt_key_material = node_signer.get_inbound_payment_key_material();
2170                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
2171                 ChannelManager {
2172                         default_configuration: config.clone(),
2173                         genesis_hash: genesis_block(params.network).header.block_hash(),
2174                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
2175                         chain_monitor,
2176                         tx_broadcaster,
2177                         router,
2178
2179                         best_block: RwLock::new(params.best_block),
2180
2181                         outbound_scid_aliases: Mutex::new(HashSet::new()),
2182                         pending_inbound_payments: Mutex::new(HashMap::new()),
2183                         pending_outbound_payments: OutboundPayments::new(),
2184                         forward_htlcs: Mutex::new(HashMap::new()),
2185                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments: HashMap::new(), pending_claiming_payments: HashMap::new() }),
2186                         pending_intercepted_htlcs: Mutex::new(HashMap::new()),
2187                         id_to_peer: Mutex::new(HashMap::new()),
2188                         short_to_chan_info: FairRwLock::new(HashMap::new()),
2189
2190                         our_network_pubkey: node_signer.get_node_id(Recipient::Node).unwrap(),
2191                         secp_ctx,
2192
2193                         inbound_payment_key: expanded_inbound_key,
2194                         fake_scid_rand_bytes: entropy_source.get_secure_random_bytes(),
2195
2196                         probing_cookie_secret: entropy_source.get_secure_random_bytes(),
2197
2198                         highest_seen_timestamp: AtomicUsize::new(current_timestamp as usize),
2199
2200                         per_peer_state: FairRwLock::new(HashMap::new()),
2201
2202                         pending_events: Mutex::new(VecDeque::new()),
2203                         pending_events_processor: AtomicBool::new(false),
2204                         pending_background_events: Mutex::new(Vec::new()),
2205                         total_consistency_lock: RwLock::new(()),
2206                         background_events_processed_since_startup: AtomicBool::new(false),
2207                         persistence_notifier: Notifier::new(),
2208
2209                         entropy_source,
2210                         node_signer,
2211                         signer_provider,
2212
2213                         logger,
2214                 }
2215         }
2216
2217         /// Gets the current configuration applied to all new channels.
2218         pub fn get_current_default_configuration(&self) -> &UserConfig {
2219                 &self.default_configuration
2220         }
2221
2222         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
2223                 let height = self.best_block.read().unwrap().height();
2224                 let mut outbound_scid_alias = 0;
2225                 let mut i = 0;
2226                 loop {
2227                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
2228                                 outbound_scid_alias += 1;
2229                         } else {
2230                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
2231                         }
2232                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
2233                                 break;
2234                         }
2235                         i += 1;
2236                         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"); }
2237                 }
2238                 outbound_scid_alias
2239         }
2240
2241         /// Creates a new outbound channel to the given remote node and with the given value.
2242         ///
2243         /// `user_channel_id` will be provided back as in
2244         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
2245         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to a
2246         /// randomized value for inbound channels. `user_channel_id` has no meaning inside of LDK, it
2247         /// is simply copied to events and otherwise ignored.
2248         ///
2249         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
2250         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
2251         ///
2252         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be opened due to failing to
2253         /// generate a shutdown scriptpubkey or destination script set by
2254         /// [`SignerProvider::get_shutdown_scriptpubkey`] or [`SignerProvider::get_destination_script`].
2255         ///
2256         /// Note that we do not check if you are currently connected to the given peer. If no
2257         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
2258         /// the channel eventually being silently forgotten (dropped on reload).
2259         ///
2260         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
2261         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
2262         /// [`ChannelDetails::channel_id`] until after
2263         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
2264         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
2265         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
2266         ///
2267         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
2268         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
2269         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
2270         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u128, override_config: Option<UserConfig>) -> Result<ChannelId, APIError> {
2271                 if channel_value_satoshis < 1000 {
2272                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
2273                 }
2274
2275                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2276                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
2277                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
2278
2279                 let per_peer_state = self.per_peer_state.read().unwrap();
2280
2281                 let peer_state_mutex = per_peer_state.get(&their_network_key)
2282                         .ok_or_else(|| APIError::APIMisuseError{ err: format!("Not connected to node: {}", their_network_key) })?;
2283
2284                 let mut peer_state = peer_state_mutex.lock().unwrap();
2285                 let channel = {
2286                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
2287                         let their_features = &peer_state.latest_features;
2288                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
2289                         match OutboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider, their_network_key,
2290                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
2291                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
2292                         {
2293                                 Ok(res) => res,
2294                                 Err(e) => {
2295                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
2296                                         return Err(e);
2297                                 },
2298                         }
2299                 };
2300                 let res = channel.get_open_channel(self.genesis_hash.clone());
2301
2302                 let temporary_channel_id = channel.context.channel_id();
2303                 match peer_state.channel_by_id.entry(temporary_channel_id) {
2304                         hash_map::Entry::Occupied(_) => {
2305                                 if cfg!(fuzzing) {
2306                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
2307                                 } else {
2308                                         panic!("RNG is bad???");
2309                                 }
2310                         },
2311                         hash_map::Entry::Vacant(entry) => { entry.insert(ChannelPhase::UnfundedOutboundV1(channel)); }
2312                 }
2313
2314                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
2315                         node_id: their_network_key,
2316                         msg: res,
2317                 });
2318                 Ok(temporary_channel_id)
2319         }
2320
2321         fn list_funded_channels_with_filter<Fn: FnMut(&(&ChannelId, &Channel<SP>)) -> bool + Copy>(&self, f: Fn) -> Vec<ChannelDetails> {
2322                 // Allocate our best estimate of the number of channels we have in the `res`
2323                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2324                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2325                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2326                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2327                 // the same channel.
2328                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2329                 {
2330                         let best_block_height = self.best_block.read().unwrap().height();
2331                         let per_peer_state = self.per_peer_state.read().unwrap();
2332                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2333                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2334                                 let peer_state = &mut *peer_state_lock;
2335                                 res.extend(peer_state.channel_by_id.iter()
2336                                         .filter_map(|(chan_id, phase)| match phase {
2337                                                 // Only `Channels` in the `ChannelPhase::Funded` phase can be considered funded.
2338                                                 ChannelPhase::Funded(chan) => Some((chan_id, chan)),
2339                                                 _ => None,
2340                                         })
2341                                         .filter(f)
2342                                         .map(|(_channel_id, channel)| {
2343                                                 ChannelDetails::from_channel_context(&channel.context, best_block_height,
2344                                                         peer_state.latest_features.clone(), &self.fee_estimator)
2345                                         })
2346                                 );
2347                         }
2348                 }
2349                 res
2350         }
2351
2352         /// Gets the list of open channels, in random order. See [`ChannelDetails`] field documentation for
2353         /// more information.
2354         pub fn list_channels(&self) -> Vec<ChannelDetails> {
2355                 // Allocate our best estimate of the number of channels we have in the `res`
2356                 // Vec. Sadly the `short_to_chan_info` map doesn't cover channels without
2357                 // a scid or a scid alias, and the `id_to_peer` shouldn't be used outside
2358                 // of the ChannelMonitor handling. Therefore reallocations may still occur, but is
2359                 // unlikely as the `short_to_chan_info` map often contains 2 entries for
2360                 // the same channel.
2361                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
2362                 {
2363                         let best_block_height = self.best_block.read().unwrap().height();
2364                         let per_peer_state = self.per_peer_state.read().unwrap();
2365                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
2366                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2367                                 let peer_state = &mut *peer_state_lock;
2368                                 for context in peer_state.channel_by_id.iter().map(|(_, phase)| phase.context()) {
2369                                         let details = ChannelDetails::from_channel_context(context, best_block_height,
2370                                                 peer_state.latest_features.clone(), &self.fee_estimator);
2371                                         res.push(details);
2372                                 }
2373                         }
2374                 }
2375                 res
2376         }
2377
2378         /// Gets the list of usable channels, in random order. Useful as an argument to
2379         /// [`Router::find_route`] to ensure non-announced channels are used.
2380         ///
2381         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
2382         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
2383         /// are.
2384         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
2385                 // Note we use is_live here instead of usable which leads to somewhat confused
2386                 // internal/external nomenclature, but that's ok cause that's probably what the user
2387                 // really wanted anyway.
2388                 self.list_funded_channels_with_filter(|&(_, ref channel)| channel.context.is_live())
2389         }
2390
2391         /// Gets the list of channels we have with a given counterparty, in random order.
2392         pub fn list_channels_with_counterparty(&self, counterparty_node_id: &PublicKey) -> Vec<ChannelDetails> {
2393                 let best_block_height = self.best_block.read().unwrap().height();
2394                 let per_peer_state = self.per_peer_state.read().unwrap();
2395
2396                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
2397                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2398                         let peer_state = &mut *peer_state_lock;
2399                         let features = &peer_state.latest_features;
2400                         let context_to_details = |context| {
2401                                 ChannelDetails::from_channel_context(context, best_block_height, features.clone(), &self.fee_estimator)
2402                         };
2403                         return peer_state.channel_by_id
2404                                 .iter()
2405                                 .map(|(_, phase)| phase.context())
2406                                 .map(context_to_details)
2407                                 .collect();
2408                 }
2409                 vec![]
2410         }
2411
2412         /// Returns in an undefined order recent payments that -- if not fulfilled -- have yet to find a
2413         /// successful path, or have unresolved HTLCs.
2414         ///
2415         /// This can be useful for payments that may have been prepared, but ultimately not sent, as a
2416         /// result of a crash. If such a payment exists, is not listed here, and an
2417         /// [`Event::PaymentSent`] has not been received, you may consider resending the payment.
2418         ///
2419         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2420         pub fn list_recent_payments(&self) -> Vec<RecentPaymentDetails> {
2421                 self.pending_outbound_payments.pending_outbound_payments.lock().unwrap().iter()
2422                         .filter_map(|(payment_id, pending_outbound_payment)| match pending_outbound_payment {
2423                                 PendingOutboundPayment::AwaitingInvoice { .. } => {
2424                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2425                                 },
2426                                 // InvoiceReceived is an intermediate state and doesn't need to be exposed
2427                                 PendingOutboundPayment::InvoiceReceived { .. } => {
2428                                         Some(RecentPaymentDetails::AwaitingInvoice { payment_id: *payment_id })
2429                                 },
2430                                 PendingOutboundPayment::Retryable { payment_hash, total_msat, .. } => {
2431                                         Some(RecentPaymentDetails::Pending {
2432                                                 payment_hash: *payment_hash,
2433                                                 total_msat: *total_msat,
2434                                         })
2435                                 },
2436                                 PendingOutboundPayment::Abandoned { payment_hash, .. } => {
2437                                         Some(RecentPaymentDetails::Abandoned { payment_hash: *payment_hash })
2438                                 },
2439                                 PendingOutboundPayment::Fulfilled { payment_hash, .. } => {
2440                                         Some(RecentPaymentDetails::Fulfilled { payment_hash: *payment_hash })
2441                                 },
2442                                 PendingOutboundPayment::Legacy { .. } => None
2443                         })
2444                         .collect()
2445         }
2446
2447         /// Helper function that issues the channel close events
2448         fn issue_channel_close_events(&self, context: &ChannelContext<SP>, closure_reason: ClosureReason) {
2449                 let mut pending_events_lock = self.pending_events.lock().unwrap();
2450                 match context.unbroadcasted_funding() {
2451                         Some(transaction) => {
2452                                 pending_events_lock.push_back((events::Event::DiscardFunding {
2453                                         channel_id: context.channel_id(), transaction
2454                                 }, None));
2455                         },
2456                         None => {},
2457                 }
2458                 pending_events_lock.push_back((events::Event::ChannelClosed {
2459                         channel_id: context.channel_id(),
2460                         user_channel_id: context.get_user_id(),
2461                         reason: closure_reason,
2462                         counterparty_node_id: Some(context.get_counterparty_node_id()),
2463                         channel_capacity_sats: Some(context.get_value_satoshis()),
2464                 }, None));
2465         }
2466
2467         fn close_channel_internal(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, override_shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2468                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2469
2470                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
2471                 let result: Result<(), _> = loop {
2472                         {
2473                                 let per_peer_state = self.per_peer_state.read().unwrap();
2474
2475                                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
2476                                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
2477
2478                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2479                                 let peer_state = &mut *peer_state_lock;
2480
2481                                 match peer_state.channel_by_id.entry(channel_id.clone()) {
2482                                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
2483                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
2484                                                         let funding_txo_opt = chan.context.get_funding_txo();
2485                                                         let their_features = &peer_state.latest_features;
2486                                                         let (shutdown_msg, mut monitor_update_opt, htlcs) =
2487                                                                 chan.get_shutdown(&self.signer_provider, their_features, target_feerate_sats_per_1000_weight, override_shutdown_script)?;
2488                                                         failed_htlcs = htlcs;
2489
2490                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
2491                                                         // here as we don't need the monitor update to complete until we send a
2492                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
2493                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
2494                                                                 node_id: *counterparty_node_id,
2495                                                                 msg: shutdown_msg,
2496                                                         });
2497
2498                                                         // Update the monitor with the shutdown script if necessary.
2499                                                         if let Some(monitor_update) = monitor_update_opt.take() {
2500                                                                 break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
2501                                                                         peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
2502                                                         }
2503
2504                                                         if chan.is_shutdown() {
2505                                                                 if let ChannelPhase::Funded(chan) = remove_channel_phase!(self, chan_phase_entry) {
2506                                                                         if let Ok(channel_update) = self.get_channel_update_for_broadcast(&chan) {
2507                                                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2508                                                                                         msg: channel_update
2509                                                                                 });
2510                                                                         }
2511                                                                         self.issue_channel_close_events(&chan.context, ClosureReason::HolderForceClosed);
2512                                                                 }
2513                                                         }
2514                                                         break Ok(());
2515                                                 }
2516                                         },
2517                                         hash_map::Entry::Vacant(_) => (),
2518                                 }
2519                         }
2520                         // If we reach this point, it means that the channel_id either refers to an unfunded channel or
2521                         // it does not exist for this peer. Either way, we can attempt to force-close it.
2522                         //
2523                         // An appropriate error will be returned for non-existence of the channel if that's the case.
2524                         return self.force_close_channel_with_peer(&channel_id, counterparty_node_id, None, false).map(|_| ())
2525                 };
2526
2527                 for htlc_source in failed_htlcs.drain(..) {
2528                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2529                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
2530                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
2531                 }
2532
2533                 let _ = handle_error!(self, result, *counterparty_node_id);
2534                 Ok(())
2535         }
2536
2537         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2538         /// will be accepted on the given channel, and after additional timeout/the closing of all
2539         /// pending HTLCs, the channel will be closed on chain.
2540         ///
2541         ///  * If we are the channel initiator, we will pay between our [`Background`] and
2542         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2543         ///    estimate.
2544         ///  * If our counterparty is the channel initiator, we will require a channel closing
2545         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
2546         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
2547         ///    counterparty to pay as much fee as they'd like, however.
2548         ///
2549         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2550         ///
2551         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2552         /// generate a shutdown scriptpubkey or destination script set by
2553         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2554         /// channel.
2555         ///
2556         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2557         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2558         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2559         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2560         pub fn close_channel(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey) -> Result<(), APIError> {
2561                 self.close_channel_internal(channel_id, counterparty_node_id, None, None)
2562         }
2563
2564         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
2565         /// will be accepted on the given channel, and after additional timeout/the closing of all
2566         /// pending HTLCs, the channel will be closed on chain.
2567         ///
2568         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
2569         /// the channel being closed or not:
2570         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
2571         ///    transaction. The upper-bound is set by
2572         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
2573         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
2574         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
2575         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
2576         ///    will appear on a force-closure transaction, whichever is lower).
2577         ///
2578         /// The `shutdown_script` provided  will be used as the `scriptPubKey` for the closing transaction.
2579         /// Will fail if a shutdown script has already been set for this channel by
2580         /// ['ChannelHandshakeConfig::commit_upfront_shutdown_pubkey`]. The given shutdown script must
2581         /// also be compatible with our and the counterparty's features.
2582         ///
2583         /// May generate a [`SendShutdown`] message event on success, which should be relayed.
2584         ///
2585         /// Raises [`APIError::ChannelUnavailable`] if the channel cannot be closed due to failing to
2586         /// generate a shutdown scriptpubkey or destination script set by
2587         /// [`SignerProvider::get_shutdown_scriptpubkey`]. A force-closure may be needed to close the
2588         /// channel.
2589         ///
2590         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
2591         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
2592         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
2593         /// [`SendShutdown`]: crate::events::MessageSendEvent::SendShutdown
2594         pub fn close_channel_with_feerate_and_script(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>, shutdown_script: Option<ShutdownScript>) -> Result<(), APIError> {
2595                 self.close_channel_internal(channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight, shutdown_script)
2596         }
2597
2598         #[inline]
2599         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
2600                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
2601                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
2602                 for htlc_source in failed_htlcs.drain(..) {
2603                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
2604                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
2605                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
2606                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
2607                 }
2608                 if let Some((_, funding_txo, monitor_update)) = monitor_update_option {
2609                         // There isn't anything we can do if we get an update failure - we're already
2610                         // force-closing. The monitor update on the required in-memory copy should broadcast
2611                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
2612                         // ignore the result here.
2613                         let _ = self.chain_monitor.update_channel(funding_txo, &monitor_update);
2614                 }
2615         }
2616
2617         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
2618         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
2619         fn force_close_channel_with_peer(&self, channel_id: &ChannelId, peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
2620         -> Result<PublicKey, APIError> {
2621                 let per_peer_state = self.per_peer_state.read().unwrap();
2622                 let peer_state_mutex = per_peer_state.get(peer_node_id)
2623                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", peer_node_id) })?;
2624                 let (update_opt, counterparty_node_id) = {
2625                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
2626                         let peer_state = &mut *peer_state_lock;
2627                         let closure_reason = if let Some(peer_msg) = peer_msg {
2628                                 ClosureReason::CounterpartyForceClosed { peer_msg: UntrustedString(peer_msg.to_string()) }
2629                         } else {
2630                                 ClosureReason::HolderForceClosed
2631                         };
2632                         if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(channel_id.clone()) {
2633                                 log_error!(self.logger, "Force-closing channel {}", channel_id);
2634                                 self.issue_channel_close_events(&chan_phase_entry.get().context(), closure_reason);
2635                                 let mut chan_phase = remove_channel_phase!(self, chan_phase_entry);
2636                                 match chan_phase {
2637                                         ChannelPhase::Funded(mut chan) => {
2638                                                 self.finish_force_close_channel(chan.context.force_shutdown(broadcast));
2639                                                 (self.get_channel_update_for_broadcast(&chan).ok(), chan.context.get_counterparty_node_id())
2640                                         },
2641                                         ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => {
2642                                                 self.finish_force_close_channel(chan_phase.context_mut().force_shutdown(false));
2643                                                 // Unfunded channel has no update
2644                                                 (None, chan_phase.context().get_counterparty_node_id())
2645                                         },
2646                                 }
2647                         } else if peer_state.inbound_channel_request_by_id.remove(channel_id).is_some() {
2648                                 log_error!(self.logger, "Force-closing channel {}", &channel_id);
2649                                 // N.B. that we don't send any channel close event here: we
2650                                 // don't have a user_channel_id, and we never sent any opening
2651                                 // events anyway.
2652                                 (None, *peer_node_id)
2653                         } else {
2654                                 return Err(APIError::ChannelUnavailable{ err: format!("Channel with id {} not found for the passed counterparty node_id {}", channel_id, peer_node_id) });
2655                         }
2656                 };
2657                 if let Some(update) = update_opt {
2658                         let mut peer_state = peer_state_mutex.lock().unwrap();
2659                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2660                                 msg: update
2661                         });
2662                 }
2663
2664                 Ok(counterparty_node_id)
2665         }
2666
2667         fn force_close_sending_error(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2668                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
2669                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2670                         Ok(counterparty_node_id) => {
2671                                 let per_peer_state = self.per_peer_state.read().unwrap();
2672                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
2673                                         let mut peer_state = peer_state_mutex.lock().unwrap();
2674                                         peer_state.pending_msg_events.push(
2675                                                 events::MessageSendEvent::HandleError {
2676                                                         node_id: counterparty_node_id,
2677                                                         action: msgs::ErrorAction::SendErrorMessage {
2678                                                                 msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2679                                                         },
2680                                                 }
2681                                         );
2682                                 }
2683                                 Ok(())
2684                         },
2685                         Err(e) => Err(e)
2686                 }
2687         }
2688
2689         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2690         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2691         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2692         /// channel.
2693         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2694         -> Result<(), APIError> {
2695                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2696         }
2697
2698         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2699         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2700         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2701         ///
2702         /// You can always get the latest local transaction(s) to broadcast from
2703         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2704         pub fn force_close_without_broadcasting_txn(&self, channel_id: &ChannelId, counterparty_node_id: &PublicKey)
2705         -> Result<(), APIError> {
2706                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2707         }
2708
2709         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2710         /// for each to the chain and rejecting new HTLCs on each.
2711         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2712                 for chan in self.list_channels() {
2713                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2714                 }
2715         }
2716
2717         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2718         /// local transaction(s).
2719         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2720                 for chan in self.list_channels() {
2721                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2722                 }
2723         }
2724
2725         fn construct_fwd_pending_htlc_info(
2726                 &self, msg: &msgs::UpdateAddHTLC, hop_data: msgs::InboundOnionPayload, hop_hmac: [u8; 32],
2727                 new_packet_bytes: [u8; onion_utils::ONION_DATA_LEN], shared_secret: [u8; 32],
2728                 next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
2729         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2730                 debug_assert!(next_packet_pubkey_opt.is_some());
2731                 let outgoing_packet = msgs::OnionPacket {
2732                         version: 0,
2733                         public_key: next_packet_pubkey_opt.unwrap_or(Err(secp256k1::Error::InvalidPublicKey)),
2734                         hop_data: new_packet_bytes,
2735                         hmac: hop_hmac,
2736                 };
2737
2738                 let (short_channel_id, amt_to_forward, outgoing_cltv_value) = match hop_data {
2739                         msgs::InboundOnionPayload::Forward { short_channel_id, amt_to_forward, outgoing_cltv_value } =>
2740                                 (short_channel_id, amt_to_forward, outgoing_cltv_value),
2741                         msgs::InboundOnionPayload::Receive { .. } | msgs::InboundOnionPayload::BlindedReceive { .. } =>
2742                                 return Err(InboundOnionErr {
2743                                         msg: "Final Node OnionHopData provided for us as an intermediary node",
2744                                         err_code: 0x4000 | 22,
2745                                         err_data: Vec::new(),
2746                                 }),
2747                 };
2748
2749                 Ok(PendingHTLCInfo {
2750                         routing: PendingHTLCRouting::Forward {
2751                                 onion_packet: outgoing_packet,
2752                                 short_channel_id,
2753                         },
2754                         payment_hash: msg.payment_hash,
2755                         incoming_shared_secret: shared_secret,
2756                         incoming_amt_msat: Some(msg.amount_msat),
2757                         outgoing_amt_msat: amt_to_forward,
2758                         outgoing_cltv_value,
2759                         skimmed_fee_msat: None,
2760                 })
2761         }
2762
2763         fn construct_recv_pending_htlc_info(
2764                 &self, hop_data: msgs::InboundOnionPayload, shared_secret: [u8; 32], payment_hash: PaymentHash,
2765                 amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>, allow_underpay: bool,
2766                 counterparty_skimmed_fee_msat: Option<u64>,
2767         ) -> Result<PendingHTLCInfo, InboundOnionErr> {
2768                 let (payment_data, keysend_preimage, custom_tlvs, onion_amt_msat, outgoing_cltv_value, payment_metadata) = match hop_data {
2769                         msgs::InboundOnionPayload::Receive {
2770                                 payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata, ..
2771                         } =>
2772                                 (payment_data, keysend_preimage, custom_tlvs, amt_msat, outgoing_cltv_value, payment_metadata),
2773                         msgs::InboundOnionPayload::BlindedReceive {
2774                                 amt_msat, total_msat, outgoing_cltv_value, payment_secret, ..
2775                         } => {
2776                                 let payment_data = msgs::FinalOnionHopData { payment_secret, total_msat };
2777                                 (Some(payment_data), None, Vec::new(), amt_msat, outgoing_cltv_value, None)
2778                         }
2779                         msgs::InboundOnionPayload::Forward { .. } => {
2780                                 return Err(InboundOnionErr {
2781                                         err_code: 0x4000|22,
2782                                         err_data: Vec::new(),
2783                                         msg: "Got non final data with an HMAC of 0",
2784                                 })
2785                         },
2786                 };
2787                 // final_incorrect_cltv_expiry
2788                 if outgoing_cltv_value > cltv_expiry {
2789                         return Err(InboundOnionErr {
2790                                 msg: "Upstream node set CLTV to less than the CLTV set by the sender",
2791                                 err_code: 18,
2792                                 err_data: cltv_expiry.to_be_bytes().to_vec()
2793                         })
2794                 }
2795                 // final_expiry_too_soon
2796                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2797                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2798                 //
2799                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2800                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2801                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2802                 let current_height: u32 = self.best_block.read().unwrap().height();
2803                 if (outgoing_cltv_value as u64) <= current_height as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1 {
2804                         let mut err_data = Vec::with_capacity(12);
2805                         err_data.extend_from_slice(&amt_msat.to_be_bytes());
2806                         err_data.extend_from_slice(&current_height.to_be_bytes());
2807                         return Err(InboundOnionErr {
2808                                 err_code: 0x4000 | 15, err_data,
2809                                 msg: "The final CLTV expiry is too soon to handle",
2810                         });
2811                 }
2812                 if (!allow_underpay && onion_amt_msat > amt_msat) ||
2813                         (allow_underpay && onion_amt_msat >
2814                          amt_msat.saturating_add(counterparty_skimmed_fee_msat.unwrap_or(0)))
2815                 {
2816                         return Err(InboundOnionErr {
2817                                 err_code: 19,
2818                                 err_data: amt_msat.to_be_bytes().to_vec(),
2819                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2820                         });
2821                 }
2822
2823                 let routing = if let Some(payment_preimage) = keysend_preimage {
2824                         // We need to check that the sender knows the keysend preimage before processing this
2825                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2826                         // could discover the final destination of X, by probing the adjacent nodes on the route
2827                         // with a keysend payment of identical payment hash to X and observing the processing
2828                         // time discrepancies due to a hash collision with X.
2829                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2830                         if hashed_preimage != payment_hash {
2831                                 return Err(InboundOnionErr {
2832                                         err_code: 0x4000|22,
2833                                         err_data: Vec::new(),
2834                                         msg: "Payment preimage didn't match payment hash",
2835                                 });
2836                         }
2837                         if !self.default_configuration.accept_mpp_keysend && payment_data.is_some() {
2838                                 return Err(InboundOnionErr {
2839                                         err_code: 0x4000|22,
2840                                         err_data: Vec::new(),
2841                                         msg: "We don't support MPP keysend payments",
2842                                 });
2843                         }
2844                         PendingHTLCRouting::ReceiveKeysend {
2845                                 payment_data,
2846                                 payment_preimage,
2847                                 payment_metadata,
2848                                 incoming_cltv_expiry: outgoing_cltv_value,
2849                                 custom_tlvs,
2850                         }
2851                 } else if let Some(data) = payment_data {
2852                         PendingHTLCRouting::Receive {
2853                                 payment_data: data,
2854                                 payment_metadata,
2855                                 incoming_cltv_expiry: outgoing_cltv_value,
2856                                 phantom_shared_secret,
2857                                 custom_tlvs,
2858                         }
2859                 } else {
2860                         return Err(InboundOnionErr {
2861                                 err_code: 0x4000|0x2000|3,
2862                                 err_data: Vec::new(),
2863                                 msg: "We require payment_secrets",
2864                         });
2865                 };
2866                 Ok(PendingHTLCInfo {
2867                         routing,
2868                         payment_hash,
2869                         incoming_shared_secret: shared_secret,
2870                         incoming_amt_msat: Some(amt_msat),
2871                         outgoing_amt_msat: onion_amt_msat,
2872                         outgoing_cltv_value,
2873                         skimmed_fee_msat: counterparty_skimmed_fee_msat,
2874                 })
2875         }
2876
2877         fn decode_update_add_htlc_onion(
2878                 &self, msg: &msgs::UpdateAddHTLC
2879         ) -> Result<(onion_utils::Hop, [u8; 32], Option<Result<PublicKey, secp256k1::Error>>), HTLCFailureMsg> {
2880                 macro_rules! return_malformed_err {
2881                         ($msg: expr, $err_code: expr) => {
2882                                 {
2883                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2884                                         return Err(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2885                                                 channel_id: msg.channel_id,
2886                                                 htlc_id: msg.htlc_id,
2887                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2888                                                 failure_code: $err_code,
2889                                         }));
2890                                 }
2891                         }
2892                 }
2893
2894                 if let Err(_) = msg.onion_routing_packet.public_key {
2895                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2896                 }
2897
2898                 let shared_secret = self.node_signer.ecdh(
2899                         Recipient::Node, &msg.onion_routing_packet.public_key.unwrap(), None
2900                 ).unwrap().secret_bytes();
2901
2902                 if msg.onion_routing_packet.version != 0 {
2903                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2904                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2905                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2906                         //receiving node would have to brute force to figure out which version was put in the
2907                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2908                         //node knows the HMAC matched, so they already know what is there...
2909                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2910                 }
2911                 macro_rules! return_err {
2912                         ($msg: expr, $err_code: expr, $data: expr) => {
2913                                 {
2914                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2915                                         return Err(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2916                                                 channel_id: msg.channel_id,
2917                                                 htlc_id: msg.htlc_id,
2918                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
2919                                                         .get_encrypted_failure_packet(&shared_secret, &None),
2920                                         }));
2921                                 }
2922                         }
2923                 }
2924
2925                 let next_hop = match onion_utils::decode_next_payment_hop(
2926                         shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac,
2927                         msg.payment_hash, &self.node_signer
2928                 ) {
2929                         Ok(res) => res,
2930                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2931                                 return_malformed_err!(err_msg, err_code);
2932                         },
2933                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2934                                 return_err!(err_msg, err_code, &[0; 0]);
2935                         },
2936                 };
2937                 let (outgoing_scid, outgoing_amt_msat, outgoing_cltv_value, next_packet_pk_opt) = match next_hop {
2938                         onion_utils::Hop::Forward {
2939                                 next_hop_data: msgs::InboundOnionPayload::Forward {
2940                                         short_channel_id, amt_to_forward, outgoing_cltv_value
2941                                 }, ..
2942                         } => {
2943                                 let next_packet_pk = onion_utils::next_hop_pubkey(&self.secp_ctx,
2944                                         msg.onion_routing_packet.public_key.unwrap(), &shared_secret);
2945                                 (short_channel_id, amt_to_forward, outgoing_cltv_value, Some(next_packet_pk))
2946                         },
2947                         // We'll do receive checks in [`Self::construct_pending_htlc_info`] so we have access to the
2948                         // inbound channel's state.
2949                         onion_utils::Hop::Receive { .. } => return Ok((next_hop, shared_secret, None)),
2950                         onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::Receive { .. }, .. } |
2951                                 onion_utils::Hop::Forward { next_hop_data: msgs::InboundOnionPayload::BlindedReceive { .. }, .. } =>
2952                         {
2953                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0; 0]);
2954                         }
2955                 };
2956
2957                 // Perform outbound checks here instead of in [`Self::construct_pending_htlc_info`] because we
2958                 // can't hold the outbound peer state lock at the same time as the inbound peer state lock.
2959                 if let Some((err, mut code, chan_update)) = loop {
2960                         let id_option = self.short_to_chan_info.read().unwrap().get(&outgoing_scid).cloned();
2961                         let forwarding_chan_info_opt = match id_option {
2962                                 None => { // unknown_next_peer
2963                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2964                                         // phantom or an intercept.
2965                                         if (self.default_configuration.accept_intercept_htlcs &&
2966                                                 fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)) ||
2967                                                 fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, outgoing_scid, &self.genesis_hash)
2968                                         {
2969                                                 None
2970                                         } else {
2971                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2972                                         }
2973                                 },
2974                                 Some((cp_id, id)) => Some((cp_id.clone(), id.clone())),
2975                         };
2976                         let chan_update_opt = if let Some((counterparty_node_id, forwarding_id)) = forwarding_chan_info_opt {
2977                                 let per_peer_state = self.per_peer_state.read().unwrap();
2978                                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
2979                                 if peer_state_mutex_opt.is_none() {
2980                                         break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2981                                 }
2982                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
2983                                 let peer_state = &mut *peer_state_lock;
2984                                 let chan = match peer_state.channel_by_id.get_mut(&forwarding_id).map(
2985                                         |chan_phase| if let ChannelPhase::Funded(chan) = chan_phase { Some(chan) } else { None }
2986                                 ).flatten() {
2987                                         None => {
2988                                                 // Channel was removed. The short_to_chan_info and channel_by_id maps
2989                                                 // have no consistency guarantees.
2990                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2991                                         },
2992                                         Some(chan) => chan
2993                                 };
2994                                 if !chan.context.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2995                                         // Note that the behavior here should be identical to the above block - we
2996                                         // should NOT reveal the existence or non-existence of a private channel if
2997                                         // we don't allow forwards outbound over them.
2998                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2999                                 }
3000                                 if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
3001                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
3002                                         // "refuse to forward unless the SCID alias was used", so we pretend
3003                                         // we don't have the channel here.
3004                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
3005                                 }
3006                                 let chan_update_opt = self.get_channel_update_for_onion(outgoing_scid, chan).ok();
3007
3008                                 // Note that we could technically not return an error yet here and just hope
3009                                 // that the connection is reestablished or monitor updated by the time we get
3010                                 // around to doing the actual forward, but better to fail early if we can and
3011                                 // hopefully an attacker trying to path-trace payments cannot make this occur
3012                                 // on a small/per-node/per-channel scale.
3013                                 if !chan.context.is_live() { // channel_disabled
3014                                         // If the channel_update we're going to return is disabled (i.e. the
3015                                         // peer has been disabled for some time), return `channel_disabled`,
3016                                         // otherwise return `temporary_channel_failure`.
3017                                         if chan_update_opt.as_ref().map(|u| u.contents.flags & 2 == 2).unwrap_or(false) {
3018                                                 break Some(("Forwarding channel has been disconnected for some time.", 0x1000 | 20, chan_update_opt));
3019                                         } else {
3020                                                 break Some(("Forwarding channel is not in a ready state.", 0x1000 | 7, chan_update_opt));
3021                                         }
3022                                 }
3023                                 if outgoing_amt_msat < chan.context.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
3024                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
3025                                 }
3026                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, outgoing_amt_msat, outgoing_cltv_value) {
3027                                         break Some((err, code, chan_update_opt));
3028                                 }
3029                                 chan_update_opt
3030                         } else {
3031                                 if (msg.cltv_expiry as u64) < (outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 {
3032                                         // We really should set `incorrect_cltv_expiry` here but as we're not
3033                                         // forwarding over a real channel we can't generate a channel_update
3034                                         // for it. Instead we just return a generic temporary_node_failure.
3035                                         break Some((
3036                                                         "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
3037                                                         0x2000 | 2, None,
3038                                         ));
3039                                 }
3040                                 None
3041                         };
3042
3043                         let cur_height = self.best_block.read().unwrap().height() + 1;
3044                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
3045                         // but we want to be robust wrt to counterparty packet sanitization (see
3046                         // HTLC_FAIL_BACK_BUFFER rationale).
3047                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
3048                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
3049                         }
3050                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
3051                                 break Some(("CLTV expiry is too far in the future", 21, None));
3052                         }
3053                         // If the HTLC expires ~now, don't bother trying to forward it to our
3054                         // counterparty. They should fail it anyway, but we don't want to bother with
3055                         // the round-trips or risk them deciding they definitely want the HTLC and
3056                         // force-closing to ensure they get it if we're offline.
3057                         // We previously had a much more aggressive check here which tried to ensure
3058                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
3059                         // but there is no need to do that, and since we're a bit conservative with our
3060                         // risk threshold it just results in failing to forward payments.
3061                         if (outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
3062                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
3063                         }
3064
3065                         break None;
3066                 }
3067                 {
3068                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
3069                         if let Some(chan_update) = chan_update {
3070                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
3071                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
3072                                 }
3073                                 else if code == 0x1000 | 13 {
3074                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
3075                                 }
3076                                 else if code == 0x1000 | 20 {
3077                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
3078                                         0u16.write(&mut res).expect("Writes cannot fail");
3079                                 }
3080                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
3081                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
3082                                 chan_update.write(&mut res).expect("Writes cannot fail");
3083                         } else if code & 0x1000 == 0x1000 {
3084                                 // If we're trying to return an error that requires a `channel_update` but
3085                                 // we're forwarding to a phantom or intercept "channel" (i.e. cannot
3086                                 // generate an update), just use the generic "temporary_node_failure"
3087                                 // instead.
3088                                 code = 0x2000 | 2;
3089                         }
3090                         return_err!(err, code, &res.0[..]);
3091                 }
3092                 Ok((next_hop, shared_secret, next_packet_pk_opt))
3093         }
3094
3095         fn construct_pending_htlc_status<'a>(
3096                 &self, msg: &msgs::UpdateAddHTLC, shared_secret: [u8; 32], decoded_hop: onion_utils::Hop,
3097                 allow_underpay: bool, next_packet_pubkey_opt: Option<Result<PublicKey, secp256k1::Error>>
3098         ) -> PendingHTLCStatus {
3099                 macro_rules! return_err {
3100                         ($msg: expr, $err_code: expr, $data: expr) => {
3101                                 {
3102                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3103                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
3104                                                 channel_id: msg.channel_id,
3105                                                 htlc_id: msg.htlc_id,
3106                                                 reason: HTLCFailReason::reason($err_code, $data.to_vec())
3107                                                         .get_encrypted_failure_packet(&shared_secret, &None),
3108                                         }));
3109                                 }
3110                         }
3111                 }
3112                 match decoded_hop {
3113                         onion_utils::Hop::Receive(next_hop_data) => {
3114                                 // OUR PAYMENT!
3115                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash,
3116                                         msg.amount_msat, msg.cltv_expiry, None, allow_underpay, msg.skimmed_fee_msat)
3117                                 {
3118                                         Ok(info) => {
3119                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
3120                                                 // message, however that would leak that we are the recipient of this payment, so
3121                                                 // instead we stay symmetric with the forwarding case, only responding (after a
3122                                                 // delay) once they've send us a commitment_signed!
3123                                                 PendingHTLCStatus::Forward(info)
3124                                         },
3125                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3126                                 }
3127                         },
3128                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
3129                                 match self.construct_fwd_pending_htlc_info(msg, next_hop_data, next_hop_hmac,
3130                                         new_packet_bytes, shared_secret, next_packet_pubkey_opt) {
3131                                         Ok(info) => PendingHTLCStatus::Forward(info),
3132                                         Err(InboundOnionErr { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
3133                                 }
3134                         }
3135                 }
3136         }
3137
3138         /// Gets the current [`channel_update`] for the given channel. This first checks if the channel is
3139         /// public, and thus should be called whenever the result is going to be passed out in a
3140         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
3141         ///
3142         /// Note that in [`internal_closing_signed`], this function is called without the `peer_state`
3143         /// corresponding to the channel's counterparty locked, as the channel been removed from the
3144         /// storage and the `peer_state` lock has been dropped.
3145         ///
3146         /// [`channel_update`]: msgs::ChannelUpdate
3147         /// [`internal_closing_signed`]: Self::internal_closing_signed
3148         fn get_channel_update_for_broadcast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3149                 if !chan.context.should_announce() {
3150                         return Err(LightningError {
3151                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
3152                                 action: msgs::ErrorAction::IgnoreError
3153                         });
3154                 }
3155                 if chan.context.get_short_channel_id().is_none() {
3156                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
3157                 }
3158                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", &chan.context.channel_id());
3159                 self.get_channel_update_for_unicast(chan)
3160         }
3161
3162         /// Gets the current [`channel_update`] for the given channel. This does not check if the channel
3163         /// is public (only returning an `Err` if the channel does not yet have an assigned SCID),
3164         /// and thus MUST NOT be called unless the recipient of the resulting message has already
3165         /// provided evidence that they know about the existence of the channel.
3166         ///
3167         /// Note that through [`internal_closing_signed`], this function is called without the
3168         /// `peer_state`  corresponding to the channel's counterparty locked, as the channel been
3169         /// removed from the storage and the `peer_state` lock has been dropped.
3170         ///
3171         /// [`channel_update`]: msgs::ChannelUpdate
3172         /// [`internal_closing_signed`]: Self::internal_closing_signed
3173         fn get_channel_update_for_unicast(&self, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3174                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", &chan.context.channel_id());
3175                 let short_channel_id = match chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias()) {
3176                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
3177                         Some(id) => id,
3178                 };
3179
3180                 self.get_channel_update_for_onion(short_channel_id, chan)
3181         }
3182
3183         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<SP>) -> Result<msgs::ChannelUpdate, LightningError> {
3184                 log_trace!(self.logger, "Generating channel update for channel {}", &chan.context.channel_id());
3185                 let were_node_one = self.our_network_pubkey.serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
3186
3187                 let enabled = chan.context.is_usable() && match chan.channel_update_status() {
3188                         ChannelUpdateStatus::Enabled => true,
3189                         ChannelUpdateStatus::DisabledStaged(_) => true,
3190                         ChannelUpdateStatus::Disabled => false,
3191                         ChannelUpdateStatus::EnabledStaged(_) => false,
3192                 };
3193
3194                 let unsigned = msgs::UnsignedChannelUpdate {
3195                         chain_hash: self.genesis_hash,
3196                         short_channel_id,
3197                         timestamp: chan.context.get_update_time_counter(),
3198                         flags: (!were_node_one) as u8 | ((!enabled as u8) << 1),
3199                         cltv_expiry_delta: chan.context.get_cltv_expiry_delta(),
3200                         htlc_minimum_msat: chan.context.get_counterparty_htlc_minimum_msat(),
3201                         htlc_maximum_msat: chan.context.get_announced_htlc_max_msat(),
3202                         fee_base_msat: chan.context.get_outbound_forwarding_fee_base_msat(),
3203                         fee_proportional_millionths: chan.context.get_fee_proportional_millionths(),
3204                         excess_data: Vec::new(),
3205                 };
3206                 // Panic on failure to signal LDK should be restarted to retry signing the `ChannelUpdate`.
3207                 // If we returned an error and the `node_signer` cannot provide a signature for whatever
3208                 // reason`, we wouldn't be able to receive inbound payments through the corresponding
3209                 // channel.
3210                 let sig = self.node_signer.sign_gossip_message(msgs::UnsignedGossipMessage::ChannelUpdate(&unsigned)).unwrap();
3211
3212                 Ok(msgs::ChannelUpdate {
3213                         signature: sig,
3214                         contents: unsigned
3215                 })
3216         }
3217
3218         #[cfg(test)]
3219         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> {
3220                 let _lck = self.total_consistency_lock.read().unwrap();
3221                 self.send_payment_along_path(SendAlongPathArgs {
3222                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3223                         session_priv_bytes
3224                 })
3225         }
3226
3227         fn send_payment_along_path(&self, args: SendAlongPathArgs) -> Result<(), APIError> {
3228                 let SendAlongPathArgs {
3229                         path, payment_hash, recipient_onion, total_value, cur_height, payment_id, keysend_preimage,
3230                         session_priv_bytes
3231                 } = args;
3232                 // The top-level caller should hold the total_consistency_lock read lock.
3233                 debug_assert!(self.total_consistency_lock.try_write().is_err());
3234
3235                 log_trace!(self.logger,
3236                         "Attempting to send payment with payment hash {} along path with next hop {}",
3237                         payment_hash, path.hops.first().unwrap().short_channel_id);
3238                 let prng_seed = self.entropy_source.get_secure_random_bytes();
3239                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
3240
3241                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
3242                         .map_err(|_| APIError::InvalidRoute{err: "Pubkey along hop was maliciously selected".to_owned()})?;
3243                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, recipient_onion, cur_height, keysend_preimage)?;
3244
3245                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash)
3246                         .map_err(|_| APIError::InvalidRoute { err: "Route size too large considering onion data".to_owned()})?;
3247
3248                 let err: Result<(), _> = loop {
3249                         let (counterparty_node_id, id) = match self.short_to_chan_info.read().unwrap().get(&path.hops.first().unwrap().short_channel_id) {
3250                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
3251                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3252                         };
3253
3254                         let per_peer_state = self.per_peer_state.read().unwrap();
3255                         let peer_state_mutex = per_peer_state.get(&counterparty_node_id)
3256                                 .ok_or_else(|| APIError::ChannelUnavailable{err: "No peer matching the path's first hop found!".to_owned() })?;
3257                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3258                         let peer_state = &mut *peer_state_lock;
3259                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(id) {
3260                                 match chan_phase_entry.get_mut() {
3261                                         ChannelPhase::Funded(chan) => {
3262                                                 if !chan.context.is_live() {
3263                                                         return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected".to_owned()});
3264                                                 }
3265                                                 let funding_txo = chan.context.get_funding_txo().unwrap();
3266                                                 let send_res = chan.send_htlc_and_commit(htlc_msat, payment_hash.clone(),
3267                                                         htlc_cltv, HTLCSource::OutboundRoute {
3268                                                                 path: path.clone(),
3269                                                                 session_priv: session_priv.clone(),
3270                                                                 first_hop_htlc_msat: htlc_msat,
3271                                                                 payment_id,
3272                                                         }, onion_packet, None, &self.fee_estimator, &self.logger);
3273                                                 match break_chan_phase_entry!(self, send_res, chan_phase_entry) {
3274                                                         Some(monitor_update) => {
3275                                                                 match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan_phase_entry) {
3276                                                                         Err(e) => break Err(e),
3277                                                                         Ok(false) => {
3278                                                                                 // Note that MonitorUpdateInProgress here indicates (per function
3279                                                                                 // docs) that we will resend the commitment update once monitor
3280                                                                                 // updating completes. Therefore, we must return an error
3281                                                                                 // indicating that it is unsafe to retry the payment wholesale,
3282                                                                                 // which we do in the send_payment check for
3283                                                                                 // MonitorUpdateInProgress, below.
3284                                                                                 return Err(APIError::MonitorUpdateInProgress);
3285                                                                         },
3286                                                                         Ok(true) => {},
3287                                                                 }
3288                                                         },
3289                                                         None => {},
3290                                                 }
3291                                         },
3292                                         _ => return Err(APIError::ChannelUnavailable{err: "Channel to first hop is unfunded".to_owned()}),
3293                                 };
3294                         } else {
3295                                 // The channel was likely removed after we fetched the id from the
3296                                 // `short_to_chan_info` map, but before we successfully locked the
3297                                 // `channel_by_id` map.
3298                                 // This can occur as no consistency guarantees exists between the two maps.
3299                                 return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()});
3300                         }
3301                         return Ok(());
3302                 };
3303
3304                 match handle_error!(self, err, path.hops.first().unwrap().pubkey) {
3305                         Ok(_) => unreachable!(),
3306                         Err(e) => {
3307                                 Err(APIError::ChannelUnavailable { err: e.err })
3308                         },
3309                 }
3310         }
3311
3312         /// Sends a payment along a given route.
3313         ///
3314         /// Value parameters are provided via the last hop in route, see documentation for [`RouteHop`]
3315         /// fields for more info.
3316         ///
3317         /// May generate [`UpdateHTLCs`] message(s) event on success, which should be relayed (e.g. via
3318         /// [`PeerManager::process_events`]).
3319         ///
3320         /// # Avoiding Duplicate Payments
3321         ///
3322         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
3323         /// method will error with an [`APIError::InvalidRoute`]. Note, however, that once a payment
3324         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
3325         /// [`Event::PaymentSent`] or [`Event::PaymentFailed`]) LDK will not stop you from sending a
3326         /// second payment with the same [`PaymentId`].
3327         ///
3328         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
3329         /// tracking of payments, including state to indicate once a payment has completed. Because you
3330         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
3331         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
3332         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
3333         ///
3334         /// Additionally, in the scenario where we begin the process of sending a payment, but crash
3335         /// before `send_payment` returns (or prior to [`ChannelMonitorUpdate`] persistence if you're
3336         /// using [`ChannelMonitorUpdateStatus::InProgress`]), the payment may be lost on restart. See
3337         /// [`ChannelManager::list_recent_payments`] for more information.
3338         ///
3339         /// # Possible Error States on [`PaymentSendFailure`]
3340         ///
3341         /// Each path may have a different return value, and [`PaymentSendFailure`] may return a `Vec` with
3342         /// each entry matching the corresponding-index entry in the route paths, see
3343         /// [`PaymentSendFailure`] for more info.
3344         ///
3345         /// In general, a path may raise:
3346         ///  * [`APIError::InvalidRoute`] when an invalid route or forwarding parameter (cltv_delta, fee,
3347         ///    node public key) is specified.
3348         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
3349         ///    (including due to previous monitor update failure or new permanent monitor update
3350         ///    failure).
3351         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
3352         ///    relevant updates.
3353         ///
3354         /// Note that depending on the type of the [`PaymentSendFailure`] the HTLC may have been
3355         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
3356         /// different route unless you intend to pay twice!
3357         ///
3358         /// [`RouteHop`]: crate::routing::router::RouteHop
3359         /// [`Event::PaymentSent`]: events::Event::PaymentSent
3360         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
3361         /// [`UpdateHTLCs`]: events::MessageSendEvent::UpdateHTLCs
3362         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
3363         /// [`ChannelMonitorUpdateStatus::InProgress`]: crate::chain::ChannelMonitorUpdateStatus::InProgress
3364         pub fn send_payment_with_route(&self, route: &Route, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
3365                 let best_block_height = self.best_block.read().unwrap().height();
3366                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3367                 self.pending_outbound_payments
3368                         .send_payment_with_route(route, payment_hash, recipient_onion, payment_id,
3369                                 &self.entropy_source, &self.node_signer, best_block_height,
3370                                 |args| self.send_payment_along_path(args))
3371         }
3372
3373         /// Similar to [`ChannelManager::send_payment_with_route`], but will automatically find a route based on
3374         /// `route_params` and retry failed payment paths based on `retry_strategy`.
3375         pub fn send_payment(&self, payment_hash: PaymentHash, recipient_onion: RecipientOnionFields, payment_id: PaymentId, route_params: RouteParameters, retry_strategy: Retry) -> Result<(), RetryableSendFailure> {
3376                 let best_block_height = self.best_block.read().unwrap().height();
3377                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3378                 self.pending_outbound_payments
3379                         .send_payment(payment_hash, recipient_onion, payment_id, retry_strategy, route_params,
3380                                 &self.router, self.list_usable_channels(), || self.compute_inflight_htlcs(),
3381                                 &self.entropy_source, &self.node_signer, best_block_height, &self.logger,
3382                                 &self.pending_events, |args| self.send_payment_along_path(args))
3383         }
3384
3385         #[cfg(test)]
3386         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> {
3387                 let best_block_height = self.best_block.read().unwrap().height();
3388                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3389                 self.pending_outbound_payments.test_send_payment_internal(route, payment_hash, recipient_onion,
3390                         keysend_preimage, payment_id, recv_value_msat, onion_session_privs, &self.node_signer,
3391                         best_block_height, |args| self.send_payment_along_path(args))
3392         }
3393
3394         #[cfg(test)]
3395         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> {
3396                 let best_block_height = self.best_block.read().unwrap().height();
3397                 self.pending_outbound_payments.test_add_new_pending_payment(payment_hash, recipient_onion, payment_id, route, None, &self.entropy_source, best_block_height)
3398         }
3399
3400         #[cfg(test)]
3401         pub(crate) fn test_set_payment_metadata(&self, payment_id: PaymentId, new_payment_metadata: Option<Vec<u8>>) {
3402                 self.pending_outbound_payments.test_set_payment_metadata(payment_id, new_payment_metadata);
3403         }
3404
3405
3406         /// Signals that no further attempts for the given payment should occur. Useful if you have a
3407         /// pending outbound payment with retries remaining, but wish to stop retrying the payment before
3408         /// retries are exhausted.
3409         ///
3410         /// # Event Generation
3411         ///
3412         /// If no [`Event::PaymentFailed`] event had been generated before, one will be generated as soon
3413         /// as there are no remaining pending HTLCs for this payment.
3414         ///
3415         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
3416         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
3417         /// determine the ultimate status of a payment.
3418         ///
3419         /// # Requested Invoices
3420         ///
3421         /// In the case of paying a [`Bolt12Invoice`], abandoning the payment prior to receiving the
3422         /// invoice will result in an [`Event::InvoiceRequestFailed`] and prevent any attempts at paying
3423         /// it once received. The other events may only be generated once the invoice has been received.
3424         ///
3425         /// # Restart Behavior
3426         ///
3427         /// If an [`Event::PaymentFailed`] is generated and we restart without first persisting the
3428         /// [`ChannelManager`], another [`Event::PaymentFailed`] may be generated; likewise for
3429         /// [`Event::InvoiceRequestFailed`].
3430         ///
3431         /// [`Bolt12Invoice`]: crate::offers::invoice::Bolt12Invoice
3432         pub fn abandon_payment(&self, payment_id: PaymentId) {
3433                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3434                 self.pending_outbound_payments.abandon_payment(payment_id, PaymentFailureReason::UserAbandoned, &self.pending_events);
3435         }
3436
3437         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
3438         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
3439         /// the preimage, it must be a cryptographically secure random value that no intermediate node
3440         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
3441         /// never reach the recipient.
3442         ///
3443         /// See [`send_payment`] documentation for more details on the return value of this function
3444         /// and idempotency guarantees provided by the [`PaymentId`] key.
3445         ///
3446         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
3447         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
3448         ///
3449         /// [`send_payment`]: Self::send_payment
3450         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, recipient_onion: RecipientOnionFields, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
3451                 let best_block_height = self.best_block.read().unwrap().height();
3452                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3453                 self.pending_outbound_payments.send_spontaneous_payment_with_route(
3454                         route, payment_preimage, recipient_onion, payment_id, &self.entropy_source,
3455                         &self.node_signer, best_block_height, |args| self.send_payment_along_path(args))
3456         }
3457
3458         /// Similar to [`ChannelManager::send_spontaneous_payment`], but will automatically find a route
3459         /// based on `route_params` and retry failed payment paths based on `retry_strategy`.
3460         ///
3461         /// See [`PaymentParameters::for_keysend`] for help in constructing `route_params` for spontaneous
3462         /// payments.
3463         ///
3464         /// [`PaymentParameters::for_keysend`]: crate::routing::router::PaymentParameters::for_keysend
3465         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> {
3466                 let best_block_height = self.best_block.read().unwrap().height();
3467                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3468                 self.pending_outbound_payments.send_spontaneous_payment(payment_preimage, recipient_onion,
3469                         payment_id, retry_strategy, route_params, &self.router, self.list_usable_channels(),
3470                         || self.compute_inflight_htlcs(),  &self.entropy_source, &self.node_signer, best_block_height,
3471                         &self.logger, &self.pending_events, |args| self.send_payment_along_path(args))
3472         }
3473
3474         /// Send a payment that is probing the given route for liquidity. We calculate the
3475         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
3476         /// us to easily discern them from real payments.
3477         pub fn send_probe(&self, path: Path) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
3478                 let best_block_height = self.best_block.read().unwrap().height();
3479                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3480                 self.pending_outbound_payments.send_probe(path, self.probing_cookie_secret,
3481                         &self.entropy_source, &self.node_signer, best_block_height,
3482                         |args| self.send_payment_along_path(args))
3483         }
3484
3485         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
3486         /// payment probe.
3487         #[cfg(test)]
3488         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
3489                 outbound_payment::payment_is_probe(payment_hash, payment_id, self.probing_cookie_secret)
3490         }
3491
3492         /// Handles the generation of a funding transaction, optionally (for tests) with a function
3493         /// which checks the correctness of the funding transaction given the associated channel.
3494         fn funding_transaction_generated_intern<FundingOutput: Fn(&OutboundV1Channel<SP>, &Transaction) -> Result<OutPoint, APIError>>(
3495                 &self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
3496         ) -> Result<(), APIError> {
3497                 let per_peer_state = self.per_peer_state.read().unwrap();
3498                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3499                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3500
3501                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3502                 let peer_state = &mut *peer_state_lock;
3503                 let (chan, msg) = match peer_state.channel_by_id.remove(temporary_channel_id) {
3504                         Some(ChannelPhase::UnfundedOutboundV1(chan)) => {
3505                                 let funding_txo = find_funding_output(&chan, &funding_transaction)?;
3506
3507                                 let funding_res = chan.get_funding_created(funding_transaction, funding_txo, &self.logger)
3508                                         .map_err(|(mut chan, e)| if let ChannelError::Close(msg) = e {
3509                                                 let channel_id = chan.context.channel_id();
3510                                                 let user_id = chan.context.get_user_id();
3511                                                 let shutdown_res = chan.context.force_shutdown(false);
3512                                                 let channel_capacity = chan.context.get_value_satoshis();
3513                                                 (chan, MsgHandleErrInternal::from_finish_shutdown(msg, channel_id, user_id, shutdown_res, None, channel_capacity))
3514                                         } else { unreachable!(); });
3515                                 match funding_res {
3516                                         Ok((chan, funding_msg)) => (chan, funding_msg),
3517                                         Err((chan, err)) => {
3518                                                 mem::drop(peer_state_lock);
3519                                                 mem::drop(per_peer_state);
3520
3521                                                 let _: Result<(), _> = handle_error!(self, Err(err), chan.context.get_counterparty_node_id());
3522                                                 return Err(APIError::ChannelUnavailable {
3523                                                         err: "Signer refused to sign the initial commitment transaction".to_owned()
3524                                                 });
3525                                         },
3526                                 }
3527                         },
3528                         Some(phase) => {
3529                                 peer_state.channel_by_id.insert(*temporary_channel_id, phase);
3530                                 return Err(APIError::APIMisuseError {
3531                                         err: format!(
3532                                                 "Channel with id {} for the passed counterparty node_id {} is not an unfunded, outbound V1 channel",
3533                                                 temporary_channel_id, counterparty_node_id),
3534                                 })
3535                         },
3536                         None => return Err(APIError::ChannelUnavailable {err: format!(
3537                                 "Channel with id {} not found for the passed counterparty node_id {}",
3538                                 temporary_channel_id, counterparty_node_id),
3539                                 }),
3540                 };
3541
3542                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
3543                         node_id: chan.context.get_counterparty_node_id(),
3544                         msg,
3545                 });
3546                 match peer_state.channel_by_id.entry(chan.context.channel_id()) {
3547                         hash_map::Entry::Occupied(_) => {
3548                                 panic!("Generated duplicate funding txid?");
3549                         },
3550                         hash_map::Entry::Vacant(e) => {
3551                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
3552                                 if id_to_peer.insert(chan.context.channel_id(), chan.context.get_counterparty_node_id()).is_some() {
3553                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
3554                                 }
3555                                 e.insert(ChannelPhase::Funded(chan));
3556                         }
3557                 }
3558                 Ok(())
3559         }
3560
3561         #[cfg(test)]
3562         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
3563                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
3564                         Ok(OutPoint { txid: tx.txid(), index: output_index })
3565                 })
3566         }
3567
3568         /// Call this upon creation of a funding transaction for the given channel.
3569         ///
3570         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
3571         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
3572         ///
3573         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
3574         /// across the p2p network.
3575         ///
3576         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
3577         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
3578         ///
3579         /// May panic if the output found in the funding transaction is duplicative with some other
3580         /// channel (note that this should be trivially prevented by using unique funding transaction
3581         /// keys per-channel).
3582         ///
3583         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
3584         /// counterparty's signature the funding transaction will automatically be broadcast via the
3585         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
3586         ///
3587         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
3588         /// not currently support replacing a funding transaction on an existing channel. Instead,
3589         /// create a new channel with a conflicting funding transaction.
3590         ///
3591         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
3592         /// the wallet software generating the funding transaction to apply anti-fee sniping as
3593         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
3594         /// for more details.
3595         ///
3596         /// [`Event::FundingGenerationReady`]: crate::events::Event::FundingGenerationReady
3597         /// [`Event::ChannelClosed`]: crate::events::Event::ChannelClosed
3598         pub fn funding_transaction_generated(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
3599                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3600
3601                 if !funding_transaction.is_coin_base() {
3602                         for inp in funding_transaction.input.iter() {
3603                                 if inp.witness.is_empty() {
3604                                         return Err(APIError::APIMisuseError {
3605                                                 err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
3606                                         });
3607                                 }
3608                         }
3609                 }
3610                 {
3611                         let height = self.best_block.read().unwrap().height();
3612                         // Transactions are evaluated as final by network mempools if their locktime is strictly
3613                         // lower than the next block height. However, the modules constituting our Lightning
3614                         // node might not have perfect sync about their blockchain views. Thus, if the wallet
3615                         // module is ahead of LDK, only allow one more block of headroom.
3616                         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 {
3617                                 return Err(APIError::APIMisuseError {
3618                                         err: "Funding transaction absolute timelock is non-final".to_owned()
3619                                 });
3620                         }
3621                 }
3622                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
3623                         if tx.output.len() > u16::max_value() as usize {
3624                                 return Err(APIError::APIMisuseError {
3625                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3626                                 });
3627                         }
3628
3629                         let mut output_index = None;
3630                         let expected_spk = chan.context.get_funding_redeemscript().to_v0_p2wsh();
3631                         for (idx, outp) in tx.output.iter().enumerate() {
3632                                 if outp.script_pubkey == expected_spk && outp.value == chan.context.get_value_satoshis() {
3633                                         if output_index.is_some() {
3634                                                 return Err(APIError::APIMisuseError {
3635                                                         err: "Multiple outputs matched the expected script and value".to_owned()
3636                                                 });
3637                                         }
3638                                         output_index = Some(idx as u16);
3639                                 }
3640                         }
3641                         if output_index.is_none() {
3642                                 return Err(APIError::APIMisuseError {
3643                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3644                                 });
3645                         }
3646                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3647                 })
3648         }
3649
3650         /// Atomically applies partial updates to the [`ChannelConfig`] of the given channels.
3651         ///
3652         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3653         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3654         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3655         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3656         ///
3657         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3658         /// `counterparty_node_id` is provided.
3659         ///
3660         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3661         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3662         ///
3663         /// If an error is returned, none of the updates should be considered applied.
3664         ///
3665         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3666         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3667         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3668         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3669         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3670         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3671         /// [`APIMisuseError`]: APIError::APIMisuseError
3672         pub fn update_partial_channel_config(
3673                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config_update: &ChannelConfigUpdate,
3674         ) -> Result<(), APIError> {
3675                 if config_update.cltv_expiry_delta.map(|delta| delta < MIN_CLTV_EXPIRY_DELTA).unwrap_or(false) {
3676                         return Err(APIError::APIMisuseError {
3677                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3678                         });
3679                 }
3680
3681                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3682                 let per_peer_state = self.per_peer_state.read().unwrap();
3683                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
3684                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
3685                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3686                 let peer_state = &mut *peer_state_lock;
3687                 for channel_id in channel_ids {
3688                         if !peer_state.has_channel(channel_id) {
3689                                 return Err(APIError::ChannelUnavailable {
3690                                         err: format!("Channel with ID {} was not found for the passed counterparty_node_id {}", channel_id, counterparty_node_id),
3691                                 });
3692                         };
3693                 }
3694                 for channel_id in channel_ids {
3695                         if let Some(channel_phase) = peer_state.channel_by_id.get_mut(channel_id) {
3696                                 let mut config = channel_phase.context().config();
3697                                 config.apply(config_update);
3698                                 if !channel_phase.context_mut().update_config(&config) {
3699                                         continue;
3700                                 }
3701                                 if let ChannelPhase::Funded(channel) = channel_phase {
3702                                         if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3703                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3704                                         } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3705                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3706                                                         node_id: channel.context.get_counterparty_node_id(),
3707                                                         msg,
3708                                                 });
3709                                         }
3710                                 }
3711                                 continue;
3712                         } else {
3713                                 // This should not be reachable as we've already checked for non-existence in the previous channel_id loop.
3714                                 debug_assert!(false);
3715                                 return Err(APIError::ChannelUnavailable {
3716                                         err: format!(
3717                                                 "Channel with ID {} for passed counterparty_node_id {} disappeared after we confirmed its existence - this should not be reachable!",
3718                                                 channel_id, counterparty_node_id),
3719                                 });
3720                         };
3721                 }
3722                 Ok(())
3723         }
3724
3725         /// Atomically updates the [`ChannelConfig`] for the given channels.
3726         ///
3727         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3728         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3729         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3730         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3731         ///
3732         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3733         /// `counterparty_node_id` is provided.
3734         ///
3735         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3736         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3737         ///
3738         /// If an error is returned, none of the updates should be considered applied.
3739         ///
3740         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3741         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3742         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3743         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3744         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3745         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3746         /// [`APIMisuseError`]: APIError::APIMisuseError
3747         pub fn update_channel_config(
3748                 &self, counterparty_node_id: &PublicKey, channel_ids: &[ChannelId], config: &ChannelConfig,
3749         ) -> Result<(), APIError> {
3750                 return self.update_partial_channel_config(counterparty_node_id, channel_ids, &(*config).into());
3751         }
3752
3753         /// Attempts to forward an intercepted HTLC over the provided channel id and with the provided
3754         /// amount to forward. Should only be called in response to an [`HTLCIntercepted`] event.
3755         ///
3756         /// Intercepted HTLCs can be useful for Lightning Service Providers (LSPs) to open a just-in-time
3757         /// channel to a receiving node if the node lacks sufficient inbound liquidity.
3758         ///
3759         /// To make use of intercepted HTLCs, set [`UserConfig::accept_intercept_htlcs`] and use
3760         /// [`ChannelManager::get_intercept_scid`] to generate short channel id(s) to put in the
3761         /// receiver's invoice route hints. These route hints will signal to LDK to generate an
3762         /// [`HTLCIntercepted`] event when it receives the forwarded HTLC, and this method or
3763         /// [`ChannelManager::fail_intercepted_htlc`] MUST be called in response to the event.
3764         ///
3765         /// Note that LDK does not enforce fee requirements in `amt_to_forward_msat`, and will not stop
3766         /// you from forwarding more than you received. See
3767         /// [`HTLCIntercepted::expected_outbound_amount_msat`] for more on forwarding a different amount
3768         /// than expected.
3769         ///
3770         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3771         /// backwards.
3772         ///
3773         /// [`UserConfig::accept_intercept_htlcs`]: crate::util::config::UserConfig::accept_intercept_htlcs
3774         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3775         /// [`HTLCIntercepted::expected_outbound_amount_msat`]: events::Event::HTLCIntercepted::expected_outbound_amount_msat
3776         // TODO: when we move to deciding the best outbound channel at forward time, only take
3777         // `next_node_id` and not `next_hop_channel_id`
3778         pub fn forward_intercepted_htlc(&self, intercept_id: InterceptId, next_hop_channel_id: &ChannelId, next_node_id: PublicKey, amt_to_forward_msat: u64) -> Result<(), APIError> {
3779                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3780
3781                 let next_hop_scid = {
3782                         let peer_state_lock = self.per_peer_state.read().unwrap();
3783                         let peer_state_mutex = peer_state_lock.get(&next_node_id)
3784                                 .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", next_node_id) })?;
3785                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
3786                         let peer_state = &mut *peer_state_lock;
3787                         match peer_state.channel_by_id.get(next_hop_channel_id) {
3788                                 Some(ChannelPhase::Funded(chan)) => {
3789                                         if !chan.context.is_usable() {
3790                                                 return Err(APIError::ChannelUnavailable {
3791                                                         err: format!("Channel with id {} not fully established", next_hop_channel_id)
3792                                                 })
3793                                         }
3794                                         chan.context.get_short_channel_id().unwrap_or(chan.context.outbound_scid_alias())
3795                                 },
3796                                 Some(_) => return Err(APIError::ChannelUnavailable {
3797                                         err: format!("Channel with id {} for the passed counterparty node_id {} is still opening.",
3798                                                 next_hop_channel_id, next_node_id)
3799                                 }),
3800                                 None => return Err(APIError::ChannelUnavailable {
3801                                         err: format!("Channel with id {} not found for the passed counterparty node_id {}.",
3802                                                 next_hop_channel_id, next_node_id)
3803                                 })
3804                         }
3805                 };
3806
3807                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3808                         .ok_or_else(|| APIError::APIMisuseError {
3809                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3810                         })?;
3811
3812                 let routing = match payment.forward_info.routing {
3813                         PendingHTLCRouting::Forward { onion_packet, .. } => {
3814                                 PendingHTLCRouting::Forward { onion_packet, short_channel_id: next_hop_scid }
3815                         },
3816                         _ => unreachable!() // Only `PendingHTLCRouting::Forward`s are intercepted
3817                 };
3818                 let skimmed_fee_msat =
3819                         payment.forward_info.outgoing_amt_msat.saturating_sub(amt_to_forward_msat);
3820                 let pending_htlc_info = PendingHTLCInfo {
3821                         skimmed_fee_msat: if skimmed_fee_msat == 0 { None } else { Some(skimmed_fee_msat) },
3822                         outgoing_amt_msat: amt_to_forward_msat, routing, ..payment.forward_info
3823                 };
3824
3825                 let mut per_source_pending_forward = [(
3826                         payment.prev_short_channel_id,
3827                         payment.prev_funding_outpoint,
3828                         payment.prev_user_channel_id,
3829                         vec![(pending_htlc_info, payment.prev_htlc_id)]
3830                 )];
3831                 self.forward_htlcs(&mut per_source_pending_forward);
3832                 Ok(())
3833         }
3834
3835         /// Fails the intercepted HTLC indicated by intercept_id. Should only be called in response to
3836         /// an [`HTLCIntercepted`] event. See [`ChannelManager::forward_intercepted_htlc`].
3837         ///
3838         /// Errors if the event was not handled in time, in which case the HTLC was automatically failed
3839         /// backwards.
3840         ///
3841         /// [`HTLCIntercepted`]: events::Event::HTLCIntercepted
3842         pub fn fail_intercepted_htlc(&self, intercept_id: InterceptId) -> Result<(), APIError> {
3843                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3844
3845                 let payment = self.pending_intercepted_htlcs.lock().unwrap().remove(&intercept_id)
3846                         .ok_or_else(|| APIError::APIMisuseError {
3847                                 err: format!("Payment with intercept id {} not found", log_bytes!(intercept_id.0))
3848                         })?;
3849
3850                 if let PendingHTLCRouting::Forward { short_channel_id, .. } = payment.forward_info.routing {
3851                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3852                                 short_channel_id: payment.prev_short_channel_id,
3853                                 user_channel_id: Some(payment.prev_user_channel_id),
3854                                 outpoint: payment.prev_funding_outpoint,
3855                                 htlc_id: payment.prev_htlc_id,
3856                                 incoming_packet_shared_secret: payment.forward_info.incoming_shared_secret,
3857                                 phantom_shared_secret: None,
3858                         });
3859
3860                         let failure_reason = HTLCFailReason::from_failure_code(0x4000 | 10);
3861                         let destination = HTLCDestination::UnknownNextHop { requested_forward_scid: short_channel_id };
3862                         self.fail_htlc_backwards_internal(&htlc_source, &payment.forward_info.payment_hash, &failure_reason, destination);
3863                 } else { unreachable!() } // Only `PendingHTLCRouting::Forward`s are intercepted
3864
3865                 Ok(())
3866         }
3867
3868         /// Processes HTLCs which are pending waiting on random forward delay.
3869         ///
3870         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3871         /// Will likely generate further events.
3872         pub fn process_pending_htlc_forwards(&self) {
3873                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
3874
3875                 let mut new_events = VecDeque::new();
3876                 let mut failed_forwards = Vec::new();
3877                 let mut phantom_receives: Vec<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3878                 {
3879                         let mut forward_htlcs = HashMap::new();
3880                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3881
3882                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3883                                 if short_chan_id != 0 {
3884                                         macro_rules! forwarding_channel_not_found {
3885                                                 () => {
3886                                                         for forward_info in pending_forwards.drain(..) {
3887                                                                 match forward_info {
3888                                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
3889                                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
3890                                                                                 forward_info: PendingHTLCInfo {
3891                                                                                         routing, incoming_shared_secret, payment_hash, outgoing_amt_msat,
3892                                                                                         outgoing_cltv_value, ..
3893                                                                                 }
3894                                                                         }) => {
3895                                                                                 macro_rules! failure_handler {
3896                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3897                                                                                                 log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3898
3899                                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3900                                                                                                         short_channel_id: prev_short_channel_id,
3901                                                                                                         user_channel_id: Some(prev_user_channel_id),
3902                                                                                                         outpoint: prev_funding_outpoint,
3903                                                                                                         htlc_id: prev_htlc_id,
3904                                                                                                         incoming_packet_shared_secret: incoming_shared_secret,
3905                                                                                                         phantom_shared_secret: $phantom_ss,
3906                                                                                                 });
3907
3908                                                                                                 let reason = if $next_hop_unknown {
3909                                                                                                         HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3910                                                                                                 } else {
3911                                                                                                         HTLCDestination::FailedPayment{ payment_hash }
3912                                                                                                 };
3913
3914                                                                                                 failed_forwards.push((htlc_source, payment_hash,
3915                                                                                                         HTLCFailReason::reason($err_code, $err_data),
3916                                                                                                         reason
3917                                                                                                 ));
3918                                                                                                 continue;
3919                                                                                         }
3920                                                                                 }
3921                                                                                 macro_rules! fail_forward {
3922                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3923                                                                                                 {
3924                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3925                                                                                                 }
3926                                                                                         }
3927                                                                                 }
3928                                                                                 macro_rules! failed_payment {
3929                                                                                         ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3930                                                                                                 {
3931                                                                                                         failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3932                                                                                                 }
3933                                                                                         }
3934                                                                                 }
3935                                                                                 if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3936                                                                                         let phantom_pubkey_res = self.node_signer.get_node_id(Recipient::PhantomNode);
3937                                                                                         if phantom_pubkey_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id, &self.genesis_hash) {
3938                                                                                                 let phantom_shared_secret = self.node_signer.ecdh(Recipient::PhantomNode, &onion_packet.public_key.unwrap(), None).unwrap().secret_bytes();
3939                                                                                                 let next_hop = match onion_utils::decode_next_payment_hop(
3940                                                                                                         phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac,
3941                                                                                                         payment_hash, &self.node_signer
3942                                                                                                 ) {
3943                                                                                                         Ok(res) => res,
3944                                                                                                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3945                                                                                                                 let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3946                                                                                                                 // In this scenario, the phantom would have sent us an
3947                                                                                                                 // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3948                                                                                                                 // if it came from us (the second-to-last hop) but contains the sha256
3949                                                                                                                 // of the onion.
3950                                                                                                                 failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3951                                                                                                         },
3952                                                                                                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3953                                                                                                                 failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3954                                                                                                         },
3955                                                                                                 };
3956                                                                                                 match next_hop {
3957                                                                                                         onion_utils::Hop::Receive(hop_data) => {
3958                                                                                                                 match self.construct_recv_pending_htlc_info(hop_data,
3959                                                                                                                         incoming_shared_secret, payment_hash, outgoing_amt_msat,
3960                                                                                                                         outgoing_cltv_value, Some(phantom_shared_secret), false, None)
3961                                                                                                                 {
3962                                                                                                                         Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, vec![(info, prev_htlc_id)])),
3963                                                                                                                         Err(InboundOnionErr { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3964                                                                                                                 }
3965                                                                                                         },
3966                                                                                                         _ => panic!(),
3967                                                                                                 }
3968                                                                                         } else {
3969                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3970                                                                                         }
3971                                                                                 } else {
3972                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3973                                                                                 }
3974                                                                         },
3975                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3976                                                                                 // Channel went away before we could fail it. This implies
3977                                                                                 // the channel is now on chain and our counterparty is
3978                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3979                                                                                 // problem, not ours.
3980                                                                         }
3981                                                                 }
3982                                                         }
3983                                                 }
3984                                         }
3985                                         let (counterparty_node_id, forward_chan_id) = match self.short_to_chan_info.read().unwrap().get(&short_chan_id) {
3986                                                 Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
3987                                                 None => {
3988                                                         forwarding_channel_not_found!();
3989                                                         continue;
3990                                                 }
3991                                         };
3992                                         let per_peer_state = self.per_peer_state.read().unwrap();
3993                                         let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
3994                                         if peer_state_mutex_opt.is_none() {
3995                                                 forwarding_channel_not_found!();
3996                                                 continue;
3997                                         }
3998                                         let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
3999                                         let peer_state = &mut *peer_state_lock;
4000                                         if let Some(ChannelPhase::Funded(ref mut chan)) = peer_state.channel_by_id.get_mut(&forward_chan_id) {
4001                                                 for forward_info in pending_forwards.drain(..) {
4002                                                         match forward_info {
4003                                                                 HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4004                                                                         prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4005                                                                         forward_info: PendingHTLCInfo {
4006                                                                                 incoming_shared_secret, payment_hash, outgoing_amt_msat, outgoing_cltv_value,
4007                                                                                 routing: PendingHTLCRouting::Forward { onion_packet, .. }, skimmed_fee_msat, ..
4008                                                                         },
4009                                                                 }) => {
4010                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, &payment_hash, short_chan_id);
4011                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
4012                                                                                 short_channel_id: prev_short_channel_id,
4013                                                                                 user_channel_id: Some(prev_user_channel_id),
4014                                                                                 outpoint: prev_funding_outpoint,
4015                                                                                 htlc_id: prev_htlc_id,
4016                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4017                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
4018                                                                                 phantom_shared_secret: None,
4019                                                                         });
4020                                                                         if let Err(e) = chan.queue_add_htlc(outgoing_amt_msat,
4021                                                                                 payment_hash, outgoing_cltv_value, htlc_source.clone(),
4022                                                                                 onion_packet, skimmed_fee_msat, &self.fee_estimator,
4023                                                                                 &self.logger)
4024                                                                         {
4025                                                                                 if let ChannelError::Ignore(msg) = e {
4026                                                                                         log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", &payment_hash, msg);
4027                                                                                 } else {
4028                                                                                         panic!("Stated return value requirements in send_htlc() were not met");
4029                                                                                 }
4030                                                                                 let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan);
4031                                                                                 failed_forwards.push((htlc_source, payment_hash,
4032                                                                                         HTLCFailReason::reason(failure_code, data),
4033                                                                                         HTLCDestination::NextHopChannel { node_id: Some(chan.context.get_counterparty_node_id()), channel_id: forward_chan_id }
4034                                                                                 ));
4035                                                                                 continue;
4036                                                                         }
4037                                                                 },
4038                                                                 HTLCForwardInfo::AddHTLC { .. } => {
4039                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
4040                                                                 },
4041                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
4042                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
4043                                                                         if let Err(e) = chan.queue_fail_htlc(
4044                                                                                 htlc_id, err_packet, &self.logger
4045                                                                         ) {
4046                                                                                 if let ChannelError::Ignore(msg) = e {
4047                                                                                         log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
4048                                                                                 } else {
4049                                                                                         panic!("Stated return value requirements in queue_fail_htlc() were not met");
4050                                                                                 }
4051                                                                                 // fail-backs are best-effort, we probably already have one
4052                                                                                 // pending, and if not that's OK, if not, the channel is on
4053                                                                                 // the chain and sending the HTLC-Timeout is their problem.
4054                                                                                 continue;
4055                                                                         }
4056                                                                 },
4057                                                         }
4058                                                 }
4059                                         } else {
4060                                                 forwarding_channel_not_found!();
4061                                                 continue;
4062                                         }
4063                                 } else {
4064                                         'next_forwardable_htlc: for forward_info in pending_forwards.drain(..) {
4065                                                 match forward_info {
4066                                                         HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
4067                                                                 prev_short_channel_id, prev_htlc_id, prev_funding_outpoint, prev_user_channel_id,
4068                                                                 forward_info: PendingHTLCInfo {
4069                                                                         routing, incoming_shared_secret, payment_hash, incoming_amt_msat, outgoing_amt_msat,
4070                                                                         skimmed_fee_msat, ..
4071                                                                 }
4072                                                         }) => {
4073                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret, mut onion_fields) = match routing {
4074                                                                         PendingHTLCRouting::Receive { payment_data, payment_metadata, incoming_cltv_expiry, phantom_shared_secret, custom_tlvs } => {
4075                                                                                 let _legacy_hop_data = Some(payment_data.clone());
4076                                                                                 let onion_fields = RecipientOnionFields { payment_secret: Some(payment_data.payment_secret),
4077                                                                                                 payment_metadata, custom_tlvs };
4078                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data },
4079                                                                                         Some(payment_data), phantom_shared_secret, onion_fields)
4080                                                                         },
4081                                                                         PendingHTLCRouting::ReceiveKeysend { payment_data, payment_preimage, payment_metadata, incoming_cltv_expiry, custom_tlvs } => {
4082                                                                                 let onion_fields = RecipientOnionFields {
4083                                                                                         payment_secret: payment_data.as_ref().map(|data| data.payment_secret),
4084                                                                                         payment_metadata,
4085                                                                                         custom_tlvs,
4086                                                                                 };
4087                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage),
4088                                                                                         payment_data, None, onion_fields)
4089                                                                         },
4090                                                                         _ => {
4091                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
4092                                                                         }
4093                                                                 };
4094                                                                 let claimable_htlc = ClaimableHTLC {
4095                                                                         prev_hop: HTLCPreviousHopData {
4096                                                                                 short_channel_id: prev_short_channel_id,
4097                                                                                 user_channel_id: Some(prev_user_channel_id),
4098                                                                                 outpoint: prev_funding_outpoint,
4099                                                                                 htlc_id: prev_htlc_id,
4100                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
4101                                                                                 phantom_shared_secret,
4102                                                                         },
4103                                                                         // We differentiate the received value from the sender intended value
4104                                                                         // if possible so that we don't prematurely mark MPP payments complete
4105                                                                         // if routing nodes overpay
4106                                                                         value: incoming_amt_msat.unwrap_or(outgoing_amt_msat),
4107                                                                         sender_intended_value: outgoing_amt_msat,
4108                                                                         timer_ticks: 0,
4109                                                                         total_value_received: None,
4110                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { outgoing_amt_msat },
4111                                                                         cltv_expiry,
4112                                                                         onion_payload,
4113                                                                         counterparty_skimmed_fee_msat: skimmed_fee_msat,
4114                                                                 };
4115
4116                                                                 let mut committed_to_claimable = false;
4117
4118                                                                 macro_rules! fail_htlc {
4119                                                                         ($htlc: expr, $payment_hash: expr) => {
4120                                                                                 debug_assert!(!committed_to_claimable);
4121                                                                                 let mut htlc_msat_height_data = $htlc.value.to_be_bytes().to_vec();
4122                                                                                 htlc_msat_height_data.extend_from_slice(
4123                                                                                         &self.best_block.read().unwrap().height().to_be_bytes(),
4124                                                                                 );
4125                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
4126                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
4127                                                                                                 user_channel_id: $htlc.prev_hop.user_channel_id,
4128                                                                                                 outpoint: prev_funding_outpoint,
4129                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
4130                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
4131                                                                                                 phantom_shared_secret,
4132                                                                                         }), payment_hash,
4133                                                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
4134                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
4135                                                                                 ));
4136                                                                                 continue 'next_forwardable_htlc;
4137                                                                         }
4138                                                                 }
4139                                                                 let phantom_shared_secret = claimable_htlc.prev_hop.phantom_shared_secret;
4140                                                                 let mut receiver_node_id = self.our_network_pubkey;
4141                                                                 if phantom_shared_secret.is_some() {
4142                                                                         receiver_node_id = self.node_signer.get_node_id(Recipient::PhantomNode)
4143                                                                                 .expect("Failed to get node_id for phantom node recipient");
4144                                                                 }
4145
4146                                                                 macro_rules! check_total_value {
4147                                                                         ($purpose: expr) => {{
4148                                                                                 let mut payment_claimable_generated = false;
4149                                                                                 let is_keysend = match $purpose {
4150                                                                                         events::PaymentPurpose::SpontaneousPayment(_) => true,
4151                                                                                         events::PaymentPurpose::InvoicePayment { .. } => false,
4152                                                                                 };
4153                                                                                 let mut claimable_payments = self.claimable_payments.lock().unwrap();
4154                                                                                 if claimable_payments.pending_claiming_payments.contains_key(&payment_hash) {
4155                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4156                                                                                 }
4157                                                                                 let ref mut claimable_payment = claimable_payments.claimable_payments
4158                                                                                         .entry(payment_hash)
4159                                                                                         // Note that if we insert here we MUST NOT fail_htlc!()
4160                                                                                         .or_insert_with(|| {
4161                                                                                                 committed_to_claimable = true;
4162                                                                                                 ClaimablePayment {
4163                                                                                                         purpose: $purpose.clone(), htlcs: Vec::new(), onion_fields: None,
4164                                                                                                 }
4165                                                                                         });
4166                                                                                 if $purpose != claimable_payment.purpose {
4167                                                                                         let log_keysend = |keysend| if keysend { "keysend" } else { "non-keysend" };
4168                                                                                         log_trace!(self.logger, "Failing new {} HTLC with payment_hash {} as we already had an existing {} HTLC with the same payment hash", log_keysend(is_keysend), &payment_hash, log_keysend(!is_keysend));
4169                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4170                                                                                 }
4171                                                                                 if !self.default_configuration.accept_mpp_keysend && is_keysend && !claimable_payment.htlcs.is_empty() {
4172                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash and our config states we don't accept MPP keysend", &payment_hash);
4173                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4174                                                                                 }
4175                                                                                 if let Some(earlier_fields) = &mut claimable_payment.onion_fields {
4176                                                                                         if earlier_fields.check_merge(&mut onion_fields).is_err() {
4177                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4178                                                                                         }
4179                                                                                 } else {
4180                                                                                         claimable_payment.onion_fields = Some(onion_fields);
4181                                                                                 }
4182                                                                                 let ref mut htlcs = &mut claimable_payment.htlcs;
4183                                                                                 let mut total_value = claimable_htlc.sender_intended_value;
4184                                                                                 let mut earliest_expiry = claimable_htlc.cltv_expiry;
4185                                                                                 for htlc in htlcs.iter() {
4186                                                                                         total_value += htlc.sender_intended_value;
4187                                                                                         earliest_expiry = cmp::min(earliest_expiry, htlc.cltv_expiry);
4188                                                                                         if htlc.total_msat != claimable_htlc.total_msat {
4189                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
4190                                                                                                         &payment_hash, claimable_htlc.total_msat, htlc.total_msat);
4191                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
4192                                                                                         }
4193                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
4194                                                                                 }
4195                                                                                 // The condition determining whether an MPP is complete must
4196                                                                                 // match exactly the condition used in `timer_tick_occurred`
4197                                                                                 if total_value >= msgs::MAX_VALUE_MSAT {
4198                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4199                                                                                 } else if total_value - claimable_htlc.sender_intended_value >= claimable_htlc.total_msat {
4200                                                                                         log_trace!(self.logger, "Failing HTLC with payment_hash {} as payment is already claimable",
4201                                                                                                 &payment_hash);
4202                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4203                                                                                 } else if total_value >= claimable_htlc.total_msat {
4204                                                                                         #[allow(unused_assignments)] {
4205                                                                                                 committed_to_claimable = true;
4206                                                                                         }
4207                                                                                         let prev_channel_id = prev_funding_outpoint.to_channel_id();
4208                                                                                         htlcs.push(claimable_htlc);
4209                                                                                         let amount_msat = htlcs.iter().map(|htlc| htlc.value).sum();
4210                                                                                         htlcs.iter_mut().for_each(|htlc| htlc.total_value_received = Some(amount_msat));
4211                                                                                         let counterparty_skimmed_fee_msat = htlcs.iter()
4212                                                                                                 .map(|htlc| htlc.counterparty_skimmed_fee_msat.unwrap_or(0)).sum();
4213                                                                                         debug_assert!(total_value.saturating_sub(amount_msat) <=
4214                                                                                                 counterparty_skimmed_fee_msat);
4215                                                                                         new_events.push_back((events::Event::PaymentClaimable {
4216                                                                                                 receiver_node_id: Some(receiver_node_id),
4217                                                                                                 payment_hash,
4218                                                                                                 purpose: $purpose,
4219                                                                                                 amount_msat,
4220                                                                                                 counterparty_skimmed_fee_msat,
4221                                                                                                 via_channel_id: Some(prev_channel_id),
4222                                                                                                 via_user_channel_id: Some(prev_user_channel_id),
4223                                                                                                 claim_deadline: Some(earliest_expiry - HTLC_FAIL_BACK_BUFFER),
4224                                                                                                 onion_fields: claimable_payment.onion_fields.clone(),
4225                                                                                         }, None));
4226                                                                                         payment_claimable_generated = true;
4227                                                                                 } else {
4228                                                                                         // Nothing to do - we haven't reached the total
4229                                                                                         // payment value yet, wait until we receive more
4230                                                                                         // MPP parts.
4231                                                                                         htlcs.push(claimable_htlc);
4232                                                                                         #[allow(unused_assignments)] {
4233                                                                                                 committed_to_claimable = true;
4234                                                                                         }
4235                                                                                 }
4236                                                                                 payment_claimable_generated
4237                                                                         }}
4238                                                                 }
4239
4240                                                                 // Check that the payment hash and secret are known. Note that we
4241                                                                 // MUST take care to handle the "unknown payment hash" and
4242                                                                 // "incorrect payment secret" cases here identically or we'd expose
4243                                                                 // that we are the ultimate recipient of the given payment hash.
4244                                                                 // Further, we must not expose whether we have any other HTLCs
4245                                                                 // associated with the same payment_hash pending or not.
4246                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
4247                                                                 match payment_secrets.entry(payment_hash) {
4248                                                                         hash_map::Entry::Vacant(_) => {
4249                                                                                 match claimable_htlc.onion_payload {
4250                                                                                         OnionPayload::Invoice { .. } => {
4251                                                                                                 let payment_data = payment_data.unwrap();
4252                                                                                                 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) {
4253                                                                                                         Ok(result) => result,
4254                                                                                                         Err(()) => {
4255                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as payment verification failed", &payment_hash);
4256                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4257                                                                                                         }
4258                                                                                                 };
4259                                                                                                 if let Some(min_final_cltv_expiry_delta) = min_final_cltv_expiry_delta {
4260                                                                                                         let expected_min_expiry_height = (self.current_best_block().height() + min_final_cltv_expiry_delta as u32) as u64;
4261                                                                                                         if (cltv_expiry as u64) < expected_min_expiry_height {
4262                                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as its CLTV expiry was too soon (had {}, earliest expected {})",
4263                                                                                                                         &payment_hash, cltv_expiry, expected_min_expiry_height);
4264                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
4265                                                                                                         }
4266                                                                                                 }
4267                                                                                                 let purpose = events::PaymentPurpose::InvoicePayment {
4268                                                                                                         payment_preimage: payment_preimage.clone(),
4269                                                                                                         payment_secret: payment_data.payment_secret,
4270                                                                                                 };
4271                                                                                                 check_total_value!(purpose);
4272                                                                                         },
4273                                                                                         OnionPayload::Spontaneous(preimage) => {
4274                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
4275                                                                                                 check_total_value!(purpose);
4276                                                                                         }
4277                                                                                 }
4278                                                                         },
4279                                                                         hash_map::Entry::Occupied(inbound_payment) => {
4280                                                                                 if let OnionPayload::Spontaneous(_) = claimable_htlc.onion_payload {
4281                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", &payment_hash);
4282                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4283                                                                                 }
4284                                                                                 let payment_data = payment_data.unwrap();
4285                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
4286                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", &payment_hash);
4287                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4288                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
4289                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
4290                                                                                                 &payment_hash, payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
4291                                                                                         fail_htlc!(claimable_htlc, payment_hash);
4292                                                                                 } else {
4293                                                                                         let purpose = events::PaymentPurpose::InvoicePayment {
4294                                                                                                 payment_preimage: inbound_payment.get().payment_preimage,
4295                                                                                                 payment_secret: payment_data.payment_secret,
4296                                                                                         };
4297                                                                                         let payment_claimable_generated = check_total_value!(purpose);
4298                                                                                         if payment_claimable_generated {
4299                                                                                                 inbound_payment.remove_entry();
4300                                                                                         }
4301                                                                                 }
4302                                                                         },
4303                                                                 };
4304                                                         },
4305                                                         HTLCForwardInfo::FailHTLC { .. } => {
4306                                                                 panic!("Got pending fail of our own HTLC");
4307                                                         }
4308                                                 }
4309                                         }
4310                                 }
4311                         }
4312                 }
4313
4314                 let best_block_height = self.best_block.read().unwrap().height();
4315                 self.pending_outbound_payments.check_retry_payments(&self.router, || self.list_usable_channels(),
4316                         || self.compute_inflight_htlcs(), &self.entropy_source, &self.node_signer, best_block_height,
4317                         &self.pending_events, &self.logger, |args| self.send_payment_along_path(args));
4318
4319                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
4320                         self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
4321                 }
4322                 self.forward_htlcs(&mut phantom_receives);
4323
4324                 // Freeing the holding cell here is relatively redundant - in practice we'll do it when we
4325                 // next get a `get_and_clear_pending_msg_events` call, but some tests rely on it, and it's
4326                 // nice to do the work now if we can rather than while we're trying to get messages in the
4327                 // network stack.
4328                 self.check_free_holding_cells();
4329
4330                 if new_events.is_empty() { return }
4331                 let mut events = self.pending_events.lock().unwrap();
4332                 events.append(&mut new_events);
4333         }
4334
4335         /// Free the background events, generally called from [`PersistenceNotifierGuard`] constructors.
4336         ///
4337         /// Expects the caller to have a total_consistency_lock read lock.
4338         fn process_background_events(&self) -> NotifyOption {
4339                 debug_assert_ne!(self.total_consistency_lock.held_by_thread(), LockHeldState::NotHeldByThread);
4340
4341                 self.background_events_processed_since_startup.store(true, Ordering::Release);
4342
4343                 let mut background_events = Vec::new();
4344                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
4345                 if background_events.is_empty() {
4346                         return NotifyOption::SkipPersist;
4347                 }
4348
4349                 for event in background_events.drain(..) {
4350                         match event {
4351                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((funding_txo, update)) => {
4352                                         // The channel has already been closed, so no use bothering to care about the
4353                                         // monitor updating completing.
4354                                         let _ = self.chain_monitor.update_channel(funding_txo, &update);
4355                                 },
4356                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup { counterparty_node_id, funding_txo, update } => {
4357                                         let mut updated_chan = false;
4358                                         let res = {
4359                                                 let per_peer_state = self.per_peer_state.read().unwrap();
4360                                                 if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4361                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4362                                                         let peer_state = &mut *peer_state_lock;
4363                                                         match peer_state.channel_by_id.entry(funding_txo.to_channel_id()) {
4364                                                                 hash_map::Entry::Occupied(mut chan_phase) => {
4365                                                                         updated_chan = true;
4366                                                                         handle_new_monitor_update!(self, funding_txo, update.clone(),
4367                                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase).map(|_| ())
4368                                                                 },
4369                                                                 hash_map::Entry::Vacant(_) => Ok(()),
4370                                                         }
4371                                                 } else { Ok(()) }
4372                                         };
4373                                         if !updated_chan {
4374                                                 // TODO: Track this as in-flight even though the channel is closed.
4375                                                 let _ = self.chain_monitor.update_channel(funding_txo, &update);
4376                                         }
4377                                         // TODO: If this channel has since closed, we're likely providing a payment
4378                                         // preimage update, which we must ensure is durable! We currently don't,
4379                                         // however, ensure that.
4380                                         if res.is_err() {
4381                                                 log_error!(self.logger,
4382                                                         "Failed to provide ChannelMonitorUpdate to closed channel! This likely lost us a payment preimage!");
4383                                         }
4384                                         let _ = handle_error!(self, res, counterparty_node_id);
4385                                 },
4386                                 BackgroundEvent::MonitorUpdatesComplete { counterparty_node_id, channel_id } => {
4387                                         let per_peer_state = self.per_peer_state.read().unwrap();
4388                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
4389                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4390                                                 let peer_state = &mut *peer_state_lock;
4391                                                 if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&channel_id) {
4392                                                         handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, chan);
4393                                                 } else {
4394                                                         let update_actions = peer_state.monitor_update_blocked_actions
4395                                                                 .remove(&channel_id).unwrap_or(Vec::new());
4396                                                         mem::drop(peer_state_lock);
4397                                                         mem::drop(per_peer_state);
4398                                                         self.handle_monitor_update_completion_actions(update_actions);
4399                                                 }
4400                                         }
4401                                 },
4402                         }
4403                 }
4404                 NotifyOption::DoPersist
4405         }
4406
4407         #[cfg(any(test, feature = "_test_utils"))]
4408         /// Process background events, for functional testing
4409         pub fn test_process_background_events(&self) {
4410                 let _lck = self.total_consistency_lock.read().unwrap();
4411                 let _ = self.process_background_events();
4412         }
4413
4414         fn update_channel_fee(&self, chan_id: &ChannelId, chan: &mut Channel<SP>, new_feerate: u32) -> NotifyOption {
4415                 if !chan.context.is_outbound() { return NotifyOption::SkipPersist; }
4416                 // If the feerate has decreased by less than half, don't bother
4417                 if new_feerate <= chan.context.get_feerate_sat_per_1000_weight() && new_feerate * 2 > chan.context.get_feerate_sat_per_1000_weight() {
4418                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
4419                                 &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4420                         return NotifyOption::SkipPersist;
4421                 }
4422                 if !chan.context.is_live() {
4423                         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).",
4424                                 &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4425                         return NotifyOption::SkipPersist;
4426                 }
4427                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
4428                         &chan_id, chan.context.get_feerate_sat_per_1000_weight(), new_feerate);
4429
4430                 chan.queue_update_fee(new_feerate, &self.fee_estimator, &self.logger);
4431                 NotifyOption::DoPersist
4432         }
4433
4434         #[cfg(fuzzing)]
4435         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
4436         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
4437         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
4438         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
4439         pub fn maybe_update_chan_fees(&self) {
4440                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4441                         let mut should_persist = self.process_background_events();
4442
4443                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4444                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4445
4446                         let per_peer_state = self.per_peer_state.read().unwrap();
4447                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
4448                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4449                                 let peer_state = &mut *peer_state_lock;
4450                                 for (chan_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
4451                                         |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
4452                                 ) {
4453                                         let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4454                                                 min_mempool_feerate
4455                                         } else {
4456                                                 normal_feerate
4457                                         };
4458                                         let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4459                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4460                                 }
4461                         }
4462
4463                         should_persist
4464                 });
4465         }
4466
4467         /// Performs actions which should happen on startup and roughly once per minute thereafter.
4468         ///
4469         /// This currently includes:
4470         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
4471         ///  * Broadcasting [`ChannelUpdate`] messages if we've been disconnected from our peer for more
4472         ///    than a minute, informing the network that they should no longer attempt to route over
4473         ///    the channel.
4474         ///  * Expiring a channel's previous [`ChannelConfig`] if necessary to only allow forwarding HTLCs
4475         ///    with the current [`ChannelConfig`].
4476         ///  * Removing peers which have disconnected but and no longer have any channels.
4477         ///  * Force-closing and removing channels which have not completed establishment in a timely manner.
4478         ///
4479         /// Note that this may cause reentrancy through [`chain::Watch::update_channel`] calls or feerate
4480         /// estimate fetches.
4481         ///
4482         /// [`ChannelUpdate`]: msgs::ChannelUpdate
4483         /// [`ChannelConfig`]: crate::util::config::ChannelConfig
4484         pub fn timer_tick_occurred(&self) {
4485                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
4486                         let mut should_persist = self.process_background_events();
4487
4488                         let normal_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
4489                         let min_mempool_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::MempoolMinimum);
4490
4491                         let mut handle_errors: Vec<(Result<(), _>, _)> = Vec::new();
4492                         let mut timed_out_mpp_htlcs = Vec::new();
4493                         let mut pending_peers_awaiting_removal = Vec::new();
4494
4495                         let process_unfunded_channel_tick = |
4496                                 chan_id: &ChannelId,
4497                                 context: &mut ChannelContext<SP>,
4498                                 unfunded_context: &mut UnfundedChannelContext,
4499                                 pending_msg_events: &mut Vec<MessageSendEvent>,
4500                                 counterparty_node_id: PublicKey,
4501                         | {
4502                                 context.maybe_expire_prev_config();
4503                                 if unfunded_context.should_expire_unfunded_channel() {
4504                                         log_error!(self.logger,
4505                                                 "Force-closing pending channel with ID {} for not establishing in a timely manner", chan_id);
4506                                         update_maps_on_chan_removal!(self, &context);
4507                                         self.issue_channel_close_events(&context, ClosureReason::HolderForceClosed);
4508                                         self.finish_force_close_channel(context.force_shutdown(false));
4509                                         pending_msg_events.push(MessageSendEvent::HandleError {
4510                                                 node_id: counterparty_node_id,
4511                                                 action: msgs::ErrorAction::SendErrorMessage {
4512                                                         msg: msgs::ErrorMessage {
4513                                                                 channel_id: *chan_id,
4514                                                                 data: "Force-closing pending channel due to timeout awaiting establishment handshake".to_owned(),
4515                                                         },
4516                                                 },
4517                                         });
4518                                         false
4519                                 } else {
4520                                         true
4521                                 }
4522                         };
4523
4524                         {
4525                                 let per_peer_state = self.per_peer_state.read().unwrap();
4526                                 for (counterparty_node_id, peer_state_mutex) in per_peer_state.iter() {
4527                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4528                                         let peer_state = &mut *peer_state_lock;
4529                                         let pending_msg_events = &mut peer_state.pending_msg_events;
4530                                         let counterparty_node_id = *counterparty_node_id;
4531                                         peer_state.channel_by_id.retain(|chan_id, phase| {
4532                                                 match phase {
4533                                                         ChannelPhase::Funded(chan) => {
4534                                                                 let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
4535                                                                         min_mempool_feerate
4536                                                                 } else {
4537                                                                         normal_feerate
4538                                                                 };
4539                                                                 let chan_needs_persist = self.update_channel_fee(chan_id, chan, new_feerate);
4540                                                                 if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
4541
4542                                                                 if let Err(e) = chan.timer_check_closing_negotiation_progress() {
4543                                                                         let (needs_close, err) = convert_chan_phase_err!(self, e, chan, chan_id, FUNDED_CHANNEL);
4544                                                                         handle_errors.push((Err(err), counterparty_node_id));
4545                                                                         if needs_close { return false; }
4546                                                                 }
4547
4548                                                                 match chan.channel_update_status() {
4549                                                                         ChannelUpdateStatus::Enabled if !chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(0)),
4550                                                                         ChannelUpdateStatus::Disabled if chan.context.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(0)),
4551                                                                         ChannelUpdateStatus::DisabledStaged(_) if chan.context.is_live()
4552                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
4553                                                                         ChannelUpdateStatus::EnabledStaged(_) if !chan.context.is_live()
4554                                                                                 => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
4555                                                                         ChannelUpdateStatus::DisabledStaged(mut n) if !chan.context.is_live() => {
4556                                                                                 n += 1;
4557                                                                                 if n >= DISABLE_GOSSIP_TICKS {
4558                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
4559                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4560                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4561                                                                                                         msg: update
4562                                                                                                 });
4563                                                                                         }
4564                                                                                         should_persist = NotifyOption::DoPersist;
4565                                                                                 } else {
4566                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged(n));
4567                                                                                 }
4568                                                                         },
4569                                                                         ChannelUpdateStatus::EnabledStaged(mut n) if chan.context.is_live() => {
4570                                                                                 n += 1;
4571                                                                                 if n >= ENABLE_GOSSIP_TICKS {
4572                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
4573                                                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4574                                                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4575                                                                                                         msg: update
4576                                                                                                 });
4577                                                                                         }
4578                                                                                         should_persist = NotifyOption::DoPersist;
4579                                                                                 } else {
4580                                                                                         chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged(n));
4581                                                                                 }
4582                                                                         },
4583                                                                         _ => {},
4584                                                                 }
4585
4586                                                                 chan.context.maybe_expire_prev_config();
4587
4588                                                                 if chan.should_disconnect_peer_awaiting_response() {
4589                                                                         log_debug!(self.logger, "Disconnecting peer {} due to not making any progress on channel {}",
4590                                                                                         counterparty_node_id, chan_id);
4591                                                                         pending_msg_events.push(MessageSendEvent::HandleError {
4592                                                                                 node_id: counterparty_node_id,
4593                                                                                 action: msgs::ErrorAction::DisconnectPeerWithWarning {
4594                                                                                         msg: msgs::WarningMessage {
4595                                                                                                 channel_id: *chan_id,
4596                                                                                                 data: "Disconnecting due to timeout awaiting response".to_owned(),
4597                                                                                         },
4598                                                                                 },
4599                                                                         });
4600                                                                 }
4601
4602                                                                 true
4603                                                         },
4604                                                         ChannelPhase::UnfundedInboundV1(chan) => {
4605                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4606                                                                         pending_msg_events, counterparty_node_id)
4607                                                         },
4608                                                         ChannelPhase::UnfundedOutboundV1(chan) => {
4609                                                                 process_unfunded_channel_tick(chan_id, &mut chan.context, &mut chan.unfunded_context,
4610                                                                         pending_msg_events, counterparty_node_id)
4611                                                         },
4612                                                 }
4613                                         });
4614
4615                                         for (chan_id, req) in peer_state.inbound_channel_request_by_id.iter_mut() {
4616                                                 if { req.ticks_remaining -= 1 ; req.ticks_remaining } <= 0 {
4617                                                         log_error!(self.logger, "Force-closing unaccepted inbound channel {} for not accepting in a timely manner", &chan_id);
4618                                                         peer_state.pending_msg_events.push(
4619                                                                 events::MessageSendEvent::HandleError {
4620                                                                         node_id: counterparty_node_id,
4621                                                                         action: msgs::ErrorAction::SendErrorMessage {
4622                                                                                 msg: msgs::ErrorMessage { channel_id: chan_id.clone(), data: "Channel force-closed".to_owned() }
4623                                                                         },
4624                                                                 }
4625                                                         );
4626                                                 }
4627                                         }
4628                                         peer_state.inbound_channel_request_by_id.retain(|_, req| req.ticks_remaining > 0);
4629
4630                                         if peer_state.ok_to_remove(true) {
4631                                                 pending_peers_awaiting_removal.push(counterparty_node_id);
4632                                         }
4633                                 }
4634                         }
4635
4636                         // When a peer disconnects but still has channels, the peer's `peer_state` entry in the
4637                         // `per_peer_state` is not removed by the `peer_disconnected` function. If the channels
4638                         // of to that peer is later closed while still being disconnected (i.e. force closed),
4639                         // we therefore need to remove the peer from `peer_state` separately.
4640                         // To avoid having to take the `per_peer_state` `write` lock once the channels are
4641                         // closed, we instead remove such peers awaiting removal here on a timer, to limit the
4642                         // negative effects on parallelism as much as possible.
4643                         if pending_peers_awaiting_removal.len() > 0 {
4644                                 let mut per_peer_state = self.per_peer_state.write().unwrap();
4645                                 for counterparty_node_id in pending_peers_awaiting_removal {
4646                                         match per_peer_state.entry(counterparty_node_id) {
4647                                                 hash_map::Entry::Occupied(entry) => {
4648                                                         // Remove the entry if the peer is still disconnected and we still
4649                                                         // have no channels to the peer.
4650                                                         let remove_entry = {
4651                                                                 let peer_state = entry.get().lock().unwrap();
4652                                                                 peer_state.ok_to_remove(true)
4653                                                         };
4654                                                         if remove_entry {
4655                                                                 entry.remove_entry();
4656                                                         }
4657                                                 },
4658                                                 hash_map::Entry::Vacant(_) => { /* The PeerState has already been removed */ }
4659                                         }
4660                                 }
4661                         }
4662
4663                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
4664                                 if payment.htlcs.is_empty() {
4665                                         // This should be unreachable
4666                                         debug_assert!(false);
4667                                         return false;
4668                                 }
4669                                 if let OnionPayload::Invoice { .. } = payment.htlcs[0].onion_payload {
4670                                         // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
4671                                         // In this case we're not going to handle any timeouts of the parts here.
4672                                         // This condition determining whether the MPP is complete here must match
4673                                         // exactly the condition used in `process_pending_htlc_forwards`.
4674                                         if payment.htlcs[0].total_msat <= payment.htlcs.iter()
4675                                                 .fold(0, |total, htlc| total + htlc.sender_intended_value)
4676                                         {
4677                                                 return true;
4678                                         } else if payment.htlcs.iter_mut().any(|htlc| {
4679                                                 htlc.timer_ticks += 1;
4680                                                 return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
4681                                         }) {
4682                                                 timed_out_mpp_htlcs.extend(payment.htlcs.drain(..)
4683                                                         .map(|htlc: ClaimableHTLC| (htlc.prev_hop, *payment_hash)));
4684                                                 return false;
4685                                         }
4686                                 }
4687                                 true
4688                         });
4689
4690                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
4691                                 let source = HTLCSource::PreviousHopData(htlc_source.0.clone());
4692                                 let reason = HTLCFailReason::from_failure_code(23);
4693                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
4694                                 self.fail_htlc_backwards_internal(&source, &htlc_source.1, &reason, receiver);
4695                         }
4696
4697                         for (err, counterparty_node_id) in handle_errors.drain(..) {
4698                                 let _ = handle_error!(self, err, counterparty_node_id);
4699                         }
4700
4701                         self.pending_outbound_payments.remove_stale_payments(&self.pending_events);
4702
4703                         // Technically we don't need to do this here, but if we have holding cell entries in a
4704                         // channel that need freeing, it's better to do that here and block a background task
4705                         // than block the message queueing pipeline.
4706                         if self.check_free_holding_cells() {
4707                                 should_persist = NotifyOption::DoPersist;
4708                         }
4709
4710                         should_persist
4711                 });
4712         }
4713
4714         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
4715         /// after a PaymentClaimable event, failing the HTLC back to its origin and freeing resources
4716         /// along the path (including in our own channel on which we received it).
4717         ///
4718         /// Note that in some cases around unclean shutdown, it is possible the payment may have
4719         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
4720         /// second copy of) the [`events::Event::PaymentClaimable`] event. Alternatively, the payment
4721         /// may have already been failed automatically by LDK if it was nearing its expiration time.
4722         ///
4723         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
4724         /// [`ChannelManager::claim_funds`]), you should still monitor for
4725         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
4726         /// startup during which time claims that were in-progress at shutdown may be replayed.
4727         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
4728                 self.fail_htlc_backwards_with_reason(payment_hash, FailureCode::IncorrectOrUnknownPaymentDetails);
4729         }
4730
4731         /// This is a variant of [`ChannelManager::fail_htlc_backwards`] that allows you to specify the
4732         /// reason for the failure.
4733         ///
4734         /// See [`FailureCode`] for valid failure codes.
4735         pub fn fail_htlc_backwards_with_reason(&self, payment_hash: &PaymentHash, failure_code: FailureCode) {
4736                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4737
4738                 let removed_source = self.claimable_payments.lock().unwrap().claimable_payments.remove(payment_hash);
4739                 if let Some(payment) = removed_source {
4740                         for htlc in payment.htlcs {
4741                                 let reason = self.get_htlc_fail_reason_from_failure_code(failure_code, &htlc);
4742                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4743                                 let receiver = HTLCDestination::FailedPayment { payment_hash: *payment_hash };
4744                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4745                         }
4746                 }
4747         }
4748
4749         /// Gets error data to form an [`HTLCFailReason`] given a [`FailureCode`] and [`ClaimableHTLC`].
4750         fn get_htlc_fail_reason_from_failure_code(&self, failure_code: FailureCode, htlc: &ClaimableHTLC) -> HTLCFailReason {
4751                 match failure_code {
4752                         FailureCode::TemporaryNodeFailure => HTLCFailReason::from_failure_code(failure_code.into()),
4753                         FailureCode::RequiredNodeFeatureMissing => HTLCFailReason::from_failure_code(failure_code.into()),
4754                         FailureCode::IncorrectOrUnknownPaymentDetails => {
4755                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
4756                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
4757                                 HTLCFailReason::reason(failure_code.into(), htlc_msat_height_data)
4758                         },
4759                         FailureCode::InvalidOnionPayload(data) => {
4760                                 let fail_data = match data {
4761                                         Some((typ, offset)) => [BigSize(typ).encode(), offset.encode()].concat(),
4762                                         None => Vec::new(),
4763                                 };
4764                                 HTLCFailReason::reason(failure_code.into(), fail_data)
4765                         }
4766                 }
4767         }
4768
4769         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4770         /// that we want to return and a channel.
4771         ///
4772         /// This is for failures on the channel on which the HTLC was *received*, not failures
4773         /// forwarding
4774         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4775                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
4776                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
4777                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
4778                 // an inbound SCID alias before the real SCID.
4779                 let scid_pref = if chan.context.should_announce() {
4780                         chan.context.get_short_channel_id().or(chan.context.latest_inbound_scid_alias())
4781                 } else {
4782                         chan.context.latest_inbound_scid_alias().or(chan.context.get_short_channel_id())
4783                 };
4784                 if let Some(scid) = scid_pref {
4785                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
4786                 } else {
4787                         (0x4000|10, Vec::new())
4788                 }
4789         }
4790
4791
4792         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
4793         /// that we want to return and a channel.
4794         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<SP>) -> (u16, Vec<u8>) {
4795                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
4796                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
4797                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
4798                         if desired_err_code == 0x1000 | 20 {
4799                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
4800                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
4801                                 0u16.write(&mut enc).expect("Writes cannot fail");
4802                         }
4803                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
4804                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
4805                         upd.write(&mut enc).expect("Writes cannot fail");
4806                         (desired_err_code, enc.0)
4807                 } else {
4808                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
4809                         // which means we really shouldn't have gotten a payment to be forwarded over this
4810                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
4811                         // PERM|no_such_channel should be fine.
4812                         (0x4000|10, Vec::new())
4813                 }
4814         }
4815
4816         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
4817         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
4818         // be surfaced to the user.
4819         fn fail_holding_cell_htlcs(
4820                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: ChannelId,
4821                 counterparty_node_id: &PublicKey
4822         ) {
4823                 let (failure_code, onion_failure_data) = {
4824                         let per_peer_state = self.per_peer_state.read().unwrap();
4825                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
4826                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
4827                                 let peer_state = &mut *peer_state_lock;
4828                                 match peer_state.channel_by_id.entry(channel_id) {
4829                                         hash_map::Entry::Occupied(chan_phase_entry) => {
4830                                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get() {
4831                                                         self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan)
4832                                                 } else {
4833                                                         // We shouldn't be trying to fail holding cell HTLCs on an unfunded channel.
4834                                                         debug_assert!(false);
4835                                                         (0x4000|10, Vec::new())
4836                                                 }
4837                                         },
4838                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
4839                                 }
4840                         } else { (0x4000|10, Vec::new()) }
4841                 };
4842
4843                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
4844                         let reason = HTLCFailReason::reason(failure_code, onion_failure_data.clone());
4845                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
4846                         self.fail_htlc_backwards_internal(&htlc_src, &payment_hash, &reason, receiver);
4847                 }
4848         }
4849
4850         /// Fails an HTLC backwards to the sender of it to us.
4851         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
4852         fn fail_htlc_backwards_internal(&self, source: &HTLCSource, payment_hash: &PaymentHash, onion_error: &HTLCFailReason, destination: HTLCDestination) {
4853                 // Ensure that no peer state channel storage lock is held when calling this function.
4854                 // This ensures that future code doesn't introduce a lock-order requirement for
4855                 // `forward_htlcs` to be locked after the `per_peer_state` peer locks, which calling
4856                 // this function with any `per_peer_state` peer lock acquired would.
4857                 for (_, peer) in self.per_peer_state.read().unwrap().iter() {
4858                         debug_assert_ne!(peer.held_by_thread(), LockHeldState::HeldByThread);
4859                 }
4860
4861                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
4862                 //identify whether we sent it or not based on the (I presume) very different runtime
4863                 //between the branches here. We should make this async and move it into the forward HTLCs
4864                 //timer handling.
4865
4866                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
4867                 // from block_connected which may run during initialization prior to the chain_monitor
4868                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
4869                 match source {
4870                         HTLCSource::OutboundRoute { ref path, ref session_priv, ref payment_id, .. } => {
4871                                 if self.pending_outbound_payments.fail_htlc(source, payment_hash, onion_error, path,
4872                                         session_priv, payment_id, self.probing_cookie_secret, &self.secp_ctx,
4873                                         &self.pending_events, &self.logger)
4874                                 { self.push_pending_forwards_ev(); }
4875                         },
4876                         HTLCSource::PreviousHopData(HTLCPreviousHopData { ref short_channel_id, ref htlc_id, ref incoming_packet_shared_secret, ref phantom_shared_secret, ref outpoint, .. }) => {
4877                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with {:?}", &payment_hash, onion_error);
4878                                 let err_packet = onion_error.get_encrypted_failure_packet(incoming_packet_shared_secret, phantom_shared_secret);
4879
4880                                 let mut push_forward_ev = false;
4881                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4882                                 if forward_htlcs.is_empty() {
4883                                         push_forward_ev = true;
4884                                 }
4885                                 match forward_htlcs.entry(*short_channel_id) {
4886                                         hash_map::Entry::Occupied(mut entry) => {
4887                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet });
4888                                         },
4889                                         hash_map::Entry::Vacant(entry) => {
4890                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id: *htlc_id, err_packet }));
4891                                         }
4892                                 }
4893                                 mem::drop(forward_htlcs);
4894                                 if push_forward_ev { self.push_pending_forwards_ev(); }
4895                                 let mut pending_events = self.pending_events.lock().unwrap();
4896                                 pending_events.push_back((events::Event::HTLCHandlingFailed {
4897                                         prev_channel_id: outpoint.to_channel_id(),
4898                                         failed_next_destination: destination,
4899                                 }, None));
4900                         },
4901                 }
4902         }
4903
4904         /// Provides a payment preimage in response to [`Event::PaymentClaimable`], generating any
4905         /// [`MessageSendEvent`]s needed to claim the payment.
4906         ///
4907         /// This method is guaranteed to ensure the payment has been claimed but only if the current
4908         /// height is strictly below [`Event::PaymentClaimable::claim_deadline`]. To avoid race
4909         /// conditions, you should wait for an [`Event::PaymentClaimed`] before considering the payment
4910         /// successful. It will generally be available in the next [`process_pending_events`] call.
4911         ///
4912         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4913         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentClaimable`
4914         /// event matches your expectation. If you fail to do so and call this method, you may provide
4915         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4916         ///
4917         /// This function will fail the payment if it has custom TLVs with even type numbers, as we
4918         /// will assume they are unknown. If you intend to accept even custom TLVs, you should use
4919         /// [`claim_funds_with_known_custom_tlvs`].
4920         ///
4921         /// [`Event::PaymentClaimable`]: crate::events::Event::PaymentClaimable
4922         /// [`Event::PaymentClaimable::claim_deadline`]: crate::events::Event::PaymentClaimable::claim_deadline
4923         /// [`Event::PaymentClaimed`]: crate::events::Event::PaymentClaimed
4924         /// [`process_pending_events`]: EventsProvider::process_pending_events
4925         /// [`create_inbound_payment`]: Self::create_inbound_payment
4926         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4927         /// [`claim_funds_with_known_custom_tlvs`]: Self::claim_funds_with_known_custom_tlvs
4928         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4929                 self.claim_payment_internal(payment_preimage, false);
4930         }
4931
4932         /// This is a variant of [`claim_funds`] that allows accepting a payment with custom TLVs with
4933         /// even type numbers.
4934         ///
4935         /// # Note
4936         ///
4937         /// You MUST check you've understood all even TLVs before using this to
4938         /// claim, otherwise you may unintentionally agree to some protocol you do not understand.
4939         ///
4940         /// [`claim_funds`]: Self::claim_funds
4941         pub fn claim_funds_with_known_custom_tlvs(&self, payment_preimage: PaymentPreimage) {
4942                 self.claim_payment_internal(payment_preimage, true);
4943         }
4944
4945         fn claim_payment_internal(&self, payment_preimage: PaymentPreimage, custom_tlvs_known: bool) {
4946                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4947
4948                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
4949
4950                 let mut sources = {
4951                         let mut claimable_payments = self.claimable_payments.lock().unwrap();
4952                         if let Some(payment) = claimable_payments.claimable_payments.remove(&payment_hash) {
4953                                 let mut receiver_node_id = self.our_network_pubkey;
4954                                 for htlc in payment.htlcs.iter() {
4955                                         if htlc.prev_hop.phantom_shared_secret.is_some() {
4956                                                 let phantom_pubkey = self.node_signer.get_node_id(Recipient::PhantomNode)
4957                                                         .expect("Failed to get node_id for phantom node recipient");
4958                                                 receiver_node_id = phantom_pubkey;
4959                                                 break;
4960                                         }
4961                                 }
4962
4963                                 let htlcs = payment.htlcs.iter().map(events::ClaimedHTLC::from).collect();
4964                                 let sender_intended_value = payment.htlcs.first().map(|htlc| htlc.total_msat);
4965                                 let dup_purpose = claimable_payments.pending_claiming_payments.insert(payment_hash,
4966                                         ClaimingPayment { amount_msat: payment.htlcs.iter().map(|source| source.value).sum(),
4967                                         payment_purpose: payment.purpose, receiver_node_id, htlcs, sender_intended_value
4968                                 });
4969                                 if dup_purpose.is_some() {
4970                                         debug_assert!(false, "Shouldn't get a duplicate pending claim event ever");
4971                                         log_error!(self.logger, "Got a duplicate pending claimable event on payment hash {}! Please report this bug",
4972                                                 &payment_hash);
4973                                 }
4974
4975                                 if let Some(RecipientOnionFields { ref custom_tlvs, .. }) = payment.onion_fields {
4976                                         if !custom_tlvs_known && custom_tlvs.iter().any(|(typ, _)| typ % 2 == 0) {
4977                                                 log_info!(self.logger, "Rejecting payment with payment hash {} as we cannot accept payment with unknown even TLVs: {}",
4978                                                         &payment_hash, log_iter!(custom_tlvs.iter().map(|(typ, _)| typ).filter(|typ| *typ % 2 == 0)));
4979                                                 claimable_payments.pending_claiming_payments.remove(&payment_hash);
4980                                                 mem::drop(claimable_payments);
4981                                                 for htlc in payment.htlcs {
4982                                                         let reason = self.get_htlc_fail_reason_from_failure_code(FailureCode::InvalidOnionPayload(None), &htlc);
4983                                                         let source = HTLCSource::PreviousHopData(htlc.prev_hop);
4984                                                         let receiver = HTLCDestination::FailedPayment { payment_hash };
4985                                                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
4986                                                 }
4987                                                 return;
4988                                         }
4989                                 }
4990
4991                                 payment.htlcs
4992                         } else { return; }
4993                 };
4994                 debug_assert!(!sources.is_empty());
4995
4996                 // Just in case one HTLC has been failed between when we generated the `PaymentClaimable`
4997                 // and when we got here we need to check that the amount we're about to claim matches the
4998                 // amount we told the user in the last `PaymentClaimable`. We also do a sanity-check that
4999                 // the MPP parts all have the same `total_msat`.
5000                 let mut claimable_amt_msat = 0;
5001                 let mut prev_total_msat = None;
5002                 let mut expected_amt_msat = None;
5003                 let mut valid_mpp = true;
5004                 let mut errs = Vec::new();
5005                 let per_peer_state = self.per_peer_state.read().unwrap();
5006                 for htlc in sources.iter() {
5007                         if prev_total_msat.is_some() && prev_total_msat != Some(htlc.total_msat) {
5008                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different expected total amounts - this should not be reachable!");
5009                                 debug_assert!(false);
5010                                 valid_mpp = false;
5011                                 break;
5012                         }
5013                         prev_total_msat = Some(htlc.total_msat);
5014
5015                         if expected_amt_msat.is_some() && expected_amt_msat != htlc.total_value_received {
5016                                 log_error!(self.logger, "Somehow ended up with an MPP payment with different received total amounts - this should not be reachable!");
5017                                 debug_assert!(false);
5018                                 valid_mpp = false;
5019                                 break;
5020                         }
5021                         expected_amt_msat = htlc.total_value_received;
5022                         claimable_amt_msat += htlc.value;
5023                 }
5024                 mem::drop(per_peer_state);
5025                 if sources.is_empty() || expected_amt_msat.is_none() {
5026                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5027                         log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
5028                         return;
5029                 }
5030                 if claimable_amt_msat != expected_amt_msat.unwrap() {
5031                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5032                         log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
5033                                 expected_amt_msat.unwrap(), claimable_amt_msat);
5034                         return;
5035                 }
5036                 if valid_mpp {
5037                         for htlc in sources.drain(..) {
5038                                 if let Err((pk, err)) = self.claim_funds_from_hop(
5039                                         htlc.prev_hop, payment_preimage,
5040                                         |_| Some(MonitorUpdateCompletionAction::PaymentClaimed { payment_hash }))
5041                                 {
5042                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
5043                                                 // We got a temporary failure updating monitor, but will claim the
5044                                                 // HTLC when the monitor updating is restored (or on chain).
5045                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
5046                                         } else { errs.push((pk, err)); }
5047                                 }
5048                         }
5049                 }
5050                 if !valid_mpp {
5051                         for htlc in sources.drain(..) {
5052                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
5053                                 htlc_msat_height_data.extend_from_slice(&self.best_block.read().unwrap().height().to_be_bytes());
5054                                 let source = HTLCSource::PreviousHopData(htlc.prev_hop);
5055                                 let reason = HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data);
5056                                 let receiver = HTLCDestination::FailedPayment { payment_hash };
5057                                 self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
5058                         }
5059                         self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5060                 }
5061
5062                 // Now we can handle any errors which were generated.
5063                 for (counterparty_node_id, err) in errs.drain(..) {
5064                         let res: Result<(), _> = Err(err);
5065                         let _ = handle_error!(self, res, counterparty_node_id);
5066                 }
5067         }
5068
5069         fn claim_funds_from_hop<ComplFunc: FnOnce(Option<u64>) -> Option<MonitorUpdateCompletionAction>>(&self,
5070                 prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage, completion_action: ComplFunc)
5071         -> Result<(), (PublicKey, MsgHandleErrInternal)> {
5072                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
5073
5074                 // If we haven't yet run background events assume we're still deserializing and shouldn't
5075                 // actually pass `ChannelMonitorUpdate`s to users yet. Instead, queue them up as
5076                 // `BackgroundEvent`s.
5077                 let during_init = !self.background_events_processed_since_startup.load(Ordering::Acquire);
5078
5079                 {
5080                         let per_peer_state = self.per_peer_state.read().unwrap();
5081                         let chan_id = prev_hop.outpoint.to_channel_id();
5082                         let counterparty_node_id_opt = match self.short_to_chan_info.read().unwrap().get(&prev_hop.short_channel_id) {
5083                                 Some((cp_id, _dup_chan_id)) => Some(cp_id.clone()),
5084                                 None => None
5085                         };
5086
5087                         let peer_state_opt = counterparty_node_id_opt.as_ref().map(
5088                                 |counterparty_node_id| per_peer_state.get(counterparty_node_id)
5089                                         .map(|peer_mutex| peer_mutex.lock().unwrap())
5090                         ).unwrap_or(None);
5091
5092                         if peer_state_opt.is_some() {
5093                                 let mut peer_state_lock = peer_state_opt.unwrap();
5094                                 let peer_state = &mut *peer_state_lock;
5095                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(chan_id) {
5096                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5097                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
5098                                                 let fulfill_res = chan.get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger);
5099
5100                                                 if let UpdateFulfillCommitFetch::NewClaim { htlc_value_msat, monitor_update } = fulfill_res {
5101                                                         if let Some(action) = completion_action(Some(htlc_value_msat)) {
5102                                                                 log_trace!(self.logger, "Tracking monitor update completion action for channel {}: {:?}",
5103                                                                         chan_id, action);
5104                                                                 peer_state.monitor_update_blocked_actions.entry(chan_id).or_insert(Vec::new()).push(action);
5105                                                         }
5106                                                         if !during_init {
5107                                                                 let res = handle_new_monitor_update!(self, prev_hop.outpoint, monitor_update, peer_state_lock,
5108                                                                         peer_state, per_peer_state, chan_phase_entry);
5109                                                                 if let Err(e) = res {
5110                                                                         // TODO: This is a *critical* error - we probably updated the outbound edge
5111                                                                         // of the HTLC's monitor with a preimage. We should retry this monitor
5112                                                                         // update over and over again until morale improves.
5113                                                                         log_error!(self.logger, "Failed to update channel monitor with preimage {:?}", payment_preimage);
5114                                                                         return Err((counterparty_node_id, e));
5115                                                                 }
5116                                                         } else {
5117                                                                 // If we're running during init we cannot update a monitor directly -
5118                                                                 // they probably haven't actually been loaded yet. Instead, push the
5119                                                                 // monitor update as a background event.
5120                                                                 self.pending_background_events.lock().unwrap().push(
5121                                                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
5122                                                                                 counterparty_node_id,
5123                                                                                 funding_txo: prev_hop.outpoint,
5124                                                                                 update: monitor_update.clone(),
5125                                                                         });
5126                                                         }
5127                                                 }
5128                                         }
5129                                         return Ok(());
5130                                 }
5131                         }
5132                 }
5133                 let preimage_update = ChannelMonitorUpdate {
5134                         update_id: CLOSED_CHANNEL_UPDATE_ID,
5135                         updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
5136                                 payment_preimage,
5137                         }],
5138                 };
5139
5140                 if !during_init {
5141                         // We update the ChannelMonitor on the backward link, after
5142                         // receiving an `update_fulfill_htlc` from the forward link.
5143                         let update_res = self.chain_monitor.update_channel(prev_hop.outpoint, &preimage_update);
5144                         if update_res != ChannelMonitorUpdateStatus::Completed {
5145                                 // TODO: This needs to be handled somehow - if we receive a monitor update
5146                                 // with a preimage we *must* somehow manage to propagate it to the upstream
5147                                 // channel, or we must have an ability to receive the same event and try
5148                                 // again on restart.
5149                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
5150                                         payment_preimage, update_res);
5151                         }
5152                 } else {
5153                         // If we're running during init we cannot update a monitor directly - they probably
5154                         // haven't actually been loaded yet. Instead, push the monitor update as a background
5155                         // event.
5156                         // Note that while it's safe to use `ClosedMonitorUpdateRegeneratedOnStartup` here (the
5157                         // channel is already closed) we need to ultimately handle the monitor update
5158                         // completion action only after we've completed the monitor update. This is the only
5159                         // way to guarantee this update *will* be regenerated on startup (otherwise if this was
5160                         // from a forwarded HTLC the downstream preimage may be deleted before we claim
5161                         // upstream). Thus, we need to transition to some new `BackgroundEvent` type which will
5162                         // complete the monitor update completion action from `completion_action`.
5163                         self.pending_background_events.lock().unwrap().push(
5164                                 BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((
5165                                         prev_hop.outpoint, preimage_update,
5166                                 )));
5167                 }
5168                 // Note that we do process the completion action here. This totally could be a
5169                 // duplicate claim, but we have no way of knowing without interrogating the
5170                 // `ChannelMonitor` we've provided the above update to. Instead, note that `Event`s are
5171                 // generally always allowed to be duplicative (and it's specifically noted in
5172                 // `PaymentForwarded`).
5173                 self.handle_monitor_update_completion_actions(completion_action(None));
5174                 Ok(())
5175         }
5176
5177         fn finalize_claims(&self, sources: Vec<HTLCSource>) {
5178                 self.pending_outbound_payments.finalize_claims(sources, &self.pending_events);
5179         }
5180
5181         fn claim_funds_internal(&self, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_outpoint: OutPoint) {
5182                 match source {
5183                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
5184                                 debug_assert!(self.background_events_processed_since_startup.load(Ordering::Acquire),
5185                                         "We don't support claim_htlc claims during startup - monitors may not be available yet");
5186                                 let ev_completion_action = EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
5187                                         channel_funding_outpoint: next_channel_outpoint,
5188                                         counterparty_node_id: path.hops[0].pubkey,
5189                                 };
5190                                 self.pending_outbound_payments.claim_htlc(payment_id, payment_preimage,
5191                                         session_priv, path, from_onchain, ev_completion_action, &self.pending_events,
5192                                         &self.logger);
5193                         },
5194                         HTLCSource::PreviousHopData(hop_data) => {
5195                                 let prev_outpoint = hop_data.outpoint;
5196                                 let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5197                                         |htlc_claim_value_msat| {
5198                                                 if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
5199                                                         let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
5200                                                                 Some(claimed_htlc_value - forwarded_htlc_value)
5201                                                         } else { None };
5202
5203                                                         Some(MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5204                                                                 event: events::Event::PaymentForwarded {
5205                                                                         fee_earned_msat,
5206                                                                         claim_from_onchain_tx: from_onchain,
5207                                                                         prev_channel_id: Some(prev_outpoint.to_channel_id()),
5208                                                                         next_channel_id: Some(next_channel_outpoint.to_channel_id()),
5209                                                                         outbound_amount_forwarded_msat: forwarded_htlc_value_msat,
5210                                                                 },
5211                                                                 downstream_counterparty_and_funding_outpoint: None,
5212                                                         })
5213                                                 } else { None }
5214                                         });
5215                                 if let Err((pk, err)) = res {
5216                                         let result: Result<(), _> = Err(err);
5217                                         let _ = handle_error!(self, result, pk);
5218                                 }
5219                         },
5220                 }
5221         }
5222
5223         /// Gets the node_id held by this ChannelManager
5224         pub fn get_our_node_id(&self) -> PublicKey {
5225                 self.our_network_pubkey.clone()
5226         }
5227
5228         fn handle_monitor_update_completion_actions<I: IntoIterator<Item=MonitorUpdateCompletionAction>>(&self, actions: I) {
5229                 for action in actions.into_iter() {
5230                         match action {
5231                                 MonitorUpdateCompletionAction::PaymentClaimed { payment_hash } => {
5232                                         let payment = self.claimable_payments.lock().unwrap().pending_claiming_payments.remove(&payment_hash);
5233                                         if let Some(ClaimingPayment {
5234                                                 amount_msat,
5235                                                 payment_purpose: purpose,
5236                                                 receiver_node_id,
5237                                                 htlcs,
5238                                                 sender_intended_value: sender_intended_total_msat,
5239                                         }) = payment {
5240                                                 self.pending_events.lock().unwrap().push_back((events::Event::PaymentClaimed {
5241                                                         payment_hash,
5242                                                         purpose,
5243                                                         amount_msat,
5244                                                         receiver_node_id: Some(receiver_node_id),
5245                                                         htlcs,
5246                                                         sender_intended_total_msat,
5247                                                 }, None));
5248                                         }
5249                                 },
5250                                 MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
5251                                         event, downstream_counterparty_and_funding_outpoint
5252                                 } => {
5253                                         self.pending_events.lock().unwrap().push_back((event, None));
5254                                         if let Some((node_id, funding_outpoint, blocker)) = downstream_counterparty_and_funding_outpoint {
5255                                                 self.handle_monitor_update_release(node_id, funding_outpoint, Some(blocker));
5256                                         }
5257                                 },
5258                         }
5259                 }
5260         }
5261
5262         /// Handles a channel reentering a functional state, either due to reconnect or a monitor
5263         /// update completion.
5264         fn handle_channel_resumption(&self, pending_msg_events: &mut Vec<MessageSendEvent>,
5265                 channel: &mut Channel<SP>, raa: Option<msgs::RevokeAndACK>,
5266                 commitment_update: Option<msgs::CommitmentUpdate>, order: RAACommitmentOrder,
5267                 pending_forwards: Vec<(PendingHTLCInfo, u64)>, funding_broadcastable: Option<Transaction>,
5268                 channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>)
5269         -> Option<(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)> {
5270                 log_trace!(self.logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {}broadcasting funding, {} channel ready, {} announcement",
5271                         &channel.context.channel_id(),
5272                         if raa.is_some() { "an" } else { "no" },
5273                         if commitment_update.is_some() { "a" } else { "no" }, pending_forwards.len(),
5274                         if funding_broadcastable.is_some() { "" } else { "not " },
5275                         if channel_ready.is_some() { "sending" } else { "without" },
5276                         if announcement_sigs.is_some() { "sending" } else { "without" });
5277
5278                 let mut htlc_forwards = None;
5279
5280                 let counterparty_node_id = channel.context.get_counterparty_node_id();
5281                 if !pending_forwards.is_empty() {
5282                         htlc_forwards = Some((channel.context.get_short_channel_id().unwrap_or(channel.context.outbound_scid_alias()),
5283                                 channel.context.get_funding_txo().unwrap(), channel.context.get_user_id(), pending_forwards));
5284                 }
5285
5286                 if let Some(msg) = channel_ready {
5287                         send_channel_ready!(self, pending_msg_events, channel, msg);
5288                 }
5289                 if let Some(msg) = announcement_sigs {
5290                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5291                                 node_id: counterparty_node_id,
5292                                 msg,
5293                         });
5294                 }
5295
5296                 macro_rules! handle_cs { () => {
5297                         if let Some(update) = commitment_update {
5298                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5299                                         node_id: counterparty_node_id,
5300                                         updates: update,
5301                                 });
5302                         }
5303                 } }
5304                 macro_rules! handle_raa { () => {
5305                         if let Some(revoke_and_ack) = raa {
5306                                 pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
5307                                         node_id: counterparty_node_id,
5308                                         msg: revoke_and_ack,
5309                                 });
5310                         }
5311                 } }
5312                 match order {
5313                         RAACommitmentOrder::CommitmentFirst => {
5314                                 handle_cs!();
5315                                 handle_raa!();
5316                         },
5317                         RAACommitmentOrder::RevokeAndACKFirst => {
5318                                 handle_raa!();
5319                                 handle_cs!();
5320                         },
5321                 }
5322
5323                 if let Some(tx) = funding_broadcastable {
5324                         log_info!(self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
5325                         self.tx_broadcaster.broadcast_transactions(&[&tx]);
5326                 }
5327
5328                 {
5329                         let mut pending_events = self.pending_events.lock().unwrap();
5330                         emit_channel_pending_event!(pending_events, channel);
5331                         emit_channel_ready_event!(pending_events, channel);
5332                 }
5333
5334                 htlc_forwards
5335         }
5336
5337         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64, counterparty_node_id: Option<&PublicKey>) {
5338                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
5339
5340                 let counterparty_node_id = match counterparty_node_id {
5341                         Some(cp_id) => cp_id.clone(),
5342                         None => {
5343                                 // TODO: Once we can rely on the counterparty_node_id from the
5344                                 // monitor event, this and the id_to_peer map should be removed.
5345                                 let id_to_peer = self.id_to_peer.lock().unwrap();
5346                                 match id_to_peer.get(&funding_txo.to_channel_id()) {
5347                                         Some(cp_id) => cp_id.clone(),
5348                                         None => return,
5349                                 }
5350                         }
5351                 };
5352                 let per_peer_state = self.per_peer_state.read().unwrap();
5353                 let mut peer_state_lock;
5354                 let peer_state_mutex_opt = per_peer_state.get(&counterparty_node_id);
5355                 if peer_state_mutex_opt.is_none() { return }
5356                 peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
5357                 let peer_state = &mut *peer_state_lock;
5358                 let channel =
5359                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get_mut(&funding_txo.to_channel_id()) {
5360                                 chan
5361                         } else {
5362                                 let update_actions = peer_state.monitor_update_blocked_actions
5363                                         .remove(&funding_txo.to_channel_id()).unwrap_or(Vec::new());
5364                                 mem::drop(peer_state_lock);
5365                                 mem::drop(per_peer_state);
5366                                 self.handle_monitor_update_completion_actions(update_actions);
5367                                 return;
5368                         };
5369                 let remaining_in_flight =
5370                         if let Some(pending) = peer_state.in_flight_monitor_updates.get_mut(funding_txo) {
5371                                 pending.retain(|upd| upd.update_id > highest_applied_update_id);
5372                                 pending.len()
5373                         } else { 0 };
5374                 log_trace!(self.logger, "ChannelMonitor updated to {}. Current highest is {}. {} pending in-flight updates.",
5375                         highest_applied_update_id, channel.context.get_latest_monitor_update_id(),
5376                         remaining_in_flight);
5377                 if !channel.is_awaiting_monitor_update() || channel.context.get_latest_monitor_update_id() != highest_applied_update_id {
5378                         return;
5379                 }
5380                 handle_monitor_update_completion!(self, peer_state_lock, peer_state, per_peer_state, channel);
5381         }
5382
5383         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
5384         ///
5385         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
5386         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
5387         /// the channel.
5388         ///
5389         /// The `user_channel_id` parameter will be provided back in
5390         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5391         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5392         ///
5393         /// Note that this method will return an error and reject the channel, if it requires support
5394         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
5395         /// used to accept such channels.
5396         ///
5397         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5398         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5399         pub fn accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5400                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
5401         }
5402
5403         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
5404         /// it as confirmed immediately.
5405         ///
5406         /// The `user_channel_id` parameter will be provided back in
5407         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
5408         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
5409         ///
5410         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
5411         /// and (if the counterparty agrees), enables forwarding of payments immediately.
5412         ///
5413         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
5414         /// transaction and blindly assumes that it will eventually confirm.
5415         ///
5416         /// If it does not confirm before we decide to close the channel, or if the funding transaction
5417         /// does not pay to the correct script the correct amount, *you will lose funds*.
5418         ///
5419         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
5420         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
5421         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, user_channel_id: u128) -> Result<(), APIError> {
5422                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
5423         }
5424
5425         fn do_accept_inbound_channel(&self, temporary_channel_id: &ChannelId, counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u128) -> Result<(), APIError> {
5426                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
5427
5428                 let peers_without_funded_channels =
5429                         self.peers_without_funded_channels(|peer| { peer.total_channel_count() > 0 });
5430                 let per_peer_state = self.per_peer_state.read().unwrap();
5431                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5432                         .ok_or_else(|| APIError::ChannelUnavailable { err: format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id) })?;
5433                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5434                 let peer_state = &mut *peer_state_lock;
5435                 let is_only_peer_channel = peer_state.total_channel_count() == 1;
5436
5437                 // Find (and remove) the channel in the unaccepted table. If it's not there, something weird is
5438                 // happening and return an error. N.B. that we create channel with an outbound SCID of zero so
5439                 // that we can delay allocating the SCID until after we're sure that the checks below will
5440                 // succeed.
5441                 let mut channel = match peer_state.inbound_channel_request_by_id.remove(temporary_channel_id) {
5442                         Some(unaccepted_channel) => {
5443                                 let best_block_height = self.best_block.read().unwrap().height();
5444                                 InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5445                                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features,
5446                                         &unaccepted_channel.open_channel_msg, user_channel_id, &self.default_configuration, best_block_height,
5447                                         &self.logger, accept_0conf).map_err(|e| APIError::ChannelUnavailable { err: e.to_string() })
5448                         }
5449                         _ => Err(APIError::APIMisuseError { err: "No such channel awaiting to be accepted.".to_owned() })
5450                 }?;
5451
5452                 if accept_0conf {
5453                         // This should have been correctly configured by the call to InboundV1Channel::new.
5454                         debug_assert!(channel.context.minimum_depth().unwrap() == 0);
5455                 } else if channel.context.get_channel_type().requires_zero_conf() {
5456                         let send_msg_err_event = events::MessageSendEvent::HandleError {
5457                                 node_id: channel.context.get_counterparty_node_id(),
5458                                 action: msgs::ErrorAction::SendErrorMessage{
5459                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
5460                                 }
5461                         };
5462                         peer_state.pending_msg_events.push(send_msg_err_event);
5463                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
5464                 } else {
5465                         // If this peer already has some channels, a new channel won't increase our number of peers
5466                         // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5467                         // channels per-peer we can accept channels from a peer with existing ones.
5468                         if is_only_peer_channel && peers_without_funded_channels >= MAX_UNFUNDED_CHANNEL_PEERS {
5469                                 let send_msg_err_event = events::MessageSendEvent::HandleError {
5470                                         node_id: channel.context.get_counterparty_node_id(),
5471                                         action: msgs::ErrorAction::SendErrorMessage{
5472                                                 msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "Have too many peers with unfunded channels, not accepting new ones".to_owned(), }
5473                                         }
5474                                 };
5475                                 peer_state.pending_msg_events.push(send_msg_err_event);
5476                                 return Err(APIError::APIMisuseError { err: "Too many peers with unfunded channels, refusing to accept new ones".to_owned() });
5477                         }
5478                 }
5479
5480                 // Now that we know we have a channel, assign an outbound SCID alias.
5481                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5482                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5483
5484                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5485                         node_id: channel.context.get_counterparty_node_id(),
5486                         msg: channel.accept_inbound_channel(),
5487                 });
5488
5489                 peer_state.channel_by_id.insert(temporary_channel_id.clone(), ChannelPhase::UnfundedInboundV1(channel));
5490
5491                 Ok(())
5492         }
5493
5494         /// Gets the number of peers which match the given filter and do not have any funded, outbound,
5495         /// or 0-conf channels.
5496         ///
5497         /// The filter is called for each peer and provided with the number of unfunded, inbound, and
5498         /// non-0-conf channels we have with the peer.
5499         fn peers_without_funded_channels<Filter>(&self, maybe_count_peer: Filter) -> usize
5500         where Filter: Fn(&PeerState<SP>) -> bool {
5501                 let mut peers_without_funded_channels = 0;
5502                 let best_block_height = self.best_block.read().unwrap().height();
5503                 {
5504                         let peer_state_lock = self.per_peer_state.read().unwrap();
5505                         for (_, peer_mtx) in peer_state_lock.iter() {
5506                                 let peer = peer_mtx.lock().unwrap();
5507                                 if !maybe_count_peer(&*peer) { continue; }
5508                                 let num_unfunded_channels = Self::unfunded_channel_count(&peer, best_block_height);
5509                                 if num_unfunded_channels == peer.total_channel_count() {
5510                                         peers_without_funded_channels += 1;
5511                                 }
5512                         }
5513                 }
5514                 return peers_without_funded_channels;
5515         }
5516
5517         fn unfunded_channel_count(
5518                 peer: &PeerState<SP>, best_block_height: u32
5519         ) -> usize {
5520                 let mut num_unfunded_channels = 0;
5521                 for (_, phase) in peer.channel_by_id.iter() {
5522                         match phase {
5523                                 ChannelPhase::Funded(chan) => {
5524                                         // This covers non-zero-conf inbound `Channel`s that we are currently monitoring, but those
5525                                         // which have not yet had any confirmations on-chain.
5526                                         if !chan.context.is_outbound() && chan.context.minimum_depth().unwrap_or(1) != 0 &&
5527                                                 chan.context.get_funding_tx_confirmations(best_block_height) == 0
5528                                         {
5529                                                 num_unfunded_channels += 1;
5530                                         }
5531                                 },
5532                                 ChannelPhase::UnfundedInboundV1(chan) => {
5533                                         if chan.context.minimum_depth().unwrap_or(1) != 0 {
5534                                                 num_unfunded_channels += 1;
5535                                         }
5536                                 },
5537                                 ChannelPhase::UnfundedOutboundV1(_) => {
5538                                         // Outbound channels don't contribute to the unfunded count in the DoS context.
5539                                         continue;
5540                                 }
5541                         }
5542                 }
5543                 num_unfunded_channels + peer.inbound_channel_request_by_id.len()
5544         }
5545
5546         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
5547                 if msg.chain_hash != self.genesis_hash {
5548                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
5549                 }
5550
5551                 if !self.default_configuration.accept_inbound_channels {
5552                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5553                 }
5554
5555                 // Get the number of peers with channels, but without funded ones. We don't care too much
5556                 // about peers that never open a channel, so we filter by peers that have at least one
5557                 // channel, and then limit the number of those with unfunded channels.
5558                 let channeled_peers_without_funding =
5559                         self.peers_without_funded_channels(|node| node.total_channel_count() > 0);
5560
5561                 let per_peer_state = self.per_peer_state.read().unwrap();
5562                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5563                     .ok_or_else(|| {
5564                                 debug_assert!(false);
5565                                 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())
5566                         })?;
5567                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5568                 let peer_state = &mut *peer_state_lock;
5569
5570                 // If this peer already has some channels, a new channel won't increase our number of peers
5571                 // with unfunded channels, so as long as we aren't over the maximum number of unfunded
5572                 // channels per-peer we can accept channels from a peer with existing ones.
5573                 if peer_state.total_channel_count() == 0 &&
5574                         channeled_peers_without_funding >= MAX_UNFUNDED_CHANNEL_PEERS &&
5575                         !self.default_configuration.manually_accept_inbound_channels
5576                 {
5577                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5578                                 "Have too many peers with unfunded channels, not accepting new ones".to_owned(),
5579                                 msg.temporary_channel_id.clone()));
5580                 }
5581
5582                 let best_block_height = self.best_block.read().unwrap().height();
5583                 if Self::unfunded_channel_count(peer_state, best_block_height) >= MAX_UNFUNDED_CHANS_PER_PEER {
5584                         return Err(MsgHandleErrInternal::send_err_msg_no_close(
5585                                 format!("Refusing more than {} unfunded channels.", MAX_UNFUNDED_CHANS_PER_PEER),
5586                                 msg.temporary_channel_id.clone()));
5587                 }
5588
5589                 let channel_id = msg.temporary_channel_id;
5590                 let channel_exists = peer_state.has_channel(&channel_id);
5591                 if channel_exists {
5592                         return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision for the same peer!".to_owned(), msg.temporary_channel_id.clone()));
5593                 }
5594
5595                 // If we're doing manual acceptance checks on the channel, then defer creation until we're sure we want to accept.
5596                 if self.default_configuration.manually_accept_inbound_channels {
5597                         let mut pending_events = self.pending_events.lock().unwrap();
5598                         pending_events.push_back((events::Event::OpenChannelRequest {
5599                                 temporary_channel_id: msg.temporary_channel_id.clone(),
5600                                 counterparty_node_id: counterparty_node_id.clone(),
5601                                 funding_satoshis: msg.funding_satoshis,
5602                                 push_msat: msg.push_msat,
5603                                 channel_type: msg.channel_type.clone().unwrap(),
5604                         }, None));
5605                         peer_state.inbound_channel_request_by_id.insert(channel_id, InboundChannelRequest {
5606                                 open_channel_msg: msg.clone(),
5607                                 ticks_remaining: UNACCEPTED_INBOUND_CHANNEL_AGE_LIMIT_TICKS,
5608                         });
5609                         return Ok(());
5610                 }
5611
5612                 // Otherwise create the channel right now.
5613                 let mut random_bytes = [0u8; 16];
5614                 random_bytes.copy_from_slice(&self.entropy_source.get_secure_random_bytes()[..16]);
5615                 let user_channel_id = u128::from_be_bytes(random_bytes);
5616                 let mut channel = match InboundV1Channel::new(&self.fee_estimator, &self.entropy_source, &self.signer_provider,
5617                         counterparty_node_id.clone(), &self.channel_type_features(), &peer_state.latest_features, msg, user_channel_id,
5618                         &self.default_configuration, best_block_height, &self.logger, /*is_0conf=*/false)
5619                 {
5620                         Err(e) => {
5621                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
5622                         },
5623                         Ok(res) => res
5624                 };
5625
5626                 let channel_type = channel.context.get_channel_type();
5627                 if channel_type.requires_zero_conf() {
5628                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
5629                 }
5630                 if channel_type.requires_anchors_zero_fee_htlc_tx() {
5631                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No channels with anchor outputs accepted".to_owned(), msg.temporary_channel_id.clone()));
5632                 }
5633
5634                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
5635                 channel.context.set_outbound_scid_alias(outbound_scid_alias);
5636
5637                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
5638                         node_id: counterparty_node_id.clone(),
5639                         msg: channel.accept_inbound_channel(),
5640                 });
5641                 peer_state.channel_by_id.insert(channel_id, ChannelPhase::UnfundedInboundV1(channel));
5642                 Ok(())
5643         }
5644
5645         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
5646                 let (value, output_script, user_id) = {
5647                         let per_peer_state = self.per_peer_state.read().unwrap();
5648                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5649                                 .ok_or_else(|| {
5650                                         debug_assert!(false);
5651                                         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)
5652                                 })?;
5653                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5654                         let peer_state = &mut *peer_state_lock;
5655                         match peer_state.channel_by_id.entry(msg.temporary_channel_id) {
5656                                 hash_map::Entry::Occupied(mut phase) => {
5657                                         match phase.get_mut() {
5658                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
5659                                                         try_chan_phase_entry!(self, chan.accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &peer_state.latest_features), phase);
5660                                                         (chan.context.get_value_satoshis(), chan.context.get_funding_redeemscript().to_v0_p2wsh(), chan.context.get_user_id())
5661                                                 },
5662                                                 _ => {
5663                                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected accept_channel message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5664                                                 }
5665                                         }
5666                                 },
5667                                 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))
5668                         }
5669                 };
5670                 let mut pending_events = self.pending_events.lock().unwrap();
5671                 pending_events.push_back((events::Event::FundingGenerationReady {
5672                         temporary_channel_id: msg.temporary_channel_id,
5673                         counterparty_node_id: *counterparty_node_id,
5674                         channel_value_satoshis: value,
5675                         output_script,
5676                         user_channel_id: user_id,
5677                 }, None));
5678                 Ok(())
5679         }
5680
5681         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
5682                 let best_block = *self.best_block.read().unwrap();
5683
5684                 let per_peer_state = self.per_peer_state.read().unwrap();
5685                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5686                         .ok_or_else(|| {
5687                                 debug_assert!(false);
5688                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.temporary_channel_id)
5689                         })?;
5690
5691                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5692                 let peer_state = &mut *peer_state_lock;
5693                 let (chan, funding_msg, monitor) =
5694                         match peer_state.channel_by_id.remove(&msg.temporary_channel_id) {
5695                                 Some(ChannelPhase::UnfundedInboundV1(inbound_chan)) => {
5696                                         match inbound_chan.funding_created(msg, best_block, &self.signer_provider, &self.logger) {
5697                                                 Ok(res) => res,
5698                                                 Err((mut inbound_chan, err)) => {
5699                                                         // We've already removed this inbound channel from the map in `PeerState`
5700                                                         // above so at this point we just need to clean up any lingering entries
5701                                                         // concerning this channel as it is safe to do so.
5702                                                         update_maps_on_chan_removal!(self, &inbound_chan.context);
5703                                                         let user_id = inbound_chan.context.get_user_id();
5704                                                         let shutdown_res = inbound_chan.context.force_shutdown(false);
5705                                                         return Err(MsgHandleErrInternal::from_finish_shutdown(format!("{}", err),
5706                                                                 msg.temporary_channel_id, user_id, shutdown_res, None, inbound_chan.context.get_value_satoshis()));
5707                                                 },
5708                                         }
5709                                 },
5710                                 Some(ChannelPhase::Funded(_)) | Some(ChannelPhase::UnfundedOutboundV1(_)) => {
5711                                         return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got an unexpected funding_created message from peer with counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id));
5712                                 },
5713                                 None => return Err(MsgHandleErrInternal::send_err_msg_no_close(format!("Got a message for a channel from the wrong node! No such channel for the passed counterparty_node_id {}", counterparty_node_id), msg.temporary_channel_id))
5714                         };
5715
5716                 match peer_state.channel_by_id.entry(funding_msg.channel_id) {
5717                         hash_map::Entry::Occupied(_) => {
5718                                 Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
5719                         },
5720                         hash_map::Entry::Vacant(e) => {
5721                                 match self.id_to_peer.lock().unwrap().entry(chan.context.channel_id()) {
5722                                         hash_map::Entry::Occupied(_) => {
5723                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
5724                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
5725                                                         funding_msg.channel_id))
5726                                         },
5727                                         hash_map::Entry::Vacant(i_e) => {
5728                                                 i_e.insert(chan.context.get_counterparty_node_id());
5729                                         }
5730                                 }
5731
5732                                 // There's no problem signing a counterparty's funding transaction if our monitor
5733                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
5734                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
5735                                 // until we have persisted our monitor.
5736                                 let new_channel_id = funding_msg.channel_id;
5737                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
5738                                         node_id: counterparty_node_id.clone(),
5739                                         msg: funding_msg,
5740                                 });
5741
5742                                 let monitor_res = self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor);
5743
5744                                 if let ChannelPhase::Funded(chan) = e.insert(ChannelPhase::Funded(chan)) {
5745                                         let mut res = handle_new_monitor_update!(self, monitor_res, peer_state_lock, peer_state,
5746                                                 per_peer_state, chan, MANUALLY_REMOVING_INITIAL_MONITOR,
5747                                                 { peer_state.channel_by_id.remove(&new_channel_id) });
5748
5749                                         // Note that we reply with the new channel_id in error messages if we gave up on the
5750                                         // channel, not the temporary_channel_id. This is compatible with ourselves, but the
5751                                         // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
5752                                         // any messages referencing a previously-closed channel anyway.
5753                                         // We do not propagate the monitor update to the user as it would be for a monitor
5754                                         // that we didn't manage to store (and that we don't care about - we don't respond
5755                                         // with the funding_signed so the channel can never go on chain).
5756                                         if let Err(MsgHandleErrInternal { shutdown_finish: Some((res, _)), .. }) = &mut res {
5757                                                 res.0 = None;
5758                                         }
5759                                         res.map(|_| ())
5760                                 } else {
5761                                         unreachable!("This must be a funded channel as we just inserted it.");
5762                                 }
5763                         }
5764                 }
5765         }
5766
5767         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
5768                 let best_block = *self.best_block.read().unwrap();
5769                 let per_peer_state = self.per_peer_state.read().unwrap();
5770                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5771                         .ok_or_else(|| {
5772                                 debug_assert!(false);
5773                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5774                         })?;
5775
5776                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5777                 let peer_state = &mut *peer_state_lock;
5778                 match peer_state.channel_by_id.entry(msg.channel_id) {
5779                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5780                                 match chan_phase_entry.get_mut() {
5781                                         ChannelPhase::Funded(ref mut chan) => {
5782                                                 let monitor = try_chan_phase_entry!(self,
5783                                                         chan.funding_signed(&msg, best_block, &self.signer_provider, &self.logger), chan_phase_entry);
5784                                                 let update_res = self.chain_monitor.watch_channel(chan.context.get_funding_txo().unwrap(), monitor);
5785                                                 let mut res = handle_new_monitor_update!(self, update_res, peer_state_lock, peer_state, per_peer_state, chan_phase_entry, INITIAL_MONITOR);
5786                                                 if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
5787                                                         // We weren't able to watch the channel to begin with, so no updates should be made on
5788                                                         // it. Previously, full_stack_target found an (unreachable) panic when the
5789                                                         // monitor update contained within `shutdown_finish` was applied.
5790                                                         if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
5791                                                                 shutdown_finish.0.take();
5792                                                         }
5793                                                 }
5794                                                 res.map(|_| ())
5795                                         },
5796                                         _ => {
5797                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id));
5798                                         },
5799                                 }
5800                         },
5801                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5802                 }
5803         }
5804
5805         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
5806                 let per_peer_state = self.per_peer_state.read().unwrap();
5807                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5808                         .ok_or_else(|| {
5809                                 debug_assert!(false);
5810                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5811                         })?;
5812                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5813                 let peer_state = &mut *peer_state_lock;
5814                 match peer_state.channel_by_id.entry(msg.channel_id) {
5815                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5816                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5817                                         let announcement_sigs_opt = try_chan_phase_entry!(self, chan.channel_ready(&msg, &self.node_signer,
5818                                                 self.genesis_hash.clone(), &self.default_configuration, &self.best_block.read().unwrap(), &self.logger), chan_phase_entry);
5819                                         if let Some(announcement_sigs) = announcement_sigs_opt {
5820                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
5821                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5822                                                         node_id: counterparty_node_id.clone(),
5823                                                         msg: announcement_sigs,
5824                                                 });
5825                                         } else if chan.context.is_usable() {
5826                                                 // If we're sending an announcement_signatures, we'll send the (public)
5827                                                 // channel_update after sending a channel_announcement when we receive our
5828                                                 // counterparty's announcement_signatures. Thus, we only bother to send a
5829                                                 // channel_update here if the channel is not public, i.e. we're not sending an
5830                                                 // announcement_signatures.
5831                                                 log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", chan.context.channel_id());
5832                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
5833                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5834                                                                 node_id: counterparty_node_id.clone(),
5835                                                                 msg,
5836                                                         });
5837                                                 }
5838                                         }
5839
5840                                         {
5841                                                 let mut pending_events = self.pending_events.lock().unwrap();
5842                                                 emit_channel_ready_event!(pending_events, chan);
5843                                         }
5844
5845                                         Ok(())
5846                                 } else {
5847                                         try_chan_phase_entry!(self, Err(ChannelError::Close(
5848                                                 "Got a channel_ready message for an unfunded channel!".into())), chan_phase_entry)
5849                                 }
5850                         },
5851                         hash_map::Entry::Vacant(_) => {
5852                                 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))
5853                         }
5854                 }
5855         }
5856
5857         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
5858                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
5859                 let result: Result<(), _> = loop {
5860                         let per_peer_state = self.per_peer_state.read().unwrap();
5861                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5862                                 .ok_or_else(|| {
5863                                         debug_assert!(false);
5864                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5865                                 })?;
5866                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5867                         let peer_state = &mut *peer_state_lock;
5868                         if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5869                                 let phase = chan_phase_entry.get_mut();
5870                                 match phase {
5871                                         ChannelPhase::Funded(chan) => {
5872                                                 if !chan.received_shutdown() {
5873                                                         log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
5874                                                                 msg.channel_id,
5875                                                                 if chan.sent_shutdown() { " after we initiated shutdown" } else { "" });
5876                                                 }
5877
5878                                                 let funding_txo_opt = chan.context.get_funding_txo();
5879                                                 let (shutdown, monitor_update_opt, htlcs) = try_chan_phase_entry!(self,
5880                                                         chan.shutdown(&self.signer_provider, &peer_state.latest_features, &msg), chan_phase_entry);
5881                                                 dropped_htlcs = htlcs;
5882
5883                                                 if let Some(msg) = shutdown {
5884                                                         // We can send the `shutdown` message before updating the `ChannelMonitor`
5885                                                         // here as we don't need the monitor update to complete until we send a
5886                                                         // `shutdown_signed`, which we'll delay if we're pending a monitor update.
5887                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5888                                                                 node_id: *counterparty_node_id,
5889                                                                 msg,
5890                                                         });
5891                                                 }
5892                                                 // Update the monitor with the shutdown script if necessary.
5893                                                 if let Some(monitor_update) = monitor_update_opt {
5894                                                         break handle_new_monitor_update!(self, funding_txo_opt.unwrap(), monitor_update,
5895                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ());
5896                                                 }
5897                                                 break Ok(());
5898                                         },
5899                                         ChannelPhase::UnfundedInboundV1(_) | ChannelPhase::UnfundedOutboundV1(_) => {
5900                                                 let context = phase.context_mut();
5901                                                 log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
5902                                                 self.issue_channel_close_events(&context, ClosureReason::CounterpartyCoopClosedUnfundedChannel);
5903                                                 let mut chan = remove_channel_phase!(self, chan_phase_entry);
5904                                                 self.finish_force_close_channel(chan.context_mut().force_shutdown(false));
5905                                                 return Ok(());
5906                                         },
5907                                 }
5908                         } else {
5909                                 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))
5910                         }
5911                 };
5912                 for htlc_source in dropped_htlcs.drain(..) {
5913                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
5914                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
5915                         self.fail_htlc_backwards_internal(&htlc_source.0, &htlc_source.1, &reason, receiver);
5916                 }
5917
5918                 result
5919         }
5920
5921         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
5922                 let per_peer_state = self.per_peer_state.read().unwrap();
5923                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5924                         .ok_or_else(|| {
5925                                 debug_assert!(false);
5926                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5927                         })?;
5928                 let (tx, chan_option) = {
5929                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5930                         let peer_state = &mut *peer_state_lock;
5931                         match peer_state.channel_by_id.entry(msg.channel_id.clone()) {
5932                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
5933                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5934                                                 let (closing_signed, tx) = try_chan_phase_entry!(self, chan.closing_signed(&self.fee_estimator, &msg), chan_phase_entry);
5935                                                 if let Some(msg) = closing_signed {
5936                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5937                                                                 node_id: counterparty_node_id.clone(),
5938                                                                 msg,
5939                                                         });
5940                                                 }
5941                                                 if tx.is_some() {
5942                                                         // We're done with this channel, we've got a signed closing transaction and
5943                                                         // will send the closing_signed back to the remote peer upon return. This
5944                                                         // also implies there are no pending HTLCs left on the channel, so we can
5945                                                         // fully delete it from tracking (the channel monitor is still around to
5946                                                         // watch for old state broadcasts)!
5947                                                         (tx, Some(remove_channel_phase!(self, chan_phase_entry)))
5948                                                 } else { (tx, None) }
5949                                         } else {
5950                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
5951                                                         "Got a closing_signed message for an unfunded channel!".into())), chan_phase_entry);
5952                                         }
5953                                 },
5954                                 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))
5955                         }
5956                 };
5957                 if let Some(broadcast_tx) = tx {
5958                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
5959                         self.tx_broadcaster.broadcast_transactions(&[&broadcast_tx]);
5960                 }
5961                 if let Some(ChannelPhase::Funded(chan)) = chan_option {
5962                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5963                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5964                                 let peer_state = &mut *peer_state_lock;
5965                                 peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5966                                         msg: update
5967                                 });
5968                         }
5969                         self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
5970                 }
5971                 Ok(())
5972         }
5973
5974         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
5975                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
5976                 //determine the state of the payment based on our response/if we forward anything/the time
5977                 //we take to respond. We should take care to avoid allowing such an attack.
5978                 //
5979                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
5980                 //us repeatedly garbled in different ways, and compare our error messages, which are
5981                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
5982                 //but we should prevent it anyway.
5983
5984                 let decoded_hop_res = self.decode_update_add_htlc_onion(msg);
5985                 let per_peer_state = self.per_peer_state.read().unwrap();
5986                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
5987                         .ok_or_else(|| {
5988                                 debug_assert!(false);
5989                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
5990                         })?;
5991                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
5992                 let peer_state = &mut *peer_state_lock;
5993                 match peer_state.channel_by_id.entry(msg.channel_id) {
5994                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
5995                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
5996                                         let pending_forward_info = match decoded_hop_res {
5997                                                 Ok((next_hop, shared_secret, next_packet_pk_opt)) =>
5998                                                         self.construct_pending_htlc_status(msg, shared_secret, next_hop,
5999                                                                 chan.context.config().accept_underpaying_htlcs, next_packet_pk_opt),
6000                                                 Err(e) => PendingHTLCStatus::Fail(e)
6001                                         };
6002                                         let create_pending_htlc_status = |chan: &Channel<SP>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
6003                                                 // If the update_add is completely bogus, the call will Err and we will close,
6004                                                 // but if we've sent a shutdown and they haven't acknowledged it yet, we just
6005                                                 // want to reject the new HTLC and fail it backwards instead of forwarding.
6006                                                 match pending_forward_info {
6007                                                         PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
6008                                                                 let reason = if (error_code & 0x1000) != 0 {
6009                                                                         let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
6010                                                                         HTLCFailReason::reason(real_code, error_data)
6011                                                                 } else {
6012                                                                         HTLCFailReason::from_failure_code(error_code)
6013                                                                 }.get_encrypted_failure_packet(incoming_shared_secret, &None);
6014                                                                 let msg = msgs::UpdateFailHTLC {
6015                                                                         channel_id: msg.channel_id,
6016                                                                         htlc_id: msg.htlc_id,
6017                                                                         reason
6018                                                                 };
6019                                                                 PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
6020                                                         },
6021                                                         _ => pending_forward_info
6022                                                 }
6023                                         };
6024                                         try_chan_phase_entry!(self, chan.update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.fee_estimator, &self.logger), chan_phase_entry);
6025                                 } else {
6026                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6027                                                 "Got an update_add_htlc message for an unfunded channel!".into())), chan_phase_entry);
6028                                 }
6029                         },
6030                         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))
6031                 }
6032                 Ok(())
6033         }
6034
6035         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
6036                 let funding_txo;
6037                 let (htlc_source, forwarded_htlc_value) = {
6038                         let per_peer_state = self.per_peer_state.read().unwrap();
6039                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6040                                 .ok_or_else(|| {
6041                                         debug_assert!(false);
6042                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6043                                 })?;
6044                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6045                         let peer_state = &mut *peer_state_lock;
6046                         match peer_state.channel_by_id.entry(msg.channel_id) {
6047                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6048                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6049                                                 let res = try_chan_phase_entry!(self, chan.update_fulfill_htlc(&msg), chan_phase_entry);
6050                                                 funding_txo = chan.context.get_funding_txo().expect("We won't accept a fulfill until funded");
6051                                                 res
6052                                         } else {
6053                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6054                                                         "Got an update_fulfill_htlc message for an unfunded channel!".into())), chan_phase_entry);
6055                                         }
6056                                 },
6057                                 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))
6058                         }
6059                 };
6060                 self.claim_funds_internal(htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, funding_txo);
6061                 Ok(())
6062         }
6063
6064         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
6065                 let per_peer_state = self.per_peer_state.read().unwrap();
6066                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6067                         .ok_or_else(|| {
6068                                 debug_assert!(false);
6069                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6070                         })?;
6071                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6072                 let peer_state = &mut *peer_state_lock;
6073                 match peer_state.channel_by_id.entry(msg.channel_id) {
6074                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6075                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6076                                         try_chan_phase_entry!(self, chan.update_fail_htlc(&msg, HTLCFailReason::from_msg(msg)), chan_phase_entry);
6077                                 } else {
6078                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6079                                                 "Got an update_fail_htlc message for an unfunded channel!".into())), chan_phase_entry);
6080                                 }
6081                         },
6082                         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))
6083                 }
6084                 Ok(())
6085         }
6086
6087         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
6088                 let per_peer_state = self.per_peer_state.read().unwrap();
6089                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6090                         .ok_or_else(|| {
6091                                 debug_assert!(false);
6092                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6093                         })?;
6094                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6095                 let peer_state = &mut *peer_state_lock;
6096                 match peer_state.channel_by_id.entry(msg.channel_id) {
6097                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6098                                 if (msg.failure_code & 0x8000) == 0 {
6099                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
6100                                         try_chan_phase_entry!(self, Err(chan_err), chan_phase_entry);
6101                                 }
6102                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6103                                         try_chan_phase_entry!(self, chan.update_fail_malformed_htlc(&msg, HTLCFailReason::reason(msg.failure_code, msg.sha256_of_onion.to_vec())), chan_phase_entry);
6104                                 } else {
6105                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6106                                                 "Got an update_fail_malformed_htlc message for an unfunded channel!".into())), chan_phase_entry);
6107                                 }
6108                                 Ok(())
6109                         },
6110                         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))
6111                 }
6112         }
6113
6114         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
6115                 let per_peer_state = self.per_peer_state.read().unwrap();
6116                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6117                         .ok_or_else(|| {
6118                                 debug_assert!(false);
6119                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6120                         })?;
6121                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6122                 let peer_state = &mut *peer_state_lock;
6123                 match peer_state.channel_by_id.entry(msg.channel_id) {
6124                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6125                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6126                                         let funding_txo = chan.context.get_funding_txo();
6127                                         let monitor_update_opt = try_chan_phase_entry!(self, chan.commitment_signed(&msg, &self.logger), chan_phase_entry);
6128                                         if let Some(monitor_update) = monitor_update_opt {
6129                                                 handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update, peer_state_lock,
6130                                                         peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6131                                         } else { Ok(()) }
6132                                 } else {
6133                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6134                                                 "Got a commitment_signed message for an unfunded channel!".into())), chan_phase_entry);
6135                                 }
6136                         },
6137                         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))
6138                 }
6139         }
6140
6141         #[inline]
6142         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, u128, Vec<(PendingHTLCInfo, u64)>)]) {
6143                 for &mut (prev_short_channel_id, prev_funding_outpoint, prev_user_channel_id, ref mut pending_forwards) in per_source_pending_forwards {
6144                         let mut push_forward_event = false;
6145                         let mut new_intercept_events = VecDeque::new();
6146                         let mut failed_intercept_forwards = Vec::new();
6147                         if !pending_forwards.is_empty() {
6148                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
6149                                         let scid = match forward_info.routing {
6150                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
6151                                                 PendingHTLCRouting::Receive { .. } => 0,
6152                                                 PendingHTLCRouting::ReceiveKeysend { .. } => 0,
6153                                         };
6154                                         // Pull this now to avoid introducing a lock order with `forward_htlcs`.
6155                                         let is_our_scid = self.short_to_chan_info.read().unwrap().contains_key(&scid);
6156
6157                                         let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
6158                                         let forward_htlcs_empty = forward_htlcs.is_empty();
6159                                         match forward_htlcs.entry(scid) {
6160                                                 hash_map::Entry::Occupied(mut entry) => {
6161                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6162                                                                 prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info }));
6163                                                 },
6164                                                 hash_map::Entry::Vacant(entry) => {
6165                                                         if !is_our_scid && forward_info.incoming_amt_msat.is_some() &&
6166                                                            fake_scid::is_valid_intercept(&self.fake_scid_rand_bytes, scid, &self.genesis_hash)
6167                                                         {
6168                                                                 let intercept_id = InterceptId(Sha256::hash(&forward_info.incoming_shared_secret).into_inner());
6169                                                                 let mut pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
6170                                                                 match pending_intercepts.entry(intercept_id) {
6171                                                                         hash_map::Entry::Vacant(entry) => {
6172                                                                                 new_intercept_events.push_back((events::Event::HTLCIntercepted {
6173                                                                                         requested_next_hop_scid: scid,
6174                                                                                         payment_hash: forward_info.payment_hash,
6175                                                                                         inbound_amount_msat: forward_info.incoming_amt_msat.unwrap(),
6176                                                                                         expected_outbound_amount_msat: forward_info.outgoing_amt_msat,
6177                                                                                         intercept_id
6178                                                                                 }, None));
6179                                                                                 entry.insert(PendingAddHTLCInfo {
6180                                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info });
6181                                                                         },
6182                                                                         hash_map::Entry::Occupied(_) => {
6183                                                                                 log_info!(self.logger, "Failed to forward incoming HTLC: detected duplicate intercepted payment over short channel id {}", scid);
6184                                                                                 let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
6185                                                                                         short_channel_id: prev_short_channel_id,
6186                                                                                         user_channel_id: Some(prev_user_channel_id),
6187                                                                                         outpoint: prev_funding_outpoint,
6188                                                                                         htlc_id: prev_htlc_id,
6189                                                                                         incoming_packet_shared_secret: forward_info.incoming_shared_secret,
6190                                                                                         phantom_shared_secret: None,
6191                                                                                 });
6192
6193                                                                                 failed_intercept_forwards.push((htlc_source, forward_info.payment_hash,
6194                                                                                                 HTLCFailReason::from_failure_code(0x4000 | 10),
6195                                                                                                 HTLCDestination::InvalidForward { requested_forward_scid: scid },
6196                                                                                 ));
6197                                                                         }
6198                                                                 }
6199                                                         } else {
6200                                                                 // We don't want to generate a PendingHTLCsForwardable event if only intercepted
6201                                                                 // payments are being processed.
6202                                                                 if forward_htlcs_empty {
6203                                                                         push_forward_event = true;
6204                                                                 }
6205                                                                 entry.insert(vec!(HTLCForwardInfo::AddHTLC(PendingAddHTLCInfo {
6206                                                                         prev_short_channel_id, prev_funding_outpoint, prev_htlc_id, prev_user_channel_id, forward_info })));
6207                                                         }
6208                                                 }
6209                                         }
6210                                 }
6211                         }
6212
6213                         for (htlc_source, payment_hash, failure_reason, destination) in failed_intercept_forwards.drain(..) {
6214                                 self.fail_htlc_backwards_internal(&htlc_source, &payment_hash, &failure_reason, destination);
6215                         }
6216
6217                         if !new_intercept_events.is_empty() {
6218                                 let mut events = self.pending_events.lock().unwrap();
6219                                 events.append(&mut new_intercept_events);
6220                         }
6221                         if push_forward_event { self.push_pending_forwards_ev() }
6222                 }
6223         }
6224
6225         fn push_pending_forwards_ev(&self) {
6226                 let mut pending_events = self.pending_events.lock().unwrap();
6227                 let is_processing_events = self.pending_events_processor.load(Ordering::Acquire);
6228                 let num_forward_events = pending_events.iter().filter(|(ev, _)|
6229                         if let events::Event::PendingHTLCsForwardable { .. } = ev { true } else { false }
6230                 ).count();
6231                 // We only want to push a PendingHTLCsForwardable event if no others are queued. Processing
6232                 // events is done in batches and they are not removed until we're done processing each
6233                 // batch. Since handling a `PendingHTLCsForwardable` event will call back into the
6234                 // `ChannelManager`, we'll still see the original forwarding event not removed. Phantom
6235                 // payments will need an additional forwarding event before being claimed to make them look
6236                 // real by taking more time.
6237                 if (is_processing_events && num_forward_events <= 1) || num_forward_events < 1 {
6238                         pending_events.push_back((Event::PendingHTLCsForwardable {
6239                                 time_forwardable: Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS),
6240                         }, None));
6241                 }
6242         }
6243
6244         /// Checks whether [`ChannelMonitorUpdate`]s generated by the receipt of a remote
6245         /// [`msgs::RevokeAndACK`] should be held for the given channel until some other action
6246         /// completes. Note that this needs to happen in the same [`PeerState`] mutex as any release of
6247         /// the [`ChannelMonitorUpdate`] in question.
6248         fn raa_monitor_updates_held(&self,
6249                 actions_blocking_raa_monitor_updates: &BTreeMap<ChannelId, Vec<RAAMonitorUpdateBlockingAction>>,
6250                 channel_funding_outpoint: OutPoint, counterparty_node_id: PublicKey
6251         ) -> bool {
6252                 actions_blocking_raa_monitor_updates
6253                         .get(&channel_funding_outpoint.to_channel_id()).map(|v| !v.is_empty()).unwrap_or(false)
6254                 || self.pending_events.lock().unwrap().iter().any(|(_, action)| {
6255                         action == &Some(EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6256                                 channel_funding_outpoint,
6257                                 counterparty_node_id,
6258                         })
6259                 })
6260         }
6261
6262         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
6263                 let (htlcs_to_fail, res) = {
6264                         let per_peer_state = self.per_peer_state.read().unwrap();
6265                         let mut peer_state_lock = per_peer_state.get(counterparty_node_id)
6266                                 .ok_or_else(|| {
6267                                         debug_assert!(false);
6268                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6269                                 }).map(|mtx| mtx.lock().unwrap())?;
6270                         let peer_state = &mut *peer_state_lock;
6271                         match peer_state.channel_by_id.entry(msg.channel_id) {
6272                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6273                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6274                                                 let funding_txo_opt = chan.context.get_funding_txo();
6275                                                 let mon_update_blocked = if let Some(funding_txo) = funding_txo_opt {
6276                                                         self.raa_monitor_updates_held(
6277                                                                 &peer_state.actions_blocking_raa_monitor_updates, funding_txo,
6278                                                                 *counterparty_node_id)
6279                                                 } else { false };
6280                                                 let (htlcs_to_fail, monitor_update_opt) = try_chan_phase_entry!(self,
6281                                                         chan.revoke_and_ack(&msg, &self.fee_estimator, &self.logger, mon_update_blocked), chan_phase_entry);
6282                                                 let res = if let Some(monitor_update) = monitor_update_opt {
6283                                                         let funding_txo = funding_txo_opt
6284                                                                 .expect("Funding outpoint must have been set for RAA handling to succeed");
6285                                                         handle_new_monitor_update!(self, funding_txo, monitor_update,
6286                                                                 peer_state_lock, peer_state, per_peer_state, chan_phase_entry).map(|_| ())
6287                                                 } else { Ok(()) };
6288                                                 (htlcs_to_fail, res)
6289                                         } else {
6290                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6291                                                         "Got a revoke_and_ack message for an unfunded channel!".into())), chan_phase_entry);
6292                                         }
6293                                 },
6294                                 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))
6295                         }
6296                 };
6297                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
6298                 res
6299         }
6300
6301         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
6302                 let per_peer_state = self.per_peer_state.read().unwrap();
6303                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6304                         .ok_or_else(|| {
6305                                 debug_assert!(false);
6306                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6307                         })?;
6308                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6309                 let peer_state = &mut *peer_state_lock;
6310                 match peer_state.channel_by_id.entry(msg.channel_id) {
6311                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6312                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6313                                         try_chan_phase_entry!(self, chan.update_fee(&self.fee_estimator, &msg, &self.logger), chan_phase_entry);
6314                                 } else {
6315                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6316                                                 "Got an update_fee message for an unfunded channel!".into())), chan_phase_entry);
6317                                 }
6318                         },
6319                         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))
6320                 }
6321                 Ok(())
6322         }
6323
6324         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
6325                 let per_peer_state = self.per_peer_state.read().unwrap();
6326                 let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6327                         .ok_or_else(|| {
6328                                 debug_assert!(false);
6329                                 MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6330                         })?;
6331                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6332                 let peer_state = &mut *peer_state_lock;
6333                 match peer_state.channel_by_id.entry(msg.channel_id) {
6334                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6335                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6336                                         if !chan.context.is_usable() {
6337                                                 return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
6338                                         }
6339
6340                                         peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
6341                                                 msg: try_chan_phase_entry!(self, chan.announcement_signatures(
6342                                                         &self.node_signer, self.genesis_hash.clone(), self.best_block.read().unwrap().height(),
6343                                                         msg, &self.default_configuration
6344                                                 ), chan_phase_entry),
6345                                                 // Note that announcement_signatures fails if the channel cannot be announced,
6346                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
6347                                                 update_msg: Some(self.get_channel_update_for_broadcast(chan).unwrap()),
6348                                         });
6349                                 } else {
6350                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6351                                                 "Got an announcement_signatures message for an unfunded channel!".into())), chan_phase_entry);
6352                                 }
6353                         },
6354                         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))
6355                 }
6356                 Ok(())
6357         }
6358
6359         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
6360         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
6361                 let (chan_counterparty_node_id, chan_id) = match self.short_to_chan_info.read().unwrap().get(&msg.contents.short_channel_id) {
6362                         Some((cp_id, chan_id)) => (cp_id.clone(), chan_id.clone()),
6363                         None => {
6364                                 // It's not a local channel
6365                                 return Ok(NotifyOption::SkipPersist)
6366                         }
6367                 };
6368                 let per_peer_state = self.per_peer_state.read().unwrap();
6369                 let peer_state_mutex_opt = per_peer_state.get(&chan_counterparty_node_id);
6370                 if peer_state_mutex_opt.is_none() {
6371                         return Ok(NotifyOption::SkipPersist)
6372                 }
6373                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
6374                 let peer_state = &mut *peer_state_lock;
6375                 match peer_state.channel_by_id.entry(chan_id) {
6376                         hash_map::Entry::Occupied(mut chan_phase_entry) => {
6377                                 if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6378                                         if chan.context.get_counterparty_node_id() != *counterparty_node_id {
6379                                                 if chan.context.should_announce() {
6380                                                         // If the announcement is about a channel of ours which is public, some
6381                                                         // other peer may simply be forwarding all its gossip to us. Don't provide
6382                                                         // a scary-looking error message and return Ok instead.
6383                                                         return Ok(NotifyOption::SkipPersist);
6384                                                 }
6385                                                 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));
6386                                         }
6387                                         let were_node_one = self.get_our_node_id().serialize()[..] < chan.context.get_counterparty_node_id().serialize()[..];
6388                                         let msg_from_node_one = msg.contents.flags & 1 == 0;
6389                                         if were_node_one == msg_from_node_one {
6390                                                 return Ok(NotifyOption::SkipPersist);
6391                                         } else {
6392                                                 log_debug!(self.logger, "Received channel_update for channel {}.", chan_id);
6393                                                 try_chan_phase_entry!(self, chan.channel_update(&msg), chan_phase_entry);
6394                                         }
6395                                 } else {
6396                                         return try_chan_phase_entry!(self, Err(ChannelError::Close(
6397                                                 "Got a channel_update for an unfunded channel!".into())), chan_phase_entry);
6398                                 }
6399                         },
6400                         hash_map::Entry::Vacant(_) => return Ok(NotifyOption::SkipPersist)
6401                 }
6402                 Ok(NotifyOption::DoPersist)
6403         }
6404
6405         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
6406                 let htlc_forwards;
6407                 let need_lnd_workaround = {
6408                         let per_peer_state = self.per_peer_state.read().unwrap();
6409
6410                         let peer_state_mutex = per_peer_state.get(counterparty_node_id)
6411                                 .ok_or_else(|| {
6412                                         debug_assert!(false);
6413                                         MsgHandleErrInternal::send_err_msg_no_close(format!("Can't find a peer matching the passed counterparty node_id {}", counterparty_node_id), msg.channel_id)
6414                                 })?;
6415                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6416                         let peer_state = &mut *peer_state_lock;
6417                         match peer_state.channel_by_id.entry(msg.channel_id) {
6418                                 hash_map::Entry::Occupied(mut chan_phase_entry) => {
6419                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6420                                                 // Currently, we expect all holding cell update_adds to be dropped on peer
6421                                                 // disconnect, so Channel's reestablish will never hand us any holding cell
6422                                                 // freed HTLCs to fail backwards. If in the future we no longer drop pending
6423                                                 // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
6424                                                 let responses = try_chan_phase_entry!(self, chan.channel_reestablish(
6425                                                         msg, &self.logger, &self.node_signer, self.genesis_hash,
6426                                                         &self.default_configuration, &*self.best_block.read().unwrap()), chan_phase_entry);
6427                                                 let mut channel_update = None;
6428                                                 if let Some(msg) = responses.shutdown_msg {
6429                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
6430                                                                 node_id: counterparty_node_id.clone(),
6431                                                                 msg,
6432                                                         });
6433                                                 } else if chan.context.is_usable() {
6434                                                         // If the channel is in a usable state (ie the channel is not being shut
6435                                                         // down), send a unicast channel_update to our counterparty to make sure
6436                                                         // they have the latest channel parameters.
6437                                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan) {
6438                                                                 channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
6439                                                                         node_id: chan.context.get_counterparty_node_id(),
6440                                                                         msg,
6441                                                                 });
6442                                                         }
6443                                                 }
6444                                                 let need_lnd_workaround = chan.context.workaround_lnd_bug_4006.take();
6445                                                 htlc_forwards = self.handle_channel_resumption(
6446                                                         &mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
6447                                                         Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
6448                                                 if let Some(upd) = channel_update {
6449                                                         peer_state.pending_msg_events.push(upd);
6450                                                 }
6451                                                 need_lnd_workaround
6452                                         } else {
6453                                                 return try_chan_phase_entry!(self, Err(ChannelError::Close(
6454                                                         "Got a channel_reestablish message for an unfunded channel!".into())), chan_phase_entry);
6455                                         }
6456                                 },
6457                                 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))
6458                         }
6459                 };
6460
6461                 if let Some(forwards) = htlc_forwards {
6462                         self.forward_htlcs(&mut [forwards][..]);
6463                 }
6464
6465                 if let Some(channel_ready_msg) = need_lnd_workaround {
6466                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
6467                 }
6468                 Ok(())
6469         }
6470
6471         /// Process pending events from the [`chain::Watch`], returning whether any events were processed.
6472         fn process_pending_monitor_events(&self) -> bool {
6473                 debug_assert!(self.total_consistency_lock.try_write().is_err()); // Caller holds read lock
6474
6475                 let mut failed_channels = Vec::new();
6476                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
6477                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
6478                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
6479                         for monitor_event in monitor_events.drain(..) {
6480                                 match monitor_event {
6481                                         MonitorEvent::HTLCEvent(htlc_update) => {
6482                                                 if let Some(preimage) = htlc_update.payment_preimage {
6483                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", &preimage);
6484                                                         self.claim_funds_internal(htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint);
6485                                                 } else {
6486                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", &htlc_update.payment_hash);
6487                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
6488                                                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
6489                                                         self.fail_htlc_backwards_internal(&htlc_update.source, &htlc_update.payment_hash, &reason, receiver);
6490                                                 }
6491                                         },
6492                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
6493                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
6494                                                 let counterparty_node_id_opt = match counterparty_node_id {
6495                                                         Some(cp_id) => Some(cp_id),
6496                                                         None => {
6497                                                                 // TODO: Once we can rely on the counterparty_node_id from the
6498                                                                 // monitor event, this and the id_to_peer map should be removed.
6499                                                                 let id_to_peer = self.id_to_peer.lock().unwrap();
6500                                                                 id_to_peer.get(&funding_outpoint.to_channel_id()).cloned()
6501                                                         }
6502                                                 };
6503                                                 if let Some(counterparty_node_id) = counterparty_node_id_opt {
6504                                                         let per_peer_state = self.per_peer_state.read().unwrap();
6505                                                         if let Some(peer_state_mutex) = per_peer_state.get(&counterparty_node_id) {
6506                                                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6507                                                                 let peer_state = &mut *peer_state_lock;
6508                                                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6509                                                                 if let hash_map::Entry::Occupied(chan_phase_entry) = peer_state.channel_by_id.entry(funding_outpoint.to_channel_id()) {
6510                                                                         if let ChannelPhase::Funded(mut chan) = remove_channel_phase!(self, chan_phase_entry) {
6511                                                                                 failed_channels.push(chan.context.force_shutdown(false));
6512                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6513                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6514                                                                                                 msg: update
6515                                                                                         });
6516                                                                                 }
6517                                                                                 let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
6518                                                                                         ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
6519                                                                                 } else {
6520                                                                                         ClosureReason::CommitmentTxConfirmed
6521                                                                                 };
6522                                                                                 self.issue_channel_close_events(&chan.context, reason);
6523                                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
6524                                                                                         node_id: chan.context.get_counterparty_node_id(),
6525                                                                                         action: msgs::ErrorAction::SendErrorMessage {
6526                                                                                                 msg: msgs::ErrorMessage { channel_id: chan.context.channel_id(), data: "Channel force-closed".to_owned() }
6527                                                                                         },
6528                                                                                 });
6529                                                                         }
6530                                                                 }
6531                                                         }
6532                                                 }
6533                                         },
6534                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
6535                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id, counterparty_node_id.as_ref());
6536                                         },
6537                                 }
6538                         }
6539                 }
6540
6541                 for failure in failed_channels.drain(..) {
6542                         self.finish_force_close_channel(failure);
6543                 }
6544
6545                 has_pending_monitor_events
6546         }
6547
6548         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
6549         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
6550         /// update events as a separate process method here.
6551         #[cfg(fuzzing)]
6552         pub fn process_monitor_events(&self) {
6553                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
6554                 self.process_pending_monitor_events();
6555         }
6556
6557         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
6558         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
6559         /// update was applied.
6560         fn check_free_holding_cells(&self) -> bool {
6561                 let mut has_monitor_update = false;
6562                 let mut failed_htlcs = Vec::new();
6563                 let mut handle_errors = Vec::new();
6564
6565                 // Walk our list of channels and find any that need to update. Note that when we do find an
6566                 // update, if it includes actions that must be taken afterwards, we have to drop the
6567                 // per-peer state lock as well as the top level per_peer_state lock. Thus, we loop until we
6568                 // manage to go through all our peers without finding a single channel to update.
6569                 'peer_loop: loop {
6570                         let per_peer_state = self.per_peer_state.read().unwrap();
6571                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6572                                 'chan_loop: loop {
6573                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6574                                         let peer_state: &mut PeerState<_> = &mut *peer_state_lock;
6575                                         for (channel_id, chan) in peer_state.channel_by_id.iter_mut().filter_map(
6576                                                 |(chan_id, phase)| if let ChannelPhase::Funded(chan) = phase { Some((chan_id, chan)) } else { None }
6577                                         ) {
6578                                                 let counterparty_node_id = chan.context.get_counterparty_node_id();
6579                                                 let funding_txo = chan.context.get_funding_txo();
6580                                                 let (monitor_opt, holding_cell_failed_htlcs) =
6581                                                         chan.maybe_free_holding_cell_htlcs(&self.fee_estimator, &self.logger);
6582                                                 if !holding_cell_failed_htlcs.is_empty() {
6583                                                         failed_htlcs.push((holding_cell_failed_htlcs, *channel_id, counterparty_node_id));
6584                                                 }
6585                                                 if let Some(monitor_update) = monitor_opt {
6586                                                         has_monitor_update = true;
6587
6588                                                         let channel_id: ChannelId = *channel_id;
6589                                                         let res = handle_new_monitor_update!(self, funding_txo.unwrap(), monitor_update,
6590                                                                 peer_state_lock, peer_state, per_peer_state, chan, MANUALLY_REMOVING,
6591                                                                 peer_state.channel_by_id.remove(&channel_id));
6592                                                         if res.is_err() {
6593                                                                 handle_errors.push((counterparty_node_id, res));
6594                                                         }
6595                                                         continue 'peer_loop;
6596                                                 }
6597                                         }
6598                                         break 'chan_loop;
6599                                 }
6600                         }
6601                         break 'peer_loop;
6602                 }
6603
6604                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
6605                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
6606                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
6607                 }
6608
6609                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6610                         let _ = handle_error!(self, err, counterparty_node_id);
6611                 }
6612
6613                 has_update
6614         }
6615
6616         /// Check whether any channels have finished removing all pending updates after a shutdown
6617         /// exchange and can now send a closing_signed.
6618         /// Returns whether any closing_signed messages were generated.
6619         fn maybe_generate_initial_closing_signed(&self) -> bool {
6620                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
6621                 let mut has_update = false;
6622                 {
6623                         let per_peer_state = self.per_peer_state.read().unwrap();
6624
6625                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6626                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6627                                 let peer_state = &mut *peer_state_lock;
6628                                 let pending_msg_events = &mut peer_state.pending_msg_events;
6629                                 peer_state.channel_by_id.retain(|channel_id, phase| {
6630                                         match phase {
6631                                                 ChannelPhase::Funded(chan) => {
6632                                                         match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
6633                                                                 Ok((msg_opt, tx_opt)) => {
6634                                                                         if let Some(msg) = msg_opt {
6635                                                                                 has_update = true;
6636                                                                                 pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
6637                                                                                         node_id: chan.context.get_counterparty_node_id(), msg,
6638                                                                                 });
6639                                                                         }
6640                                                                         if let Some(tx) = tx_opt {
6641                                                                                 // We're done with this channel. We got a closing_signed and sent back
6642                                                                                 // a closing_signed with a closing transaction to broadcast.
6643                                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
6644                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
6645                                                                                                 msg: update
6646                                                                                         });
6647                                                                                 }
6648
6649                                                                                 self.issue_channel_close_events(&chan.context, ClosureReason::CooperativeClosure);
6650
6651                                                                                 log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
6652                                                                                 self.tx_broadcaster.broadcast_transactions(&[&tx]);
6653                                                                                 update_maps_on_chan_removal!(self, &chan.context);
6654                                                                                 false
6655                                                                         } else { true }
6656                                                                 },
6657                                                                 Err(e) => {
6658                                                                         has_update = true;
6659                                                                         let (close_channel, res) = convert_chan_phase_err!(self, e, chan, channel_id, FUNDED_CHANNEL);
6660                                                                         handle_errors.push((chan.context.get_counterparty_node_id(), Err(res)));
6661                                                                         !close_channel
6662                                                                 }
6663                                                         }
6664                                                 },
6665                                                 _ => true, // Retain unfunded channels if present.
6666                                         }
6667                                 });
6668                         }
6669                 }
6670
6671                 for (counterparty_node_id, err) in handle_errors.drain(..) {
6672                         let _ = handle_error!(self, err, counterparty_node_id);
6673                 }
6674
6675                 has_update
6676         }
6677
6678         /// Handle a list of channel failures during a block_connected or block_disconnected call,
6679         /// pushing the channel monitor update (if any) to the background events queue and removing the
6680         /// Channel object.
6681         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
6682                 for mut failure in failed_channels.drain(..) {
6683                         // Either a commitment transactions has been confirmed on-chain or
6684                         // Channel::block_disconnected detected that the funding transaction has been
6685                         // reorganized out of the main chain.
6686                         // We cannot broadcast our latest local state via monitor update (as
6687                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
6688                         // so we track the update internally and handle it when the user next calls
6689                         // timer_tick_occurred, guaranteeing we're running normally.
6690                         if let Some((counterparty_node_id, funding_txo, update)) = failure.0.take() {
6691                                 assert_eq!(update.updates.len(), 1);
6692                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
6693                                         assert!(should_broadcast);
6694                                 } else { unreachable!(); }
6695                                 self.pending_background_events.lock().unwrap().push(
6696                                         BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
6697                                                 counterparty_node_id, funding_txo, update
6698                                         });
6699                         }
6700                         self.finish_force_close_channel(failure);
6701                 }
6702         }
6703
6704         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
6705         /// to pay us.
6706         ///
6707         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
6708         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
6709         ///
6710         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentClaimable`], which
6711         /// will have the [`PaymentClaimable::purpose`] be [`PaymentPurpose::InvoicePayment`] with
6712         /// its [`PaymentPurpose::InvoicePayment::payment_preimage`] field filled in. That should then be
6713         /// passed directly to [`claim_funds`].
6714         ///
6715         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
6716         ///
6717         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6718         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6719         ///
6720         /// # Note
6721         ///
6722         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6723         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6724         ///
6725         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6726         ///
6727         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6728         /// on versions of LDK prior to 0.0.114.
6729         ///
6730         /// [`claim_funds`]: Self::claim_funds
6731         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6732         /// [`PaymentClaimable::purpose`]: events::Event::PaymentClaimable::purpose
6733         /// [`PaymentPurpose::InvoicePayment`]: events::PaymentPurpose::InvoicePayment
6734         /// [`PaymentPurpose::InvoicePayment::payment_preimage`]: events::PaymentPurpose::InvoicePayment::payment_preimage
6735         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
6736         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32,
6737                 min_final_cltv_expiry_delta: Option<u16>) -> Result<(PaymentHash, PaymentSecret), ()> {
6738                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs,
6739                         &self.entropy_source, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6740                         min_final_cltv_expiry_delta)
6741         }
6742
6743         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
6744         /// stored external to LDK.
6745         ///
6746         /// A [`PaymentClaimable`] event will only be generated if the [`PaymentSecret`] matches a
6747         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
6748         /// the `min_value_msat` provided here, if one is provided.
6749         ///
6750         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
6751         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
6752         /// payments.
6753         ///
6754         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
6755         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
6756         /// before a [`PaymentClaimable`] event will be generated, ensuring that we do not provide the
6757         /// sender "proof-of-payment" unless they have paid the required amount.
6758         ///
6759         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
6760         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
6761         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
6762         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
6763         /// invoices when no timeout is set.
6764         ///
6765         /// Note that we use block header time to time-out pending inbound payments (with some margin
6766         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
6767         /// accept a payment and generate a [`PaymentClaimable`] event for some time after the expiry.
6768         /// If you need exact expiry semantics, you should enforce them upon receipt of
6769         /// [`PaymentClaimable`].
6770         ///
6771         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry_delta`
6772         /// set to at least [`MIN_FINAL_CLTV_EXPIRY_DELTA`].
6773         ///
6774         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
6775         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
6776         ///
6777         /// # Note
6778         ///
6779         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
6780         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
6781         ///
6782         /// Errors if `min_value_msat` is greater than total bitcoin supply.
6783         ///
6784         /// If `min_final_cltv_expiry_delta` is set to some value, then the payment will not be receivable
6785         /// on versions of LDK prior to 0.0.114.
6786         ///
6787         /// [`create_inbound_payment`]: Self::create_inbound_payment
6788         /// [`PaymentClaimable`]: events::Event::PaymentClaimable
6789         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>,
6790                 invoice_expiry_delta_secs: u32, min_final_cltv_expiry: Option<u16>) -> Result<PaymentSecret, ()> {
6791                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash,
6792                         invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64,
6793                         min_final_cltv_expiry)
6794         }
6795
6796         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
6797         /// previously returned from [`create_inbound_payment`].
6798         ///
6799         /// [`create_inbound_payment`]: Self::create_inbound_payment
6800         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
6801                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
6802         }
6803
6804         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
6805         /// are used when constructing the phantom invoice's route hints.
6806         ///
6807         /// [phantom node payments]: crate::sign::PhantomKeysManager
6808         pub fn get_phantom_scid(&self) -> u64 {
6809                 let best_block_height = self.best_block.read().unwrap().height();
6810                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6811                 loop {
6812                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6813                         // Ensure the generated scid doesn't conflict with a real channel.
6814                         match short_to_chan_info.get(&scid_candidate) {
6815                                 Some(_) => continue,
6816                                 None => return scid_candidate
6817                         }
6818                 }
6819         }
6820
6821         /// Gets route hints for use in receiving [phantom node payments].
6822         ///
6823         /// [phantom node payments]: crate::sign::PhantomKeysManager
6824         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
6825                 PhantomRouteHints {
6826                         channels: self.list_usable_channels(),
6827                         phantom_scid: self.get_phantom_scid(),
6828                         real_node_pubkey: self.get_our_node_id(),
6829                 }
6830         }
6831
6832         /// Gets a fake short channel id for use in receiving intercepted payments. These fake scids are
6833         /// used when constructing the route hints for HTLCs intended to be intercepted. See
6834         /// [`ChannelManager::forward_intercepted_htlc`].
6835         ///
6836         /// Note that this method is not guaranteed to return unique values, you may need to call it a few
6837         /// times to get a unique scid.
6838         pub fn get_intercept_scid(&self) -> u64 {
6839                 let best_block_height = self.best_block.read().unwrap().height();
6840                 let short_to_chan_info = self.short_to_chan_info.read().unwrap();
6841                 loop {
6842                         let scid_candidate = fake_scid::Namespace::Intercept.get_fake_scid(best_block_height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.entropy_source);
6843                         // Ensure the generated scid doesn't conflict with a real channel.
6844                         if short_to_chan_info.contains_key(&scid_candidate) { continue }
6845                         return scid_candidate
6846                 }
6847         }
6848
6849         /// Gets inflight HTLC information by processing pending outbound payments that are in
6850         /// our channels. May be used during pathfinding to account for in-use channel liquidity.
6851         pub fn compute_inflight_htlcs(&self) -> InFlightHtlcs {
6852                 let mut inflight_htlcs = InFlightHtlcs::new();
6853
6854                 let per_peer_state = self.per_peer_state.read().unwrap();
6855                 for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
6856                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
6857                         let peer_state = &mut *peer_state_lock;
6858                         for chan in peer_state.channel_by_id.values().filter_map(
6859                                 |phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }
6860                         ) {
6861                                 for (htlc_source, _) in chan.inflight_htlc_sources() {
6862                                         if let HTLCSource::OutboundRoute { path, .. } = htlc_source {
6863                                                 inflight_htlcs.process_path(path, self.get_our_node_id());
6864                                         }
6865                                 }
6866                         }
6867                 }
6868
6869                 inflight_htlcs
6870         }
6871
6872         #[cfg(any(test, feature = "_test_utils"))]
6873         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
6874                 let events = core::cell::RefCell::new(Vec::new());
6875                 let event_handler = |event: events::Event| events.borrow_mut().push(event);
6876                 self.process_pending_events(&event_handler);
6877                 events.into_inner()
6878         }
6879
6880         #[cfg(feature = "_test_utils")]
6881         pub fn push_pending_event(&self, event: events::Event) {
6882                 let mut events = self.pending_events.lock().unwrap();
6883                 events.push_back((event, None));
6884         }
6885
6886         #[cfg(test)]
6887         pub fn pop_pending_event(&self) -> Option<events::Event> {
6888                 let mut events = self.pending_events.lock().unwrap();
6889                 events.pop_front().map(|(e, _)| e)
6890         }
6891
6892         #[cfg(test)]
6893         pub fn has_pending_payments(&self) -> bool {
6894                 self.pending_outbound_payments.has_pending_payments()
6895         }
6896
6897         #[cfg(test)]
6898         pub fn clear_pending_payments(&self) {
6899                 self.pending_outbound_payments.clear_pending_payments()
6900         }
6901
6902         /// When something which was blocking a channel from updating its [`ChannelMonitor`] (e.g. an
6903         /// [`Event`] being handled) completes, this should be called to restore the channel to normal
6904         /// operation. It will double-check that nothing *else* is also blocking the same channel from
6905         /// making progress and then let any blocked [`ChannelMonitorUpdate`]s fly.
6906         fn handle_monitor_update_release(&self, counterparty_node_id: PublicKey, channel_funding_outpoint: OutPoint, mut completed_blocker: Option<RAAMonitorUpdateBlockingAction>) {
6907                 let mut errors = Vec::new();
6908                 loop {
6909                         let per_peer_state = self.per_peer_state.read().unwrap();
6910                         if let Some(peer_state_mtx) = per_peer_state.get(&counterparty_node_id) {
6911                                 let mut peer_state_lck = peer_state_mtx.lock().unwrap();
6912                                 let peer_state = &mut *peer_state_lck;
6913
6914                                 if let Some(blocker) = completed_blocker.take() {
6915                                         // Only do this on the first iteration of the loop.
6916                                         if let Some(blockers) = peer_state.actions_blocking_raa_monitor_updates
6917                                                 .get_mut(&channel_funding_outpoint.to_channel_id())
6918                                         {
6919                                                 blockers.retain(|iter| iter != &blocker);
6920                                         }
6921                                 }
6922
6923                                 if self.raa_monitor_updates_held(&peer_state.actions_blocking_raa_monitor_updates,
6924                                         channel_funding_outpoint, counterparty_node_id) {
6925                                         // Check that, while holding the peer lock, we don't have anything else
6926                                         // blocking monitor updates for this channel. If we do, release the monitor
6927                                         // update(s) when those blockers complete.
6928                                         log_trace!(self.logger, "Delaying monitor unlock for channel {} as another channel's mon update needs to complete first",
6929                                                 &channel_funding_outpoint.to_channel_id());
6930                                         break;
6931                                 }
6932
6933                                 if let hash_map::Entry::Occupied(mut chan_phase_entry) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
6934                                         if let ChannelPhase::Funded(chan) = chan_phase_entry.get_mut() {
6935                                                 debug_assert_eq!(chan.context.get_funding_txo().unwrap(), channel_funding_outpoint);
6936                                                 if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
6937                                                         log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
6938                                                                 channel_funding_outpoint.to_channel_id());
6939                                                         if let Err(e) = handle_new_monitor_update!(self, channel_funding_outpoint, monitor_update,
6940                                                                 peer_state_lck, peer_state, per_peer_state, chan_phase_entry)
6941                                                         {
6942                                                                 errors.push((e, counterparty_node_id));
6943                                                         }
6944                                                         if further_update_exists {
6945                                                                 // If there are more `ChannelMonitorUpdate`s to process, restart at the
6946                                                                 // top of the loop.
6947                                                                 continue;
6948                                                         }
6949                                                 } else {
6950                                                         log_trace!(self.logger, "Unlocked monitor updating for channel {} without monitors to update",
6951                                                                 channel_funding_outpoint.to_channel_id());
6952                                                 }
6953                                         }
6954                                 }
6955                         } else {
6956                                 log_debug!(self.logger,
6957                                         "Got a release post-RAA monitor update for peer {} but the channel is gone",
6958                                         log_pubkey!(counterparty_node_id));
6959                         }
6960                         break;
6961                 }
6962                 for (err, counterparty_node_id) in errors {
6963                         let res = Err::<(), _>(err);
6964                         let _ = handle_error!(self, res, counterparty_node_id);
6965                 }
6966         }
6967
6968         fn handle_post_event_actions(&self, actions: Vec<EventCompletionAction>) {
6969                 for action in actions {
6970                         match action {
6971                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
6972                                         channel_funding_outpoint, counterparty_node_id
6973                                 } => {
6974                                         self.handle_monitor_update_release(counterparty_node_id, channel_funding_outpoint, None);
6975                                 }
6976                         }
6977                 }
6978         }
6979
6980         /// Processes any events asynchronously in the order they were generated since the last call
6981         /// using the given event handler.
6982         ///
6983         /// See the trait-level documentation of [`EventsProvider`] for requirements.
6984         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
6985                 &self, handler: H
6986         ) {
6987                 let mut ev;
6988                 process_events_body!(self, ev, { handler(ev).await });
6989         }
6990 }
6991
6992 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>
6993 where
6994         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
6995         T::Target: BroadcasterInterface,
6996         ES::Target: EntropySource,
6997         NS::Target: NodeSigner,
6998         SP::Target: SignerProvider,
6999         F::Target: FeeEstimator,
7000         R::Target: Router,
7001         L::Target: Logger,
7002 {
7003         /// Returns `MessageSendEvent`s strictly ordered per-peer, in the order they were generated.
7004         /// The returned array will contain `MessageSendEvent`s for different peers if
7005         /// `MessageSendEvent`s to more than one peer exists, but `MessageSendEvent`s to the same peer
7006         /// is always placed next to each other.
7007         ///
7008         /// Note that that while `MessageSendEvent`s are strictly ordered per-peer, the peer order for
7009         /// the chunks of `MessageSendEvent`s for different peers is random. I.e. if the array contains
7010         /// `MessageSendEvent`s  for both `node_a` and `node_b`, the `MessageSendEvent`s for `node_a`
7011         /// will randomly be placed first or last in the returned array.
7012         ///
7013         /// Note that even though `BroadcastChannelAnnouncement` and `BroadcastChannelUpdate`
7014         /// `MessageSendEvent`s are intended to be broadcasted to all peers, they will be pleaced among
7015         /// the `MessageSendEvent`s to the specific peer they were generated under.
7016         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
7017                 let events = RefCell::new(Vec::new());
7018                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
7019                         let mut result = self.process_background_events();
7020
7021                         // TODO: This behavior should be documented. It's unintuitive that we query
7022                         // ChannelMonitors when clearing other events.
7023                         if self.process_pending_monitor_events() {
7024                                 result = NotifyOption::DoPersist;
7025                         }
7026
7027                         if self.check_free_holding_cells() {
7028                                 result = NotifyOption::DoPersist;
7029                         }
7030                         if self.maybe_generate_initial_closing_signed() {
7031                                 result = NotifyOption::DoPersist;
7032                         }
7033
7034                         let mut pending_events = Vec::new();
7035                         let per_peer_state = self.per_peer_state.read().unwrap();
7036                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7037                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7038                                 let peer_state = &mut *peer_state_lock;
7039                                 if peer_state.pending_msg_events.len() > 0 {
7040                                         pending_events.append(&mut peer_state.pending_msg_events);
7041                                 }
7042                         }
7043
7044                         if !pending_events.is_empty() {
7045                                 events.replace(pending_events);
7046                         }
7047
7048                         result
7049                 });
7050                 events.into_inner()
7051         }
7052 }
7053
7054 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>
7055 where
7056         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7057         T::Target: BroadcasterInterface,
7058         ES::Target: EntropySource,
7059         NS::Target: NodeSigner,
7060         SP::Target: SignerProvider,
7061         F::Target: FeeEstimator,
7062         R::Target: Router,
7063         L::Target: Logger,
7064 {
7065         /// Processes events that must be periodically handled.
7066         ///
7067         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
7068         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
7069         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
7070                 let mut ev;
7071                 process_events_body!(self, ev, handler.handle_event(ev));
7072         }
7073 }
7074
7075 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>
7076 where
7077         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7078         T::Target: BroadcasterInterface,
7079         ES::Target: EntropySource,
7080         NS::Target: NodeSigner,
7081         SP::Target: SignerProvider,
7082         F::Target: FeeEstimator,
7083         R::Target: Router,
7084         L::Target: Logger,
7085 {
7086         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7087                 {
7088                         let best_block = self.best_block.read().unwrap();
7089                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
7090                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
7091                         assert_eq!(best_block.height(), height - 1,
7092                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
7093                 }
7094
7095                 self.transactions_confirmed(header, txdata, height);
7096                 self.best_block_updated(header, height);
7097         }
7098
7099         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
7100                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7101                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7102                 let new_height = height - 1;
7103                 {
7104                         let mut best_block = self.best_block.write().unwrap();
7105                         assert_eq!(best_block.block_hash(), header.block_hash(),
7106                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
7107                         assert_eq!(best_block.height(), height,
7108                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
7109                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
7110                 }
7111
7112                 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));
7113         }
7114 }
7115
7116 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>
7117 where
7118         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7119         T::Target: BroadcasterInterface,
7120         ES::Target: EntropySource,
7121         NS::Target: NodeSigner,
7122         SP::Target: SignerProvider,
7123         F::Target: FeeEstimator,
7124         R::Target: Router,
7125         L::Target: Logger,
7126 {
7127         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
7128                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7129                 // during initialization prior to the chain_monitor being fully configured in some cases.
7130                 // See the docs for `ChannelManagerReadArgs` for more.
7131
7132                 let block_hash = header.block_hash();
7133                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
7134
7135                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7136                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7137                 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)
7138                         .map(|(a, b)| (a, Vec::new(), b)));
7139
7140                 let last_best_block_height = self.best_block.read().unwrap().height();
7141                 if height < last_best_block_height {
7142                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
7143                         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));
7144                 }
7145         }
7146
7147         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
7148                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7149                 // during initialization prior to the chain_monitor being fully configured in some cases.
7150                 // See the docs for `ChannelManagerReadArgs` for more.
7151
7152                 let block_hash = header.block_hash();
7153                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
7154
7155                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7156                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7157                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
7158
7159                 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));
7160
7161                 macro_rules! max_time {
7162                         ($timestamp: expr) => {
7163                                 loop {
7164                                         // Update $timestamp to be the max of its current value and the block
7165                                         // timestamp. This should keep us close to the current time without relying on
7166                                         // having an explicit local time source.
7167                                         // Just in case we end up in a race, we loop until we either successfully
7168                                         // update $timestamp or decide we don't need to.
7169                                         let old_serial = $timestamp.load(Ordering::Acquire);
7170                                         if old_serial >= header.time as usize { break; }
7171                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
7172                                                 break;
7173                                         }
7174                                 }
7175                         }
7176                 }
7177                 max_time!(self.highest_seen_timestamp);
7178                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
7179                 payment_secrets.retain(|_, inbound_payment| {
7180                         inbound_payment.expiry_time > header.time as u64
7181                 });
7182         }
7183
7184         fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
7185                 let mut res = Vec::with_capacity(self.short_to_chan_info.read().unwrap().len());
7186                 for (_cp_id, peer_state_mutex) in self.per_peer_state.read().unwrap().iter() {
7187                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7188                         let peer_state = &mut *peer_state_lock;
7189                         for chan in peer_state.channel_by_id.values().filter_map(|phase| if let ChannelPhase::Funded(chan) = phase { Some(chan) } else { None }) {
7190                                 if let (Some(funding_txo), Some(block_hash)) = (chan.context.get_funding_txo(), chan.context.get_funding_tx_confirmed_in()) {
7191                                         res.push((funding_txo.txid, Some(block_hash)));
7192                                 }
7193                         }
7194                 }
7195                 res
7196         }
7197
7198         fn transaction_unconfirmed(&self, txid: &Txid) {
7199                 let _persistence_guard = PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock,
7200                         &self.persistence_notifier, || -> NotifyOption { NotifyOption::DoPersist });
7201                 self.do_chain_event(None, |channel| {
7202                         if let Some(funding_txo) = channel.context.get_funding_txo() {
7203                                 if funding_txo.txid == *txid {
7204                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
7205                                 } else { Ok((None, Vec::new(), None)) }
7206                         } else { Ok((None, Vec::new(), None)) }
7207                 });
7208         }
7209 }
7210
7211 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>
7212 where
7213         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7214         T::Target: BroadcasterInterface,
7215         ES::Target: EntropySource,
7216         NS::Target: NodeSigner,
7217         SP::Target: SignerProvider,
7218         F::Target: FeeEstimator,
7219         R::Target: Router,
7220         L::Target: Logger,
7221 {
7222         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
7223         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
7224         /// the function.
7225         fn do_chain_event<FN: Fn(&mut Channel<SP>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
7226                         (&self, height_opt: Option<u32>, f: FN) {
7227                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
7228                 // during initialization prior to the chain_monitor being fully configured in some cases.
7229                 // See the docs for `ChannelManagerReadArgs` for more.
7230
7231                 let mut failed_channels = Vec::new();
7232                 let mut timed_out_htlcs = Vec::new();
7233                 {
7234                         let per_peer_state = self.per_peer_state.read().unwrap();
7235                         for (_cp_id, peer_state_mutex) in per_peer_state.iter() {
7236                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7237                                 let peer_state = &mut *peer_state_lock;
7238                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7239                                 peer_state.channel_by_id.retain(|_, phase| {
7240                                         match phase {
7241                                                 // Retain unfunded channels.
7242                                                 ChannelPhase::UnfundedOutboundV1(_) | ChannelPhase::UnfundedInboundV1(_) => true,
7243                                                 ChannelPhase::Funded(channel) => {
7244                                                         let res = f(channel);
7245                                                         if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
7246                                                                 for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
7247                                                                         let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
7248                                                                         timed_out_htlcs.push((source, payment_hash, HTLCFailReason::reason(failure_code, data),
7249                                                                                 HTLCDestination::NextHopChannel { node_id: Some(channel.context.get_counterparty_node_id()), channel_id: channel.context.channel_id() }));
7250                                                                 }
7251                                                                 if let Some(channel_ready) = channel_ready_opt {
7252                                                                         send_channel_ready!(self, pending_msg_events, channel, channel_ready);
7253                                                                         if channel.context.is_usable() {
7254                                                                                 log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", channel.context.channel_id());
7255                                                                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
7256                                                                                         pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
7257                                                                                                 node_id: channel.context.get_counterparty_node_id(),
7258                                                                                                 msg,
7259                                                                                         });
7260                                                                                 }
7261                                                                         } else {
7262                                                                                 log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", channel.context.channel_id());
7263                                                                         }
7264                                                                 }
7265
7266                                                                 {
7267                                                                         let mut pending_events = self.pending_events.lock().unwrap();
7268                                                                         emit_channel_ready_event!(pending_events, channel);
7269                                                                 }
7270
7271                                                                 if let Some(announcement_sigs) = announcement_sigs {
7272                                                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", channel.context.channel_id());
7273                                                                         pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
7274                                                                                 node_id: channel.context.get_counterparty_node_id(),
7275                                                                                 msg: announcement_sigs,
7276                                                                         });
7277                                                                         if let Some(height) = height_opt {
7278                                                                                 if let Some(announcement) = channel.get_signed_channel_announcement(&self.node_signer, self.genesis_hash, height, &self.default_configuration) {
7279                                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
7280                                                                                                 msg: announcement,
7281                                                                                                 // Note that announcement_signatures fails if the channel cannot be announced,
7282                                                                                                 // so get_channel_update_for_broadcast will never fail by the time we get here.
7283                                                                                                 update_msg: Some(self.get_channel_update_for_broadcast(channel).unwrap()),
7284                                                                                         });
7285                                                                                 }
7286                                                                         }
7287                                                                 }
7288                                                                 if channel.is_our_channel_ready() {
7289                                                                         if let Some(real_scid) = channel.context.get_short_channel_id() {
7290                                                                                 // If we sent a 0conf channel_ready, and now have an SCID, we add it
7291                                                                                 // to the short_to_chan_info map here. Note that we check whether we
7292                                                                                 // can relay using the real SCID at relay-time (i.e.
7293                                                                                 // enforce option_scid_alias then), and if the funding tx is ever
7294                                                                                 // un-confirmed we force-close the channel, ensuring short_to_chan_info
7295                                                                                 // is always consistent.
7296                                                                                 let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
7297                                                                                 let scid_insert = short_to_chan_info.insert(real_scid, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
7298                                                                                 assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.context.get_counterparty_node_id(), channel.context.channel_id()),
7299                                                                                         "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
7300                                                                                         fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
7301                                                                         }
7302                                                                 }
7303                                                         } else if let Err(reason) = res {
7304                                                                 update_maps_on_chan_removal!(self, &channel.context);
7305                                                                 // It looks like our counterparty went on-chain or funding transaction was
7306                                                                 // reorged out of the main chain. Close the channel.
7307                                                                 failed_channels.push(channel.context.force_shutdown(true));
7308                                                                 if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
7309                                                                         pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
7310                                                                                 msg: update
7311                                                                         });
7312                                                                 }
7313                                                                 let reason_message = format!("{}", reason);
7314                                                                 self.issue_channel_close_events(&channel.context, reason);
7315                                                                 pending_msg_events.push(events::MessageSendEvent::HandleError {
7316                                                                         node_id: channel.context.get_counterparty_node_id(),
7317                                                                         action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
7318                                                                                 channel_id: channel.context.channel_id(),
7319                                                                                 data: reason_message,
7320                                                                         } },
7321                                                                 });
7322                                                                 return false;
7323                                                         }
7324                                                         true
7325                                                 }
7326                                         }
7327                                 });
7328                         }
7329                 }
7330
7331                 if let Some(height) = height_opt {
7332                         self.claimable_payments.lock().unwrap().claimable_payments.retain(|payment_hash, payment| {
7333                                 payment.htlcs.retain(|htlc| {
7334                                         // If height is approaching the number of blocks we think it takes us to get
7335                                         // our commitment transaction confirmed before the HTLC expires, plus the
7336                                         // number of blocks we generally consider it to take to do a commitment update,
7337                                         // just give up on it and fail the HTLC.
7338                                         if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
7339                                                 let mut htlc_msat_height_data = htlc.value.to_be_bytes().to_vec();
7340                                                 htlc_msat_height_data.extend_from_slice(&height.to_be_bytes());
7341
7342                                                 timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(),
7343                                                         HTLCFailReason::reason(0x4000 | 15, htlc_msat_height_data),
7344                                                         HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
7345                                                 false
7346                                         } else { true }
7347                                 });
7348                                 !payment.htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
7349                         });
7350
7351                         let mut intercepted_htlcs = self.pending_intercepted_htlcs.lock().unwrap();
7352                         intercepted_htlcs.retain(|_, htlc| {
7353                                 if height >= htlc.forward_info.outgoing_cltv_value - HTLC_FAIL_BACK_BUFFER {
7354                                         let prev_hop_data = HTLCSource::PreviousHopData(HTLCPreviousHopData {
7355                                                 short_channel_id: htlc.prev_short_channel_id,
7356                                                 user_channel_id: Some(htlc.prev_user_channel_id),
7357                                                 htlc_id: htlc.prev_htlc_id,
7358                                                 incoming_packet_shared_secret: htlc.forward_info.incoming_shared_secret,
7359                                                 phantom_shared_secret: None,
7360                                                 outpoint: htlc.prev_funding_outpoint,
7361                                         });
7362
7363                                         let requested_forward_scid /* intercept scid */ = match htlc.forward_info.routing {
7364                                                 PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
7365                                                 _ => unreachable!(),
7366                                         };
7367                                         timed_out_htlcs.push((prev_hop_data, htlc.forward_info.payment_hash,
7368                                                         HTLCFailReason::from_failure_code(0x2000 | 2),
7369                                                         HTLCDestination::InvalidForward { requested_forward_scid }));
7370                                         log_trace!(self.logger, "Timing out intercepted HTLC with requested forward scid {}", requested_forward_scid);
7371                                         false
7372                                 } else { true }
7373                         });
7374                 }
7375
7376                 self.handle_init_event_channel_failures(failed_channels);
7377
7378                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
7379                         self.fail_htlc_backwards_internal(&source, &payment_hash, &reason, destination);
7380                 }
7381         }
7382
7383         /// Gets a [`Future`] that completes when this [`ChannelManager`] needs to be persisted.
7384         ///
7385         /// Note that callbacks registered on the [`Future`] MUST NOT call back into this
7386         /// [`ChannelManager`] and should instead register actions to be taken later.
7387         ///
7388         pub fn get_persistable_update_future(&self) -> Future {
7389                 self.persistence_notifier.get_future()
7390         }
7391
7392         #[cfg(any(test, feature = "_test_utils"))]
7393         pub fn get_persistence_condvar_value(&self) -> bool {
7394                 self.persistence_notifier.notify_pending()
7395         }
7396
7397         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
7398         /// [`chain::Confirm`] interfaces.
7399         pub fn current_best_block(&self) -> BestBlock {
7400                 self.best_block.read().unwrap().clone()
7401         }
7402
7403         /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7404         /// [`ChannelManager`].
7405         pub fn node_features(&self) -> NodeFeatures {
7406                 provided_node_features(&self.default_configuration)
7407         }
7408
7409         /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7410         /// [`ChannelManager`].
7411         ///
7412         /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7413         /// or not. Thus, this method is not public.
7414         #[cfg(any(feature = "_test_utils", test))]
7415         pub fn invoice_features(&self) -> Bolt11InvoiceFeatures {
7416                 provided_invoice_features(&self.default_configuration)
7417         }
7418
7419         /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7420         /// [`ChannelManager`].
7421         pub fn channel_features(&self) -> ChannelFeatures {
7422                 provided_channel_features(&self.default_configuration)
7423         }
7424
7425         /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7426         /// [`ChannelManager`].
7427         pub fn channel_type_features(&self) -> ChannelTypeFeatures {
7428                 provided_channel_type_features(&self.default_configuration)
7429         }
7430
7431         /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7432         /// [`ChannelManager`].
7433         pub fn init_features(&self) -> InitFeatures {
7434                 provided_init_features(&self.default_configuration)
7435         }
7436 }
7437
7438 impl<M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
7439         ChannelMessageHandler for ChannelManager<M, T, ES, NS, SP, F, R, L>
7440 where
7441         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
7442         T::Target: BroadcasterInterface,
7443         ES::Target: EntropySource,
7444         NS::Target: NodeSigner,
7445         SP::Target: SignerProvider,
7446         F::Target: FeeEstimator,
7447         R::Target: Router,
7448         L::Target: Logger,
7449 {
7450         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannel) {
7451                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7452                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, msg), *counterparty_node_id);
7453         }
7454
7455         fn handle_open_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::OpenChannelV2) {
7456                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7457                         "Dual-funded channels not supported".to_owned(),
7458                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7459         }
7460
7461         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannel) {
7462                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7463                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, msg), *counterparty_node_id);
7464         }
7465
7466         fn handle_accept_channel_v2(&self, counterparty_node_id: &PublicKey, msg: &msgs::AcceptChannelV2) {
7467                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7468                         "Dual-funded channels not supported".to_owned(),
7469                          msg.temporary_channel_id.clone())), *counterparty_node_id);
7470         }
7471
7472         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
7473                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7474                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
7475         }
7476
7477         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
7478                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7479                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
7480         }
7481
7482         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
7483                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7484                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
7485         }
7486
7487         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, msg: &msgs::Shutdown) {
7488                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7489                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, msg), *counterparty_node_id);
7490         }
7491
7492         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
7493                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7494                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
7495         }
7496
7497         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
7498                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7499                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
7500         }
7501
7502         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
7503                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7504                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
7505         }
7506
7507         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
7508                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7509                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
7510         }
7511
7512         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
7513                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7514                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
7515         }
7516
7517         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
7518                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7519                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
7520         }
7521
7522         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
7523                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7524                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
7525         }
7526
7527         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
7528                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7529                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
7530         }
7531
7532         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
7533                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7534                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
7535         }
7536
7537         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
7538                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
7539                         let force_persist = self.process_background_events();
7540                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
7541                                 if force_persist == NotifyOption::DoPersist { NotifyOption::DoPersist } else { persist }
7542                         } else {
7543                                 NotifyOption::SkipPersist
7544                         }
7545                 });
7546         }
7547
7548         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
7549                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7550                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
7551         }
7552
7553         fn peer_disconnected(&self, counterparty_node_id: &PublicKey) {
7554                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7555                 let mut failed_channels = Vec::new();
7556                 let mut per_peer_state = self.per_peer_state.write().unwrap();
7557                 let remove_peer = {
7558                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates.",
7559                                 log_pubkey!(counterparty_node_id));
7560                         if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7561                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7562                                 let peer_state = &mut *peer_state_lock;
7563                                 let pending_msg_events = &mut peer_state.pending_msg_events;
7564                                 peer_state.channel_by_id.retain(|_, phase| {
7565                                         let context = match phase {
7566                                                 ChannelPhase::Funded(chan) => {
7567                                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
7568                                                         // We only retain funded channels that are not shutdown.
7569                                                         if !chan.is_shutdown() {
7570                                                                 return true;
7571                                                         }
7572                                                         &chan.context
7573                                                 },
7574                                                 // Unfunded channels will always be removed.
7575                                                 ChannelPhase::UnfundedOutboundV1(chan) => {
7576                                                         &chan.context
7577                                                 },
7578                                                 ChannelPhase::UnfundedInboundV1(chan) => {
7579                                                         &chan.context
7580                                                 },
7581                                         };
7582                                         // Clean up for removal.
7583                                         update_maps_on_chan_removal!(self, &context);
7584                                         self.issue_channel_close_events(&context, ClosureReason::DisconnectedPeer);
7585                                         false
7586                                 });
7587                                 // Note that we don't bother generating any events for pre-accept channels -
7588                                 // they're not considered "channels" yet from the PoV of our events interface.
7589                                 peer_state.inbound_channel_request_by_id.clear();
7590                                 pending_msg_events.retain(|msg| {
7591                                         match msg {
7592                                                 // V1 Channel Establishment
7593                                                 &events::MessageSendEvent::SendAcceptChannel { .. } => false,
7594                                                 &events::MessageSendEvent::SendOpenChannel { .. } => false,
7595                                                 &events::MessageSendEvent::SendFundingCreated { .. } => false,
7596                                                 &events::MessageSendEvent::SendFundingSigned { .. } => false,
7597                                                 // V2 Channel Establishment
7598                                                 &events::MessageSendEvent::SendAcceptChannelV2 { .. } => false,
7599                                                 &events::MessageSendEvent::SendOpenChannelV2 { .. } => false,
7600                                                 // Common Channel Establishment
7601                                                 &events::MessageSendEvent::SendChannelReady { .. } => false,
7602                                                 &events::MessageSendEvent::SendAnnouncementSignatures { .. } => false,
7603                                                 // Interactive Transaction Construction
7604                                                 &events::MessageSendEvent::SendTxAddInput { .. } => false,
7605                                                 &events::MessageSendEvent::SendTxAddOutput { .. } => false,
7606                                                 &events::MessageSendEvent::SendTxRemoveInput { .. } => false,
7607                                                 &events::MessageSendEvent::SendTxRemoveOutput { .. } => false,
7608                                                 &events::MessageSendEvent::SendTxComplete { .. } => false,
7609                                                 &events::MessageSendEvent::SendTxSignatures { .. } => false,
7610                                                 &events::MessageSendEvent::SendTxInitRbf { .. } => false,
7611                                                 &events::MessageSendEvent::SendTxAckRbf { .. } => false,
7612                                                 &events::MessageSendEvent::SendTxAbort { .. } => false,
7613                                                 // Channel Operations
7614                                                 &events::MessageSendEvent::UpdateHTLCs { .. } => false,
7615                                                 &events::MessageSendEvent::SendRevokeAndACK { .. } => false,
7616                                                 &events::MessageSendEvent::SendClosingSigned { .. } => false,
7617                                                 &events::MessageSendEvent::SendShutdown { .. } => false,
7618                                                 &events::MessageSendEvent::SendChannelReestablish { .. } => false,
7619                                                 &events::MessageSendEvent::HandleError { .. } => false,
7620                                                 // Gossip
7621                                                 &events::MessageSendEvent::SendChannelAnnouncement { .. } => false,
7622                                                 &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
7623                                                 &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
7624                                                 &events::MessageSendEvent::BroadcastNodeAnnouncement { .. } => true,
7625                                                 &events::MessageSendEvent::SendChannelUpdate { .. } => false,
7626                                                 &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
7627                                                 &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
7628                                                 &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
7629                                                 &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
7630                                         }
7631                                 });
7632                                 debug_assert!(peer_state.is_connected, "A disconnected peer cannot disconnect");
7633                                 peer_state.is_connected = false;
7634                                 peer_state.ok_to_remove(true)
7635                         } else { debug_assert!(false, "Unconnected peer disconnected"); true }
7636                 };
7637                 if remove_peer {
7638                         per_peer_state.remove(counterparty_node_id);
7639                 }
7640                 mem::drop(per_peer_state);
7641
7642                 for failure in failed_channels.drain(..) {
7643                         self.finish_force_close_channel(failure);
7644                 }
7645         }
7646
7647         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init, inbound: bool) -> Result<(), ()> {
7648                 if !init_msg.features.supports_static_remote_key() {
7649                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting", log_pubkey!(counterparty_node_id));
7650                         return Err(());
7651                 }
7652
7653                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7654
7655                 // If we have too many peers connected which don't have funded channels, disconnect the
7656                 // peer immediately (as long as it doesn't have funded channels). If we have a bunch of
7657                 // unfunded channels taking up space in memory for disconnected peers, we still let new
7658                 // peers connect, but we'll reject new channels from them.
7659                 let connected_peers_without_funded_channels = self.peers_without_funded_channels(|node| node.is_connected);
7660                 let inbound_peer_limited = inbound && connected_peers_without_funded_channels >= MAX_NO_CHANNEL_PEERS;
7661
7662                 {
7663                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
7664                         match peer_state_lock.entry(counterparty_node_id.clone()) {
7665                                 hash_map::Entry::Vacant(e) => {
7666                                         if inbound_peer_limited {
7667                                                 return Err(());
7668                                         }
7669                                         e.insert(Mutex::new(PeerState {
7670                                                 channel_by_id: HashMap::new(),
7671                                                 inbound_channel_request_by_id: HashMap::new(),
7672                                                 latest_features: init_msg.features.clone(),
7673                                                 pending_msg_events: Vec::new(),
7674                                                 in_flight_monitor_updates: BTreeMap::new(),
7675                                                 monitor_update_blocked_actions: BTreeMap::new(),
7676                                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
7677                                                 is_connected: true,
7678                                         }));
7679                                 },
7680                                 hash_map::Entry::Occupied(e) => {
7681                                         let mut peer_state = e.get().lock().unwrap();
7682                                         peer_state.latest_features = init_msg.features.clone();
7683
7684                                         let best_block_height = self.best_block.read().unwrap().height();
7685                                         if inbound_peer_limited &&
7686                                                 Self::unfunded_channel_count(&*peer_state, best_block_height) ==
7687                                                 peer_state.channel_by_id.len()
7688                                         {
7689                                                 return Err(());
7690                                         }
7691
7692                                         debug_assert!(!peer_state.is_connected, "A peer shouldn't be connected twice");
7693                                         peer_state.is_connected = true;
7694                                 },
7695                         }
7696                 }
7697
7698                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
7699
7700                 let per_peer_state = self.per_peer_state.read().unwrap();
7701                 if let Some(peer_state_mutex) = per_peer_state.get(counterparty_node_id) {
7702                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
7703                         let peer_state = &mut *peer_state_lock;
7704                         let pending_msg_events = &mut peer_state.pending_msg_events;
7705
7706                         peer_state.channel_by_id.iter_mut().filter_map(|(_, phase)|
7707                                 if let ChannelPhase::Funded(chan) = phase { Some(chan) } else {
7708                                         // Since unfunded channel maps are cleared upon disconnecting a peer, and they're not persisted
7709                                         // (so won't be recovered after a crash), they shouldn't exist here and we would never need to
7710                                         // worry about closing and removing them.
7711                                         debug_assert!(false);
7712                                         None
7713                                 }
7714                         ).for_each(|chan| {
7715                                 pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
7716                                         node_id: chan.context.get_counterparty_node_id(),
7717                                         msg: chan.get_channel_reestablish(&self.logger),
7718                                 });
7719                         });
7720                 }
7721                 //TODO: Also re-broadcast announcement_signatures
7722                 Ok(())
7723         }
7724
7725         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
7726                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(self);
7727
7728                 match &msg.data as &str {
7729                         "cannot co-op close channel w/ active htlcs"|
7730                         "link failed to shutdown" =>
7731                         {
7732                                 // LND hasn't properly handled shutdown messages ever, and force-closes any time we
7733                                 // send one while HTLCs are still present. The issue is tracked at
7734                                 // https://github.com/lightningnetwork/lnd/issues/6039 and has had multiple patches
7735                                 // to fix it but none so far have managed to land upstream. The issue appears to be
7736                                 // very low priority for the LND team despite being marked "P1".
7737                                 // We're not going to bother handling this in a sensible way, instead simply
7738                                 // repeating the Shutdown message on repeat until morale improves.
7739                                 if !msg.channel_id.is_zero() {
7740                                         let per_peer_state = self.per_peer_state.read().unwrap();
7741                                         let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7742                                         if peer_state_mutex_opt.is_none() { return; }
7743                                         let mut peer_state = peer_state_mutex_opt.unwrap().lock().unwrap();
7744                                         if let Some(ChannelPhase::Funded(chan)) = peer_state.channel_by_id.get(&msg.channel_id) {
7745                                                 if let Some(msg) = chan.get_outbound_shutdown() {
7746                                                         peer_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
7747                                                                 node_id: *counterparty_node_id,
7748                                                                 msg,
7749                                                         });
7750                                                 }
7751                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::HandleError {
7752                                                         node_id: *counterparty_node_id,
7753                                                         action: msgs::ErrorAction::SendWarningMessage {
7754                                                                 msg: msgs::WarningMessage {
7755                                                                         channel_id: msg.channel_id,
7756                                                                         data: "You appear to be exhibiting LND bug 6039, we'll keep sending you shutdown messages until you handle them correctly".to_owned()
7757                                                                 },
7758                                                                 log_level: Level::Trace,
7759                                                         }
7760                                                 });
7761                                         }
7762                                 }
7763                                 return;
7764                         }
7765                         _ => {}
7766                 }
7767
7768                 if msg.channel_id.is_zero() {
7769                         let channel_ids: Vec<ChannelId> = {
7770                                 let per_peer_state = self.per_peer_state.read().unwrap();
7771                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7772                                 if peer_state_mutex_opt.is_none() { return; }
7773                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7774                                 let peer_state = &mut *peer_state_lock;
7775                                 // Note that we don't bother generating any events for pre-accept channels -
7776                                 // they're not considered "channels" yet from the PoV of our events interface.
7777                                 peer_state.inbound_channel_request_by_id.clear();
7778                                 peer_state.channel_by_id.keys().cloned().collect()
7779                         };
7780                         for channel_id in channel_ids {
7781                                 // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7782                                 let _ = self.force_close_channel_with_peer(&channel_id, counterparty_node_id, Some(&msg.data), true);
7783                         }
7784                 } else {
7785                         {
7786                                 // First check if we can advance the channel type and try again.
7787                                 let per_peer_state = self.per_peer_state.read().unwrap();
7788                                 let peer_state_mutex_opt = per_peer_state.get(counterparty_node_id);
7789                                 if peer_state_mutex_opt.is_none() { return; }
7790                                 let mut peer_state_lock = peer_state_mutex_opt.unwrap().lock().unwrap();
7791                                 let peer_state = &mut *peer_state_lock;
7792                                 if let Some(ChannelPhase::UnfundedOutboundV1(chan)) = peer_state.channel_by_id.get_mut(&msg.channel_id) {
7793                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash, &self.fee_estimator) {
7794                                                 peer_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
7795                                                         node_id: *counterparty_node_id,
7796                                                         msg,
7797                                                 });
7798                                                 return;
7799                                         }
7800                                 }
7801                         }
7802
7803                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
7804                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
7805                 }
7806         }
7807
7808         fn provided_node_features(&self) -> NodeFeatures {
7809                 provided_node_features(&self.default_configuration)
7810         }
7811
7812         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
7813                 provided_init_features(&self.default_configuration)
7814         }
7815
7816         fn get_genesis_hashes(&self) -> Option<Vec<ChainHash>> {
7817                 Some(vec![ChainHash::from(&self.genesis_hash[..])])
7818         }
7819
7820         fn handle_tx_add_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddInput) {
7821                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7822                         "Dual-funded channels not supported".to_owned(),
7823                          msg.channel_id.clone())), *counterparty_node_id);
7824         }
7825
7826         fn handle_tx_add_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAddOutput) {
7827                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7828                         "Dual-funded channels not supported".to_owned(),
7829                          msg.channel_id.clone())), *counterparty_node_id);
7830         }
7831
7832         fn handle_tx_remove_input(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveInput) {
7833                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7834                         "Dual-funded channels not supported".to_owned(),
7835                          msg.channel_id.clone())), *counterparty_node_id);
7836         }
7837
7838         fn handle_tx_remove_output(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxRemoveOutput) {
7839                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7840                         "Dual-funded channels not supported".to_owned(),
7841                          msg.channel_id.clone())), *counterparty_node_id);
7842         }
7843
7844         fn handle_tx_complete(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxComplete) {
7845                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7846                         "Dual-funded channels not supported".to_owned(),
7847                          msg.channel_id.clone())), *counterparty_node_id);
7848         }
7849
7850         fn handle_tx_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxSignatures) {
7851                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7852                         "Dual-funded channels not supported".to_owned(),
7853                          msg.channel_id.clone())), *counterparty_node_id);
7854         }
7855
7856         fn handle_tx_init_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxInitRbf) {
7857                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7858                         "Dual-funded channels not supported".to_owned(),
7859                          msg.channel_id.clone())), *counterparty_node_id);
7860         }
7861
7862         fn handle_tx_ack_rbf(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAckRbf) {
7863                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7864                         "Dual-funded channels not supported".to_owned(),
7865                          msg.channel_id.clone())), *counterparty_node_id);
7866         }
7867
7868         fn handle_tx_abort(&self, counterparty_node_id: &PublicKey, msg: &msgs::TxAbort) {
7869                 let _: Result<(), _> = handle_error!(self, Err(MsgHandleErrInternal::send_err_msg_no_close(
7870                         "Dual-funded channels not supported".to_owned(),
7871                          msg.channel_id.clone())), *counterparty_node_id);
7872         }
7873 }
7874
7875 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
7876 /// [`ChannelManager`].
7877 pub(crate) fn provided_node_features(config: &UserConfig) -> NodeFeatures {
7878         let mut node_features = provided_init_features(config).to_context();
7879         node_features.set_keysend_optional();
7880         node_features
7881 }
7882
7883 /// Fetches the set of [`Bolt11InvoiceFeatures`] flags which are provided by or required by
7884 /// [`ChannelManager`].
7885 ///
7886 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
7887 /// or not. Thus, this method is not public.
7888 #[cfg(any(feature = "_test_utils", test))]
7889 pub(crate) fn provided_invoice_features(config: &UserConfig) -> Bolt11InvoiceFeatures {
7890         provided_init_features(config).to_context()
7891 }
7892
7893 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
7894 /// [`ChannelManager`].
7895 pub(crate) fn provided_channel_features(config: &UserConfig) -> ChannelFeatures {
7896         provided_init_features(config).to_context()
7897 }
7898
7899 /// Fetches the set of [`ChannelTypeFeatures`] flags which are provided by or required by
7900 /// [`ChannelManager`].
7901 pub(crate) fn provided_channel_type_features(config: &UserConfig) -> ChannelTypeFeatures {
7902         ChannelTypeFeatures::from_init(&provided_init_features(config))
7903 }
7904
7905 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
7906 /// [`ChannelManager`].
7907 pub fn provided_init_features(config: &UserConfig) -> InitFeatures {
7908         // Note that if new features are added here which other peers may (eventually) require, we
7909         // should also add the corresponding (optional) bit to the [`ChannelMessageHandler`] impl for
7910         // [`ErroringMessageHandler`].
7911         let mut features = InitFeatures::empty();
7912         features.set_data_loss_protect_required();
7913         features.set_upfront_shutdown_script_optional();
7914         features.set_variable_length_onion_required();
7915         features.set_static_remote_key_required();
7916         features.set_payment_secret_required();
7917         features.set_basic_mpp_optional();
7918         features.set_wumbo_optional();
7919         features.set_shutdown_any_segwit_optional();
7920         features.set_channel_type_optional();
7921         features.set_scid_privacy_optional();
7922         features.set_zero_conf_optional();
7923         if config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx {
7924                 features.set_anchors_zero_fee_htlc_tx_optional();
7925         }
7926         features
7927 }
7928
7929 const SERIALIZATION_VERSION: u8 = 1;
7930 const MIN_SERIALIZATION_VERSION: u8 = 1;
7931
7932 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
7933         (2, fee_base_msat, required),
7934         (4, fee_proportional_millionths, required),
7935         (6, cltv_expiry_delta, required),
7936 });
7937
7938 impl_writeable_tlv_based!(ChannelCounterparty, {
7939         (2, node_id, required),
7940         (4, features, required),
7941         (6, unspendable_punishment_reserve, required),
7942         (8, forwarding_info, option),
7943         (9, outbound_htlc_minimum_msat, option),
7944         (11, outbound_htlc_maximum_msat, option),
7945 });
7946
7947 impl Writeable for ChannelDetails {
7948         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
7949                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
7950                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
7951                 let user_channel_id_low = self.user_channel_id as u64;
7952                 let user_channel_id_high_opt = Some((self.user_channel_id >> 64) as u64);
7953                 write_tlv_fields!(writer, {
7954                         (1, self.inbound_scid_alias, option),
7955                         (2, self.channel_id, required),
7956                         (3, self.channel_type, option),
7957                         (4, self.counterparty, required),
7958                         (5, self.outbound_scid_alias, option),
7959                         (6, self.funding_txo, option),
7960                         (7, self.config, option),
7961                         (8, self.short_channel_id, option),
7962                         (9, self.confirmations, option),
7963                         (10, self.channel_value_satoshis, required),
7964                         (12, self.unspendable_punishment_reserve, option),
7965                         (14, user_channel_id_low, required),
7966                         (16, self.next_outbound_htlc_limit_msat, required),  // Forwards compatibility for removed balance_msat field.
7967                         (18, self.outbound_capacity_msat, required),
7968                         (19, self.next_outbound_htlc_limit_msat, required),
7969                         (20, self.inbound_capacity_msat, required),
7970                         (21, self.next_outbound_htlc_minimum_msat, required),
7971                         (22, self.confirmations_required, option),
7972                         (24, self.force_close_spend_delay, option),
7973                         (26, self.is_outbound, required),
7974                         (28, self.is_channel_ready, required),
7975                         (30, self.is_usable, required),
7976                         (32, self.is_public, required),
7977                         (33, self.inbound_htlc_minimum_msat, option),
7978                         (35, self.inbound_htlc_maximum_msat, option),
7979                         (37, user_channel_id_high_opt, option),
7980                         (39, self.feerate_sat_per_1000_weight, option),
7981                         (41, self.channel_shutdown_state, option),
7982                 });
7983                 Ok(())
7984         }
7985 }
7986
7987 impl Readable for ChannelDetails {
7988         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
7989                 _init_and_read_len_prefixed_tlv_fields!(reader, {
7990                         (1, inbound_scid_alias, option),
7991                         (2, channel_id, required),
7992                         (3, channel_type, option),
7993                         (4, counterparty, required),
7994                         (5, outbound_scid_alias, option),
7995                         (6, funding_txo, option),
7996                         (7, config, option),
7997                         (8, short_channel_id, option),
7998                         (9, confirmations, option),
7999                         (10, channel_value_satoshis, required),
8000                         (12, unspendable_punishment_reserve, option),
8001                         (14, user_channel_id_low, required),
8002                         (16, _balance_msat, option),  // Backwards compatibility for removed balance_msat field.
8003                         (18, outbound_capacity_msat, required),
8004                         // Note that by the time we get past the required read above, outbound_capacity_msat will be
8005                         // filled in, so we can safely unwrap it here.
8006                         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
8007                         (20, inbound_capacity_msat, required),
8008                         (21, next_outbound_htlc_minimum_msat, (default_value, 0)),
8009                         (22, confirmations_required, option),
8010                         (24, force_close_spend_delay, option),
8011                         (26, is_outbound, required),
8012                         (28, is_channel_ready, required),
8013                         (30, is_usable, required),
8014                         (32, is_public, required),
8015                         (33, inbound_htlc_minimum_msat, option),
8016                         (35, inbound_htlc_maximum_msat, option),
8017                         (37, user_channel_id_high_opt, option),
8018                         (39, feerate_sat_per_1000_weight, option),
8019                         (41, channel_shutdown_state, option),
8020                 });
8021
8022                 // `user_channel_id` used to be a single u64 value. In order to remain backwards compatible with
8023                 // versions prior to 0.0.113, the u128 is serialized as two separate u64 values.
8024                 let user_channel_id_low: u64 = user_channel_id_low.0.unwrap();
8025                 let user_channel_id = user_channel_id_low as u128 +
8026                         ((user_channel_id_high_opt.unwrap_or(0 as u64) as u128) << 64);
8027
8028                 let _balance_msat: Option<u64> = _balance_msat;
8029
8030                 Ok(Self {
8031                         inbound_scid_alias,
8032                         channel_id: channel_id.0.unwrap(),
8033                         channel_type,
8034                         counterparty: counterparty.0.unwrap(),
8035                         outbound_scid_alias,
8036                         funding_txo,
8037                         config,
8038                         short_channel_id,
8039                         channel_value_satoshis: channel_value_satoshis.0.unwrap(),
8040                         unspendable_punishment_reserve,
8041                         user_channel_id,
8042                         outbound_capacity_msat: outbound_capacity_msat.0.unwrap(),
8043                         next_outbound_htlc_limit_msat: next_outbound_htlc_limit_msat.0.unwrap(),
8044                         next_outbound_htlc_minimum_msat: next_outbound_htlc_minimum_msat.0.unwrap(),
8045                         inbound_capacity_msat: inbound_capacity_msat.0.unwrap(),
8046                         confirmations_required,
8047                         confirmations,
8048                         force_close_spend_delay,
8049                         is_outbound: is_outbound.0.unwrap(),
8050                         is_channel_ready: is_channel_ready.0.unwrap(),
8051                         is_usable: is_usable.0.unwrap(),
8052                         is_public: is_public.0.unwrap(),
8053                         inbound_htlc_minimum_msat,
8054                         inbound_htlc_maximum_msat,
8055                         feerate_sat_per_1000_weight,
8056                         channel_shutdown_state,
8057                 })
8058         }
8059 }
8060
8061 impl_writeable_tlv_based!(PhantomRouteHints, {
8062         (2, channels, required_vec),
8063         (4, phantom_scid, required),
8064         (6, real_node_pubkey, required),
8065 });
8066
8067 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
8068         (0, Forward) => {
8069                 (0, onion_packet, required),
8070                 (2, short_channel_id, required),
8071         },
8072         (1, Receive) => {
8073                 (0, payment_data, required),
8074                 (1, phantom_shared_secret, option),
8075                 (2, incoming_cltv_expiry, required),
8076                 (3, payment_metadata, option),
8077                 (5, custom_tlvs, optional_vec),
8078         },
8079         (2, ReceiveKeysend) => {
8080                 (0, payment_preimage, required),
8081                 (2, incoming_cltv_expiry, required),
8082                 (3, payment_metadata, option),
8083                 (4, payment_data, option), // Added in 0.0.116
8084                 (5, custom_tlvs, optional_vec),
8085         },
8086 ;);
8087
8088 impl_writeable_tlv_based!(PendingHTLCInfo, {
8089         (0, routing, required),
8090         (2, incoming_shared_secret, required),
8091         (4, payment_hash, required),
8092         (6, outgoing_amt_msat, required),
8093         (8, outgoing_cltv_value, required),
8094         (9, incoming_amt_msat, option),
8095         (10, skimmed_fee_msat, option),
8096 });
8097
8098
8099 impl Writeable for HTLCFailureMsg {
8100         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8101                 match self {
8102                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
8103                                 0u8.write(writer)?;
8104                                 channel_id.write(writer)?;
8105                                 htlc_id.write(writer)?;
8106                                 reason.write(writer)?;
8107                         },
8108                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8109                                 channel_id, htlc_id, sha256_of_onion, failure_code
8110                         }) => {
8111                                 1u8.write(writer)?;
8112                                 channel_id.write(writer)?;
8113                                 htlc_id.write(writer)?;
8114                                 sha256_of_onion.write(writer)?;
8115                                 failure_code.write(writer)?;
8116                         },
8117                 }
8118                 Ok(())
8119         }
8120 }
8121
8122 impl Readable for HTLCFailureMsg {
8123         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8124                 let id: u8 = Readable::read(reader)?;
8125                 match id {
8126                         0 => {
8127                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
8128                                         channel_id: Readable::read(reader)?,
8129                                         htlc_id: Readable::read(reader)?,
8130                                         reason: Readable::read(reader)?,
8131                                 }))
8132                         },
8133                         1 => {
8134                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
8135                                         channel_id: Readable::read(reader)?,
8136                                         htlc_id: Readable::read(reader)?,
8137                                         sha256_of_onion: Readable::read(reader)?,
8138                                         failure_code: Readable::read(reader)?,
8139                                 }))
8140                         },
8141                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
8142                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
8143                         // messages contained in the variants.
8144                         // In version 0.0.101, support for reading the variants with these types was added, and
8145                         // we should migrate to writing these variants when UpdateFailHTLC or
8146                         // UpdateFailMalformedHTLC get TLV fields.
8147                         2 => {
8148                                 let length: BigSize = Readable::read(reader)?;
8149                                 let mut s = FixedLengthReader::new(reader, length.0);
8150                                 let res = Readable::read(&mut s)?;
8151                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8152                                 Ok(HTLCFailureMsg::Relay(res))
8153                         },
8154                         3 => {
8155                                 let length: BigSize = Readable::read(reader)?;
8156                                 let mut s = FixedLengthReader::new(reader, length.0);
8157                                 let res = Readable::read(&mut s)?;
8158                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
8159                                 Ok(HTLCFailureMsg::Malformed(res))
8160                         },
8161                         _ => Err(DecodeError::UnknownRequiredFeature),
8162                 }
8163         }
8164 }
8165
8166 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
8167         (0, Forward),
8168         (1, Fail),
8169 );
8170
8171 impl_writeable_tlv_based!(HTLCPreviousHopData, {
8172         (0, short_channel_id, required),
8173         (1, phantom_shared_secret, option),
8174         (2, outpoint, required),
8175         (4, htlc_id, required),
8176         (6, incoming_packet_shared_secret, required),
8177         (7, user_channel_id, option),
8178 });
8179
8180 impl Writeable for ClaimableHTLC {
8181         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8182                 let (payment_data, keysend_preimage) = match &self.onion_payload {
8183                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
8184                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
8185                 };
8186                 write_tlv_fields!(writer, {
8187                         (0, self.prev_hop, required),
8188                         (1, self.total_msat, required),
8189                         (2, self.value, required),
8190                         (3, self.sender_intended_value, required),
8191                         (4, payment_data, option),
8192                         (5, self.total_value_received, option),
8193                         (6, self.cltv_expiry, required),
8194                         (8, keysend_preimage, option),
8195                         (10, self.counterparty_skimmed_fee_msat, option),
8196                 });
8197                 Ok(())
8198         }
8199 }
8200
8201 impl Readable for ClaimableHTLC {
8202         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8203                 _init_and_read_len_prefixed_tlv_fields!(reader, {
8204                         (0, prev_hop, required),
8205                         (1, total_msat, option),
8206                         (2, value_ser, required),
8207                         (3, sender_intended_value, option),
8208                         (4, payment_data_opt, option),
8209                         (5, total_value_received, option),
8210                         (6, cltv_expiry, required),
8211                         (8, keysend_preimage, option),
8212                         (10, counterparty_skimmed_fee_msat, option),
8213                 });
8214                 let payment_data: Option<msgs::FinalOnionHopData> = payment_data_opt;
8215                 let value = value_ser.0.unwrap();
8216                 let onion_payload = match keysend_preimage {
8217                         Some(p) => {
8218                                 if payment_data.is_some() {
8219                                         return Err(DecodeError::InvalidValue)
8220                                 }
8221                                 if total_msat.is_none() {
8222                                         total_msat = Some(value);
8223                                 }
8224                                 OnionPayload::Spontaneous(p)
8225                         },
8226                         None => {
8227                                 if total_msat.is_none() {
8228                                         if payment_data.is_none() {
8229                                                 return Err(DecodeError::InvalidValue)
8230                                         }
8231                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
8232                                 }
8233                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
8234                         },
8235                 };
8236                 Ok(Self {
8237                         prev_hop: prev_hop.0.unwrap(),
8238                         timer_ticks: 0,
8239                         value,
8240                         sender_intended_value: sender_intended_value.unwrap_or(value),
8241                         total_value_received,
8242                         total_msat: total_msat.unwrap(),
8243                         onion_payload,
8244                         cltv_expiry: cltv_expiry.0.unwrap(),
8245                         counterparty_skimmed_fee_msat,
8246                 })
8247         }
8248 }
8249
8250 impl Readable for HTLCSource {
8251         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8252                 let id: u8 = Readable::read(reader)?;
8253                 match id {
8254                         0 => {
8255                                 let mut session_priv: crate::util::ser::RequiredWrapper<SecretKey> = crate::util::ser::RequiredWrapper(None);
8256                                 let mut first_hop_htlc_msat: u64 = 0;
8257                                 let mut path_hops = Vec::new();
8258                                 let mut payment_id = None;
8259                                 let mut payment_params: Option<PaymentParameters> = None;
8260                                 let mut blinded_tail: Option<BlindedTail> = None;
8261                                 read_tlv_fields!(reader, {
8262                                         (0, session_priv, required),
8263                                         (1, payment_id, option),
8264                                         (2, first_hop_htlc_msat, required),
8265                                         (4, path_hops, required_vec),
8266                                         (5, payment_params, (option: ReadableArgs, 0)),
8267                                         (6, blinded_tail, option),
8268                                 });
8269                                 if payment_id.is_none() {
8270                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
8271                                         // instead.
8272                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
8273                                 }
8274                                 let path = Path { hops: path_hops, blinded_tail };
8275                                 if path.hops.len() == 0 {
8276                                         return Err(DecodeError::InvalidValue);
8277                                 }
8278                                 if let Some(params) = payment_params.as_mut() {
8279                                         if let Payee::Clear { ref mut final_cltv_expiry_delta, .. } = params.payee {
8280                                                 if final_cltv_expiry_delta == &0 {
8281                                                         *final_cltv_expiry_delta = path.final_cltv_expiry_delta().ok_or(DecodeError::InvalidValue)?;
8282                                                 }
8283                                         }
8284                                 }
8285                                 Ok(HTLCSource::OutboundRoute {
8286                                         session_priv: session_priv.0.unwrap(),
8287                                         first_hop_htlc_msat,
8288                                         path,
8289                                         payment_id: payment_id.unwrap(),
8290                                 })
8291                         }
8292                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
8293                         _ => Err(DecodeError::UnknownRequiredFeature),
8294                 }
8295         }
8296 }
8297
8298 impl Writeable for HTLCSource {
8299         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
8300                 match self {
8301                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id } => {
8302                                 0u8.write(writer)?;
8303                                 let payment_id_opt = Some(payment_id);
8304                                 write_tlv_fields!(writer, {
8305                                         (0, session_priv, required),
8306                                         (1, payment_id_opt, option),
8307                                         (2, first_hop_htlc_msat, required),
8308                                         // 3 was previously used to write a PaymentSecret for the payment.
8309                                         (4, path.hops, required_vec),
8310                                         (5, None::<PaymentParameters>, option), // payment_params in LDK versions prior to 0.0.115
8311                                         (6, path.blinded_tail, option),
8312                                  });
8313                         }
8314                         HTLCSource::PreviousHopData(ref field) => {
8315                                 1u8.write(writer)?;
8316                                 field.write(writer)?;
8317                         }
8318                 }
8319                 Ok(())
8320         }
8321 }
8322
8323 impl_writeable_tlv_based!(PendingAddHTLCInfo, {
8324         (0, forward_info, required),
8325         (1, prev_user_channel_id, (default_value, 0)),
8326         (2, prev_short_channel_id, required),
8327         (4, prev_htlc_id, required),
8328         (6, prev_funding_outpoint, required),
8329 });
8330
8331 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
8332         (1, FailHTLC) => {
8333                 (0, htlc_id, required),
8334                 (2, err_packet, required),
8335         };
8336         (0, AddHTLC)
8337 );
8338
8339 impl_writeable_tlv_based!(PendingInboundPayment, {
8340         (0, payment_secret, required),
8341         (2, expiry_time, required),
8342         (4, user_payment_id, required),
8343         (6, payment_preimage, required),
8344         (8, min_value_msat, required),
8345 });
8346
8347 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>
8348 where
8349         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8350         T::Target: BroadcasterInterface,
8351         ES::Target: EntropySource,
8352         NS::Target: NodeSigner,
8353         SP::Target: SignerProvider,
8354         F::Target: FeeEstimator,
8355         R::Target: Router,
8356         L::Target: Logger,
8357 {
8358         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
8359                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
8360
8361                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
8362
8363                 self.genesis_hash.write(writer)?;
8364                 {
8365                         let best_block = self.best_block.read().unwrap();
8366                         best_block.height().write(writer)?;
8367                         best_block.block_hash().write(writer)?;
8368                 }
8369
8370                 let mut serializable_peer_count: u64 = 0;
8371                 {
8372                         let per_peer_state = self.per_peer_state.read().unwrap();
8373                         let mut number_of_funded_channels = 0;
8374                         for (_, peer_state_mutex) in per_peer_state.iter() {
8375                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8376                                 let peer_state = &mut *peer_state_lock;
8377                                 if !peer_state.ok_to_remove(false) {
8378                                         serializable_peer_count += 1;
8379                                 }
8380
8381                                 number_of_funded_channels += peer_state.channel_by_id.iter().filter(
8382                                         |(_, phase)| if let ChannelPhase::Funded(chan) = phase { chan.context.is_funding_initiated() } else { false }
8383                                 ).count();
8384                         }
8385
8386                         (number_of_funded_channels as u64).write(writer)?;
8387
8388                         for (_, peer_state_mutex) in per_peer_state.iter() {
8389                                 let mut peer_state_lock = peer_state_mutex.lock().unwrap();
8390                                 let peer_state = &mut *peer_state_lock;
8391                                 for channel in peer_state.channel_by_id.iter().filter_map(
8392                                         |(_, phase)| if let ChannelPhase::Funded(channel) = phase {
8393                                                 if channel.context.is_funding_initiated() { Some(channel) } else { None }
8394                                         } else { None }
8395                                 ) {
8396                                         channel.write(writer)?;
8397                                 }
8398                         }
8399                 }
8400
8401                 {
8402                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
8403                         (forward_htlcs.len() as u64).write(writer)?;
8404                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
8405                                 short_channel_id.write(writer)?;
8406                                 (pending_forwards.len() as u64).write(writer)?;
8407                                 for forward in pending_forwards {
8408                                         forward.write(writer)?;
8409                                 }
8410                         }
8411                 }
8412
8413                 let per_peer_state = self.per_peer_state.write().unwrap();
8414
8415                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
8416                 let claimable_payments = self.claimable_payments.lock().unwrap();
8417                 let pending_outbound_payments = self.pending_outbound_payments.pending_outbound_payments.lock().unwrap();
8418
8419                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
8420                 let mut htlc_onion_fields: Vec<&_> = Vec::new();
8421                 (claimable_payments.claimable_payments.len() as u64).write(writer)?;
8422                 for (payment_hash, payment) in claimable_payments.claimable_payments.iter() {
8423                         payment_hash.write(writer)?;
8424                         (payment.htlcs.len() as u64).write(writer)?;
8425                         for htlc in payment.htlcs.iter() {
8426                                 htlc.write(writer)?;
8427                         }
8428                         htlc_purposes.push(&payment.purpose);
8429                         htlc_onion_fields.push(&payment.onion_fields);
8430                 }
8431
8432                 let mut monitor_update_blocked_actions_per_peer = None;
8433                 let mut peer_states = Vec::new();
8434                 for (_, peer_state_mutex) in per_peer_state.iter() {
8435                         // Because we're holding the owning `per_peer_state` write lock here there's no chance
8436                         // of a lockorder violation deadlock - no other thread can be holding any
8437                         // per_peer_state lock at all.
8438                         peer_states.push(peer_state_mutex.unsafe_well_ordered_double_lock_self());
8439                 }
8440
8441                 (serializable_peer_count).write(writer)?;
8442                 for ((peer_pubkey, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8443                         // Peers which we have no channels to should be dropped once disconnected. As we
8444                         // disconnect all peers when shutting down and serializing the ChannelManager, we
8445                         // consider all peers as disconnected here. There's therefore no need write peers with
8446                         // no channels.
8447                         if !peer_state.ok_to_remove(false) {
8448                                 peer_pubkey.write(writer)?;
8449                                 peer_state.latest_features.write(writer)?;
8450                                 if !peer_state.monitor_update_blocked_actions.is_empty() {
8451                                         monitor_update_blocked_actions_per_peer
8452                                                 .get_or_insert_with(Vec::new)
8453                                                 .push((*peer_pubkey, &peer_state.monitor_update_blocked_actions));
8454                                 }
8455                         }
8456                 }
8457
8458                 let events = self.pending_events.lock().unwrap();
8459                 // LDK versions prior to 0.0.115 don't support post-event actions, thus if there's no
8460                 // actions at all, skip writing the required TLV. Otherwise, pre-0.0.115 versions will
8461                 // refuse to read the new ChannelManager.
8462                 let events_not_backwards_compatible = events.iter().any(|(_, action)| action.is_some());
8463                 if events_not_backwards_compatible {
8464                         // If we're gonna write a even TLV that will overwrite our events anyway we might as
8465                         // well save the space and not write any events here.
8466                         0u64.write(writer)?;
8467                 } else {
8468                         (events.len() as u64).write(writer)?;
8469                         for (event, _) in events.iter() {
8470                                 event.write(writer)?;
8471                         }
8472                 }
8473
8474                 // LDK versions prior to 0.0.116 wrote the `pending_background_events`
8475                 // `MonitorUpdateRegeneratedOnStartup`s here, however there was never a reason to do so -
8476                 // the closing monitor updates were always effectively replayed on startup (either directly
8477                 // by calling `broadcast_latest_holder_commitment_txn` on a `ChannelMonitor` during
8478                 // deserialization or, in 0.0.115, by regenerating the monitor update itself).
8479                 0u64.write(writer)?;
8480
8481                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
8482                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
8483                 // likely to be identical.
8484                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8485                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
8486
8487                 (pending_inbound_payments.len() as u64).write(writer)?;
8488                 for (hash, pending_payment) in pending_inbound_payments.iter() {
8489                         hash.write(writer)?;
8490                         pending_payment.write(writer)?;
8491                 }
8492
8493                 // For backwards compat, write the session privs and their total length.
8494                 let mut num_pending_outbounds_compat: u64 = 0;
8495                 for (_, outbound) in pending_outbound_payments.iter() {
8496                         if !outbound.is_fulfilled() && !outbound.abandoned() {
8497                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
8498                         }
8499                 }
8500                 num_pending_outbounds_compat.write(writer)?;
8501                 for (_, outbound) in pending_outbound_payments.iter() {
8502                         match outbound {
8503                                 PendingOutboundPayment::Legacy { session_privs } |
8504                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8505                                         for session_priv in session_privs.iter() {
8506                                                 session_priv.write(writer)?;
8507                                         }
8508                                 }
8509                                 PendingOutboundPayment::AwaitingInvoice { .. } => {},
8510                                 PendingOutboundPayment::InvoiceReceived { .. } => {},
8511                                 PendingOutboundPayment::Fulfilled { .. } => {},
8512                                 PendingOutboundPayment::Abandoned { .. } => {},
8513                         }
8514                 }
8515
8516                 // Encode without retry info for 0.0.101 compatibility.
8517                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
8518                 for (id, outbound) in pending_outbound_payments.iter() {
8519                         match outbound {
8520                                 PendingOutboundPayment::Legacy { session_privs } |
8521                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
8522                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
8523                                 },
8524                                 _ => {},
8525                         }
8526                 }
8527
8528                 let mut pending_intercepted_htlcs = None;
8529                 let our_pending_intercepts = self.pending_intercepted_htlcs.lock().unwrap();
8530                 if our_pending_intercepts.len() != 0 {
8531                         pending_intercepted_htlcs = Some(our_pending_intercepts);
8532                 }
8533
8534                 let mut pending_claiming_payments = Some(&claimable_payments.pending_claiming_payments);
8535                 if pending_claiming_payments.as_ref().unwrap().is_empty() {
8536                         // LDK versions prior to 0.0.113 do not know how to read the pending claimed payments
8537                         // map. Thus, if there are no entries we skip writing a TLV for it.
8538                         pending_claiming_payments = None;
8539                 }
8540
8541                 let mut in_flight_monitor_updates: Option<HashMap<(&PublicKey, &OutPoint), &Vec<ChannelMonitorUpdate>>> = None;
8542                 for ((counterparty_id, _), peer_state) in per_peer_state.iter().zip(peer_states.iter()) {
8543                         for (funding_outpoint, updates) in peer_state.in_flight_monitor_updates.iter() {
8544                                 if !updates.is_empty() {
8545                                         if in_flight_monitor_updates.is_none() { in_flight_monitor_updates = Some(HashMap::new()); }
8546                                         in_flight_monitor_updates.as_mut().unwrap().insert((counterparty_id, funding_outpoint), updates);
8547                                 }
8548                         }
8549                 }
8550
8551                 write_tlv_fields!(writer, {
8552                         (1, pending_outbound_payments_no_retry, required),
8553                         (2, pending_intercepted_htlcs, option),
8554                         (3, pending_outbound_payments, required),
8555                         (4, pending_claiming_payments, option),
8556                         (5, self.our_network_pubkey, required),
8557                         (6, monitor_update_blocked_actions_per_peer, option),
8558                         (7, self.fake_scid_rand_bytes, required),
8559                         (8, if events_not_backwards_compatible { Some(&*events) } else { None }, option),
8560                         (9, htlc_purposes, required_vec),
8561                         (10, in_flight_monitor_updates, option),
8562                         (11, self.probing_cookie_secret, required),
8563                         (13, htlc_onion_fields, optional_vec),
8564                 });
8565
8566                 Ok(())
8567         }
8568 }
8569
8570 impl Writeable for VecDeque<(Event, Option<EventCompletionAction>)> {
8571         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
8572                 (self.len() as u64).write(w)?;
8573                 for (event, action) in self.iter() {
8574                         event.write(w)?;
8575                         action.write(w)?;
8576                         #[cfg(debug_assertions)] {
8577                                 // Events are MaybeReadable, in some cases indicating that they shouldn't actually
8578                                 // be persisted and are regenerated on restart. However, if such an event has a
8579                                 // post-event-handling action we'll write nothing for the event and would have to
8580                                 // either forget the action or fail on deserialization (which we do below). Thus,
8581                                 // check that the event is sane here.
8582                                 let event_encoded = event.encode();
8583                                 let event_read: Option<Event> =
8584                                         MaybeReadable::read(&mut &event_encoded[..]).unwrap();
8585                                 if action.is_some() { assert!(event_read.is_some()); }
8586                         }
8587                 }
8588                 Ok(())
8589         }
8590 }
8591 impl Readable for VecDeque<(Event, Option<EventCompletionAction>)> {
8592         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
8593                 let len: u64 = Readable::read(reader)?;
8594                 const MAX_ALLOC_SIZE: u64 = 1024 * 16;
8595                 let mut events: Self = VecDeque::with_capacity(cmp::min(
8596                         MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>() as u64,
8597                         len) as usize);
8598                 for _ in 0..len {
8599                         let ev_opt = MaybeReadable::read(reader)?;
8600                         let action = Readable::read(reader)?;
8601                         if let Some(ev) = ev_opt {
8602                                 events.push_back((ev, action));
8603                         } else if action.is_some() {
8604                                 return Err(DecodeError::InvalidValue);
8605                         }
8606                 }
8607                 Ok(events)
8608         }
8609 }
8610
8611 impl_writeable_tlv_based_enum!(ChannelShutdownState,
8612         (0, NotShuttingDown) => {},
8613         (2, ShutdownInitiated) => {},
8614         (4, ResolvingHTLCs) => {},
8615         (6, NegotiatingClosingFee) => {},
8616         (8, ShutdownComplete) => {}, ;
8617 );
8618
8619 /// Arguments for the creation of a ChannelManager that are not deserialized.
8620 ///
8621 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
8622 /// is:
8623 /// 1) Deserialize all stored [`ChannelMonitor`]s.
8624 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
8625 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
8626 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
8627 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
8628 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
8629 ///    same way you would handle a [`chain::Filter`] call using
8630 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
8631 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
8632 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
8633 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
8634 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
8635 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
8636 ///    the next step.
8637 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
8638 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
8639 ///
8640 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
8641 /// call any other methods on the newly-deserialized [`ChannelManager`].
8642 ///
8643 /// Note that because some channels may be closed during deserialization, it is critical that you
8644 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
8645 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
8646 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
8647 /// not force-close the same channels but consider them live), you may end up revoking a state for
8648 /// which you've already broadcasted the transaction.
8649 ///
8650 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
8651 pub struct ChannelManagerReadArgs<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8652 where
8653         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8654         T::Target: BroadcasterInterface,
8655         ES::Target: EntropySource,
8656         NS::Target: NodeSigner,
8657         SP::Target: SignerProvider,
8658         F::Target: FeeEstimator,
8659         R::Target: Router,
8660         L::Target: Logger,
8661 {
8662         /// A cryptographically secure source of entropy.
8663         pub entropy_source: ES,
8664
8665         /// A signer that is able to perform node-scoped cryptographic operations.
8666         pub node_signer: NS,
8667
8668         /// The keys provider which will give us relevant keys. Some keys will be loaded during
8669         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
8670         /// signing data.
8671         pub signer_provider: SP,
8672
8673         /// The fee_estimator for use in the ChannelManager in the future.
8674         ///
8675         /// No calls to the FeeEstimator will be made during deserialization.
8676         pub fee_estimator: F,
8677         /// The chain::Watch for use in the ChannelManager in the future.
8678         ///
8679         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
8680         /// you have deserialized ChannelMonitors separately and will add them to your
8681         /// chain::Watch after deserializing this ChannelManager.
8682         pub chain_monitor: M,
8683
8684         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
8685         /// used to broadcast the latest local commitment transactions of channels which must be
8686         /// force-closed during deserialization.
8687         pub tx_broadcaster: T,
8688         /// The router which will be used in the ChannelManager in the future for finding routes
8689         /// on-the-fly for trampoline payments. Absent in private nodes that don't support forwarding.
8690         ///
8691         /// No calls to the router will be made during deserialization.
8692         pub router: R,
8693         /// The Logger for use in the ChannelManager and which may be used to log information during
8694         /// deserialization.
8695         pub logger: L,
8696         /// Default settings used for new channels. Any existing channels will continue to use the
8697         /// runtime settings which were stored when the ChannelManager was serialized.
8698         pub default_config: UserConfig,
8699
8700         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
8701         /// value.context.get_funding_txo() should be the key).
8702         ///
8703         /// If a monitor is inconsistent with the channel state during deserialization the channel will
8704         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
8705         /// is true for missing channels as well. If there is a monitor missing for which we find
8706         /// channel data Err(DecodeError::InvalidValue) will be returned.
8707         ///
8708         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
8709         /// this struct.
8710         ///
8711         /// This is not exported to bindings users because we have no HashMap bindings
8712         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>,
8713 }
8714
8715 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8716                 ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>
8717 where
8718         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8719         T::Target: BroadcasterInterface,
8720         ES::Target: EntropySource,
8721         NS::Target: NodeSigner,
8722         SP::Target: SignerProvider,
8723         F::Target: FeeEstimator,
8724         R::Target: Router,
8725         L::Target: Logger,
8726 {
8727         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
8728         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
8729         /// populate a HashMap directly from C.
8730         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,
8731                         mut channel_monitors: Vec<&'a mut ChannelMonitor<<SP::Target as SignerProvider>::Signer>>) -> Self {
8732                 Self {
8733                         entropy_source, node_signer, signer_provider, fee_estimator, chain_monitor, tx_broadcaster, router, logger, default_config,
8734                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
8735                 }
8736         }
8737 }
8738
8739 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
8740 // SipmleArcChannelManager type:
8741 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8742         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, Arc<ChannelManager<M, T, ES, NS, SP, F, R, L>>)
8743 where
8744         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8745         T::Target: BroadcasterInterface,
8746         ES::Target: EntropySource,
8747         NS::Target: NodeSigner,
8748         SP::Target: SignerProvider,
8749         F::Target: FeeEstimator,
8750         R::Target: Router,
8751         L::Target: Logger,
8752 {
8753         fn read<Reader: io::Read>(reader: &mut Reader, args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8754                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)>::read(reader, args)?;
8755                 Ok((blockhash, Arc::new(chan_manager)))
8756         }
8757 }
8758
8759 impl<'a, M: Deref, T: Deref, ES: Deref, NS: Deref, SP: Deref, F: Deref, R: Deref, L: Deref>
8760         ReadableArgs<ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>> for (BlockHash, ChannelManager<M, T, ES, NS, SP, F, R, L>)
8761 where
8762         M::Target: chain::Watch<<SP::Target as SignerProvider>::Signer>,
8763         T::Target: BroadcasterInterface,
8764         ES::Target: EntropySource,
8765         NS::Target: NodeSigner,
8766         SP::Target: SignerProvider,
8767         F::Target: FeeEstimator,
8768         R::Target: Router,
8769         L::Target: Logger,
8770 {
8771         fn read<Reader: io::Read>(reader: &mut Reader, mut args: ChannelManagerReadArgs<'a, M, T, ES, NS, SP, F, R, L>) -> Result<Self, DecodeError> {
8772                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
8773
8774                 let genesis_hash: BlockHash = Readable::read(reader)?;
8775                 let best_block_height: u32 = Readable::read(reader)?;
8776                 let best_block_hash: BlockHash = Readable::read(reader)?;
8777
8778                 let mut failed_htlcs = Vec::new();
8779
8780                 let channel_count: u64 = Readable::read(reader)?;
8781                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
8782                 let mut funded_peer_channels: HashMap<PublicKey, HashMap<ChannelId, ChannelPhase<SP>>> = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8783                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8784                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
8785                 let mut channel_closures = VecDeque::new();
8786                 let mut close_background_events = Vec::new();
8787                 for _ in 0..channel_count {
8788                         let mut channel: Channel<SP> = Channel::read(reader, (
8789                                 &args.entropy_source, &args.signer_provider, best_block_height, &provided_channel_type_features(&args.default_config)
8790                         ))?;
8791                         let funding_txo = channel.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
8792                         funding_txo_set.insert(funding_txo.clone());
8793                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
8794                                 if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
8795                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
8796                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
8797                                                 channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8798                                         // But if the channel is behind of the monitor, close the channel:
8799                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
8800                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
8801                                         if channel.context.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
8802                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
8803                                                         &channel.context.channel_id(), monitor.get_latest_update_id(), channel.context.get_latest_monitor_update_id());
8804                                         }
8805                                         if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() {
8806                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at holder commitment number {} but the ChannelManager is at holder commitment number {}.",
8807                                                         &channel.context.channel_id(), monitor.get_cur_holder_commitment_number(), channel.get_cur_holder_commitment_transaction_number());
8808                                         }
8809                                         if channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() {
8810                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at revoked counterparty transaction number {} but the ChannelManager is at revoked counterparty transaction number {}.",
8811                                                         &channel.context.channel_id(), monitor.get_min_seen_secret(), channel.get_revoked_counterparty_commitment_transaction_number());
8812                                         }
8813                                         if channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() {
8814                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at counterparty commitment transaction number {} but the ChannelManager is at counterparty commitment transaction number {}.",
8815                                                         &channel.context.channel_id(), monitor.get_cur_counterparty_commitment_number(), channel.get_cur_counterparty_commitment_transaction_number());
8816                                         }
8817                                         let (monitor_update, mut new_failed_htlcs) = channel.context.force_shutdown(true);
8818                                         if let Some((counterparty_node_id, funding_txo, update)) = monitor_update {
8819                                                 close_background_events.push(BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
8820                                                         counterparty_node_id, funding_txo, update
8821                                                 });
8822                                         }
8823                                         failed_htlcs.append(&mut new_failed_htlcs);
8824                                         channel_closures.push_back((events::Event::ChannelClosed {
8825                                                 channel_id: channel.context.channel_id(),
8826                                                 user_channel_id: channel.context.get_user_id(),
8827                                                 reason: ClosureReason::OutdatedChannelManager,
8828                                                 counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8829                                                 channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8830                                         }, None));
8831                                         for (channel_htlc_source, payment_hash) in channel.inflight_htlc_sources() {
8832                                                 let mut found_htlc = false;
8833                                                 for (monitor_htlc_source, _) in monitor.get_all_current_outbound_htlcs() {
8834                                                         if *channel_htlc_source == monitor_htlc_source { found_htlc = true; break; }
8835                                                 }
8836                                                 if !found_htlc {
8837                                                         // If we have some HTLCs in the channel which are not present in the newer
8838                                                         // ChannelMonitor, they have been removed and should be failed back to
8839                                                         // ensure we don't forget them entirely. Note that if the missing HTLC(s)
8840                                                         // were actually claimed we'd have generated and ensured the previous-hop
8841                                                         // claim update ChannelMonitor updates were persisted prior to persising
8842                                                         // the ChannelMonitor update for the forward leg, so attempting to fail the
8843                                                         // backwards leg of the HTLC will simply be rejected.
8844                                                         log_info!(args.logger,
8845                                                                 "Failing HTLC with hash {} as it is missing in the ChannelMonitor for channel {} but was present in the (stale) ChannelManager",
8846                                                                 &channel.context.channel_id(), &payment_hash);
8847                                                         failed_htlcs.push((channel_htlc_source.clone(), *payment_hash, channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8848                                                 }
8849                                         }
8850                                 } else {
8851                                         log_info!(args.logger, "Successfully loaded channel {} at update_id {} against monitor at update id {}",
8852                                                 &channel.context.channel_id(), channel.context.get_latest_monitor_update_id(),
8853                                                 monitor.get_latest_update_id());
8854                                         if let Some(short_channel_id) = channel.context.get_short_channel_id() {
8855                                                 short_to_chan_info.insert(short_channel_id, (channel.context.get_counterparty_node_id(), channel.context.channel_id()));
8856                                         }
8857                                         if channel.context.is_funding_initiated() {
8858                                                 id_to_peer.insert(channel.context.channel_id(), channel.context.get_counterparty_node_id());
8859                                         }
8860                                         match funded_peer_channels.entry(channel.context.get_counterparty_node_id()) {
8861                                                 hash_map::Entry::Occupied(mut entry) => {
8862                                                         let by_id_map = entry.get_mut();
8863                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
8864                                                 },
8865                                                 hash_map::Entry::Vacant(entry) => {
8866                                                         let mut by_id_map = HashMap::new();
8867                                                         by_id_map.insert(channel.context.channel_id(), ChannelPhase::Funded(channel));
8868                                                         entry.insert(by_id_map);
8869                                                 }
8870                                         }
8871                                 }
8872                         } else if channel.is_awaiting_initial_mon_persist() {
8873                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
8874                                 // was in-progress, we never broadcasted the funding transaction and can still
8875                                 // safely discard the channel.
8876                                 let _ = channel.context.force_shutdown(false);
8877                                 channel_closures.push_back((events::Event::ChannelClosed {
8878                                         channel_id: channel.context.channel_id(),
8879                                         user_channel_id: channel.context.get_user_id(),
8880                                         reason: ClosureReason::DisconnectedPeer,
8881                                         counterparty_node_id: Some(channel.context.get_counterparty_node_id()),
8882                                         channel_capacity_sats: Some(channel.context.get_value_satoshis()),
8883                                 }, None));
8884                         } else {
8885                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", &channel.context.channel_id());
8886                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
8887                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
8888                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
8889                                 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");
8890                                 return Err(DecodeError::InvalidValue);
8891                         }
8892                 }
8893
8894                 for (funding_txo, _) in args.channel_monitors.iter() {
8895                         if !funding_txo_set.contains(funding_txo) {
8896                                 log_info!(args.logger, "Queueing monitor update to ensure missing channel {} is force closed",
8897                                         &funding_txo.to_channel_id());
8898                                 let monitor_update = ChannelMonitorUpdate {
8899                                         update_id: CLOSED_CHANNEL_UPDATE_ID,
8900                                         updates: vec![ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast: true }],
8901                                 };
8902                                 close_background_events.push(BackgroundEvent::ClosedMonitorUpdateRegeneratedOnStartup((*funding_txo, monitor_update)));
8903                         }
8904                 }
8905
8906                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
8907                 let forward_htlcs_count: u64 = Readable::read(reader)?;
8908                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
8909                 for _ in 0..forward_htlcs_count {
8910                         let short_channel_id = Readable::read(reader)?;
8911                         let pending_forwards_count: u64 = Readable::read(reader)?;
8912                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
8913                         for _ in 0..pending_forwards_count {
8914                                 pending_forwards.push(Readable::read(reader)?);
8915                         }
8916                         forward_htlcs.insert(short_channel_id, pending_forwards);
8917                 }
8918
8919                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
8920                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
8921                 for _ in 0..claimable_htlcs_count {
8922                         let payment_hash = Readable::read(reader)?;
8923                         let previous_hops_len: u64 = Readable::read(reader)?;
8924                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
8925                         for _ in 0..previous_hops_len {
8926                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
8927                         }
8928                         claimable_htlcs_list.push((payment_hash, previous_hops));
8929                 }
8930
8931                 let peer_state_from_chans = |channel_by_id| {
8932                         PeerState {
8933                                 channel_by_id,
8934                                 inbound_channel_request_by_id: HashMap::new(),
8935                                 latest_features: InitFeatures::empty(),
8936                                 pending_msg_events: Vec::new(),
8937                                 in_flight_monitor_updates: BTreeMap::new(),
8938                                 monitor_update_blocked_actions: BTreeMap::new(),
8939                                 actions_blocking_raa_monitor_updates: BTreeMap::new(),
8940                                 is_connected: false,
8941                         }
8942                 };
8943
8944                 let peer_count: u64 = Readable::read(reader)?;
8945                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState<SP>>)>()));
8946                 for _ in 0..peer_count {
8947                         let peer_pubkey = Readable::read(reader)?;
8948                         let peer_chans = funded_peer_channels.remove(&peer_pubkey).unwrap_or(HashMap::new());
8949                         let mut peer_state = peer_state_from_chans(peer_chans);
8950                         peer_state.latest_features = Readable::read(reader)?;
8951                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
8952                 }
8953
8954                 let event_count: u64 = Readable::read(reader)?;
8955                 let mut pending_events_read: VecDeque<(events::Event, Option<EventCompletionAction>)> =
8956                         VecDeque::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(events::Event, Option<EventCompletionAction>)>()));
8957                 for _ in 0..event_count {
8958                         match MaybeReadable::read(reader)? {
8959                                 Some(event) => pending_events_read.push_back((event, None)),
8960                                 None => continue,
8961                         }
8962                 }
8963
8964                 let background_event_count: u64 = Readable::read(reader)?;
8965                 for _ in 0..background_event_count {
8966                         match <u8 as Readable>::read(reader)? {
8967                                 0 => {
8968                                         // LDK versions prior to 0.0.116 wrote pending `MonitorUpdateRegeneratedOnStartup`s here,
8969                                         // however we really don't (and never did) need them - we regenerate all
8970                                         // on-startup monitor updates.
8971                                         let _: OutPoint = Readable::read(reader)?;
8972                                         let _: ChannelMonitorUpdate = Readable::read(reader)?;
8973                                 }
8974                                 _ => return Err(DecodeError::InvalidValue),
8975                         }
8976                 }
8977
8978                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
8979                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
8980
8981                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
8982                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
8983                 for _ in 0..pending_inbound_payment_count {
8984                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
8985                                 return Err(DecodeError::InvalidValue);
8986                         }
8987                 }
8988
8989                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
8990                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
8991                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
8992                 for _ in 0..pending_outbound_payments_count_compat {
8993                         let session_priv = Readable::read(reader)?;
8994                         let payment = PendingOutboundPayment::Legacy {
8995                                 session_privs: [session_priv].iter().cloned().collect()
8996                         };
8997                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
8998                                 return Err(DecodeError::InvalidValue)
8999                         };
9000                 }
9001
9002                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
9003                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
9004                 let mut pending_outbound_payments = None;
9005                 let mut pending_intercepted_htlcs: Option<HashMap<InterceptId, PendingAddHTLCInfo>> = Some(HashMap::new());
9006                 let mut received_network_pubkey: Option<PublicKey> = None;
9007                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
9008                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
9009                 let mut claimable_htlc_purposes = None;
9010                 let mut claimable_htlc_onion_fields = None;
9011                 let mut pending_claiming_payments = Some(HashMap::new());
9012                 let mut monitor_update_blocked_actions_per_peer: Option<Vec<(_, BTreeMap<_, Vec<_>>)>> = Some(Vec::new());
9013                 let mut events_override = None;
9014                 let mut in_flight_monitor_updates: Option<HashMap<(PublicKey, OutPoint), Vec<ChannelMonitorUpdate>>> = None;
9015                 read_tlv_fields!(reader, {
9016                         (1, pending_outbound_payments_no_retry, option),
9017                         (2, pending_intercepted_htlcs, option),
9018                         (3, pending_outbound_payments, option),
9019                         (4, pending_claiming_payments, option),
9020                         (5, received_network_pubkey, option),
9021                         (6, monitor_update_blocked_actions_per_peer, option),
9022                         (7, fake_scid_rand_bytes, option),
9023                         (8, events_override, option),
9024                         (9, claimable_htlc_purposes, optional_vec),
9025                         (10, in_flight_monitor_updates, option),
9026                         (11, probing_cookie_secret, option),
9027                         (13, claimable_htlc_onion_fields, optional_vec),
9028                 });
9029                 if fake_scid_rand_bytes.is_none() {
9030                         fake_scid_rand_bytes = Some(args.entropy_source.get_secure_random_bytes());
9031                 }
9032
9033                 if probing_cookie_secret.is_none() {
9034                         probing_cookie_secret = Some(args.entropy_source.get_secure_random_bytes());
9035                 }
9036
9037                 if let Some(events) = events_override {
9038                         pending_events_read = events;
9039                 }
9040
9041                 if !channel_closures.is_empty() {
9042                         pending_events_read.append(&mut channel_closures);
9043                 }
9044
9045                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
9046                         pending_outbound_payments = Some(pending_outbound_payments_compat);
9047                 } else if pending_outbound_payments.is_none() {
9048                         let mut outbounds = HashMap::new();
9049                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
9050                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
9051                         }
9052                         pending_outbound_payments = Some(outbounds);
9053                 }
9054                 let pending_outbounds = OutboundPayments {
9055                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
9056                         retry_lock: Mutex::new(())
9057                 };
9058
9059                 // We have to replay (or skip, if they were completed after we wrote the `ChannelManager`)
9060                 // each `ChannelMonitorUpdate` in `in_flight_monitor_updates`. After doing so, we have to
9061                 // check that each channel we have isn't newer than the latest `ChannelMonitorUpdate`(s) we
9062                 // replayed, and for each monitor update we have to replay we have to ensure there's a
9063                 // `ChannelMonitor` for it.
9064                 //
9065                 // In order to do so we first walk all of our live channels (so that we can check their
9066                 // state immediately after doing the update replays, when we have the `update_id`s
9067                 // available) and then walk any remaining in-flight updates.
9068                 //
9069                 // Because the actual handling of the in-flight updates is the same, it's macro'ized here:
9070                 let mut pending_background_events = Vec::new();
9071                 macro_rules! handle_in_flight_updates {
9072                         ($counterparty_node_id: expr, $chan_in_flight_upds: expr, $funding_txo: expr,
9073                          $monitor: expr, $peer_state: expr, $channel_info_log: expr
9074                         ) => { {
9075                                 let mut max_in_flight_update_id = 0;
9076                                 $chan_in_flight_upds.retain(|upd| upd.update_id > $monitor.get_latest_update_id());
9077                                 for update in $chan_in_flight_upds.iter() {
9078                                         log_trace!(args.logger, "Replaying ChannelMonitorUpdate {} for {}channel {}",
9079                                                 update.update_id, $channel_info_log, &$funding_txo.to_channel_id());
9080                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id, update.update_id);
9081                                         pending_background_events.push(
9082                                                 BackgroundEvent::MonitorUpdateRegeneratedOnStartup {
9083                                                         counterparty_node_id: $counterparty_node_id,
9084                                                         funding_txo: $funding_txo,
9085                                                         update: update.clone(),
9086                                                 });
9087                                 }
9088                                 if $chan_in_flight_upds.is_empty() {
9089                                         // We had some updates to apply, but it turns out they had completed before we
9090                                         // were serialized, we just weren't notified of that. Thus, we may have to run
9091                                         // the completion actions for any monitor updates, but otherwise are done.
9092                                         pending_background_events.push(
9093                                                 BackgroundEvent::MonitorUpdatesComplete {
9094                                                         counterparty_node_id: $counterparty_node_id,
9095                                                         channel_id: $funding_txo.to_channel_id(),
9096                                                 });
9097                                 }
9098                                 if $peer_state.in_flight_monitor_updates.insert($funding_txo, $chan_in_flight_upds).is_some() {
9099                                         log_error!(args.logger, "Duplicate in-flight monitor update set for the same channel!");
9100                                         return Err(DecodeError::InvalidValue);
9101                                 }
9102                                 max_in_flight_update_id
9103                         } }
9104                 }
9105
9106                 for (counterparty_id, peer_state_mtx) in per_peer_state.iter_mut() {
9107                         let mut peer_state_lock = peer_state_mtx.lock().unwrap();
9108                         let peer_state = &mut *peer_state_lock;
9109                         for phase in peer_state.channel_by_id.values() {
9110                                 if let ChannelPhase::Funded(chan) = phase {
9111                                         // Channels that were persisted have to be funded, otherwise they should have been
9112                                         // discarded.
9113                                         let funding_txo = chan.context.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
9114                                         let monitor = args.channel_monitors.get(&funding_txo)
9115                                                 .expect("We already checked for monitor presence when loading channels");
9116                                         let mut max_in_flight_update_id = monitor.get_latest_update_id();
9117                                         if let Some(in_flight_upds) = &mut in_flight_monitor_updates {
9118                                                 if let Some(mut chan_in_flight_upds) = in_flight_upds.remove(&(*counterparty_id, funding_txo)) {
9119                                                         max_in_flight_update_id = cmp::max(max_in_flight_update_id,
9120                                                                 handle_in_flight_updates!(*counterparty_id, chan_in_flight_upds,
9121                                                                         funding_txo, monitor, peer_state, ""));
9122                                                 }
9123                                         }
9124                                         if chan.get_latest_unblocked_monitor_update_id() > max_in_flight_update_id {
9125                                                 // If the channel is ahead of the monitor, return InvalidValue:
9126                                                 log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
9127                                                 log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} with update_id through {} in-flight",
9128                                                         chan.context.channel_id(), monitor.get_latest_update_id(), max_in_flight_update_id);
9129                                                 log_error!(args.logger, " but the ChannelManager is at update_id {}.", chan.get_latest_unblocked_monitor_update_id());
9130                                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9131                                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9132                                                 log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9133                                                 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");
9134                                                 return Err(DecodeError::InvalidValue);
9135                                         }
9136                                 } else {
9137                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9138                                         // created in this `channel_by_id` map.
9139                                         debug_assert!(false);
9140                                         return Err(DecodeError::InvalidValue);
9141                                 }
9142                         }
9143                 }
9144
9145                 if let Some(in_flight_upds) = in_flight_monitor_updates {
9146                         for ((counterparty_id, funding_txo), mut chan_in_flight_updates) in in_flight_upds {
9147                                 if let Some(monitor) = args.channel_monitors.get(&funding_txo) {
9148                                         // Now that we've removed all the in-flight monitor updates for channels that are
9149                                         // still open, we need to replay any monitor updates that are for closed channels,
9150                                         // creating the neccessary peer_state entries as we go.
9151                                         let peer_state_mutex = per_peer_state.entry(counterparty_id).or_insert_with(|| {
9152                                                 Mutex::new(peer_state_from_chans(HashMap::new()))
9153                                         });
9154                                         let mut peer_state = peer_state_mutex.lock().unwrap();
9155                                         handle_in_flight_updates!(counterparty_id, chan_in_flight_updates,
9156                                                 funding_txo, monitor, peer_state, "closed ");
9157                                 } else {
9158                                         log_error!(args.logger, "A ChannelMonitor is missing even though we have in-flight updates for it! This indicates a potentially-critical violation of the chain::Watch API!");
9159                                         log_error!(args.logger, " The ChannelMonitor for channel {} is missing.",
9160                                                 &funding_txo.to_channel_id());
9161                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
9162                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
9163                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
9164                                         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");
9165                                         return Err(DecodeError::InvalidValue);
9166                                 }
9167                         }
9168                 }
9169
9170                 // Note that we have to do the above replays before we push new monitor updates.
9171                 pending_background_events.append(&mut close_background_events);
9172
9173                 // If there's any preimages for forwarded HTLCs hanging around in ChannelMonitors we
9174                 // should ensure we try them again on the inbound edge. We put them here and do so after we
9175                 // have a fully-constructed `ChannelManager` at the end.
9176                 let mut pending_claims_to_replay = Vec::new();
9177
9178                 {
9179                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
9180                         // ChannelMonitor data for any channels for which we do not have authorative state
9181                         // (i.e. those for which we just force-closed above or we otherwise don't have a
9182                         // corresponding `Channel` at all).
9183                         // This avoids several edge-cases where we would otherwise "forget" about pending
9184                         // payments which are still in-flight via their on-chain state.
9185                         // We only rebuild the pending payments map if we were most recently serialized by
9186                         // 0.0.102+
9187                         for (_, monitor) in args.channel_monitors.iter() {
9188                                 let counterparty_opt = id_to_peer.get(&monitor.get_funding_txo().0.to_channel_id());
9189                                 if counterparty_opt.is_none() {
9190                                         for (htlc_source, (htlc, _)) in monitor.get_pending_or_resolved_outbound_htlcs() {
9191                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } = htlc_source {
9192                                                         if path.hops.is_empty() {
9193                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
9194                                                                 return Err(DecodeError::InvalidValue);
9195                                                         }
9196
9197                                                         let path_amt = path.final_value_msat();
9198                                                         let mut session_priv_bytes = [0; 32];
9199                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
9200                                                         match pending_outbounds.pending_outbound_payments.lock().unwrap().entry(payment_id) {
9201                                                                 hash_map::Entry::Occupied(mut entry) => {
9202                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
9203                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
9204                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), &htlc.payment_hash);
9205                                                                 },
9206                                                                 hash_map::Entry::Vacant(entry) => {
9207                                                                         let path_fee = path.fee_msat();
9208                                                                         entry.insert(PendingOutboundPayment::Retryable {
9209                                                                                 retry_strategy: None,
9210                                                                                 attempts: PaymentAttempts::new(),
9211                                                                                 payment_params: None,
9212                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
9213                                                                                 payment_hash: htlc.payment_hash,
9214                                                                                 payment_secret: None, // only used for retries, and we'll never retry on startup
9215                                                                                 payment_metadata: None, // only used for retries, and we'll never retry on startup
9216                                                                                 keysend_preimage: None, // only used for retries, and we'll never retry on startup
9217                                                                                 custom_tlvs: Vec::new(), // only used for retries, and we'll never retry on startup
9218                                                                                 pending_amt_msat: path_amt,
9219                                                                                 pending_fee_msat: Some(path_fee),
9220                                                                                 total_msat: path_amt,
9221                                                                                 starting_block_height: best_block_height,
9222                                                                         });
9223                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
9224                                                                                 path_amt, &htlc.payment_hash,  log_bytes!(session_priv_bytes));
9225                                                                 }
9226                                                         }
9227                                                 }
9228                                         }
9229                                         for (htlc_source, (htlc, preimage_opt)) in monitor.get_all_current_outbound_htlcs() {
9230                                                 match htlc_source {
9231                                                         HTLCSource::PreviousHopData(prev_hop_data) => {
9232                                                                 let pending_forward_matches_htlc = |info: &PendingAddHTLCInfo| {
9233                                                                         info.prev_funding_outpoint == prev_hop_data.outpoint &&
9234                                                                                 info.prev_htlc_id == prev_hop_data.htlc_id
9235                                                                 };
9236                                                                 // The ChannelMonitor is now responsible for this HTLC's
9237                                                                 // failure/success and will let us know what its outcome is. If we
9238                                                                 // still have an entry for this HTLC in `forward_htlcs` or
9239                                                                 // `pending_intercepted_htlcs`, we were apparently not persisted after
9240                                                                 // the monitor was when forwarding the payment.
9241                                                                 forward_htlcs.retain(|_, forwards| {
9242                                                                         forwards.retain(|forward| {
9243                                                                                 if let HTLCForwardInfo::AddHTLC(htlc_info) = forward {
9244                                                                                         if pending_forward_matches_htlc(&htlc_info) {
9245                                                                                                 log_info!(args.logger, "Removing pending to-forward HTLC with hash {} as it was forwarded to the closed channel {}",
9246                                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9247                                                                                                 false
9248                                                                                         } else { true }
9249                                                                                 } else { true }
9250                                                                         });
9251                                                                         !forwards.is_empty()
9252                                                                 });
9253                                                                 pending_intercepted_htlcs.as_mut().unwrap().retain(|intercepted_id, htlc_info| {
9254                                                                         if pending_forward_matches_htlc(&htlc_info) {
9255                                                                                 log_info!(args.logger, "Removing pending intercepted HTLC with hash {} as it was forwarded to the closed channel {}",
9256                                                                                         &htlc.payment_hash, &monitor.get_funding_txo().0.to_channel_id());
9257                                                                                 pending_events_read.retain(|(event, _)| {
9258                                                                                         if let Event::HTLCIntercepted { intercept_id: ev_id, .. } = event {
9259                                                                                                 intercepted_id != ev_id
9260                                                                                         } else { true }
9261                                                                                 });
9262                                                                                 false
9263                                                                         } else { true }
9264                                                                 });
9265                                                         },
9266                                                         HTLCSource::OutboundRoute { payment_id, session_priv, path, .. } => {
9267                                                                 if let Some(preimage) = preimage_opt {
9268                                                                         let pending_events = Mutex::new(pending_events_read);
9269                                                                         // Note that we set `from_onchain` to "false" here,
9270                                                                         // deliberately keeping the pending payment around forever.
9271                                                                         // Given it should only occur when we have a channel we're
9272                                                                         // force-closing for being stale that's okay.
9273                                                                         // The alternative would be to wipe the state when claiming,
9274                                                                         // generating a `PaymentPathSuccessful` event but regenerating
9275                                                                         // it and the `PaymentSent` on every restart until the
9276                                                                         // `ChannelMonitor` is removed.
9277                                                                         let compl_action =
9278                                                                                 EventCompletionAction::ReleaseRAAChannelMonitorUpdate {
9279                                                                                         channel_funding_outpoint: monitor.get_funding_txo().0,
9280                                                                                         counterparty_node_id: path.hops[0].pubkey,
9281                                                                                 };
9282                                                                         pending_outbounds.claim_htlc(payment_id, preimage, session_priv,
9283                                                                                 path, false, compl_action, &pending_events, &args.logger);
9284                                                                         pending_events_read = pending_events.into_inner().unwrap();
9285                                                                 }
9286                                                         },
9287                                                 }
9288                                         }
9289                                 }
9290
9291                                 // Whether the downstream channel was closed or not, try to re-apply any payment
9292                                 // preimages from it which may be needed in upstream channels for forwarded
9293                                 // payments.
9294                                 let outbound_claimed_htlcs_iter = monitor.get_all_current_outbound_htlcs()
9295                                         .into_iter()
9296                                         .filter_map(|(htlc_source, (htlc, preimage_opt))| {
9297                                                 if let HTLCSource::PreviousHopData(_) = htlc_source {
9298                                                         if let Some(payment_preimage) = preimage_opt {
9299                                                                 Some((htlc_source, payment_preimage, htlc.amount_msat,
9300                                                                         // Check if `counterparty_opt.is_none()` to see if the
9301                                                                         // downstream chan is closed (because we don't have a
9302                                                                         // channel_id -> peer map entry).
9303                                                                         counterparty_opt.is_none(),
9304                                                                         monitor.get_funding_txo().0))
9305                                                         } else { None }
9306                                                 } else {
9307                                                         // If it was an outbound payment, we've handled it above - if a preimage
9308                                                         // came in and we persisted the `ChannelManager` we either handled it and
9309                                                         // are good to go or the channel force-closed - we don't have to handle the
9310                                                         // channel still live case here.
9311                                                         None
9312                                                 }
9313                                         });
9314                                 for tuple in outbound_claimed_htlcs_iter {
9315                                         pending_claims_to_replay.push(tuple);
9316                                 }
9317                         }
9318                 }
9319
9320                 if !forward_htlcs.is_empty() || pending_outbounds.needs_abandon() {
9321                         // If we have pending HTLCs to forward, assume we either dropped a
9322                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
9323                         // shut down before the timer hit. Either way, set the time_forwardable to a small
9324                         // constant as enough time has likely passed that we should simply handle the forwards
9325                         // now, or at least after the user gets a chance to reconnect to our peers.
9326                         pending_events_read.push_back((events::Event::PendingHTLCsForwardable {
9327                                 time_forwardable: Duration::from_secs(2),
9328                         }, None));
9329                 }
9330
9331                 let inbound_pmt_key_material = args.node_signer.get_inbound_payment_key_material();
9332                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
9333
9334                 let mut claimable_payments = HashMap::with_capacity(claimable_htlcs_list.len());
9335                 if let Some(purposes) = claimable_htlc_purposes {
9336                         if purposes.len() != claimable_htlcs_list.len() {
9337                                 return Err(DecodeError::InvalidValue);
9338                         }
9339                         if let Some(onion_fields) = claimable_htlc_onion_fields {
9340                                 if onion_fields.len() != claimable_htlcs_list.len() {
9341                                         return Err(DecodeError::InvalidValue);
9342                                 }
9343                                 for (purpose, (onion, (payment_hash, htlcs))) in
9344                                         purposes.into_iter().zip(onion_fields.into_iter().zip(claimable_htlcs_list.into_iter()))
9345                                 {
9346                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9347                                                 purpose, htlcs, onion_fields: onion,
9348                                         });
9349                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9350                                 }
9351                         } else {
9352                                 for (purpose, (payment_hash, htlcs)) in purposes.into_iter().zip(claimable_htlcs_list.into_iter()) {
9353                                         let existing_payment = claimable_payments.insert(payment_hash, ClaimablePayment {
9354                                                 purpose, htlcs, onion_fields: None,
9355                                         });
9356                                         if existing_payment.is_some() { return Err(DecodeError::InvalidValue); }
9357                                 }
9358                         }
9359                 } else {
9360                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
9361                         // include a `_legacy_hop_data` in the `OnionPayload`.
9362                         for (payment_hash, htlcs) in claimable_htlcs_list.drain(..) {
9363                                 if htlcs.is_empty() {
9364                                         return Err(DecodeError::InvalidValue);
9365                                 }
9366                                 let purpose = match &htlcs[0].onion_payload {
9367                                         OnionPayload::Invoice { _legacy_hop_data } => {
9368                                                 if let Some(hop_data) = _legacy_hop_data {
9369                                                         events::PaymentPurpose::InvoicePayment {
9370                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
9371                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
9372                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
9373                                                                                 Ok((payment_preimage, _)) => payment_preimage,
9374                                                                                 Err(()) => {
9375                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", &payment_hash);
9376                                                                                         return Err(DecodeError::InvalidValue);
9377                                                                                 }
9378                                                                         }
9379                                                                 },
9380                                                                 payment_secret: hop_data.payment_secret,
9381                                                         }
9382                                                 } else { return Err(DecodeError::InvalidValue); }
9383                                         },
9384                                         OnionPayload::Spontaneous(payment_preimage) =>
9385                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
9386                                 };
9387                                 claimable_payments.insert(payment_hash, ClaimablePayment {
9388                                         purpose, htlcs, onion_fields: None,
9389                                 });
9390                         }
9391                 }
9392
9393                 let mut secp_ctx = Secp256k1::new();
9394                 secp_ctx.seeded_randomize(&args.entropy_source.get_secure_random_bytes());
9395
9396                 let our_network_pubkey = match args.node_signer.get_node_id(Recipient::Node) {
9397                         Ok(key) => key,
9398                         Err(()) => return Err(DecodeError::InvalidValue)
9399                 };
9400                 if let Some(network_pubkey) = received_network_pubkey {
9401                         if network_pubkey != our_network_pubkey {
9402                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
9403                                 return Err(DecodeError::InvalidValue);
9404                         }
9405                 }
9406
9407                 let mut outbound_scid_aliases = HashSet::new();
9408                 for (_peer_node_id, peer_state_mutex) in per_peer_state.iter_mut() {
9409                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9410                         let peer_state = &mut *peer_state_lock;
9411                         for (chan_id, phase) in peer_state.channel_by_id.iter_mut() {
9412                                 if let ChannelPhase::Funded(chan) = phase {
9413                                         if chan.context.outbound_scid_alias() == 0 {
9414                                                 let mut outbound_scid_alias;
9415                                                 loop {
9416                                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
9417                                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.entropy_source);
9418                                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
9419                                                 }
9420                                                 chan.context.set_outbound_scid_alias(outbound_scid_alias);
9421                                         } else if !outbound_scid_aliases.insert(chan.context.outbound_scid_alias()) {
9422                                                 // Note that in rare cases its possible to hit this while reading an older
9423                                                 // channel if we just happened to pick a colliding outbound alias above.
9424                                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9425                                                 return Err(DecodeError::InvalidValue);
9426                                         }
9427                                         if chan.context.is_usable() {
9428                                                 if short_to_chan_info.insert(chan.context.outbound_scid_alias(), (chan.context.get_counterparty_node_id(), *chan_id)).is_some() {
9429                                                         // Note that in rare cases its possible to hit this while reading an older
9430                                                         // channel if we just happened to pick a colliding outbound alias above.
9431                                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.context.outbound_scid_alias());
9432                                                         return Err(DecodeError::InvalidValue);
9433                                                 }
9434                                         }
9435                                 } else {
9436                                         // We shouldn't have persisted (or read) any unfunded channel types so none should have been
9437                                         // created in this `channel_by_id` map.
9438                                         debug_assert!(false);
9439                                         return Err(DecodeError::InvalidValue);
9440                                 }
9441                         }
9442                 }
9443
9444                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
9445
9446                 for (_, monitor) in args.channel_monitors.iter() {
9447                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
9448                                 if let Some(payment) = claimable_payments.remove(&payment_hash) {
9449                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", &payment_hash);
9450                                         let mut claimable_amt_msat = 0;
9451                                         let mut receiver_node_id = Some(our_network_pubkey);
9452                                         let phantom_shared_secret = payment.htlcs[0].prev_hop.phantom_shared_secret;
9453                                         if phantom_shared_secret.is_some() {
9454                                                 let phantom_pubkey = args.node_signer.get_node_id(Recipient::PhantomNode)
9455                                                         .expect("Failed to get node_id for phantom node recipient");
9456                                                 receiver_node_id = Some(phantom_pubkey)
9457                                         }
9458                                         for claimable_htlc in &payment.htlcs {
9459                                                 claimable_amt_msat += claimable_htlc.value;
9460
9461                                                 // Add a holding-cell claim of the payment to the Channel, which should be
9462                                                 // applied ~immediately on peer reconnection. Because it won't generate a
9463                                                 // new commitment transaction we can just provide the payment preimage to
9464                                                 // the corresponding ChannelMonitor and nothing else.
9465                                                 //
9466                                                 // We do so directly instead of via the normal ChannelMonitor update
9467                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
9468                                                 // we're not allowed to call it directly yet. Further, we do the update
9469                                                 // without incrementing the ChannelMonitor update ID as there isn't any
9470                                                 // reason to.
9471                                                 // If we were to generate a new ChannelMonitor update ID here and then
9472                                                 // crash before the user finishes block connect we'd end up force-closing
9473                                                 // this channel as well. On the flip side, there's no harm in restarting
9474                                                 // without the new monitor persisted - we'll end up right back here on
9475                                                 // restart.
9476                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
9477                                                 if let Some(peer_node_id) = id_to_peer.get(&previous_channel_id){
9478                                                         let peer_state_mutex = per_peer_state.get(peer_node_id).unwrap();
9479                                                         let mut peer_state_lock = peer_state_mutex.lock().unwrap();
9480                                                         let peer_state = &mut *peer_state_lock;
9481                                                         if let Some(ChannelPhase::Funded(channel)) = peer_state.channel_by_id.get_mut(&previous_channel_id) {
9482                                                                 channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
9483                                                         }
9484                                                 }
9485                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
9486                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
9487                                                 }
9488                                         }
9489                                         pending_events_read.push_back((events::Event::PaymentClaimed {
9490                                                 receiver_node_id,
9491                                                 payment_hash,
9492                                                 purpose: payment.purpose,
9493                                                 amount_msat: claimable_amt_msat,
9494                                                 htlcs: payment.htlcs.iter().map(events::ClaimedHTLC::from).collect(),
9495                                                 sender_intended_total_msat: payment.htlcs.first().map(|htlc| htlc.total_msat),
9496                                         }, None));
9497                                 }
9498                         }
9499                 }
9500
9501                 for (node_id, monitor_update_blocked_actions) in monitor_update_blocked_actions_per_peer.unwrap() {
9502                         if let Some(peer_state) = per_peer_state.get(&node_id) {
9503                                 for (_, actions) in monitor_update_blocked_actions.iter() {
9504                                         for action in actions.iter() {
9505                                                 if let MonitorUpdateCompletionAction::EmitEventAndFreeOtherChannel {
9506                                                         downstream_counterparty_and_funding_outpoint:
9507                                                                 Some((blocked_node_id, blocked_channel_outpoint, blocking_action)), ..
9508                                                 } = action {
9509                                                         if let Some(blocked_peer_state) = per_peer_state.get(&blocked_node_id) {
9510                                                                 blocked_peer_state.lock().unwrap().actions_blocking_raa_monitor_updates
9511                                                                         .entry(blocked_channel_outpoint.to_channel_id())
9512                                                                         .or_insert_with(Vec::new).push(blocking_action.clone());
9513                                                         } else {
9514                                                                 // If the channel we were blocking has closed, we don't need to
9515                                                                 // worry about it - the blocked monitor update should never have
9516                                                                 // been released from the `Channel` object so it can't have
9517                                                                 // completed, and if the channel closed there's no reason to bother
9518                                                                 // anymore.
9519                                                         }
9520                                                 }
9521                                         }
9522                                 }
9523                                 peer_state.lock().unwrap().monitor_update_blocked_actions = monitor_update_blocked_actions;
9524                         } else {
9525                                 log_error!(args.logger, "Got blocked actions without a per-peer-state for {}", node_id);
9526                                 return Err(DecodeError::InvalidValue);
9527                         }
9528                 }
9529
9530                 let channel_manager = ChannelManager {
9531                         genesis_hash,
9532                         fee_estimator: bounded_fee_estimator,
9533                         chain_monitor: args.chain_monitor,
9534                         tx_broadcaster: args.tx_broadcaster,
9535                         router: args.router,
9536
9537                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
9538
9539                         inbound_payment_key: expanded_inbound_key,
9540                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
9541                         pending_outbound_payments: pending_outbounds,
9542                         pending_intercepted_htlcs: Mutex::new(pending_intercepted_htlcs.unwrap()),
9543
9544                         forward_htlcs: Mutex::new(forward_htlcs),
9545                         claimable_payments: Mutex::new(ClaimablePayments { claimable_payments, pending_claiming_payments: pending_claiming_payments.unwrap() }),
9546                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
9547                         id_to_peer: Mutex::new(id_to_peer),
9548                         short_to_chan_info: FairRwLock::new(short_to_chan_info),
9549                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
9550
9551                         probing_cookie_secret: probing_cookie_secret.unwrap(),
9552
9553                         our_network_pubkey,
9554                         secp_ctx,
9555
9556                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
9557
9558                         per_peer_state: FairRwLock::new(per_peer_state),
9559
9560                         pending_events: Mutex::new(pending_events_read),
9561                         pending_events_processor: AtomicBool::new(false),
9562                         pending_background_events: Mutex::new(pending_background_events),
9563                         total_consistency_lock: RwLock::new(()),
9564                         background_events_processed_since_startup: AtomicBool::new(false),
9565                         persistence_notifier: Notifier::new(),
9566
9567                         entropy_source: args.entropy_source,
9568                         node_signer: args.node_signer,
9569                         signer_provider: args.signer_provider,
9570
9571                         logger: args.logger,
9572                         default_configuration: args.default_config,
9573                 };
9574
9575                 for htlc_source in failed_htlcs.drain(..) {
9576                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
9577                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
9578                         let reason = HTLCFailReason::from_failure_code(0x4000 | 8);
9579                         channel_manager.fail_htlc_backwards_internal(&source, &payment_hash, &reason, receiver);
9580                 }
9581
9582                 for (source, preimage, downstream_value, downstream_closed, downstream_funding) in pending_claims_to_replay {
9583                         // We use `downstream_closed` in place of `from_onchain` here just as a guess - we
9584                         // don't remember in the `ChannelMonitor` where we got a preimage from, but if the
9585                         // channel is closed we just assume that it probably came from an on-chain claim.
9586                         channel_manager.claim_funds_internal(source, preimage, Some(downstream_value),
9587                                 downstream_closed, downstream_funding);
9588                 }
9589
9590                 //TODO: Broadcast channel update for closed channels, but only after we've made a
9591                 //connection or two.
9592
9593                 Ok((best_block_hash.clone(), channel_manager))
9594         }
9595 }
9596
9597 #[cfg(test)]
9598 mod tests {
9599         use bitcoin::hashes::Hash;
9600         use bitcoin::hashes::sha256::Hash as Sha256;
9601         use bitcoin::secp256k1::{PublicKey, Secp256k1, SecretKey};
9602         use core::sync::atomic::Ordering;
9603         use crate::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
9604         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
9605         use crate::ln::ChannelId;
9606         use crate::ln::channelmanager::{inbound_payment, PaymentId, PaymentSendFailure, RecipientOnionFields, InterceptId};
9607         use crate::ln::functional_test_utils::*;
9608         use crate::ln::msgs::{self, ErrorAction};
9609         use crate::ln::msgs::ChannelMessageHandler;
9610         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
9611         use crate::util::errors::APIError;
9612         use crate::util::test_utils;
9613         use crate::util::config::{ChannelConfig, ChannelConfigUpdate};
9614         use crate::sign::EntropySource;
9615
9616         #[test]
9617         fn test_notify_limits() {
9618                 // Check that a few cases which don't require the persistence of a new ChannelManager,
9619                 // indeed, do not cause the persistence of a new ChannelManager.
9620                 let chanmon_cfgs = create_chanmon_cfgs(3);
9621                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
9622                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
9623                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
9624
9625                 // All nodes start with a persistable update pending as `create_network` connects each node
9626                 // with all other nodes to make most tests simpler.
9627                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9628                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9629                 assert!(nodes[2].node.get_persistable_update_future().poll_is_complete());
9630
9631                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1);
9632
9633                 // We check that the channel info nodes have doesn't change too early, even though we try
9634                 // to connect messages with new values
9635                 chan.0.contents.fee_base_msat *= 2;
9636                 chan.1.contents.fee_base_msat *= 2;
9637                 let node_a_chan_info = nodes[0].node.list_channels_with_counterparty(
9638                         &nodes[1].node.get_our_node_id()).pop().unwrap();
9639                 let node_b_chan_info = nodes[1].node.list_channels_with_counterparty(
9640                         &nodes[0].node.get_our_node_id()).pop().unwrap();
9641
9642                 // The first two nodes (which opened a channel) should now require fresh persistence
9643                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9644                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9645                 // ... but the last node should not.
9646                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9647                 // After persisting the first two nodes they should no longer need fresh persistence.
9648                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9649                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9650
9651                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
9652                 // about the channel.
9653                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
9654                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
9655                 assert!(!nodes[2].node.get_persistable_update_future().poll_is_complete());
9656
9657                 // The nodes which are a party to the channel should also ignore messages from unrelated
9658                 // parties.
9659                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9660                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9661                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
9662                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
9663                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9664                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9665
9666                 // At this point the channel info given by peers should still be the same.
9667                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9668                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9669
9670                 // An earlier version of handle_channel_update didn't check the directionality of the
9671                 // update message and would always update the local fee info, even if our peer was
9672                 // (spuriously) forwarding us our own channel_update.
9673                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
9674                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
9675                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
9676
9677                 // First deliver each peers' own message, checking that the node doesn't need to be
9678                 // persisted and that its channel info remains the same.
9679                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
9680                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
9681                 assert!(!nodes[0].node.get_persistable_update_future().poll_is_complete());
9682                 assert!(!nodes[1].node.get_persistable_update_future().poll_is_complete());
9683                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
9684                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
9685
9686                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
9687                 // the channel info has updated.
9688                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
9689                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
9690                 assert!(nodes[0].node.get_persistable_update_future().poll_is_complete());
9691                 assert!(nodes[1].node.get_persistable_update_future().poll_is_complete());
9692                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
9693                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
9694         }
9695
9696         #[test]
9697         fn test_keysend_dup_hash_partial_mpp() {
9698                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
9699                 // expected.
9700                 let chanmon_cfgs = create_chanmon_cfgs(2);
9701                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9702                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9703                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9704                 create_announced_chan_between_nodes(&nodes, 0, 1);
9705
9706                 // First, send a partial MPP payment.
9707                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
9708                 let mut mpp_route = route.clone();
9709                 mpp_route.paths.push(mpp_route.paths[0].clone());
9710
9711                 let payment_id = PaymentId([42; 32]);
9712                 // Use the utility function send_payment_along_path to send the payment with MPP data which
9713                 // indicates there are more HTLCs coming.
9714                 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.
9715                 let session_privs = nodes[0].node.test_add_new_pending_payment(our_payment_hash,
9716                         RecipientOnionFields::secret_only(payment_secret), payment_id, &mpp_route).unwrap();
9717                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[0], &our_payment_hash,
9718                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
9719                 check_added_monitors!(nodes[0], 1);
9720                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9721                 assert_eq!(events.len(), 1);
9722                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
9723
9724                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
9725                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9726                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9727                 check_added_monitors!(nodes[0], 1);
9728                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9729                 assert_eq!(events.len(), 1);
9730                 let ev = events.drain(..).next().unwrap();
9731                 let payment_event = SendEvent::from_event(ev);
9732                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9733                 check_added_monitors!(nodes[1], 0);
9734                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9735                 expect_pending_htlcs_forwardable!(nodes[1]);
9736                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
9737                 check_added_monitors!(nodes[1], 1);
9738                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9739                 assert!(updates.update_add_htlcs.is_empty());
9740                 assert!(updates.update_fulfill_htlcs.is_empty());
9741                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9742                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9743                 assert!(updates.update_fee.is_none());
9744                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9745                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9746                 expect_payment_failed!(nodes[0], our_payment_hash, true);
9747
9748                 // Send the second half of the original MPP payment.
9749                 nodes[0].node.test_send_payment_along_path(&mpp_route.paths[1], &our_payment_hash,
9750                         RecipientOnionFields::secret_only(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
9751                 check_added_monitors!(nodes[0], 1);
9752                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9753                 assert_eq!(events.len(), 1);
9754                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
9755
9756                 // Claim the full MPP payment. Note that we can't use a test utility like
9757                 // claim_funds_along_route because the ordering of the messages causes the second half of the
9758                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
9759                 // lightning messages manually.
9760                 nodes[1].node.claim_funds(payment_preimage);
9761                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
9762                 check_added_monitors!(nodes[1], 2);
9763
9764                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9765                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
9766                 expect_payment_sent(&nodes[0], payment_preimage, None, false, false);
9767                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
9768                 check_added_monitors!(nodes[0], 1);
9769                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9770                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
9771                 check_added_monitors!(nodes[1], 1);
9772                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9773                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
9774                 check_added_monitors!(nodes[1], 1);
9775                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9776                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
9777                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
9778                 check_added_monitors!(nodes[0], 1);
9779                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
9780                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
9781                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
9782                 check_added_monitors!(nodes[0], 1);
9783                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
9784                 check_added_monitors!(nodes[1], 1);
9785                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
9786                 check_added_monitors!(nodes[1], 1);
9787                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
9788                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
9789                 check_added_monitors!(nodes[0], 1);
9790
9791                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
9792                 // path's success and a PaymentPathSuccessful event for each path's success.
9793                 let events = nodes[0].node.get_and_clear_pending_events();
9794                 assert_eq!(events.len(), 2);
9795                 match events[0] {
9796                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9797                                 assert_eq!(payment_id, *actual_payment_id);
9798                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9799                                 assert_eq!(route.paths[0], *path);
9800                         },
9801                         _ => panic!("Unexpected event"),
9802                 }
9803                 match events[1] {
9804                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
9805                                 assert_eq!(payment_id, *actual_payment_id);
9806                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
9807                                 assert_eq!(route.paths[0], *path);
9808                         },
9809                         _ => panic!("Unexpected event"),
9810                 }
9811         }
9812
9813         #[test]
9814         fn test_keysend_dup_payment_hash() {
9815                 do_test_keysend_dup_payment_hash(false);
9816                 do_test_keysend_dup_payment_hash(true);
9817         }
9818
9819         fn do_test_keysend_dup_payment_hash(accept_mpp_keysend: bool) {
9820                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
9821                 //      outbound regular payment fails as expected.
9822                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
9823                 //      fails as expected.
9824                 // (3): Test that a keysend payment with a duplicate payment hash to an existing keysend
9825                 //      payment fails as expected. When `accept_mpp_keysend` is false, this tests that we
9826                 //      reject MPP keysend payments, since in this case where the payment has no payment
9827                 //      secret, a keysend payment with a duplicate hash is basically an MPP keysend. If
9828                 //      `accept_mpp_keysend` is true, this tests that we only accept MPP keysends with
9829                 //      payment secrets and reject otherwise.
9830                 let chanmon_cfgs = create_chanmon_cfgs(2);
9831                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9832                 let mut mpp_keysend_cfg = test_default_channel_config();
9833                 mpp_keysend_cfg.accept_mpp_keysend = accept_mpp_keysend;
9834                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(mpp_keysend_cfg)]);
9835                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9836                 create_announced_chan_between_nodes(&nodes, 0, 1);
9837                 let scorer = test_utils::TestScorer::new();
9838                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9839
9840                 // To start (1), send a regular payment but don't claim it.
9841                 let expected_route = [&nodes[1]];
9842                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
9843
9844                 // Next, attempt a keysend payment and make sure it fails.
9845                 let route_params = RouteParameters::from_payment_params_and_value(
9846                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(),
9847                         TEST_FINAL_CLTV, false), 100_000);
9848                 let route = find_route(
9849                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9850                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9851                 ).unwrap();
9852                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9853                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9854                 check_added_monitors!(nodes[0], 1);
9855                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9856                 assert_eq!(events.len(), 1);
9857                 let ev = events.drain(..).next().unwrap();
9858                 let payment_event = SendEvent::from_event(ev);
9859                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9860                 check_added_monitors!(nodes[1], 0);
9861                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9862                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
9863                 // fails), the second will process the resulting failure and fail the HTLC backward
9864                 expect_pending_htlcs_forwardable!(nodes[1]);
9865                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9866                 check_added_monitors!(nodes[1], 1);
9867                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9868                 assert!(updates.update_add_htlcs.is_empty());
9869                 assert!(updates.update_fulfill_htlcs.is_empty());
9870                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9871                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9872                 assert!(updates.update_fee.is_none());
9873                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9874                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9875                 expect_payment_failed!(nodes[0], payment_hash, true);
9876
9877                 // Finally, claim the original payment.
9878                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9879
9880                 // To start (2), send a keysend payment but don't claim it.
9881                 let payment_preimage = PaymentPreimage([42; 32]);
9882                 let route = find_route(
9883                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9884                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9885                 ).unwrap();
9886                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9887                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_preimage.0)).unwrap();
9888                 check_added_monitors!(nodes[0], 1);
9889                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9890                 assert_eq!(events.len(), 1);
9891                 let event = events.pop().unwrap();
9892                 let path = vec![&nodes[1]];
9893                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9894
9895                 // Next, attempt a regular payment and make sure it fails.
9896                 let payment_secret = PaymentSecret([43; 32]);
9897                 nodes[0].node.send_payment_with_route(&route, payment_hash,
9898                         RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)).unwrap();
9899                 check_added_monitors!(nodes[0], 1);
9900                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9901                 assert_eq!(events.len(), 1);
9902                 let ev = events.drain(..).next().unwrap();
9903                 let payment_event = SendEvent::from_event(ev);
9904                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9905                 check_added_monitors!(nodes[1], 0);
9906                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9907                 expect_pending_htlcs_forwardable!(nodes[1]);
9908                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9909                 check_added_monitors!(nodes[1], 1);
9910                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9911                 assert!(updates.update_add_htlcs.is_empty());
9912                 assert!(updates.update_fulfill_htlcs.is_empty());
9913                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9914                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9915                 assert!(updates.update_fee.is_none());
9916                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9917                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9918                 expect_payment_failed!(nodes[0], payment_hash, true);
9919
9920                 // Finally, succeed the keysend payment.
9921                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9922
9923                 // To start (3), send a keysend payment but don't claim it.
9924                 let payment_id_1 = PaymentId([44; 32]);
9925                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9926                         RecipientOnionFields::spontaneous_empty(), payment_id_1).unwrap();
9927                 check_added_monitors!(nodes[0], 1);
9928                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9929                 assert_eq!(events.len(), 1);
9930                 let event = events.pop().unwrap();
9931                 let path = vec![&nodes[1]];
9932                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
9933
9934                 // Next, attempt a keysend payment and make sure it fails.
9935                 let route_params = RouteParameters::from_payment_params_and_value(
9936                         PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id(), TEST_FINAL_CLTV, false),
9937                         100_000
9938                 );
9939                 let route = find_route(
9940                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
9941                         None, nodes[0].logger, &scorer, &(), &random_seed_bytes
9942                 ).unwrap();
9943                 let payment_id_2 = PaymentId([45; 32]);
9944                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage),
9945                         RecipientOnionFields::spontaneous_empty(), payment_id_2).unwrap();
9946                 check_added_monitors!(nodes[0], 1);
9947                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
9948                 assert_eq!(events.len(), 1);
9949                 let ev = events.drain(..).next().unwrap();
9950                 let payment_event = SendEvent::from_event(ev);
9951                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
9952                 check_added_monitors!(nodes[1], 0);
9953                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
9954                 expect_pending_htlcs_forwardable!(nodes[1]);
9955                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
9956                 check_added_monitors!(nodes[1], 1);
9957                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
9958                 assert!(updates.update_add_htlcs.is_empty());
9959                 assert!(updates.update_fulfill_htlcs.is_empty());
9960                 assert_eq!(updates.update_fail_htlcs.len(), 1);
9961                 assert!(updates.update_fail_malformed_htlcs.is_empty());
9962                 assert!(updates.update_fee.is_none());
9963                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
9964                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
9965                 expect_payment_failed!(nodes[0], payment_hash, true);
9966
9967                 // Finally, claim the original payment.
9968                 claim_payment(&nodes[0], &expected_route, payment_preimage);
9969         }
9970
9971         #[test]
9972         fn test_keysend_hash_mismatch() {
9973                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
9974                 // preimage doesn't match the msg's payment hash.
9975                 let chanmon_cfgs = create_chanmon_cfgs(2);
9976                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
9977                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
9978                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
9979
9980                 let payer_pubkey = nodes[0].node.get_our_node_id();
9981                 let payee_pubkey = nodes[1].node.get_our_node_id();
9982
9983                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
9984                 let route_params = RouteParameters::from_payment_params_and_value(
9985                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
9986                 let network_graph = nodes[0].network_graph.clone();
9987                 let first_hops = nodes[0].node.list_usable_channels();
9988                 let scorer = test_utils::TestScorer::new();
9989                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
9990                 let route = find_route(
9991                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
9992                         nodes[0].logger, &scorer, &(), &random_seed_bytes
9993                 ).unwrap();
9994
9995                 let test_preimage = PaymentPreimage([42; 32]);
9996                 let mismatch_payment_hash = PaymentHash([43; 32]);
9997                 let session_privs = nodes[0].node.test_add_new_pending_payment(mismatch_payment_hash,
9998                         RecipientOnionFields::spontaneous_empty(), PaymentId(mismatch_payment_hash.0), &route).unwrap();
9999                 nodes[0].node.test_send_payment_internal(&route, mismatch_payment_hash,
10000                         RecipientOnionFields::spontaneous_empty(), Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
10001                 check_added_monitors!(nodes[0], 1);
10002
10003                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10004                 assert_eq!(updates.update_add_htlcs.len(), 1);
10005                 assert!(updates.update_fulfill_htlcs.is_empty());
10006                 assert!(updates.update_fail_htlcs.is_empty());
10007                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10008                 assert!(updates.update_fee.is_none());
10009                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10010
10011                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "Payment preimage didn't match payment hash", 1);
10012         }
10013
10014         #[test]
10015         fn test_keysend_msg_with_secret_err() {
10016                 // Test that we error as expected if we receive a keysend payment that includes a payment
10017                 // secret when we don't support MPP keysend.
10018                 let mut reject_mpp_keysend_cfg = test_default_channel_config();
10019                 reject_mpp_keysend_cfg.accept_mpp_keysend = false;
10020                 let chanmon_cfgs = create_chanmon_cfgs(2);
10021                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10022                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(reject_mpp_keysend_cfg)]);
10023                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10024
10025                 let payer_pubkey = nodes[0].node.get_our_node_id();
10026                 let payee_pubkey = nodes[1].node.get_our_node_id();
10027
10028                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1]);
10029                 let route_params = RouteParameters::from_payment_params_and_value(
10030                         PaymentParameters::for_keysend(payee_pubkey, 40, false), 10_000);
10031                 let network_graph = nodes[0].network_graph.clone();
10032                 let first_hops = nodes[0].node.list_usable_channels();
10033                 let scorer = test_utils::TestScorer::new();
10034                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
10035                 let route = find_route(
10036                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
10037                         nodes[0].logger, &scorer, &(), &random_seed_bytes
10038                 ).unwrap();
10039
10040                 let test_preimage = PaymentPreimage([42; 32]);
10041                 let test_secret = PaymentSecret([43; 32]);
10042                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
10043                 let session_privs = nodes[0].node.test_add_new_pending_payment(payment_hash,
10044                         RecipientOnionFields::secret_only(test_secret), PaymentId(payment_hash.0), &route).unwrap();
10045                 nodes[0].node.test_send_payment_internal(&route, payment_hash,
10046                         RecipientOnionFields::secret_only(test_secret), Some(test_preimage),
10047                         PaymentId(payment_hash.0), None, session_privs).unwrap();
10048                 check_added_monitors!(nodes[0], 1);
10049
10050                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
10051                 assert_eq!(updates.update_add_htlcs.len(), 1);
10052                 assert!(updates.update_fulfill_htlcs.is_empty());
10053                 assert!(updates.update_fail_htlcs.is_empty());
10054                 assert!(updates.update_fail_malformed_htlcs.is_empty());
10055                 assert!(updates.update_fee.is_none());
10056                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
10057
10058                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager", "We don't support MPP keysend payments", 1);
10059         }
10060
10061         #[test]
10062         fn test_multi_hop_missing_secret() {
10063                 let chanmon_cfgs = create_chanmon_cfgs(4);
10064                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
10065                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
10066                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
10067
10068                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1).0.contents.short_channel_id;
10069                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2).0.contents.short_channel_id;
10070                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3).0.contents.short_channel_id;
10071                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3).0.contents.short_channel_id;
10072
10073                 // Marshall an MPP route.
10074                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
10075                 let path = route.paths[0].clone();
10076                 route.paths.push(path);
10077                 route.paths[0].hops[0].pubkey = nodes[1].node.get_our_node_id();
10078                 route.paths[0].hops[0].short_channel_id = chan_1_id;
10079                 route.paths[0].hops[1].short_channel_id = chan_3_id;
10080                 route.paths[1].hops[0].pubkey = nodes[2].node.get_our_node_id();
10081                 route.paths[1].hops[0].short_channel_id = chan_2_id;
10082                 route.paths[1].hops[1].short_channel_id = chan_4_id;
10083
10084                 match nodes[0].node.send_payment_with_route(&route, payment_hash,
10085                         RecipientOnionFields::spontaneous_empty(), PaymentId(payment_hash.0))
10086                 .unwrap_err() {
10087                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
10088                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))
10089                         },
10090                         _ => panic!("unexpected error")
10091                 }
10092         }
10093
10094         #[test]
10095         fn test_drop_disconnected_peers_when_removing_channels() {
10096                 let chanmon_cfgs = create_chanmon_cfgs(2);
10097                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10098                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10099                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10100
10101                 let chan = create_announced_chan_between_nodes(&nodes, 0, 1);
10102
10103                 nodes[0].node.peer_disconnected(&nodes[1].node.get_our_node_id());
10104                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10105
10106                 nodes[0].node.force_close_broadcasting_latest_txn(&chan.2, &nodes[1].node.get_our_node_id()).unwrap();
10107                 check_closed_broadcast!(nodes[0], true);
10108                 check_added_monitors!(nodes[0], 1);
10109                 check_closed_event!(nodes[0], 1, ClosureReason::HolderForceClosed, [nodes[1].node.get_our_node_id()], 100000);
10110
10111                 {
10112                         // Assert that nodes[1] is awaiting removal for nodes[0] once nodes[1] has been
10113                         // disconnected and the channel between has been force closed.
10114                         let nodes_0_per_peer_state = nodes[0].node.per_peer_state.read().unwrap();
10115                         // Assert that nodes[1] isn't removed before `timer_tick_occurred` has been executed.
10116                         assert_eq!(nodes_0_per_peer_state.len(), 1);
10117                         assert!(nodes_0_per_peer_state.get(&nodes[1].node.get_our_node_id()).is_some());
10118                 }
10119
10120                 nodes[0].node.timer_tick_occurred();
10121
10122                 {
10123                         // Assert that nodes[1] has now been removed.
10124                         assert_eq!(nodes[0].node.per_peer_state.read().unwrap().len(), 0);
10125                 }
10126         }
10127
10128         #[test]
10129         fn bad_inbound_payment_hash() {
10130                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
10131                 let chanmon_cfgs = create_chanmon_cfgs(2);
10132                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10133                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10134                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10135
10136                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
10137                 let payment_data = msgs::FinalOnionHopData {
10138                         payment_secret,
10139                         total_msat: 100_000,
10140                 };
10141
10142                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
10143                 // payment verification fails as expected.
10144                 let mut bad_payment_hash = payment_hash.clone();
10145                 bad_payment_hash.0[0] += 1;
10146                 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) {
10147                         Ok(_) => panic!("Unexpected ok"),
10148                         Err(()) => {
10149                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment", "Failing HTLC with user-generated payment_hash", 1);
10150                         }
10151                 }
10152
10153                 // Check that using the original payment hash succeeds.
10154                 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());
10155         }
10156
10157         #[test]
10158         fn test_id_to_peer_coverage() {
10159                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
10160                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
10161                 // the channel is successfully closed.
10162                 let chanmon_cfgs = create_chanmon_cfgs(2);
10163                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10164                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10165                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10166
10167                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
10168                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10169                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel);
10170                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10171                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10172
10173                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
10174                 let channel_id = ChannelId::from_bytes(tx.txid().into_inner());
10175                 {
10176                         // Ensure that the `id_to_peer` map is empty until either party has received the
10177                         // funding transaction, and have the real `channel_id`.
10178                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10179                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10180                 }
10181
10182                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
10183                 {
10184                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
10185                         // as it has the funding transaction.
10186                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10187                         assert_eq!(nodes_0_lock.len(), 1);
10188                         assert!(nodes_0_lock.contains_key(&channel_id));
10189                 }
10190
10191                 assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10192
10193                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10194
10195                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10196                 {
10197                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10198                         assert_eq!(nodes_0_lock.len(), 1);
10199                         assert!(nodes_0_lock.contains_key(&channel_id));
10200                 }
10201                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10202
10203                 {
10204                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
10205                         // as it has the funding transaction.
10206                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10207                         assert_eq!(nodes_1_lock.len(), 1);
10208                         assert!(nodes_1_lock.contains_key(&channel_id));
10209                 }
10210                 check_added_monitors!(nodes[1], 1);
10211                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10212                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10213                 check_added_monitors!(nodes[0], 1);
10214                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10215                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
10216                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
10217                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
10218
10219                 nodes[0].node.close_channel(&channel_id, &nodes[1].node.get_our_node_id()).unwrap();
10220                 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()));
10221                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
10222                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &nodes_1_shutdown);
10223
10224                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
10225                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
10226                 {
10227                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
10228                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
10229                         // fee for the closing transaction has been negotiated and the parties has the other
10230                         // party's signature for the fee negotiated closing transaction.)
10231                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
10232                         assert_eq!(nodes_0_lock.len(), 1);
10233                         assert!(nodes_0_lock.contains_key(&channel_id));
10234                 }
10235
10236                 {
10237                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
10238                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
10239                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
10240                         // kept in the `nodes[1]`'s `id_to_peer` map.
10241                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10242                         assert_eq!(nodes_1_lock.len(), 1);
10243                         assert!(nodes_1_lock.contains_key(&channel_id));
10244                 }
10245
10246                 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()));
10247                 {
10248                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
10249                         // therefore has all it needs to fully close the channel (both signatures for the
10250                         // closing transaction).
10251                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
10252                         // fully closed by `nodes[0]`.
10253                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
10254
10255                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
10256                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
10257                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
10258                         assert_eq!(nodes_1_lock.len(), 1);
10259                         assert!(nodes_1_lock.contains_key(&channel_id));
10260                 }
10261
10262                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
10263
10264                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
10265                 {
10266                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
10267                         // they both have everything required to fully close the channel.
10268                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
10269                 }
10270                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
10271
10272                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure, [nodes[1].node.get_our_node_id()], 1000000);
10273                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure, [nodes[0].node.get_our_node_id()], 1000000);
10274         }
10275
10276         fn check_not_connected_to_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10277                 let expected_message = format!("Not connected to node: {}", expected_public_key);
10278                 check_api_error_message(expected_message, res_err)
10279         }
10280
10281         fn check_unkown_peer_error<T>(res_err: Result<T, APIError>, expected_public_key: PublicKey) {
10282                 let expected_message = format!("Can't find a peer matching the passed counterparty node_id {}", expected_public_key);
10283                 check_api_error_message(expected_message, res_err)
10284         }
10285
10286         fn check_api_error_message<T>(expected_err_message: String, res_err: Result<T, APIError>) {
10287                 match res_err {
10288                         Err(APIError::APIMisuseError { err }) => {
10289                                 assert_eq!(err, expected_err_message);
10290                         },
10291                         Err(APIError::ChannelUnavailable { err }) => {
10292                                 assert_eq!(err, expected_err_message);
10293                         },
10294                         Ok(_) => panic!("Unexpected Ok"),
10295                         Err(_) => panic!("Unexpected Error"),
10296                 }
10297         }
10298
10299         #[test]
10300         fn test_api_calls_with_unkown_counterparty_node() {
10301                 // Tests that our API functions that expects a `counterparty_node_id` as input, behaves as
10302                 // expected if the `counterparty_node_id` is an unkown peer in the
10303                 // `ChannelManager::per_peer_state` map.
10304                 let chanmon_cfg = create_chanmon_cfgs(2);
10305                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10306                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[None, None]);
10307                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10308
10309                 // Dummy values
10310                 let channel_id = ChannelId::from_bytes([4; 32]);
10311                 let unkown_public_key = PublicKey::from_secret_key(&Secp256k1::signing_only(), &SecretKey::from_slice(&[42; 32]).unwrap());
10312                 let intercept_id = InterceptId([0; 32]);
10313
10314                 // Test the API functions.
10315                 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);
10316
10317                 check_unkown_peer_error(nodes[0].node.accept_inbound_channel(&channel_id, &unkown_public_key, 42), unkown_public_key);
10318
10319                 check_unkown_peer_error(nodes[0].node.close_channel(&channel_id, &unkown_public_key), unkown_public_key);
10320
10321                 check_unkown_peer_error(nodes[0].node.force_close_broadcasting_latest_txn(&channel_id, &unkown_public_key), unkown_public_key);
10322
10323                 check_unkown_peer_error(nodes[0].node.force_close_without_broadcasting_txn(&channel_id, &unkown_public_key), unkown_public_key);
10324
10325                 check_unkown_peer_error(nodes[0].node.forward_intercepted_htlc(intercept_id, &channel_id, unkown_public_key, 1_000_000), unkown_public_key);
10326
10327                 check_unkown_peer_error(nodes[0].node.update_channel_config(&unkown_public_key, &[channel_id], &ChannelConfig::default()), unkown_public_key);
10328         }
10329
10330         #[test]
10331         fn test_connection_limiting() {
10332                 // Test that we limit un-channel'd peers and un-funded channels properly.
10333                 let chanmon_cfgs = create_chanmon_cfgs(2);
10334                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10335                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10336                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10337
10338                 // Note that create_network connects the nodes together for us
10339
10340                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10341                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10342
10343                 let mut funding_tx = None;
10344                 for idx in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10345                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10346                         let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10347
10348                         if idx == 0 {
10349                                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), &accept_channel);
10350                                 let (temporary_channel_id, tx, _) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 100_000, 42);
10351                                 funding_tx = Some(tx.clone());
10352                                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx).unwrap();
10353                                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
10354
10355                                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
10356                                 check_added_monitors!(nodes[1], 1);
10357                                 expect_channel_pending_event(&nodes[1], &nodes[0].node.get_our_node_id());
10358
10359                                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
10360
10361                                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
10362                                 check_added_monitors!(nodes[0], 1);
10363                                 expect_channel_pending_event(&nodes[0], &nodes[1].node.get_our_node_id());
10364                         }
10365                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10366                 }
10367
10368                 // A MAX_UNFUNDED_CHANS_PER_PEER + 1 channel will be summarily rejected
10369                 open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10370                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10371                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10372                         open_channel_msg.temporary_channel_id);
10373
10374                 // Further, because all of our channels with nodes[0] are inbound, and none of them funded,
10375                 // it doesn't count as a "protected" peer, i.e. it counts towards the MAX_NO_CHANNEL_PEERS
10376                 // limit.
10377                 let mut peer_pks = Vec::with_capacity(super::MAX_NO_CHANNEL_PEERS);
10378                 for _ in 1..super::MAX_NO_CHANNEL_PEERS {
10379                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10380                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10381                         peer_pks.push(random_pk);
10382                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10383                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10384                         }, true).unwrap();
10385                 }
10386                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10387                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10388                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10389                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10390                 }, true).unwrap_err();
10391
10392                 // Also importantly, because nodes[0] isn't "protected", we will refuse a reconnection from
10393                 // them if we have too many un-channel'd peers.
10394                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10395                 let chan_closed_events = nodes[1].node.get_and_clear_pending_events();
10396                 assert_eq!(chan_closed_events.len(), super::MAX_UNFUNDED_CHANS_PER_PEER - 1);
10397                 for ev in chan_closed_events {
10398                         if let Event::ChannelClosed { .. } = ev { } else { panic!(); }
10399                 }
10400                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10401                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10402                 }, true).unwrap();
10403                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10404                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10405                 }, true).unwrap_err();
10406
10407                 // but of course if the connection is outbound its allowed...
10408                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10409                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10410                 }, false).unwrap();
10411                 nodes[1].node.peer_disconnected(&nodes[0].node.get_our_node_id());
10412
10413                 // Now nodes[0] is disconnected but still has a pending, un-funded channel lying around.
10414                 // Even though we accept one more connection from new peers, we won't actually let them
10415                 // open channels.
10416                 assert!(peer_pks.len() > super::MAX_UNFUNDED_CHANNEL_PEERS - 1);
10417                 for i in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10418                         nodes[1].node.handle_open_channel(&peer_pks[i], &open_channel_msg);
10419                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, peer_pks[i]);
10420                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10421                 }
10422                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10423                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10424                         open_channel_msg.temporary_channel_id);
10425
10426                 // Of course, however, outbound channels are always allowed
10427                 nodes[1].node.create_channel(last_random_pk, 100_000, 0, 42, None).unwrap();
10428                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, last_random_pk);
10429
10430                 // If we fund the first channel, nodes[0] has a live on-chain channel with us, it is now
10431                 // "protected" and can connect again.
10432                 mine_transaction(&nodes[1], funding_tx.as_ref().unwrap());
10433                 nodes[1].node.peer_connected(&nodes[0].node.get_our_node_id(), &msgs::Init {
10434                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10435                 }, true).unwrap();
10436                 get_event_msg!(nodes[1], MessageSendEvent::SendChannelReestablish, nodes[0].node.get_our_node_id());
10437
10438                 // Further, because the first channel was funded, we can open another channel with
10439                 // last_random_pk.
10440                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10441                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10442         }
10443
10444         #[test]
10445         fn test_outbound_chans_unlimited() {
10446                 // Test that we never refuse an outbound channel even if a peer is unfuned-channel-limited
10447                 let chanmon_cfgs = create_chanmon_cfgs(2);
10448                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10449                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
10450                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10451
10452                 // Note that create_network connects the nodes together for us
10453
10454                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10455                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10456
10457                 for _ in 0..super::MAX_UNFUNDED_CHANS_PER_PEER {
10458                         nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10459                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10460                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10461                 }
10462
10463                 // Once we have MAX_UNFUNDED_CHANS_PER_PEER unfunded channels, new inbound channels will be
10464                 // rejected.
10465                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10466                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10467                         open_channel_msg.temporary_channel_id);
10468
10469                 // but we can still open an outbound channel.
10470                 nodes[1].node.create_channel(nodes[0].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10471                 get_event_msg!(nodes[1], MessageSendEvent::SendOpenChannel, nodes[0].node.get_our_node_id());
10472
10473                 // but even with such an outbound channel, additional inbound channels will still fail.
10474                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10475                 assert_eq!(get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id()).channel_id,
10476                         open_channel_msg.temporary_channel_id);
10477         }
10478
10479         #[test]
10480         fn test_0conf_limiting() {
10481                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10482                 // flag set and (sometimes) accept channels as 0conf.
10483                 let chanmon_cfgs = create_chanmon_cfgs(2);
10484                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10485                 let mut settings = test_default_channel_config();
10486                 settings.manually_accept_inbound_channels = true;
10487                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, Some(settings)]);
10488                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10489
10490                 // Note that create_network connects the nodes together for us
10491
10492                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10493                 let mut open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10494
10495                 // First, get us up to MAX_UNFUNDED_CHANNEL_PEERS so we can test at the edge
10496                 for _ in 0..super::MAX_UNFUNDED_CHANNEL_PEERS - 1 {
10497                         let random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10498                                 &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10499                         nodes[1].node.peer_connected(&random_pk, &msgs::Init {
10500                                 features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10501                         }, true).unwrap();
10502
10503                         nodes[1].node.handle_open_channel(&random_pk, &open_channel_msg);
10504                         let events = nodes[1].node.get_and_clear_pending_events();
10505                         match events[0] {
10506                                 Event::OpenChannelRequest { temporary_channel_id, .. } => {
10507                                         nodes[1].node.accept_inbound_channel(&temporary_channel_id, &random_pk, 23).unwrap();
10508                                 }
10509                                 _ => panic!("Unexpected event"),
10510                         }
10511                         get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, random_pk);
10512                         open_channel_msg.temporary_channel_id = ChannelId::temporary_from_entropy_source(&nodes[0].keys_manager);
10513                 }
10514
10515                 // If we try to accept a channel from another peer non-0conf it will fail.
10516                 let last_random_pk = PublicKey::from_secret_key(&nodes[0].node.secp_ctx,
10517                         &SecretKey::from_slice(&nodes[1].keys_manager.get_secure_random_bytes()).unwrap());
10518                 nodes[1].node.peer_connected(&last_random_pk, &msgs::Init {
10519                         features: nodes[0].node.init_features(), networks: None, remote_network_address: None
10520                 }, true).unwrap();
10521                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10522                 let events = nodes[1].node.get_and_clear_pending_events();
10523                 match events[0] {
10524                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10525                                 match nodes[1].node.accept_inbound_channel(&temporary_channel_id, &last_random_pk, 23) {
10526                                         Err(APIError::APIMisuseError { err }) =>
10527                                                 assert_eq!(err, "Too many peers with unfunded channels, refusing to accept new ones"),
10528                                         _ => panic!(),
10529                                 }
10530                         }
10531                         _ => panic!("Unexpected event"),
10532                 }
10533                 assert_eq!(get_err_msg(&nodes[1], &last_random_pk).channel_id,
10534                         open_channel_msg.temporary_channel_id);
10535
10536                 // ...however if we accept the same channel 0conf it should work just fine.
10537                 nodes[1].node.handle_open_channel(&last_random_pk, &open_channel_msg);
10538                 let events = nodes[1].node.get_and_clear_pending_events();
10539                 match events[0] {
10540                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10541                                 nodes[1].node.accept_inbound_channel_from_trusted_peer_0conf(&temporary_channel_id, &last_random_pk, 23).unwrap();
10542                         }
10543                         _ => panic!("Unexpected event"),
10544                 }
10545                 get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, last_random_pk);
10546         }
10547
10548         #[test]
10549         fn reject_excessively_underpaying_htlcs() {
10550                 let chanmon_cfg = create_chanmon_cfgs(1);
10551                 let node_cfg = create_node_cfgs(1, &chanmon_cfg);
10552                 let node_chanmgr = create_node_chanmgrs(1, &node_cfg, &[None]);
10553                 let node = create_network(1, &node_cfg, &node_chanmgr);
10554                 let sender_intended_amt_msat = 100;
10555                 let extra_fee_msat = 10;
10556                 let hop_data = msgs::InboundOnionPayload::Receive {
10557                         amt_msat: 100,
10558                         outgoing_cltv_value: 42,
10559                         payment_metadata: None,
10560                         keysend_preimage: None,
10561                         payment_data: Some(msgs::FinalOnionHopData {
10562                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10563                         }),
10564                         custom_tlvs: Vec::new(),
10565                 };
10566                 // Check that if the amount we received + the penultimate hop extra fee is less than the sender
10567                 // intended amount, we fail the payment.
10568                 if let Err(crate::ln::channelmanager::InboundOnionErr { err_code, .. }) =
10569                         node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10570                                 sender_intended_amt_msat - extra_fee_msat - 1, 42, None, true, Some(extra_fee_msat))
10571                 {
10572                         assert_eq!(err_code, 19);
10573                 } else { panic!(); }
10574
10575                 // If amt_received + extra_fee is equal to the sender intended amount, we're fine.
10576                 let hop_data = msgs::InboundOnionPayload::Receive { // This is the same payload as above, InboundOnionPayload doesn't implement Clone
10577                         amt_msat: 100,
10578                         outgoing_cltv_value: 42,
10579                         payment_metadata: None,
10580                         keysend_preimage: None,
10581                         payment_data: Some(msgs::FinalOnionHopData {
10582                                 payment_secret: PaymentSecret([0; 32]), total_msat: sender_intended_amt_msat,
10583                         }),
10584                         custom_tlvs: Vec::new(),
10585                 };
10586                 assert!(node[0].node.construct_recv_pending_htlc_info(hop_data, [0; 32], PaymentHash([0; 32]),
10587                         sender_intended_amt_msat - extra_fee_msat, 42, None, true, Some(extra_fee_msat)).is_ok());
10588         }
10589
10590         #[test]
10591         fn test_inbound_anchors_manual_acceptance() {
10592                 // Tests that we properly limit inbound channels when we have the manual-channel-acceptance
10593                 // flag set and (sometimes) accept channels as 0conf.
10594                 let mut anchors_cfg = test_default_channel_config();
10595                 anchors_cfg.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10596
10597                 let mut anchors_manual_accept_cfg = anchors_cfg.clone();
10598                 anchors_manual_accept_cfg.manually_accept_inbound_channels = true;
10599
10600                 let chanmon_cfgs = create_chanmon_cfgs(3);
10601                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
10602                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs,
10603                         &[Some(anchors_cfg.clone()), Some(anchors_cfg.clone()), Some(anchors_manual_accept_cfg.clone())]);
10604                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
10605
10606                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 42, None).unwrap();
10607                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10608
10609                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10610                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10611                 let msg_events = nodes[1].node.get_and_clear_pending_msg_events();
10612                 match &msg_events[0] {
10613                         MessageSendEvent::HandleError { node_id, action } => {
10614                                 assert_eq!(*node_id, nodes[0].node.get_our_node_id());
10615                                 match action {
10616                                         ErrorAction::SendErrorMessage { msg } =>
10617                                                 assert_eq!(msg.data, "No channels with anchor outputs accepted".to_owned()),
10618                                         _ => panic!("Unexpected error action"),
10619                                 }
10620                         }
10621                         _ => panic!("Unexpected event"),
10622                 }
10623
10624                 nodes[2].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10625                 let events = nodes[2].node.get_and_clear_pending_events();
10626                 match events[0] {
10627                         Event::OpenChannelRequest { temporary_channel_id, .. } =>
10628                                 nodes[2].node.accept_inbound_channel(&temporary_channel_id, &nodes[0].node.get_our_node_id(), 23).unwrap(),
10629                         _ => panic!("Unexpected event"),
10630                 }
10631                 get_event_msg!(nodes[2], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
10632         }
10633
10634         #[test]
10635         fn test_anchors_zero_fee_htlc_tx_fallback() {
10636                 // Tests that if both nodes support anchors, but the remote node does not want to accept
10637                 // anchor channels at the moment, an error it sent to the local node such that it can retry
10638                 // the channel without the anchors feature.
10639                 let chanmon_cfgs = create_chanmon_cfgs(2);
10640                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
10641                 let mut anchors_config = test_default_channel_config();
10642                 anchors_config.channel_handshake_config.negotiate_anchors_zero_fee_htlc_tx = true;
10643                 anchors_config.manually_accept_inbound_channels = true;
10644                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[Some(anchors_config.clone()), Some(anchors_config.clone())]);
10645                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
10646
10647                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 100_000, 0, 0, None).unwrap();
10648                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10649                 assert!(open_channel_msg.channel_type.as_ref().unwrap().supports_anchors_zero_fee_htlc_tx());
10650
10651                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), &open_channel_msg);
10652                 let events = nodes[1].node.get_and_clear_pending_events();
10653                 match events[0] {
10654                         Event::OpenChannelRequest { temporary_channel_id, .. } => {
10655                                 nodes[1].node.force_close_broadcasting_latest_txn(&temporary_channel_id, &nodes[0].node.get_our_node_id()).unwrap();
10656                         }
10657                         _ => panic!("Unexpected event"),
10658                 }
10659
10660                 let error_msg = get_err_msg(&nodes[1], &nodes[0].node.get_our_node_id());
10661                 nodes[0].node.handle_error(&nodes[1].node.get_our_node_id(), &error_msg);
10662
10663                 let open_channel_msg = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
10664                 assert!(!open_channel_msg.channel_type.unwrap().supports_anchors_zero_fee_htlc_tx());
10665
10666                 // Since nodes[1] should not have accepted the channel, it should
10667                 // not have generated any events.
10668                 assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
10669         }
10670
10671         #[test]
10672         fn test_update_channel_config() {
10673                 let chanmon_cfg = create_chanmon_cfgs(2);
10674                 let node_cfg = create_node_cfgs(2, &chanmon_cfg);
10675                 let mut user_config = test_default_channel_config();
10676                 let node_chanmgr = create_node_chanmgrs(2, &node_cfg, &[Some(user_config), Some(user_config)]);
10677                 let nodes = create_network(2, &node_cfg, &node_chanmgr);
10678                 let _ = create_announced_chan_between_nodes(&nodes, 0, 1);
10679                 let channel = &nodes[0].node.list_channels()[0];
10680
10681                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10682                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10683                 assert_eq!(events.len(), 0);
10684
10685                 user_config.channel_config.forwarding_fee_base_msat += 10;
10686                 nodes[0].node.update_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &user_config.channel_config).unwrap();
10687                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_base_msat, user_config.channel_config.forwarding_fee_base_msat);
10688                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10689                 assert_eq!(events.len(), 1);
10690                 match &events[0] {
10691                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10692                         _ => panic!("expected BroadcastChannelUpdate event"),
10693                 }
10694
10695                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate::default()).unwrap();
10696                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10697                 assert_eq!(events.len(), 0);
10698
10699                 let new_cltv_expiry_delta = user_config.channel_config.cltv_expiry_delta + 6;
10700                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10701                         cltv_expiry_delta: Some(new_cltv_expiry_delta),
10702                         ..Default::default()
10703                 }).unwrap();
10704                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10705                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10706                 assert_eq!(events.len(), 1);
10707                 match &events[0] {
10708                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10709                         _ => panic!("expected BroadcastChannelUpdate event"),
10710                 }
10711
10712                 let new_fee = user_config.channel_config.forwarding_fee_proportional_millionths + 100;
10713                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id], &ChannelConfigUpdate {
10714                         forwarding_fee_proportional_millionths: Some(new_fee),
10715                         ..Default::default()
10716                 }).unwrap();
10717                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().cltv_expiry_delta, new_cltv_expiry_delta);
10718                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, new_fee);
10719                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10720                 assert_eq!(events.len(), 1);
10721                 match &events[0] {
10722                         MessageSendEvent::BroadcastChannelUpdate { .. } => {},
10723                         _ => panic!("expected BroadcastChannelUpdate event"),
10724                 }
10725
10726                 // If we provide a channel_id not associated with the peer, we should get an error and no updates
10727                 // should be applied to ensure update atomicity as specified in the API docs.
10728                 let bad_channel_id = ChannelId::v1_from_funding_txid(&[10; 32], 10);
10729                 let current_fee = nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths;
10730                 let new_fee = current_fee + 100;
10731                 assert!(
10732                         matches!(
10733                                 nodes[0].node.update_partial_channel_config(&channel.counterparty.node_id, &[channel.channel_id, bad_channel_id], &ChannelConfigUpdate {
10734                                         forwarding_fee_proportional_millionths: Some(new_fee),
10735                                         ..Default::default()
10736                                 }),
10737                                 Err(APIError::ChannelUnavailable { err: _ }),
10738                         )
10739                 );
10740                 // Check that the fee hasn't changed for the channel that exists.
10741                 assert_eq!(nodes[0].node.list_channels()[0].config.unwrap().forwarding_fee_proportional_millionths, current_fee);
10742                 let events = nodes[0].node.get_and_clear_pending_msg_events();
10743                 assert_eq!(events.len(), 0);
10744         }
10745
10746         #[test]
10747         fn test_payment_display() {
10748                 let payment_id = PaymentId([42; 32]);
10749                 assert_eq!(format!("{}", &payment_id), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10750                 let payment_hash = PaymentHash([42; 32]);
10751                 assert_eq!(format!("{}", &payment_hash), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10752                 let payment_preimage = PaymentPreimage([42; 32]);
10753                 assert_eq!(format!("{}", &payment_preimage), "2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a2a");
10754         }
10755 }
10756
10757 #[cfg(ldk_bench)]
10758 pub mod bench {
10759         use crate::chain::Listen;
10760         use crate::chain::chainmonitor::{ChainMonitor, Persist};
10761         use crate::sign::{KeysManager, InMemorySigner};
10762         use crate::events::{Event, MessageSendEvent, MessageSendEventsProvider};
10763         use crate::ln::channelmanager::{BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId, RecipientOnionFields, Retry};
10764         use crate::ln::functional_test_utils::*;
10765         use crate::ln::msgs::{ChannelMessageHandler, Init};
10766         use crate::routing::gossip::NetworkGraph;
10767         use crate::routing::router::{PaymentParameters, RouteParameters};
10768         use crate::util::test_utils;
10769         use crate::util::config::{UserConfig, MaxDustHTLCExposure};
10770
10771         use bitcoin::hashes::Hash;
10772         use bitcoin::hashes::sha256::Hash as Sha256;
10773         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
10774
10775         use crate::sync::{Arc, Mutex, RwLock};
10776
10777         use criterion::Criterion;
10778
10779         type Manager<'a, P> = ChannelManager<
10780                 &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
10781                         &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
10782                         &'a test_utils::TestLogger, &'a P>,
10783                 &'a test_utils::TestBroadcaster, &'a KeysManager, &'a KeysManager, &'a KeysManager,
10784                 &'a test_utils::TestFeeEstimator, &'a test_utils::TestRouter<'a>,
10785                 &'a test_utils::TestLogger>;
10786
10787         struct ANodeHolder<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> {
10788                 node: &'node_cfg Manager<'chan_mon_cfg, P>,
10789         }
10790         impl<'node_cfg, 'chan_mon_cfg: 'node_cfg, P: Persist<InMemorySigner>> NodeHolder for ANodeHolder<'node_cfg, 'chan_mon_cfg, P> {
10791                 type CM = Manager<'chan_mon_cfg, P>;
10792                 #[inline]
10793                 fn node(&self) -> &Manager<'chan_mon_cfg, P> { self.node }
10794                 #[inline]
10795                 fn chain_monitor(&self) -> Option<&test_utils::TestChainMonitor> { None }
10796         }
10797
10798         pub fn bench_sends(bench: &mut Criterion) {
10799                 bench_two_sends(bench, "bench_sends", test_utils::TestPersister::new(), test_utils::TestPersister::new());
10800         }
10801
10802         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Criterion, bench_name: &str, persister_a: P, persister_b: P) {
10803                 // Do a simple benchmark of sending a payment back and forth between two nodes.
10804                 // Note that this is unrealistic as each payment send will require at least two fsync
10805                 // calls per node.
10806                 let network = bitcoin::Network::Testnet;
10807                 let genesis_block = bitcoin::blockdata::constants::genesis_block(network);
10808
10809                 let tx_broadcaster = test_utils::TestBroadcaster::new(network);
10810                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
10811                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
10812                 let scorer = RwLock::new(test_utils::TestScorer::new());
10813                 let router = test_utils::TestRouter::new(Arc::new(NetworkGraph::new(network, &logger_a)), &scorer);
10814
10815                 let mut config: UserConfig = Default::default();
10816                 config.channel_config.max_dust_htlc_exposure = MaxDustHTLCExposure::FeeRateMultiplier(5_000_000 / 253);
10817                 config.channel_handshake_config.minimum_depth = 1;
10818
10819                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
10820                 let seed_a = [1u8; 32];
10821                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
10822                 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 {
10823                         network,
10824                         best_block: BestBlock::from_network(network),
10825                 }, genesis_block.header.time);
10826                 let node_a_holder = ANodeHolder { node: &node_a };
10827
10828                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
10829                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
10830                 let seed_b = [2u8; 32];
10831                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
10832                 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 {
10833                         network,
10834                         best_block: BestBlock::from_network(network),
10835                 }, genesis_block.header.time);
10836                 let node_b_holder = ANodeHolder { node: &node_b };
10837
10838                 node_a.peer_connected(&node_b.get_our_node_id(), &Init {
10839                         features: node_b.init_features(), networks: None, remote_network_address: None
10840                 }, true).unwrap();
10841                 node_b.peer_connected(&node_a.get_our_node_id(), &Init {
10842                         features: node_a.init_features(), networks: None, remote_network_address: None
10843                 }, false).unwrap();
10844                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
10845                 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()));
10846                 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()));
10847
10848                 let tx;
10849                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
10850                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
10851                                 value: 8_000_000, script_pubkey: output_script,
10852                         }]};
10853                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
10854                 } else { panic!(); }
10855
10856                 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()));
10857                 let events_b = node_b.get_and_clear_pending_events();
10858                 assert_eq!(events_b.len(), 1);
10859                 match events_b[0] {
10860                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10861                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10862                         },
10863                         _ => panic!("Unexpected event"),
10864                 }
10865
10866                 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()));
10867                 let events_a = node_a.get_and_clear_pending_events();
10868                 assert_eq!(events_a.len(), 1);
10869                 match events_a[0] {
10870                         Event::ChannelPending{ ref counterparty_node_id, .. } => {
10871                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10872                         },
10873                         _ => panic!("Unexpected event"),
10874                 }
10875
10876                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
10877
10878                 let block = create_dummy_block(BestBlock::from_network(network).block_hash(), 42, vec![tx]);
10879                 Listen::block_connected(&node_a, &block, 1);
10880                 Listen::block_connected(&node_b, &block, 1);
10881
10882                 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()));
10883                 let msg_events = node_a.get_and_clear_pending_msg_events();
10884                 assert_eq!(msg_events.len(), 2);
10885                 match msg_events[0] {
10886                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
10887                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
10888                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
10889                         },
10890                         _ => panic!(),
10891                 }
10892                 match msg_events[1] {
10893                         MessageSendEvent::SendChannelUpdate { .. } => {},
10894                         _ => panic!(),
10895                 }
10896
10897                 let events_a = node_a.get_and_clear_pending_events();
10898                 assert_eq!(events_a.len(), 1);
10899                 match events_a[0] {
10900                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10901                                 assert_eq!(*counterparty_node_id, node_b.get_our_node_id());
10902                         },
10903                         _ => panic!("Unexpected event"),
10904                 }
10905
10906                 let events_b = node_b.get_and_clear_pending_events();
10907                 assert_eq!(events_b.len(), 1);
10908                 match events_b[0] {
10909                         Event::ChannelReady{ ref counterparty_node_id, .. } => {
10910                                 assert_eq!(*counterparty_node_id, node_a.get_our_node_id());
10911                         },
10912                         _ => panic!("Unexpected event"),
10913                 }
10914
10915                 let mut payment_count: u64 = 0;
10916                 macro_rules! send_payment {
10917                         ($node_a: expr, $node_b: expr) => {
10918                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id(), TEST_FINAL_CLTV)
10919                                         .with_bolt11_features($node_b.invoice_features()).unwrap();
10920                                 let mut payment_preimage = PaymentPreimage([0; 32]);
10921                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
10922                                 payment_count += 1;
10923                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
10924                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200, None).unwrap();
10925
10926                                 $node_a.send_payment(payment_hash, RecipientOnionFields::secret_only(payment_secret),
10927                                         PaymentId(payment_hash.0),
10928                                         RouteParameters::from_payment_params_and_value(payment_params, 10_000),
10929                                         Retry::Attempts(0)).unwrap();
10930                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
10931                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
10932                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
10933                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_b }, &$node_a.get_our_node_id());
10934                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
10935                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
10936                                 $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()));
10937
10938                                 expect_pending_htlcs_forwardable!(ANodeHolder { node: &$node_b });
10939                                 expect_payment_claimable!(ANodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
10940                                 $node_b.claim_funds(payment_preimage);
10941                                 expect_payment_claimed!(ANodeHolder { node: &$node_b }, payment_hash, 10_000);
10942
10943                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
10944                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
10945                                                 assert_eq!(node_id, $node_a.get_our_node_id());
10946                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
10947                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
10948                                         },
10949                                         _ => panic!("Failed to generate claim event"),
10950                                 }
10951
10952                                 let (raa, cs) = get_revoke_commit_msgs(&ANodeHolder { node: &$node_a }, &$node_b.get_our_node_id());
10953                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
10954                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
10955                                 $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()));
10956
10957                                 expect_payment_sent!(ANodeHolder { node: &$node_a }, payment_preimage);
10958                         }
10959                 }
10960
10961                 bench.bench_function(bench_name, |b| b.iter(|| {
10962                         send_payment!(node_a, node_b);
10963                         send_payment!(node_b, node_a);
10964                 }));
10965         }
10966 }