Stop timing out payments automatically, requiring abandon_payment
[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 [`find_route`] 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 //! [`find_route`]: crate::routing::router::find_route
21
22 use bitcoin::blockdata::block::BlockHeader;
23 use bitcoin::blockdata::transaction::Transaction;
24 use bitcoin::blockdata::constants::genesis_block;
25 use bitcoin::network::constants::Network;
26
27 use bitcoin::hashes::Hash;
28 use bitcoin::hashes::sha256::Hash as Sha256;
29 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
30 use bitcoin::hash_types::{BlockHash, Txid};
31
32 use bitcoin::secp256k1::{SecretKey,PublicKey};
33 use bitcoin::secp256k1::Secp256k1;
34 use bitcoin::secp256k1::ecdh::SharedSecret;
35 use bitcoin::{LockTime, secp256k1, Sequence};
36
37 use crate::chain;
38 use crate::chain::{Confirm, ChannelMonitorUpdateStatus, Watch, BestBlock};
39 use crate::chain::chaininterface::{BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator};
40 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};
41 use crate::chain::transaction::{OutPoint, TransactionData};
42 // Since this struct is returned in `list_channels` methods, expose it here in case users want to
43 // construct one themselves.
44 use crate::ln::{inbound_payment, PaymentHash, PaymentPreimage, PaymentSecret};
45 use crate::ln::channel::{Channel, ChannelError, ChannelUpdateStatus, UpdateFulfillCommitFetch};
46 use crate::ln::features::{ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
47 #[cfg(any(feature = "_test_utils", test))]
48 use crate::ln::features::InvoiceFeatures;
49 use crate::routing::router::{PaymentParameters, Route, RouteHop, RoutePath, RouteParameters};
50 use crate::ln::msgs;
51 use crate::ln::onion_utils;
52 use crate::ln::msgs::{ChannelMessageHandler, DecodeError, LightningError, MAX_VALUE_MSAT};
53 use crate::ln::wire::Encode;
54 use crate::chain::keysinterface::{Sign, KeysInterface, KeysManager, InMemorySigner, Recipient};
55 use crate::util::config::{UserConfig, ChannelConfig};
56 use crate::util::events::{EventHandler, EventsProvider, MessageSendEvent, MessageSendEventsProvider, ClosureReason, HTLCDestination};
57 use crate::util::{byte_utils, events};
58 use crate::util::wakers::{Future, Notifier};
59 use crate::util::scid_utils::fake_scid;
60 use crate::util::ser::{BigSize, FixedLengthReader, Readable, ReadableArgs, MaybeReadable, Writeable, Writer, VecWriter};
61 use crate::util::logger::{Level, Logger};
62 use crate::util::errors::APIError;
63
64 use crate::io;
65 use crate::prelude::*;
66 use core::{cmp, mem};
67 use core::cell::RefCell;
68 use crate::io::Read;
69 use crate::sync::{Arc, Mutex, MutexGuard, RwLock, RwLockReadGuard};
70 use core::sync::atomic::{AtomicUsize, Ordering};
71 use core::time::Duration;
72 use core::ops::Deref;
73
74 // We hold various information about HTLC relay in the HTLC objects in Channel itself:
75 //
76 // Upon receipt of an HTLC from a peer, we'll give it a PendingHTLCStatus indicating if it should
77 // forward the HTLC with information it will give back to us when it does so, or if it should Fail
78 // the HTLC with the relevant message for the Channel to handle giving to the remote peer.
79 //
80 // Once said HTLC is committed in the Channel, if the PendingHTLCStatus indicated Forward, the
81 // Channel will return the PendingHTLCInfo back to us, and we will create an HTLCForwardInfo
82 // with it to track where it came from (in case of onwards-forward error), waiting a random delay
83 // before we forward it.
84 //
85 // We will then use HTLCForwardInfo's PendingHTLCInfo to construct an outbound HTLC, with a
86 // relevant HTLCSource::PreviousHopData filled in to indicate where it came from (which we can use
87 // to either fail-backwards or fulfill the HTLC backwards along the relevant path).
88 // Alternatively, we can fill an outbound HTLC with a HTLCSource::OutboundRoute indicating this is
89 // our payment, which we can use to decode errors or inform the user that the payment was sent.
90
91 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
92 pub(super) enum PendingHTLCRouting {
93         Forward {
94                 onion_packet: msgs::OnionPacket,
95                 /// The SCID from the onion that we should forward to. This could be a "real" SCID, an
96                 /// outbound SCID alias, or a phantom node SCID.
97                 short_channel_id: u64, // This should be NonZero<u64> eventually when we bump MSRV
98         },
99         Receive {
100                 payment_data: msgs::FinalOnionHopData,
101                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
102                 phantom_shared_secret: Option<[u8; 32]>,
103         },
104         ReceiveKeysend {
105                 payment_preimage: PaymentPreimage,
106                 incoming_cltv_expiry: u32, // Used to track when we should expire pending HTLCs that go unclaimed
107         },
108 }
109
110 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
111 pub(super) struct PendingHTLCInfo {
112         pub(super) routing: PendingHTLCRouting,
113         pub(super) incoming_shared_secret: [u8; 32],
114         payment_hash: PaymentHash,
115         pub(super) amt_to_forward: u64,
116         pub(super) outgoing_cltv_value: u32,
117 }
118
119 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
120 pub(super) enum HTLCFailureMsg {
121         Relay(msgs::UpdateFailHTLC),
122         Malformed(msgs::UpdateFailMalformedHTLC),
123 }
124
125 /// Stores whether we can't forward an HTLC or relevant forwarding info
126 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
127 pub(super) enum PendingHTLCStatus {
128         Forward(PendingHTLCInfo),
129         Fail(HTLCFailureMsg),
130 }
131
132 pub(super) enum HTLCForwardInfo {
133         AddHTLC {
134                 forward_info: PendingHTLCInfo,
135
136                 // These fields are produced in `forward_htlcs()` and consumed in
137                 // `process_pending_htlc_forwards()` for constructing the
138                 // `HTLCSource::PreviousHopData` for failed and forwarded
139                 // HTLCs.
140                 //
141                 // Note that this may be an outbound SCID alias for the associated channel.
142                 prev_short_channel_id: u64,
143                 prev_htlc_id: u64,
144                 prev_funding_outpoint: OutPoint,
145         },
146         FailHTLC {
147                 htlc_id: u64,
148                 err_packet: msgs::OnionErrorPacket,
149         },
150 }
151
152 /// Tracks the inbound corresponding to an outbound HTLC
153 #[derive(Clone, Hash, PartialEq, Eq)]
154 pub(crate) struct HTLCPreviousHopData {
155         // Note that this may be an outbound SCID alias for the associated channel.
156         short_channel_id: u64,
157         htlc_id: u64,
158         incoming_packet_shared_secret: [u8; 32],
159         phantom_shared_secret: Option<[u8; 32]>,
160
161         // This field is consumed by `claim_funds_from_hop()` when updating a force-closed backwards
162         // channel with a preimage provided by the forward channel.
163         outpoint: OutPoint,
164 }
165
166 enum OnionPayload {
167         /// Indicates this incoming onion payload is for the purpose of paying an invoice.
168         Invoice {
169                 /// This is only here for backwards-compatibility in serialization, in the future it can be
170                 /// removed, breaking clients running 0.0.106 and earlier.
171                 _legacy_hop_data: Option<msgs::FinalOnionHopData>,
172         },
173         /// Contains the payer-provided preimage.
174         Spontaneous(PaymentPreimage),
175 }
176
177 /// HTLCs that are to us and can be failed/claimed by the user
178 struct ClaimableHTLC {
179         prev_hop: HTLCPreviousHopData,
180         cltv_expiry: u32,
181         /// The amount (in msats) of this MPP part
182         value: u64,
183         onion_payload: OnionPayload,
184         timer_ticks: u8,
185         /// The sum total of all MPP parts
186         total_msat: u64,
187 }
188
189 /// A payment identifier used to uniquely identify a payment to LDK.
190 /// (C-not exported) as we just use [u8; 32] directly
191 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
192 pub struct PaymentId(pub [u8; 32]);
193
194 impl Writeable for PaymentId {
195         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
196                 self.0.write(w)
197         }
198 }
199
200 impl Readable for PaymentId {
201         fn read<R: Read>(r: &mut R) -> Result<Self, DecodeError> {
202                 let buf: [u8; 32] = Readable::read(r)?;
203                 Ok(PaymentId(buf))
204         }
205 }
206 /// Tracks the inbound corresponding to an outbound HTLC
207 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
208 #[derive(Clone, PartialEq, Eq)]
209 pub(crate) enum HTLCSource {
210         PreviousHopData(HTLCPreviousHopData),
211         OutboundRoute {
212                 path: Vec<RouteHop>,
213                 session_priv: SecretKey,
214                 /// Technically we can recalculate this from the route, but we cache it here to avoid
215                 /// doing a double-pass on route when we get a failure back
216                 first_hop_htlc_msat: u64,
217                 payment_id: PaymentId,
218                 payment_secret: Option<PaymentSecret>,
219                 payment_params: Option<PaymentParameters>,
220         },
221 }
222 #[allow(clippy::derive_hash_xor_eq)] // Our Hash is faithful to the data, we just don't have SecretKey::hash
223 impl core::hash::Hash for HTLCSource {
224         fn hash<H: core::hash::Hasher>(&self, hasher: &mut H) {
225                 match self {
226                         HTLCSource::PreviousHopData(prev_hop_data) => {
227                                 0u8.hash(hasher);
228                                 prev_hop_data.hash(hasher);
229                         },
230                         HTLCSource::OutboundRoute { path, session_priv, payment_id, payment_secret, first_hop_htlc_msat, payment_params } => {
231                                 1u8.hash(hasher);
232                                 path.hash(hasher);
233                                 session_priv[..].hash(hasher);
234                                 payment_id.hash(hasher);
235                                 payment_secret.hash(hasher);
236                                 first_hop_htlc_msat.hash(hasher);
237                                 payment_params.hash(hasher);
238                         },
239                 }
240         }
241 }
242 #[cfg(not(feature = "grind_signatures"))]
243 #[cfg(test)]
244 impl HTLCSource {
245         pub fn dummy() -> Self {
246                 HTLCSource::OutboundRoute {
247                         path: Vec::new(),
248                         session_priv: SecretKey::from_slice(&[1; 32]).unwrap(),
249                         first_hop_htlc_msat: 0,
250                         payment_id: PaymentId([2; 32]),
251                         payment_secret: None,
252                         payment_params: None,
253                 }
254         }
255 }
256
257 #[derive(Clone)] // See Channel::revoke_and_ack for why, tl;dr: Rust bug
258 pub(super) enum HTLCFailReason {
259         LightningError {
260                 err: msgs::OnionErrorPacket,
261         },
262         Reason {
263                 failure_code: u16,
264                 data: Vec<u8>,
265         }
266 }
267
268 struct ReceiveError {
269         err_code: u16,
270         err_data: Vec<u8>,
271         msg: &'static str,
272 }
273
274 /// Return value for claim_funds_from_hop
275 enum ClaimFundsFromHop {
276         PrevHopForceClosed,
277         MonitorUpdateFail(PublicKey, MsgHandleErrInternal, Option<u64>),
278         Success(u64),
279         DuplicateClaim,
280 }
281
282 type ShutdownResult = (Option<(OutPoint, ChannelMonitorUpdate)>, Vec<(HTLCSource, PaymentHash, PublicKey, [u8; 32])>);
283
284 /// Error type returned across the channel_state mutex boundary. When an Err is generated for a
285 /// Channel, we generally end up with a ChannelError::Close for which we have to close the channel
286 /// immediately (ie with no further calls on it made). Thus, this step happens inside a
287 /// channel_state lock. We then return the set of things that need to be done outside the lock in
288 /// this struct and call handle_error!() on it.
289
290 struct MsgHandleErrInternal {
291         err: msgs::LightningError,
292         chan_id: Option<([u8; 32], u64)>, // If Some a channel of ours has been closed
293         shutdown_finish: Option<(ShutdownResult, Option<msgs::ChannelUpdate>)>,
294 }
295 impl MsgHandleErrInternal {
296         #[inline]
297         fn send_err_msg_no_close(err: String, channel_id: [u8; 32]) -> Self {
298                 Self {
299                         err: LightningError {
300                                 err: err.clone(),
301                                 action: msgs::ErrorAction::SendErrorMessage {
302                                         msg: msgs::ErrorMessage {
303                                                 channel_id,
304                                                 data: err
305                                         },
306                                 },
307                         },
308                         chan_id: None,
309                         shutdown_finish: None,
310                 }
311         }
312         #[inline]
313         fn ignore_no_close(err: String) -> Self {
314                 Self {
315                         err: LightningError {
316                                 err,
317                                 action: msgs::ErrorAction::IgnoreError,
318                         },
319                         chan_id: None,
320                         shutdown_finish: None,
321                 }
322         }
323         #[inline]
324         fn from_no_close(err: msgs::LightningError) -> Self {
325                 Self { err, chan_id: None, shutdown_finish: None }
326         }
327         #[inline]
328         fn from_finish_shutdown(err: String, channel_id: [u8; 32], user_channel_id: u64, shutdown_res: ShutdownResult, channel_update: Option<msgs::ChannelUpdate>) -> Self {
329                 Self {
330                         err: LightningError {
331                                 err: err.clone(),
332                                 action: msgs::ErrorAction::SendErrorMessage {
333                                         msg: msgs::ErrorMessage {
334                                                 channel_id,
335                                                 data: err
336                                         },
337                                 },
338                         },
339                         chan_id: Some((channel_id, user_channel_id)),
340                         shutdown_finish: Some((shutdown_res, channel_update)),
341                 }
342         }
343         #[inline]
344         fn from_chan_no_close(err: ChannelError, channel_id: [u8; 32]) -> Self {
345                 Self {
346                         err: match err {
347                                 ChannelError::Warn(msg) =>  LightningError {
348                                         err: msg.clone(),
349                                         action: msgs::ErrorAction::SendWarningMessage {
350                                                 msg: msgs::WarningMessage {
351                                                         channel_id,
352                                                         data: msg
353                                                 },
354                                                 log_level: Level::Warn,
355                                         },
356                                 },
357                                 ChannelError::Ignore(msg) => LightningError {
358                                         err: msg,
359                                         action: msgs::ErrorAction::IgnoreError,
360                                 },
361                                 ChannelError::Close(msg) => LightningError {
362                                         err: msg.clone(),
363                                         action: msgs::ErrorAction::SendErrorMessage {
364                                                 msg: msgs::ErrorMessage {
365                                                         channel_id,
366                                                         data: msg
367                                                 },
368                                         },
369                                 },
370                         },
371                         chan_id: None,
372                         shutdown_finish: None,
373                 }
374         }
375 }
376
377 /// We hold back HTLCs we intend to relay for a random interval greater than this (see
378 /// Event::PendingHTLCsForwardable for the API guidelines indicating how long should be waited).
379 /// This provides some limited amount of privacy. Ideally this would range from somewhere like one
380 /// second to 30 seconds, but people expect lightning to be, you know, kinda fast, sadly.
381 const MIN_HTLC_RELAY_HOLDING_CELL_MILLIS: u64 = 100;
382
383 /// For events which result in both a RevokeAndACK and a CommitmentUpdate, by default they should
384 /// be sent in the order they appear in the return value, however sometimes the order needs to be
385 /// variable at runtime (eg Channel::channel_reestablish needs to re-send messages in the order
386 /// they were originally sent). In those cases, this enum is also returned.
387 #[derive(Clone, PartialEq)]
388 pub(super) enum RAACommitmentOrder {
389         /// Send the CommitmentUpdate messages first
390         CommitmentFirst,
391         /// Send the RevokeAndACK message first
392         RevokeAndACKFirst,
393 }
394
395 // Note this is only exposed in cfg(test):
396 pub(super) struct ChannelHolder<Signer: Sign> {
397         pub(super) by_id: HashMap<[u8; 32], Channel<Signer>>,
398         /// SCIDs (and outbound SCID aliases) -> `counterparty_node_id`s and `channel_id`s.
399         ///
400         /// Outbound SCID aliases are added here once the channel is available for normal use, with
401         /// SCIDs being added once the funding transaction is confirmed at the channel's required
402         /// confirmation depth.
403         pub(super) short_to_chan_info: HashMap<u64, (PublicKey, [u8; 32])>,
404         /// Map from payment hash to the payment data and any HTLCs which are to us and can be
405         /// failed/claimed by the user.
406         ///
407         /// Note that while this is held in the same mutex as the channels themselves, no consistency
408         /// guarantees are made about the channels given here actually existing anymore by the time you
409         /// go to read them!
410         claimable_htlcs: HashMap<PaymentHash, (events::PaymentPurpose, Vec<ClaimableHTLC>)>,
411         /// Messages to send to peers - pushed to in the same lock that they are generated in (except
412         /// for broadcast messages, where ordering isn't as strict).
413         pub(super) pending_msg_events: Vec<MessageSendEvent>,
414 }
415
416 /// Events which we process internally but cannot be procsesed immediately at the generation site
417 /// for some reason. They are handled in timer_tick_occurred, so may be processed with
418 /// quite some time lag.
419 enum BackgroundEvent {
420         /// Handle a ChannelMonitorUpdate that closes a channel, broadcasting its current latest holder
421         /// commitment transaction.
422         ClosingMonitorUpdate((OutPoint, ChannelMonitorUpdate)),
423 }
424
425 /// State we hold per-peer. In the future we should put channels in here, but for now we only hold
426 /// the latest Init features we heard from the peer.
427 struct PeerState {
428         latest_features: InitFeatures,
429 }
430
431 /// Stores a PaymentSecret and any other data we may need to validate an inbound payment is
432 /// actually ours and not some duplicate HTLC sent to us by a node along the route.
433 ///
434 /// For users who don't want to bother doing their own payment preimage storage, we also store that
435 /// here.
436 ///
437 /// Note that this struct will be removed entirely soon, in favor of storing no inbound payment data
438 /// and instead encoding it in the payment secret.
439 struct PendingInboundPayment {
440         /// The payment secret that the sender must use for us to accept this payment
441         payment_secret: PaymentSecret,
442         /// Time at which this HTLC expires - blocks with a header time above this value will result in
443         /// this payment being removed.
444         expiry_time: u64,
445         /// Arbitrary identifier the user specifies (or not)
446         user_payment_id: u64,
447         // Other required attributes of the payment, optionally enforced:
448         payment_preimage: Option<PaymentPreimage>,
449         min_value_msat: Option<u64>,
450 }
451
452 /// Stores the session_priv for each part of a payment that is still pending. For versions 0.0.102
453 /// and later, also stores information for retrying the payment.
454 pub(crate) enum PendingOutboundPayment {
455         Legacy {
456                 session_privs: HashSet<[u8; 32]>,
457         },
458         Retryable {
459                 session_privs: HashSet<[u8; 32]>,
460                 payment_hash: PaymentHash,
461                 payment_secret: Option<PaymentSecret>,
462                 pending_amt_msat: u64,
463                 /// Used to track the fee paid. Only present if the payment was serialized on 0.0.103+.
464                 pending_fee_msat: Option<u64>,
465                 /// The total payment amount across all paths, used to verify that a retry is not overpaying.
466                 total_msat: u64,
467                 /// Our best known block height at the time this payment was initiated.
468                 starting_block_height: u32,
469         },
470         /// When a pending payment is fulfilled, we continue tracking it until all pending HTLCs have
471         /// been resolved. This ensures we don't look up pending payments in ChannelMonitors on restart
472         /// and add a pending payment that was already fulfilled.
473         Fulfilled {
474                 session_privs: HashSet<[u8; 32]>,
475                 payment_hash: Option<PaymentHash>,
476                 timer_ticks_without_htlcs: u8,
477         },
478         /// When a payer gives up trying to retry a payment, they inform us, letting us generate a
479         /// `PaymentFailed` event when all HTLCs have irrevocably failed. This avoids a number of race
480         /// conditions in MPP-aware payment retriers (1), where the possibility of multiple
481         /// `PaymentPathFailed` events with `all_paths_failed` can be pending at once, confusing a
482         /// downstream event handler as to when a payment has actually failed.
483         ///
484         /// (1) https://github.com/lightningdevkit/rust-lightning/issues/1164
485         Abandoned {
486                 session_privs: HashSet<[u8; 32]>,
487                 payment_hash: PaymentHash,
488         },
489 }
490
491 impl PendingOutboundPayment {
492         fn is_fulfilled(&self) -> bool {
493                 match self {
494                         PendingOutboundPayment::Fulfilled { .. } => true,
495                         _ => false,
496                 }
497         }
498         fn abandoned(&self) -> bool {
499                 match self {
500                         PendingOutboundPayment::Abandoned { .. } => true,
501                         _ => false,
502                 }
503         }
504         fn get_pending_fee_msat(&self) -> Option<u64> {
505                 match self {
506                         PendingOutboundPayment::Retryable { pending_fee_msat, .. } => pending_fee_msat.clone(),
507                         _ => None,
508                 }
509         }
510
511         fn payment_hash(&self) -> Option<PaymentHash> {
512                 match self {
513                         PendingOutboundPayment::Legacy { .. } => None,
514                         PendingOutboundPayment::Retryable { payment_hash, .. } => Some(*payment_hash),
515                         PendingOutboundPayment::Fulfilled { payment_hash, .. } => *payment_hash,
516                         PendingOutboundPayment::Abandoned { payment_hash, .. } => Some(*payment_hash),
517                 }
518         }
519
520         fn mark_fulfilled(&mut self) {
521                 let mut session_privs = HashSet::new();
522                 core::mem::swap(&mut session_privs, match self {
523                         PendingOutboundPayment::Legacy { session_privs } |
524                         PendingOutboundPayment::Retryable { session_privs, .. } |
525                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
526                         PendingOutboundPayment::Abandoned { session_privs, .. }
527                                 => session_privs,
528                 });
529                 let payment_hash = self.payment_hash();
530                 *self = PendingOutboundPayment::Fulfilled { session_privs, payment_hash, timer_ticks_without_htlcs: 0 };
531         }
532
533         fn mark_abandoned(&mut self) -> Result<(), ()> {
534                 let mut session_privs = HashSet::new();
535                 let our_payment_hash;
536                 core::mem::swap(&mut session_privs, match self {
537                         PendingOutboundPayment::Legacy { .. } |
538                         PendingOutboundPayment::Fulfilled { .. } =>
539                                 return Err(()),
540                         PendingOutboundPayment::Retryable { session_privs, payment_hash, .. } |
541                         PendingOutboundPayment::Abandoned { session_privs, payment_hash, .. } => {
542                                 our_payment_hash = *payment_hash;
543                                 session_privs
544                         },
545                 });
546                 *self = PendingOutboundPayment::Abandoned { session_privs, payment_hash: our_payment_hash };
547                 Ok(())
548         }
549
550         /// panics if path is None and !self.is_fulfilled
551         fn remove(&mut self, session_priv: &[u8; 32], path: Option<&Vec<RouteHop>>) -> bool {
552                 let remove_res = match self {
553                         PendingOutboundPayment::Legacy { session_privs } |
554                         PendingOutboundPayment::Retryable { session_privs, .. } |
555                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
556                         PendingOutboundPayment::Abandoned { session_privs, .. } => {
557                                 session_privs.remove(session_priv)
558                         }
559                 };
560                 if remove_res {
561                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
562                                 let path = path.expect("Fulfilling a payment should always come with a path");
563                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
564                                 *pending_amt_msat -= path_last_hop.fee_msat;
565                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
566                                         *fee_msat -= path.get_path_fees();
567                                 }
568                         }
569                 }
570                 remove_res
571         }
572
573         fn insert(&mut self, session_priv: [u8; 32], path: &Vec<RouteHop>) -> bool {
574                 let insert_res = match self {
575                         PendingOutboundPayment::Legacy { session_privs } |
576                         PendingOutboundPayment::Retryable { session_privs, .. } => {
577                                 session_privs.insert(session_priv)
578                         }
579                         PendingOutboundPayment::Fulfilled { .. } => false,
580                         PendingOutboundPayment::Abandoned { .. } => false,
581                 };
582                 if insert_res {
583                         if let PendingOutboundPayment::Retryable { ref mut pending_amt_msat, ref mut pending_fee_msat, .. } = self {
584                                 let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
585                                 *pending_amt_msat += path_last_hop.fee_msat;
586                                 if let Some(fee_msat) = pending_fee_msat.as_mut() {
587                                         *fee_msat += path.get_path_fees();
588                                 }
589                         }
590                 }
591                 insert_res
592         }
593
594         fn remaining_parts(&self) -> usize {
595                 match self {
596                         PendingOutboundPayment::Legacy { session_privs } |
597                         PendingOutboundPayment::Retryable { session_privs, .. } |
598                         PendingOutboundPayment::Fulfilled { session_privs, .. } |
599                         PendingOutboundPayment::Abandoned { session_privs, .. } => {
600                                 session_privs.len()
601                         }
602                 }
603         }
604 }
605
606 /// SimpleArcChannelManager is useful when you need a ChannelManager with a static lifetime, e.g.
607 /// when you're using lightning-net-tokio (since tokio::spawn requires parameters with static
608 /// lifetimes). Other times you can afford a reference, which is more efficient, in which case
609 /// SimpleRefChannelManager is the more appropriate type. Defining these type aliases prevents
610 /// issues such as overly long function definitions. Note that the ChannelManager can take any
611 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
612 /// concrete type of the KeysManager.
613 ///
614 /// (C-not exported) as Arcs don't make sense in bindings
615 pub type SimpleArcChannelManager<M, T, F, L> = ChannelManager<InMemorySigner, Arc<M>, Arc<T>, Arc<KeysManager>, Arc<F>, Arc<L>>;
616
617 /// SimpleRefChannelManager is a type alias for a ChannelManager reference, and is the reference
618 /// counterpart to the SimpleArcChannelManager type alias. Use this type by default when you don't
619 /// need a ChannelManager with a static lifetime. You'll need a static lifetime in cases such as
620 /// usage of lightning-net-tokio (since tokio::spawn requires parameters with static lifetimes).
621 /// But if this is not necessary, using a reference is more efficient. Defining these type aliases
622 /// helps with issues such as long function definitions. Note that the ChannelManager can take any
623 /// type that implements KeysInterface for its keys manager, but this type alias chooses the
624 /// concrete type of the KeysManager.
625 ///
626 /// (C-not exported) as Arcs don't make sense in bindings
627 pub type SimpleRefChannelManager<'a, 'b, 'c, 'd, 'e, M, T, F, L> = ChannelManager<InMemorySigner, &'a M, &'b T, &'c KeysManager, &'d F, &'e L>;
628
629 /// Manager which keeps track of a number of channels and sends messages to the appropriate
630 /// channel, also tracking HTLC preimages and forwarding onion packets appropriately.
631 ///
632 /// Implements ChannelMessageHandler, handling the multi-channel parts and passing things through
633 /// to individual Channels.
634 ///
635 /// Implements Writeable to write out all channel state to disk. Implies peer_disconnected() for
636 /// all peers during write/read (though does not modify this instance, only the instance being
637 /// serialized). This will result in any channels which have not yet exchanged funding_created (ie
638 /// called funding_transaction_generated for outbound channels).
639 ///
640 /// Note that you can be a bit lazier about writing out ChannelManager than you can be with
641 /// ChannelMonitors. With ChannelMonitors you MUST write each monitor update out to disk before
642 /// returning from chain::Watch::watch_/update_channel, with ChannelManagers, writing updates
643 /// happens out-of-band (and will prevent any other ChannelManager operations from occurring during
644 /// the serialization process). If the deserialized version is out-of-date compared to the
645 /// ChannelMonitors passed by reference to read(), those channels will be force-closed based on the
646 /// ChannelMonitor state and no funds will be lost (mod on-chain transaction fees).
647 ///
648 /// Note that the deserializer is only implemented for (BlockHash, ChannelManager), which
649 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
650 /// the "reorg path" (ie call block_disconnected() until you get to a common block and then call
651 /// block_connected() to step towards your best block) upon deserialization before using the
652 /// object!
653 ///
654 /// Note that ChannelManager is responsible for tracking liveness of its channels and generating
655 /// ChannelUpdate messages informing peers that the channel is temporarily disabled. To avoid
656 /// spam due to quick disconnection/reconnection, updates are not sent until the channel has been
657 /// offline for a full minute. In order to track this, you must call
658 /// timer_tick_occurred roughly once per minute, though it doesn't have to be perfect.
659 ///
660 /// Rather than using a plain ChannelManager, it is preferable to use either a SimpleArcChannelManager
661 /// a SimpleRefChannelManager, for conciseness. See their documentation for more details, but
662 /// essentially you should default to using a SimpleRefChannelManager, and use a
663 /// SimpleArcChannelManager when you require a ChannelManager with a static lifetime, such as when
664 /// you're using lightning-net-tokio.
665 //
666 // Lock order:
667 // The tree structure below illustrates the lock order requirements for the different locks of the
668 // `ChannelManager`. Locks can be held at the same time if they are on the same branch in the tree,
669 // and should then be taken in the order of the lowest to the highest level in the tree.
670 // Note that locks on different branches shall not be taken at the same time, as doing so will
671 // create a new lock order for those specific locks in the order they were taken.
672 //
673 // Lock order tree:
674 //
675 // `total_consistency_lock`
676 //  |
677 //  |__`forward_htlcs`
678 //  |
679 //  |__`channel_state`
680 //  |   |
681 //  |   |__`id_to_peer`
682 //  |   |
683 //  |   |__`per_peer_state`
684 //  |       |
685 //  |       |__`outbound_scid_aliases`
686 //  |       |
687 //  |       |__`pending_inbound_payments`
688 //  |           |
689 //  |           |__`pending_outbound_payments`
690 //  |               |
691 //  |               |__`best_block`
692 //  |               |
693 //  |               |__`pending_events`
694 //  |                   |
695 //  |                   |__`pending_background_events`
696 //
697 pub struct ChannelManager<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
698         where M::Target: chain::Watch<Signer>,
699         T::Target: BroadcasterInterface,
700         K::Target: KeysInterface<Signer = Signer>,
701         F::Target: FeeEstimator,
702                                 L::Target: Logger,
703 {
704         default_configuration: UserConfig,
705         genesis_hash: BlockHash,
706         fee_estimator: LowerBoundedFeeEstimator<F>,
707         chain_monitor: M,
708         tx_broadcaster: T,
709
710         /// See `ChannelManager` struct-level documentation for lock order requirements.
711         #[cfg(test)]
712         pub(super) best_block: RwLock<BestBlock>,
713         #[cfg(not(test))]
714         best_block: RwLock<BestBlock>,
715         secp_ctx: Secp256k1<secp256k1::All>,
716
717         /// See `ChannelManager` struct-level documentation for lock order requirements.
718         #[cfg(any(test, feature = "_test_utils"))]
719         pub(super) channel_state: Mutex<ChannelHolder<Signer>>,
720         #[cfg(not(any(test, feature = "_test_utils")))]
721         channel_state: Mutex<ChannelHolder<Signer>>,
722
723         /// Storage for PaymentSecrets and any requirements on future inbound payments before we will
724         /// expose them to users via a PaymentReceived event. HTLCs which do not meet the requirements
725         /// here are failed when we process them as pending-forwardable-HTLCs, and entries are removed
726         /// after we generate a PaymentReceived upon receipt of all MPP parts or when they time out.
727         ///
728         /// See `ChannelManager` struct-level documentation for lock order requirements.
729         pending_inbound_payments: Mutex<HashMap<PaymentHash, PendingInboundPayment>>,
730
731         /// The session_priv bytes and retry metadata of outbound payments which are pending resolution.
732         /// The authoritative state of these HTLCs resides either within Channels or ChannelMonitors
733         /// (if the channel has been force-closed), however we track them here to prevent duplicative
734         /// PaymentSent/PaymentPathFailed events. Specifically, in the case of a duplicative
735         /// update_fulfill_htlc message after a reconnect, we may "claim" a payment twice.
736         /// Additionally, because ChannelMonitors are often not re-serialized after connecting block(s)
737         /// which may generate a claim event, we may receive similar duplicate claim/fail MonitorEvents
738         /// after reloading from disk while replaying blocks against ChannelMonitors.
739         ///
740         /// See `PendingOutboundPayment` documentation for more info.
741         ///
742         /// See `ChannelManager` struct-level documentation for lock order requirements.
743         pending_outbound_payments: Mutex<HashMap<PaymentId, PendingOutboundPayment>>,
744
745         /// SCID/SCID Alias -> forward infos. Key of 0 means payments received.
746         ///
747         /// Note that because we may have an SCID Alias as the key we can have two entries per channel,
748         /// though in practice we probably won't be receiving HTLCs for a channel both via the alias
749         /// and via the classic SCID.
750         ///
751         /// Note that no consistency guarantees are made about the existence of a channel with the
752         /// `short_channel_id` here, nor the `short_channel_id` in the `PendingHTLCInfo`!
753         ///
754         /// See `ChannelManager` struct-level documentation for lock order requirements.
755         #[cfg(test)]
756         pub(super) forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
757         #[cfg(not(test))]
758         forward_htlcs: Mutex<HashMap<u64, Vec<HTLCForwardInfo>>>,
759
760         /// The set of outbound SCID aliases across all our channels, including unconfirmed channels
761         /// and some closed channels which reached a usable state prior to being closed. This is used
762         /// only to avoid duplicates, and is not persisted explicitly to disk, but rebuilt from the
763         /// active channel list on load.
764         ///
765         /// See `ChannelManager` struct-level documentation for lock order requirements.
766         outbound_scid_aliases: Mutex<HashSet<u64>>,
767
768         /// `channel_id` -> `counterparty_node_id`.
769         ///
770         /// Only `channel_id`s are allowed as keys in this map, and not `temporary_channel_id`s. As
771         /// multiple channels with the same `temporary_channel_id` to different peers can exist,
772         /// allowing `temporary_channel_id`s in this map would cause collisions for such channels.
773         ///
774         /// Note that this map should only be used for `MonitorEvent` handling, to be able to access
775         /// the corresponding channel for the event, as we only have access to the `channel_id` during
776         /// the handling of the events.
777         ///
778         /// TODO:
779         /// The `counterparty_node_id` isn't passed with `MonitorEvent`s currently. To pass it, we need
780         /// to make `counterparty_node_id`'s a required field in `ChannelMonitor`s, which unfortunately
781         /// would break backwards compatability.
782         /// We should add `counterparty_node_id`s to `MonitorEvent`s, and eventually rely on it in the
783         /// future. That would make this map redundant, as only the `ChannelManager::per_peer_state` is
784         /// required to access the channel with the `counterparty_node_id`.
785         ///
786         /// See `ChannelManager` struct-level documentation for lock order requirements.
787         id_to_peer: Mutex<HashMap<[u8; 32], PublicKey>>,
788
789         our_network_key: SecretKey,
790         our_network_pubkey: PublicKey,
791
792         inbound_payment_key: inbound_payment::ExpandedKey,
793
794         /// LDK puts the [fake scids] that it generates into namespaces, to identify the type of an
795         /// incoming payment. To make it harder for a third-party to identify the type of a payment,
796         /// we encrypt the namespace identifier using these bytes.
797         ///
798         /// [fake scids]: crate::util::scid_utils::fake_scid
799         fake_scid_rand_bytes: [u8; 32],
800
801         /// When we send payment probes, we generate the [`PaymentHash`] based on this cookie secret
802         /// and a random [`PaymentId`]. This allows us to discern probes from real payments, without
803         /// keeping additional state.
804         probing_cookie_secret: [u8; 32],
805
806         /// The highest block timestamp we've seen, which is usually a good guess at the current time.
807         /// Assuming most miners are generating blocks with reasonable timestamps, this shouldn't be
808         /// very far in the past, and can only ever be up to two hours in the future.
809         highest_seen_timestamp: AtomicUsize,
810
811         /// The bulk of our storage will eventually be here (channels and message queues and the like).
812         /// If we are connected to a peer we always at least have an entry here, even if no channels
813         /// are currently open with that peer.
814         /// Because adding or removing an entry is rare, we usually take an outer read lock and then
815         /// operate on the inner value freely. Sadly, this prevents parallel operation when opening a
816         /// new channel.
817         ///
818         /// See `ChannelManager` struct-level documentation for lock order requirements.
819         per_peer_state: RwLock<HashMap<PublicKey, Mutex<PeerState>>>,
820
821         /// See `ChannelManager` struct-level documentation for lock order requirements.
822         pending_events: Mutex<Vec<events::Event>>,
823         /// See `ChannelManager` struct-level documentation for lock order requirements.
824         pending_background_events: Mutex<Vec<BackgroundEvent>>,
825         /// Used when we have to take a BIG lock to make sure everything is self-consistent.
826         /// Essentially just when we're serializing ourselves out.
827         /// Taken first everywhere where we are making changes before any other locks.
828         /// When acquiring this lock in read mode, rather than acquiring it directly, call
829         /// `PersistenceNotifierGuard::notify_on_drop(..)` and pass the lock to it, to ensure the
830         /// Notifier the lock contains sends out a notification when the lock is released.
831         total_consistency_lock: RwLock<()>,
832
833         persistence_notifier: Notifier,
834
835         keys_manager: K,
836
837         logger: L,
838 }
839
840 /// Chain-related parameters used to construct a new `ChannelManager`.
841 ///
842 /// Typically, the block-specific parameters are derived from the best block hash for the network,
843 /// as a newly constructed `ChannelManager` will not have created any channels yet. These parameters
844 /// are not needed when deserializing a previously constructed `ChannelManager`.
845 #[derive(Clone, Copy, PartialEq)]
846 pub struct ChainParameters {
847         /// The network for determining the `chain_hash` in Lightning messages.
848         pub network: Network,
849
850         /// The hash and height of the latest block successfully connected.
851         ///
852         /// Used to track on-chain channel funding outputs and send payments with reliable timelocks.
853         pub best_block: BestBlock,
854 }
855
856 #[derive(Copy, Clone, PartialEq)]
857 enum NotifyOption {
858         DoPersist,
859         SkipPersist,
860 }
861
862 /// Whenever we release the `ChannelManager`'s `total_consistency_lock`, from read mode, it is
863 /// desirable to notify any listeners on `await_persistable_update_timeout`/
864 /// `await_persistable_update` when new updates are available for persistence. Therefore, this
865 /// struct is responsible for locking the total consistency lock and, upon going out of scope,
866 /// sending the aforementioned notification (since the lock being released indicates that the
867 /// updates are ready for persistence).
868 ///
869 /// We allow callers to either always notify by constructing with `notify_on_drop` or choose to
870 /// notify or not based on whether relevant changes have been made, providing a closure to
871 /// `optionally_notify` which returns a `NotifyOption`.
872 struct PersistenceNotifierGuard<'a, F: Fn() -> NotifyOption> {
873         persistence_notifier: &'a Notifier,
874         should_persist: F,
875         // We hold onto this result so the lock doesn't get released immediately.
876         _read_guard: RwLockReadGuard<'a, ()>,
877 }
878
879 impl<'a> PersistenceNotifierGuard<'a, fn() -> NotifyOption> { // We don't care what the concrete F is here, it's unused
880         fn notify_on_drop(lock: &'a RwLock<()>, notifier: &'a Notifier) -> PersistenceNotifierGuard<'a, impl Fn() -> NotifyOption> {
881                 PersistenceNotifierGuard::optionally_notify(lock, notifier, || -> NotifyOption { NotifyOption::DoPersist })
882         }
883
884         fn optionally_notify<F: Fn() -> NotifyOption>(lock: &'a RwLock<()>, notifier: &'a Notifier, persist_check: F) -> PersistenceNotifierGuard<'a, F> {
885                 let read_guard = lock.read().unwrap();
886
887                 PersistenceNotifierGuard {
888                         persistence_notifier: notifier,
889                         should_persist: persist_check,
890                         _read_guard: read_guard,
891                 }
892         }
893 }
894
895 impl<'a, F: Fn() -> NotifyOption> Drop for PersistenceNotifierGuard<'a, F> {
896         fn drop(&mut self) {
897                 if (self.should_persist)() == NotifyOption::DoPersist {
898                         self.persistence_notifier.notify();
899                 }
900         }
901 }
902
903 /// The amount of time in blocks we require our counterparty wait to claim their money (ie time
904 /// between when we, or our watchtower, must check for them having broadcast a theft transaction).
905 ///
906 /// This can be increased (but not decreased) through [`ChannelHandshakeConfig::our_to_self_delay`]
907 ///
908 /// [`ChannelHandshakeConfig::our_to_self_delay`]: crate::util::config::ChannelHandshakeConfig::our_to_self_delay
909 pub const BREAKDOWN_TIMEOUT: u16 = 6 * 24;
910 /// The amount of time in blocks we're willing to wait to claim money back to us. This matches
911 /// the maximum required amount in lnd as of March 2021.
912 pub(crate) const MAX_LOCAL_BREAKDOWN_TIMEOUT: u16 = 2 * 6 * 24 * 7;
913
914 /// The minimum number of blocks between an inbound HTLC's CLTV and the corresponding outbound
915 /// HTLC's CLTV. The current default represents roughly seven hours of blocks at six blocks/hour.
916 ///
917 /// This can be increased (but not decreased) through [`ChannelConfig::cltv_expiry_delta`]
918 ///
919 /// [`ChannelConfig::cltv_expiry_delta`]: crate::util::config::ChannelConfig::cltv_expiry_delta
920 // This should always be a few blocks greater than channelmonitor::CLTV_CLAIM_BUFFER,
921 // i.e. the node we forwarded the payment on to should always have enough room to reliably time out
922 // the HTLC via a full update_fail_htlc/commitment_signed dance before we hit the
923 // CLTV_CLAIM_BUFFER point (we static assert that it's at least 3 blocks more).
924 pub const MIN_CLTV_EXPIRY_DELTA: u16 = 6*7;
925 // This should be long enough to allow a payment path drawn across multiple routing hops with substantial
926 // `cltv_expiry_delta`. Indeed, the length of those values is the reaction delay offered to a routing node
927 // in case of HTLC on-chain settlement. While appearing less competitive, a node operator could decide to
928 // scale them up to suit its security policy. At the network-level, we shouldn't constrain them too much,
929 // while avoiding to introduce a DoS vector. Further, a low CTLV_FAR_FAR_AWAY could be a source of
930 // routing failure for any HTLC sender picking up an LDK node among the first hops.
931 pub(super) const CLTV_FAR_FAR_AWAY: u32 = 14 * 24 * 6;
932
933 /// Minimum CLTV difference between the current block height and received inbound payments.
934 /// Invoices generated for payment to us must set their `min_final_cltv_expiry` field to at least
935 /// this value.
936 // Note that we fail if exactly HTLC_FAIL_BACK_BUFFER + 1 was used, so we need to add one for
937 // any payments to succeed. Further, we don't want payments to fail if a block was found while
938 // a payment was being routed, so we add an extra block to be safe.
939 pub const MIN_FINAL_CLTV_EXPIRY: u32 = HTLC_FAIL_BACK_BUFFER + 3;
940
941 // Check that our CLTV_EXPIRY is at least CLTV_CLAIM_BUFFER + ANTI_REORG_DELAY + LATENCY_GRACE_PERIOD_BLOCKS,
942 // ie that if the next-hop peer fails the HTLC within
943 // LATENCY_GRACE_PERIOD_BLOCKS then we'll still have CLTV_CLAIM_BUFFER left to timeout it onchain,
944 // then waiting ANTI_REORG_DELAY to be reorg-safe on the outbound HLTC and
945 // failing the corresponding htlc backward, and us now seeing the last block of ANTI_REORG_DELAY before
946 // LATENCY_GRACE_PERIOD_BLOCKS.
947 #[deny(const_err)]
948 #[allow(dead_code)]
949 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;
950
951 // Check for ability of an attacker to make us fail on-chain by delaying an HTLC claim. See
952 // ChannelMonitor::should_broadcast_holder_commitment_txn for a description of why this is needed.
953 #[deny(const_err)]
954 #[allow(dead_code)]
955 const CHECK_CLTV_EXPIRY_SANITY_2: u32 = MIN_CLTV_EXPIRY_DELTA as u32 - LATENCY_GRACE_PERIOD_BLOCKS - 2*CLTV_CLAIM_BUFFER;
956
957 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until expiry of incomplete MPPs
958 pub(crate) const MPP_TIMEOUT_TICKS: u8 = 3;
959
960 /// The number of ticks of [`ChannelManager::timer_tick_occurred`] until we time-out the
961 /// idempotency of payments by [`PaymentId`]. See
962 /// [`ChannelManager::remove_stale_resolved_payments`].
963 pub(crate) const IDEMPOTENCY_TIMEOUT_TICKS: u8 = 7;
964
965 /// Information needed for constructing an invoice route hint for this channel.
966 #[derive(Clone, Debug, PartialEq)]
967 pub struct CounterpartyForwardingInfo {
968         /// Base routing fee in millisatoshis.
969         pub fee_base_msat: u32,
970         /// Amount in millionths of a satoshi the channel will charge per transferred satoshi.
971         pub fee_proportional_millionths: u32,
972         /// The minimum difference in cltv_expiry between an ingoing HTLC and its outgoing counterpart,
973         /// such that the outgoing HTLC is forwardable to this counterparty. See `msgs::ChannelUpdate`'s
974         /// `cltv_expiry_delta` for more details.
975         pub cltv_expiry_delta: u16,
976 }
977
978 /// Channel parameters which apply to our counterparty. These are split out from [`ChannelDetails`]
979 /// to better separate parameters.
980 #[derive(Clone, Debug, PartialEq)]
981 pub struct ChannelCounterparty {
982         /// The node_id of our counterparty
983         pub node_id: PublicKey,
984         /// The Features the channel counterparty provided upon last connection.
985         /// Useful for routing as it is the most up-to-date copy of the counterparty's features and
986         /// many routing-relevant features are present in the init context.
987         pub features: InitFeatures,
988         /// The value, in satoshis, that must always be held in the channel for our counterparty. This
989         /// value ensures that if our counterparty broadcasts a revoked state, we can punish them by
990         /// claiming at least this value on chain.
991         ///
992         /// This value is not included in [`inbound_capacity_msat`] as it can never be spent.
993         ///
994         /// [`inbound_capacity_msat`]: ChannelDetails::inbound_capacity_msat
995         pub unspendable_punishment_reserve: u64,
996         /// Information on the fees and requirements that the counterparty requires when forwarding
997         /// payments to us through this channel.
998         pub forwarding_info: Option<CounterpartyForwardingInfo>,
999         /// The smallest value HTLC (in msat) the remote peer will accept, for this channel. This field
1000         /// is only `None` before we have received either the `OpenChannel` or `AcceptChannel` message
1001         /// from the remote peer, or for `ChannelCounterparty` objects serialized prior to LDK 0.0.107.
1002         pub outbound_htlc_minimum_msat: Option<u64>,
1003         /// The largest value HTLC (in msat) the remote peer currently will accept, for this channel.
1004         pub outbound_htlc_maximum_msat: Option<u64>,
1005 }
1006
1007 /// Details of a channel, as returned by ChannelManager::list_channels and ChannelManager::list_usable_channels
1008 #[derive(Clone, Debug, PartialEq)]
1009 pub struct ChannelDetails {
1010         /// The channel's ID (prior to funding transaction generation, this is a random 32 bytes,
1011         /// thereafter this is the txid of the funding transaction xor the funding transaction output).
1012         /// Note that this means this value is *not* persistent - it can change once during the
1013         /// lifetime of the channel.
1014         pub channel_id: [u8; 32],
1015         /// Parameters which apply to our counterparty. See individual fields for more information.
1016         pub counterparty: ChannelCounterparty,
1017         /// The Channel's funding transaction output, if we've negotiated the funding transaction with
1018         /// our counterparty already.
1019         ///
1020         /// Note that, if this has been set, `channel_id` will be equivalent to
1021         /// `funding_txo.unwrap().to_channel_id()`.
1022         pub funding_txo: Option<OutPoint>,
1023         /// The features which this channel operates with. See individual features for more info.
1024         ///
1025         /// `None` until negotiation completes and the channel type is finalized.
1026         pub channel_type: Option<ChannelTypeFeatures>,
1027         /// The position of the funding transaction in the chain. None if the funding transaction has
1028         /// not yet been confirmed and the channel fully opened.
1029         ///
1030         /// Note that if [`inbound_scid_alias`] is set, it must be used for invoices and inbound
1031         /// payments instead of this. See [`get_inbound_payment_scid`].
1032         ///
1033         /// For channels with [`confirmations_required`] set to `Some(0)`, [`outbound_scid_alias`] may
1034         /// be used in place of this in outbound routes. See [`get_outbound_payment_scid`].
1035         ///
1036         /// [`inbound_scid_alias`]: Self::inbound_scid_alias
1037         /// [`outbound_scid_alias`]: Self::outbound_scid_alias
1038         /// [`get_inbound_payment_scid`]: Self::get_inbound_payment_scid
1039         /// [`get_outbound_payment_scid`]: Self::get_outbound_payment_scid
1040         /// [`confirmations_required`]: Self::confirmations_required
1041         pub short_channel_id: Option<u64>,
1042         /// An optional [`short_channel_id`] alias for this channel, randomly generated by us and
1043         /// usable in place of [`short_channel_id`] to reference the channel in outbound routes when
1044         /// the channel has not yet been confirmed (as long as [`confirmations_required`] is
1045         /// `Some(0)`).
1046         ///
1047         /// This will be `None` as long as the channel is not available for routing outbound payments.
1048         ///
1049         /// [`short_channel_id`]: Self::short_channel_id
1050         /// [`confirmations_required`]: Self::confirmations_required
1051         pub outbound_scid_alias: Option<u64>,
1052         /// An optional [`short_channel_id`] alias for this channel, randomly generated by our
1053         /// counterparty and usable in place of [`short_channel_id`] in invoice route hints. Our
1054         /// counterparty will recognize the alias provided here in place of the [`short_channel_id`]
1055         /// when they see a payment to be routed to us.
1056         ///
1057         /// Our counterparty may choose to rotate this value at any time, though will always recognize
1058         /// previous values for inbound payment forwarding.
1059         ///
1060         /// [`short_channel_id`]: Self::short_channel_id
1061         pub inbound_scid_alias: Option<u64>,
1062         /// The value, in satoshis, of this channel as appears in the funding output
1063         pub channel_value_satoshis: u64,
1064         /// The value, in satoshis, that must always be held in the channel for us. This value ensures
1065         /// that if we broadcast a revoked state, our counterparty can punish us by claiming at least
1066         /// this value on chain.
1067         ///
1068         /// This value is not included in [`outbound_capacity_msat`] as it can never be spent.
1069         ///
1070         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1071         ///
1072         /// [`outbound_capacity_msat`]: ChannelDetails::outbound_capacity_msat
1073         pub unspendable_punishment_reserve: Option<u64>,
1074         /// The `user_channel_id` passed in to create_channel, or 0 if the channel was inbound.
1075         pub user_channel_id: u64,
1076         /// Our total balance.  This is the amount we would get if we close the channel.
1077         /// This value is not exact. Due to various in-flight changes and feerate changes, exactly this
1078         /// amount is not likely to be recoverable on close.
1079         ///
1080         /// This does not include any pending HTLCs which are not yet fully resolved (and, thus, whose
1081         /// balance is not available for inclusion in new outbound HTLCs). This further does not include
1082         /// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
1083         /// This does not consider any on-chain fees.
1084         ///
1085         /// See also [`ChannelDetails::outbound_capacity_msat`]
1086         pub balance_msat: u64,
1087         /// The available outbound capacity for sending HTLCs to the remote peer. This does not include
1088         /// any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1089         /// available for inclusion in new outbound HTLCs). This further does not include any pending
1090         /// outgoing HTLCs which are awaiting some other resolution to be sent.
1091         ///
1092         /// See also [`ChannelDetails::balance_msat`]
1093         ///
1094         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1095         /// conflict-avoidance policy, exactly this amount is not likely to be spendable. However, we
1096         /// should be able to spend nearly this amount.
1097         pub outbound_capacity_msat: u64,
1098         /// The available outbound capacity for sending a single HTLC to the remote peer. This is
1099         /// similar to [`ChannelDetails::outbound_capacity_msat`] but it may be further restricted by
1100         /// the current state and per-HTLC limit(s). This is intended for use when routing, allowing us
1101         /// to use a limit as close as possible to the HTLC limit we can currently send.
1102         ///
1103         /// See also [`ChannelDetails::balance_msat`] and [`ChannelDetails::outbound_capacity_msat`].
1104         pub next_outbound_htlc_limit_msat: u64,
1105         /// The available inbound capacity for the remote peer to send HTLCs to us. This does not
1106         /// include any pending HTLCs which are not yet fully resolved (and, thus, whose balance is not
1107         /// available for inclusion in new inbound HTLCs).
1108         /// Note that there are some corner cases not fully handled here, so the actual available
1109         /// inbound capacity may be slightly higher than this.
1110         ///
1111         /// This value is not exact. Due to various in-flight changes, feerate changes, and our
1112         /// counterparty's conflict-avoidance policy, exactly this amount is not likely to be spendable.
1113         /// However, our counterparty should be able to spend nearly this amount.
1114         pub inbound_capacity_msat: u64,
1115         /// The number of required confirmations on the funding transaction before the funding will be
1116         /// considered "locked". This number is selected by the channel fundee (i.e. us if
1117         /// [`is_outbound`] is *not* set), and can be selected for inbound channels with
1118         /// [`ChannelHandshakeConfig::minimum_depth`] or limited for outbound channels with
1119         /// [`ChannelHandshakeLimits::max_minimum_depth`].
1120         ///
1121         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1122         ///
1123         /// [`is_outbound`]: ChannelDetails::is_outbound
1124         /// [`ChannelHandshakeConfig::minimum_depth`]: crate::util::config::ChannelHandshakeConfig::minimum_depth
1125         /// [`ChannelHandshakeLimits::max_minimum_depth`]: crate::util::config::ChannelHandshakeLimits::max_minimum_depth
1126         pub confirmations_required: Option<u32>,
1127         /// The number of blocks (after our commitment transaction confirms) that we will need to wait
1128         /// until we can claim our funds after we force-close the channel. During this time our
1129         /// counterparty is allowed to punish us if we broadcasted a stale state. If our counterparty
1130         /// force-closes the channel and broadcasts a commitment transaction we do not have to wait any
1131         /// time to claim our non-HTLC-encumbered funds.
1132         ///
1133         /// This value will be `None` for outbound channels until the counterparty accepts the channel.
1134         pub force_close_spend_delay: Option<u16>,
1135         /// True if the channel was initiated (and thus funded) by us.
1136         pub is_outbound: bool,
1137         /// True if the channel is confirmed, channel_ready messages have been exchanged, and the
1138         /// channel is not currently being shut down. `channel_ready` message exchange implies the
1139         /// required confirmation count has been reached (and we were connected to the peer at some
1140         /// point after the funding transaction received enough confirmations). The required
1141         /// confirmation count is provided in [`confirmations_required`].
1142         ///
1143         /// [`confirmations_required`]: ChannelDetails::confirmations_required
1144         pub is_channel_ready: bool,
1145         /// True if the channel is (a) confirmed and channel_ready messages have been exchanged, (b)
1146         /// the peer is connected, and (c) the channel is not currently negotiating a shutdown.
1147         ///
1148         /// This is a strict superset of `is_channel_ready`.
1149         pub is_usable: bool,
1150         /// True if this channel is (or will be) publicly-announced.
1151         pub is_public: bool,
1152         /// The smallest value HTLC (in msat) we will accept, for this channel. This field
1153         /// is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.107
1154         pub inbound_htlc_minimum_msat: Option<u64>,
1155         /// The largest value HTLC (in msat) we currently will accept, for this channel.
1156         pub inbound_htlc_maximum_msat: Option<u64>,
1157         /// Set of configurable parameters that affect channel operation.
1158         ///
1159         /// This field is only `None` for `ChannelDetails` objects serialized prior to LDK 0.0.109.
1160         pub config: Option<ChannelConfig>,
1161 }
1162
1163 impl ChannelDetails {
1164         /// Gets the current SCID which should be used to identify this channel for inbound payments.
1165         /// This should be used for providing invoice hints or in any other context where our
1166         /// counterparty will forward a payment to us.
1167         ///
1168         /// This is either the [`ChannelDetails::inbound_scid_alias`], if set, or the
1169         /// [`ChannelDetails::short_channel_id`]. See those for more information.
1170         pub fn get_inbound_payment_scid(&self) -> Option<u64> {
1171                 self.inbound_scid_alias.or(self.short_channel_id)
1172         }
1173
1174         /// Gets the current SCID which should be used to identify this channel for outbound payments.
1175         /// This should be used in [`Route`]s to describe the first hop or in other contexts where
1176         /// we're sending or forwarding a payment outbound over this channel.
1177         ///
1178         /// This is either the [`ChannelDetails::short_channel_id`], if set, or the
1179         /// [`ChannelDetails::outbound_scid_alias`]. See those for more information.
1180         pub fn get_outbound_payment_scid(&self) -> Option<u64> {
1181                 self.short_channel_id.or(self.outbound_scid_alias)
1182         }
1183 }
1184
1185 /// If a payment fails to send, it can be in one of several states. This enum is returned as the
1186 /// Err() type describing which state the payment is in, see the description of individual enum
1187 /// states for more.
1188 #[derive(Clone, Debug)]
1189 pub enum PaymentSendFailure {
1190         /// A parameter which was passed to send_payment was invalid, preventing us from attempting to
1191         /// send the payment at all. No channel state has been changed or messages sent to peers, and
1192         /// once you've changed the parameter at error, you can freely retry the payment in full.
1193         ParameterError(APIError),
1194         /// A parameter in a single path which was passed to send_payment was invalid, preventing us
1195         /// from attempting to send the payment at all. No channel state has been changed or messages
1196         /// sent to peers, and once you've changed the parameter at error, you can freely retry the
1197         /// payment in full.
1198         ///
1199         /// The results here are ordered the same as the paths in the route object which was passed to
1200         /// send_payment.
1201         PathParameterError(Vec<Result<(), APIError>>),
1202         /// All paths which were attempted failed to send, with no channel state change taking place.
1203         /// You can freely retry the payment in full (though you probably want to do so over different
1204         /// paths than the ones selected).
1205         ///
1206         /// [`ChannelManager::abandon_payment`] does *not* need to be called for this payment and
1207         /// [`ChannelManager::retry_payment`] will *not* work for this payment.
1208         AllFailedRetrySafe(Vec<APIError>),
1209         /// Some paths which were attempted failed to send, though possibly not all. At least some
1210         /// paths have irrevocably committed to the HTLC and retrying the payment in full would result
1211         /// in over-/re-payment.
1212         ///
1213         /// The results here are ordered the same as the paths in the route object which was passed to
1214         /// send_payment, and any `Err`s which are not [`APIError::MonitorUpdateInProgress`] can be
1215         /// safely retried via [`ChannelManager::retry_payment`].
1216         ///
1217         /// Any entries which contain `Err(APIError::MonitorUpdateInprogress)` or `Ok(())` MUST NOT be
1218         /// retried as they will result in over-/re-payment. These HTLCs all either successfully sent
1219         /// (in the case of `Ok(())`) or will send once a [`MonitorEvent::Completed`] is provided for
1220         /// the next-hop channel with the latest update_id.
1221         PartialFailure {
1222                 /// The errors themselves, in the same order as the route hops.
1223                 results: Vec<Result<(), APIError>>,
1224                 /// If some paths failed without irrevocably committing to the new HTLC(s), this will
1225                 /// contain a [`RouteParameters`] object which can be used to calculate a new route that
1226                 /// will pay all remaining unpaid balance.
1227                 failed_paths_retry: Option<RouteParameters>,
1228                 /// The payment id for the payment, which is now at least partially pending.
1229                 payment_id: PaymentId,
1230         },
1231 }
1232
1233 /// Route hints used in constructing invoices for [phantom node payents].
1234 ///
1235 /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
1236 #[derive(Clone)]
1237 pub struct PhantomRouteHints {
1238         /// The list of channels to be included in the invoice route hints.
1239         pub channels: Vec<ChannelDetails>,
1240         /// A fake scid used for representing the phantom node's fake channel in generating the invoice
1241         /// route hints.
1242         pub phantom_scid: u64,
1243         /// The pubkey of the real backing node that would ultimately receive the payment.
1244         pub real_node_pubkey: PublicKey,
1245 }
1246
1247 macro_rules! handle_error {
1248         ($self: ident, $internal: expr, $counterparty_node_id: expr) => {
1249                 match $internal {
1250                         Ok(msg) => Ok(msg),
1251                         Err(MsgHandleErrInternal { err, chan_id, shutdown_finish }) => {
1252                                 #[cfg(debug_assertions)]
1253                                 {
1254                                         // In testing, ensure there are no deadlocks where the lock is already held upon
1255                                         // entering the macro.
1256                                         assert!($self.channel_state.try_lock().is_ok());
1257                                         assert!($self.pending_events.try_lock().is_ok());
1258                                 }
1259
1260                                 let mut msg_events = Vec::with_capacity(2);
1261
1262                                 if let Some((shutdown_res, update_option)) = shutdown_finish {
1263                                         $self.finish_force_close_channel(shutdown_res);
1264                                         if let Some(update) = update_option {
1265                                                 msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1266                                                         msg: update
1267                                                 });
1268                                         }
1269                                         if let Some((channel_id, user_channel_id)) = chan_id {
1270                                                 $self.pending_events.lock().unwrap().push(events::Event::ChannelClosed {
1271                                                         channel_id, user_channel_id,
1272                                                         reason: ClosureReason::ProcessingError { err: err.err.clone() }
1273                                                 });
1274                                         }
1275                                 }
1276
1277                                 log_error!($self.logger, "{}", err.err);
1278                                 if let msgs::ErrorAction::IgnoreError = err.action {
1279                                 } else {
1280                                         msg_events.push(events::MessageSendEvent::HandleError {
1281                                                 node_id: $counterparty_node_id,
1282                                                 action: err.action.clone()
1283                                         });
1284                                 }
1285
1286                                 if !msg_events.is_empty() {
1287                                         $self.channel_state.lock().unwrap().pending_msg_events.append(&mut msg_events);
1288                                 }
1289
1290                                 // Return error in case higher-API need one
1291                                 Err(err)
1292                         },
1293                 }
1294         }
1295 }
1296
1297 macro_rules! update_maps_on_chan_removal {
1298         ($self: expr, $short_to_chan_info: expr, $channel: expr) => {
1299                 if let Some(short_id) = $channel.get_short_channel_id() {
1300                         $short_to_chan_info.remove(&short_id);
1301                 } else {
1302                         // If the channel was never confirmed on-chain prior to its closure, remove the
1303                         // outbound SCID alias we used for it from the collision-prevention set. While we
1304                         // generally want to avoid ever re-using an outbound SCID alias across all channels, we
1305                         // also don't want a counterparty to be able to trivially cause a memory leak by simply
1306                         // opening a million channels with us which are closed before we ever reach the funding
1307                         // stage.
1308                         let alias_removed = $self.outbound_scid_aliases.lock().unwrap().remove(&$channel.outbound_scid_alias());
1309                         debug_assert!(alias_removed);
1310                 }
1311                 $self.id_to_peer.lock().unwrap().remove(&$channel.channel_id());
1312                 $short_to_chan_info.remove(&$channel.outbound_scid_alias());
1313         }
1314 }
1315
1316 /// Returns (boolean indicating if we should remove the Channel object from memory, a mapped error)
1317 macro_rules! convert_chan_err {
1318         ($self: ident, $err: expr, $short_to_chan_info: expr, $channel: expr, $channel_id: expr) => {
1319                 match $err {
1320                         ChannelError::Warn(msg) => {
1321                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Warn(msg), $channel_id.clone()))
1322                         },
1323                         ChannelError::Ignore(msg) => {
1324                                 (false, MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore(msg), $channel_id.clone()))
1325                         },
1326                         ChannelError::Close(msg) => {
1327                                 log_error!($self.logger, "Closing channel {} due to close-required error: {}", log_bytes!($channel_id[..]), msg);
1328                                 update_maps_on_chan_removal!($self, $short_to_chan_info, $channel);
1329                                 let shutdown_res = $channel.force_shutdown(true);
1330                                 (true, MsgHandleErrInternal::from_finish_shutdown(msg, *$channel_id, $channel.get_user_id(),
1331                                         shutdown_res, $self.get_channel_update_for_broadcast(&$channel).ok()))
1332                         },
1333                 }
1334         }
1335 }
1336
1337 macro_rules! break_chan_entry {
1338         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
1339                 match $res {
1340                         Ok(res) => res,
1341                         Err(e) => {
1342                                 let (drop, res) = convert_chan_err!($self, e, $channel_state.short_to_chan_info, $entry.get_mut(), $entry.key());
1343                                 if drop {
1344                                         $entry.remove_entry();
1345                                 }
1346                                 break Err(res);
1347                         }
1348                 }
1349         }
1350 }
1351
1352 macro_rules! try_chan_entry {
1353         ($self: ident, $res: expr, $channel_state: expr, $entry: expr) => {
1354                 match $res {
1355                         Ok(res) => res,
1356                         Err(e) => {
1357                                 let (drop, res) = convert_chan_err!($self, e, $channel_state.short_to_chan_info, $entry.get_mut(), $entry.key());
1358                                 if drop {
1359                                         $entry.remove_entry();
1360                                 }
1361                                 return Err(res);
1362                         }
1363                 }
1364         }
1365 }
1366
1367 macro_rules! remove_channel {
1368         ($self: expr, $channel_state: expr, $entry: expr) => {
1369                 {
1370                         let channel = $entry.remove_entry().1;
1371                         update_maps_on_chan_removal!($self, $channel_state.short_to_chan_info, channel);
1372                         channel
1373                 }
1374         }
1375 }
1376
1377 macro_rules! handle_monitor_update_res {
1378         ($self: ident, $err: expr, $short_to_chan_info: expr, $chan: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $resend_channel_ready: expr, $failed_forwards: expr, $failed_fails: expr, $failed_finalized_fulfills: expr, $chan_id: expr) => {
1379                 match $err {
1380                         ChannelMonitorUpdateStatus::PermanentFailure => {
1381                                 log_error!($self.logger, "Closing channel {} due to monitor update ChannelMonitorUpdateStatus::PermanentFailure", log_bytes!($chan_id[..]));
1382                                 update_maps_on_chan_removal!($self, $short_to_chan_info, $chan);
1383                                 // TODO: $failed_fails is dropped here, which will cause other channels to hit the
1384                                 // chain in a confused state! We need to move them into the ChannelMonitor which
1385                                 // will be responsible for failing backwards once things confirm on-chain.
1386                                 // It's ok that we drop $failed_forwards here - at this point we'd rather they
1387                                 // broadcast HTLC-Timeout and pay the associated fees to get their funds back than
1388                                 // us bother trying to claim it just to forward on to another peer. If we're
1389                                 // splitting hairs we'd prefer to claim payments that were to us, but we haven't
1390                                 // given up the preimage yet, so might as well just wait until the payment is
1391                                 // retried, avoiding the on-chain fees.
1392                                 let res: Result<(), _> = Err(MsgHandleErrInternal::from_finish_shutdown("ChannelMonitor storage failure".to_owned(), *$chan_id, $chan.get_user_id(),
1393                                                 $chan.force_shutdown(false), $self.get_channel_update_for_broadcast(&$chan).ok() ));
1394                                 (res, true)
1395                         },
1396                         ChannelMonitorUpdateStatus::InProgress => {
1397                                 log_info!($self.logger, "Disabling channel {} due to monitor update in progress. On restore will send {} and process {} forwards, {} fails, and {} fulfill finalizations",
1398                                                 log_bytes!($chan_id[..]),
1399                                                 if $resend_commitment && $resend_raa {
1400                                                                 match $action_type {
1401                                                                         RAACommitmentOrder::CommitmentFirst => { "commitment then RAA" },
1402                                                                         RAACommitmentOrder::RevokeAndACKFirst => { "RAA then commitment" },
1403                                                                 }
1404                                                         } else if $resend_commitment { "commitment" }
1405                                                         else if $resend_raa { "RAA" }
1406                                                         else { "nothing" },
1407                                                 (&$failed_forwards as &Vec<(PendingHTLCInfo, u64)>).len(),
1408                                                 (&$failed_fails as &Vec<(HTLCSource, PaymentHash, HTLCFailReason)>).len(),
1409                                                 (&$failed_finalized_fulfills as &Vec<HTLCSource>).len());
1410                                 if !$resend_commitment {
1411                                         debug_assert!($action_type == RAACommitmentOrder::RevokeAndACKFirst || !$resend_raa);
1412                                 }
1413                                 if !$resend_raa {
1414                                         debug_assert!($action_type == RAACommitmentOrder::CommitmentFirst || !$resend_commitment);
1415                                 }
1416                                 $chan.monitor_updating_paused($resend_raa, $resend_commitment, $resend_channel_ready, $failed_forwards, $failed_fails, $failed_finalized_fulfills);
1417                                 (Err(MsgHandleErrInternal::from_chan_no_close(ChannelError::Ignore("Failed to update ChannelMonitor".to_owned()), *$chan_id)), false)
1418                         },
1419                         ChannelMonitorUpdateStatus::Completed => {
1420                                 (Ok(()), false)
1421                         },
1422                 }
1423         };
1424         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $resend_channel_ready: expr, $failed_forwards: expr, $failed_fails: expr, $failed_finalized_fulfills: expr) => { {
1425                 let (res, drop) = handle_monitor_update_res!($self, $err, $channel_state.short_to_chan_info, $entry.get_mut(), $action_type, $resend_raa, $resend_commitment, $resend_channel_ready, $failed_forwards, $failed_fails, $failed_finalized_fulfills, $entry.key());
1426                 if drop {
1427                         $entry.remove_entry();
1428                 }
1429                 res
1430         } };
1431         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $chan_id: expr, COMMITMENT_UPDATE_ONLY) => { {
1432                 debug_assert!($action_type == RAACommitmentOrder::CommitmentFirst);
1433                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, true, false, Vec::new(), Vec::new(), Vec::new(), $chan_id)
1434         } };
1435         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $chan_id: expr, NO_UPDATE) => {
1436                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, false, false, Vec::new(), Vec::new(), Vec::new(), $chan_id)
1437         };
1438         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_channel_ready: expr, OPTIONALLY_RESEND_FUNDING_LOCKED) => {
1439                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, false, false, $resend_channel_ready, Vec::new(), Vec::new(), Vec::new())
1440         };
1441         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr) => {
1442                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, false, Vec::new(), Vec::new(), Vec::new())
1443         };
1444         ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $failed_forwards: expr, $failed_fails: expr) => {
1445                 handle_monitor_update_res!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, false, $failed_forwards, $failed_fails, Vec::new())
1446         };
1447 }
1448
1449 macro_rules! send_channel_ready {
1450         ($short_to_chan_info: expr, $pending_msg_events: expr, $channel: expr, $channel_ready_msg: expr) => {
1451                 $pending_msg_events.push(events::MessageSendEvent::SendChannelReady {
1452                         node_id: $channel.get_counterparty_node_id(),
1453                         msg: $channel_ready_msg,
1454                 });
1455                 // Note that we may send a `channel_ready` multiple times for a channel if we reconnect, so
1456                 // we allow collisions, but we shouldn't ever be updating the channel ID pointed to.
1457                 let outbound_alias_insert = $short_to_chan_info.insert($channel.outbound_scid_alias(), ($channel.get_counterparty_node_id(), $channel.channel_id()));
1458                 assert!(outbound_alias_insert.is_none() || outbound_alias_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1459                         "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1460                 if let Some(real_scid) = $channel.get_short_channel_id() {
1461                         let scid_insert = $short_to_chan_info.insert(real_scid, ($channel.get_counterparty_node_id(), $channel.channel_id()));
1462                         assert!(scid_insert.is_none() || scid_insert.unwrap() == ($channel.get_counterparty_node_id(), $channel.channel_id()),
1463                                 "SCIDs should never collide - ensure you weren't behind the chain tip by a full month when creating channels");
1464                 }
1465         }
1466 }
1467
1468 macro_rules! handle_chan_restoration_locked {
1469         ($self: ident, $channel_lock: expr, $channel_state: expr, $channel_entry: expr,
1470          $raa: expr, $commitment_update: expr, $order: expr, $chanmon_update: expr,
1471          $pending_forwards: expr, $funding_broadcastable: expr, $channel_ready: expr, $announcement_sigs: expr) => { {
1472                 let mut htlc_forwards = None;
1473
1474                 let chanmon_update: Option<ChannelMonitorUpdate> = $chanmon_update; // Force type-checking to resolve
1475                 let chanmon_update_is_none = chanmon_update.is_none();
1476                 let counterparty_node_id = $channel_entry.get().get_counterparty_node_id();
1477                 let res = loop {
1478                         let forwards: Vec<(PendingHTLCInfo, u64)> = $pending_forwards; // Force type-checking to resolve
1479                         if !forwards.is_empty() {
1480                                 htlc_forwards = Some(($channel_entry.get().get_short_channel_id().unwrap_or($channel_entry.get().outbound_scid_alias()),
1481                                         $channel_entry.get().get_funding_txo().unwrap(), forwards));
1482                         }
1483
1484                         if chanmon_update.is_some() {
1485                                 // On reconnect, we, by definition, only resend a channel_ready if there have been
1486                                 // no commitment updates, so the only channel monitor update which could also be
1487                                 // associated with a channel_ready would be the funding_created/funding_signed
1488                                 // monitor update. That monitor update failing implies that we won't send
1489                                 // channel_ready until it's been updated, so we can't have a channel_ready and a
1490                                 // monitor update here (so we don't bother to handle it correctly below).
1491                                 assert!($channel_ready.is_none());
1492                                 // A channel monitor update makes no sense without either a channel_ready or a
1493                                 // commitment update to process after it. Since we can't have a channel_ready, we
1494                                 // only bother to handle the monitor-update + commitment_update case below.
1495                                 assert!($commitment_update.is_some());
1496                         }
1497
1498                         if let Some(msg) = $channel_ready {
1499                                 // Similar to the above, this implies that we're letting the channel_ready fly
1500                                 // before it should be allowed to.
1501                                 assert!(chanmon_update.is_none());
1502                                 send_channel_ready!($channel_state.short_to_chan_info, $channel_state.pending_msg_events, $channel_entry.get(), msg);
1503                         }
1504                         if let Some(msg) = $announcement_sigs {
1505                                 $channel_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
1506                                         node_id: counterparty_node_id,
1507                                         msg,
1508                                 });
1509                         }
1510
1511                         let funding_broadcastable: Option<Transaction> = $funding_broadcastable; // Force type-checking to resolve
1512                         if let Some(monitor_update) = chanmon_update {
1513                                 // We only ever broadcast a funding transaction in response to a funding_signed
1514                                 // message and the resulting monitor update. Thus, on channel_reestablish
1515                                 // message handling we can't have a funding transaction to broadcast. When
1516                                 // processing a monitor update finishing resulting in a funding broadcast, we
1517                                 // cannot have a second monitor update, thus this case would indicate a bug.
1518                                 assert!(funding_broadcastable.is_none());
1519                                 // Given we were just reconnected or finished updating a channel monitor, the
1520                                 // only case where we can get a new ChannelMonitorUpdate would be if we also
1521                                 // have some commitment updates to send as well.
1522                                 assert!($commitment_update.is_some());
1523                                 match $self.chain_monitor.update_channel($channel_entry.get().get_funding_txo().unwrap(), monitor_update) {
1524                                         ChannelMonitorUpdateStatus::Completed => {},
1525                                         e => {
1526                                                 // channel_reestablish doesn't guarantee the order it returns is sensical
1527                                                 // for the messages it returns, but if we're setting what messages to
1528                                                 // re-transmit on monitor update success, we need to make sure it is sane.
1529                                                 let mut order = $order;
1530                                                 if $raa.is_none() {
1531                                                         order = RAACommitmentOrder::CommitmentFirst;
1532                                                 }
1533                                                 break handle_monitor_update_res!($self, e, $channel_state, $channel_entry, order, $raa.is_some(), true);
1534                                         }
1535                                 }
1536                         }
1537
1538                         macro_rules! handle_cs { () => {
1539                                 if let Some(update) = $commitment_update {
1540                                         $channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
1541                                                 node_id: counterparty_node_id,
1542                                                 updates: update,
1543                                         });
1544                                 }
1545                         } }
1546                         macro_rules! handle_raa { () => {
1547                                 if let Some(revoke_and_ack) = $raa {
1548                                         $channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
1549                                                 node_id: counterparty_node_id,
1550                                                 msg: revoke_and_ack,
1551                                         });
1552                                 }
1553                         } }
1554                         match $order {
1555                                 RAACommitmentOrder::CommitmentFirst => {
1556                                         handle_cs!();
1557                                         handle_raa!();
1558                                 },
1559                                 RAACommitmentOrder::RevokeAndACKFirst => {
1560                                         handle_raa!();
1561                                         handle_cs!();
1562                                 },
1563                         }
1564                         if let Some(tx) = funding_broadcastable {
1565                                 log_info!($self.logger, "Broadcasting funding transaction with txid {}", tx.txid());
1566                                 $self.tx_broadcaster.broadcast_transaction(&tx);
1567                         }
1568                         break Ok(());
1569                 };
1570
1571                 if chanmon_update_is_none {
1572                         // If there was no ChannelMonitorUpdate, we should never generate an Err in the res loop
1573                         // above. Doing so would imply calling handle_err!() from channel_monitor_updated() which
1574                         // should *never* end up calling back to `chain_monitor.update_channel()`.
1575                         assert!(res.is_ok());
1576                 }
1577
1578                 (htlc_forwards, res, counterparty_node_id)
1579         } }
1580 }
1581
1582 macro_rules! post_handle_chan_restoration {
1583         ($self: ident, $locked_res: expr) => { {
1584                 let (htlc_forwards, res, counterparty_node_id) = $locked_res;
1585
1586                 let _ = handle_error!($self, res, counterparty_node_id);
1587
1588                 if let Some(forwards) = htlc_forwards {
1589                         $self.forward_htlcs(&mut [forwards][..]);
1590                 }
1591         } }
1592 }
1593
1594 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
1595         where M::Target: chain::Watch<Signer>,
1596         T::Target: BroadcasterInterface,
1597         K::Target: KeysInterface<Signer = Signer>,
1598         F::Target: FeeEstimator,
1599         L::Target: Logger,
1600 {
1601         /// Constructs a new ChannelManager to hold several channels and route between them.
1602         ///
1603         /// This is the main "logic hub" for all channel-related actions, and implements
1604         /// ChannelMessageHandler.
1605         ///
1606         /// Non-proportional fees are fixed according to our risk using the provided fee estimator.
1607         ///
1608         /// Users need to notify the new ChannelManager when a new block is connected or
1609         /// disconnected using its `block_connected` and `block_disconnected` methods, starting
1610         /// from after `params.latest_hash`.
1611         pub fn new(fee_est: F, chain_monitor: M, tx_broadcaster: T, logger: L, keys_manager: K, config: UserConfig, params: ChainParameters) -> Self {
1612                 let mut secp_ctx = Secp256k1::new();
1613                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
1614                 let inbound_pmt_key_material = keys_manager.get_inbound_payment_key_material();
1615                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
1616                 ChannelManager {
1617                         default_configuration: config.clone(),
1618                         genesis_hash: genesis_block(params.network).header.block_hash(),
1619                         fee_estimator: LowerBoundedFeeEstimator::new(fee_est),
1620                         chain_monitor,
1621                         tx_broadcaster,
1622
1623                         best_block: RwLock::new(params.best_block),
1624
1625                         channel_state: Mutex::new(ChannelHolder{
1626                                 by_id: HashMap::new(),
1627                                 short_to_chan_info: HashMap::new(),
1628                                 claimable_htlcs: HashMap::new(),
1629                                 pending_msg_events: Vec::new(),
1630                         }),
1631                         outbound_scid_aliases: Mutex::new(HashSet::new()),
1632                         pending_inbound_payments: Mutex::new(HashMap::new()),
1633                         pending_outbound_payments: Mutex::new(HashMap::new()),
1634                         forward_htlcs: Mutex::new(HashMap::new()),
1635                         id_to_peer: Mutex::new(HashMap::new()),
1636
1637                         our_network_key: keys_manager.get_node_secret(Recipient::Node).unwrap(),
1638                         our_network_pubkey: PublicKey::from_secret_key(&secp_ctx, &keys_manager.get_node_secret(Recipient::Node).unwrap()),
1639                         secp_ctx,
1640
1641                         inbound_payment_key: expanded_inbound_key,
1642                         fake_scid_rand_bytes: keys_manager.get_secure_random_bytes(),
1643
1644                         probing_cookie_secret: keys_manager.get_secure_random_bytes(),
1645
1646                         highest_seen_timestamp: AtomicUsize::new(0),
1647
1648                         per_peer_state: RwLock::new(HashMap::new()),
1649
1650                         pending_events: Mutex::new(Vec::new()),
1651                         pending_background_events: Mutex::new(Vec::new()),
1652                         total_consistency_lock: RwLock::new(()),
1653                         persistence_notifier: Notifier::new(),
1654
1655                         keys_manager,
1656
1657                         logger,
1658                 }
1659         }
1660
1661         /// Gets the current configuration applied to all new channels.
1662         pub fn get_current_default_configuration(&self) -> &UserConfig {
1663                 &self.default_configuration
1664         }
1665
1666         fn create_and_insert_outbound_scid_alias(&self) -> u64 {
1667                 let height = self.best_block.read().unwrap().height();
1668                 let mut outbound_scid_alias = 0;
1669                 let mut i = 0;
1670                 loop {
1671                         if cfg!(fuzzing) { // fuzzing chacha20 doesn't use the key at all so we always get the same alias
1672                                 outbound_scid_alias += 1;
1673                         } else {
1674                                 outbound_scid_alias = fake_scid::Namespace::OutboundAlias.get_fake_scid(height, &self.genesis_hash, &self.fake_scid_rand_bytes, &self.keys_manager);
1675                         }
1676                         if outbound_scid_alias != 0 && self.outbound_scid_aliases.lock().unwrap().insert(outbound_scid_alias) {
1677                                 break;
1678                         }
1679                         i += 1;
1680                         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"); }
1681                 }
1682                 outbound_scid_alias
1683         }
1684
1685         /// Creates a new outbound channel to the given remote node and with the given value.
1686         ///
1687         /// `user_channel_id` will be provided back as in
1688         /// [`Event::FundingGenerationReady::user_channel_id`] to allow tracking of which events
1689         /// correspond with which `create_channel` call. Note that the `user_channel_id` defaults to 0
1690         /// for inbound channels, so you may wish to avoid using 0 for `user_channel_id` here.
1691         /// `user_channel_id` has no meaning inside of LDK, it is simply copied to events and otherwise
1692         /// ignored.
1693         ///
1694         /// Raises [`APIError::APIMisuseError`] when `channel_value_satoshis` > 2**24 or `push_msat` is
1695         /// greater than `channel_value_satoshis * 1k` or `channel_value_satoshis < 1000`.
1696         ///
1697         /// Note that we do not check if you are currently connected to the given peer. If no
1698         /// connection is available, the outbound `open_channel` message may fail to send, resulting in
1699         /// the channel eventually being silently forgotten (dropped on reload).
1700         ///
1701         /// Returns the new Channel's temporary `channel_id`. This ID will appear as
1702         /// [`Event::FundingGenerationReady::temporary_channel_id`] and in
1703         /// [`ChannelDetails::channel_id`] until after
1704         /// [`ChannelManager::funding_transaction_generated`] is called, swapping the Channel's ID for
1705         /// one derived from the funding transaction's TXID. If the counterparty rejects the channel
1706         /// immediately, this temporary ID will appear in [`Event::ChannelClosed::channel_id`].
1707         ///
1708         /// [`Event::FundingGenerationReady::user_channel_id`]: events::Event::FundingGenerationReady::user_channel_id
1709         /// [`Event::FundingGenerationReady::temporary_channel_id`]: events::Event::FundingGenerationReady::temporary_channel_id
1710         /// [`Event::ChannelClosed::channel_id`]: events::Event::ChannelClosed::channel_id
1711         pub fn create_channel(&self, their_network_key: PublicKey, channel_value_satoshis: u64, push_msat: u64, user_channel_id: u64, override_config: Option<UserConfig>) -> Result<[u8; 32], APIError> {
1712                 if channel_value_satoshis < 1000 {
1713                         return Err(APIError::APIMisuseError { err: format!("Channel value must be at least 1000 satoshis. It was {}", channel_value_satoshis) });
1714                 }
1715
1716                 let channel = {
1717                         let per_peer_state = self.per_peer_state.read().unwrap();
1718                         match per_peer_state.get(&their_network_key) {
1719                                 Some(peer_state) => {
1720                                         let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
1721                                         let peer_state = peer_state.lock().unwrap();
1722                                         let their_features = &peer_state.latest_features;
1723                                         let config = if override_config.is_some() { override_config.as_ref().unwrap() } else { &self.default_configuration };
1724                                         match Channel::new_outbound(&self.fee_estimator, &self.keys_manager, their_network_key,
1725                                                 their_features, channel_value_satoshis, push_msat, user_channel_id, config,
1726                                                 self.best_block.read().unwrap().height(), outbound_scid_alias)
1727                                         {
1728                                                 Ok(res) => res,
1729                                                 Err(e) => {
1730                                                         self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
1731                                                         return Err(e);
1732                                                 },
1733                                         }
1734                                 },
1735                                 None => return Err(APIError::ChannelUnavailable { err: format!("Not connected to node: {}", their_network_key) }),
1736                         }
1737                 };
1738                 let res = channel.get_open_channel(self.genesis_hash.clone());
1739
1740                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
1741                 // We want to make sure the lock is actually acquired by PersistenceNotifierGuard.
1742                 debug_assert!(&self.total_consistency_lock.try_write().is_err());
1743
1744                 let temporary_channel_id = channel.channel_id();
1745                 let mut channel_state = self.channel_state.lock().unwrap();
1746                 match channel_state.by_id.entry(temporary_channel_id) {
1747                         hash_map::Entry::Occupied(_) => {
1748                                 if cfg!(fuzzing) {
1749                                         return Err(APIError::APIMisuseError { err: "Fuzzy bad RNG".to_owned() });
1750                                 } else {
1751                                         panic!("RNG is bad???");
1752                                 }
1753                         },
1754                         hash_map::Entry::Vacant(entry) => { entry.insert(channel); }
1755                 }
1756                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
1757                         node_id: their_network_key,
1758                         msg: res,
1759                 });
1760                 Ok(temporary_channel_id)
1761         }
1762
1763         fn list_channels_with_filter<Fn: FnMut(&(&[u8; 32], &Channel<Signer>)) -> bool>(&self, f: Fn) -> Vec<ChannelDetails> {
1764                 let mut res = Vec::new();
1765                 {
1766                         let channel_state = self.channel_state.lock().unwrap();
1767                         res.reserve(channel_state.by_id.len());
1768                         for (channel_id, channel) in channel_state.by_id.iter().filter(f) {
1769                                 let balance = channel.get_available_balances();
1770                                 let (to_remote_reserve_satoshis, to_self_reserve_satoshis) =
1771                                         channel.get_holder_counterparty_selected_channel_reserve_satoshis();
1772                                 res.push(ChannelDetails {
1773                                         channel_id: (*channel_id).clone(),
1774                                         counterparty: ChannelCounterparty {
1775                                                 node_id: channel.get_counterparty_node_id(),
1776                                                 features: InitFeatures::empty(),
1777                                                 unspendable_punishment_reserve: to_remote_reserve_satoshis,
1778                                                 forwarding_info: channel.counterparty_forwarding_info(),
1779                                                 // Ensures that we have actually received the `htlc_minimum_msat` value
1780                                                 // from the counterparty through the `OpenChannel` or `AcceptChannel`
1781                                                 // message (as they are always the first message from the counterparty).
1782                                                 // Else `Channel::get_counterparty_htlc_minimum_msat` could return the
1783                                                 // default `0` value set by `Channel::new_outbound`.
1784                                                 outbound_htlc_minimum_msat: if channel.have_received_message() {
1785                                                         Some(channel.get_counterparty_htlc_minimum_msat()) } else { None },
1786                                                 outbound_htlc_maximum_msat: channel.get_counterparty_htlc_maximum_msat(),
1787                                         },
1788                                         funding_txo: channel.get_funding_txo(),
1789                                         // Note that accept_channel (or open_channel) is always the first message, so
1790                                         // `have_received_message` indicates that type negotiation has completed.
1791                                         channel_type: if channel.have_received_message() { Some(channel.get_channel_type().clone()) } else { None },
1792                                         short_channel_id: channel.get_short_channel_id(),
1793                                         outbound_scid_alias: if channel.is_usable() { Some(channel.outbound_scid_alias()) } else { None },
1794                                         inbound_scid_alias: channel.latest_inbound_scid_alias(),
1795                                         channel_value_satoshis: channel.get_value_satoshis(),
1796                                         unspendable_punishment_reserve: to_self_reserve_satoshis,
1797                                         balance_msat: balance.balance_msat,
1798                                         inbound_capacity_msat: balance.inbound_capacity_msat,
1799                                         outbound_capacity_msat: balance.outbound_capacity_msat,
1800                                         next_outbound_htlc_limit_msat: balance.next_outbound_htlc_limit_msat,
1801                                         user_channel_id: channel.get_user_id(),
1802                                         confirmations_required: channel.minimum_depth(),
1803                                         force_close_spend_delay: channel.get_counterparty_selected_contest_delay(),
1804                                         is_outbound: channel.is_outbound(),
1805                                         is_channel_ready: channel.is_usable(),
1806                                         is_usable: channel.is_live(),
1807                                         is_public: channel.should_announce(),
1808                                         inbound_htlc_minimum_msat: Some(channel.get_holder_htlc_minimum_msat()),
1809                                         inbound_htlc_maximum_msat: channel.get_holder_htlc_maximum_msat(),
1810                                         config: Some(channel.config()),
1811                                 });
1812                         }
1813                 }
1814                 let per_peer_state = self.per_peer_state.read().unwrap();
1815                 for chan in res.iter_mut() {
1816                         if let Some(peer_state) = per_peer_state.get(&chan.counterparty.node_id) {
1817                                 chan.counterparty.features = peer_state.lock().unwrap().latest_features.clone();
1818                         }
1819                 }
1820                 res
1821         }
1822
1823         /// Gets the list of open channels, in random order. See ChannelDetail field documentation for
1824         /// more information.
1825         pub fn list_channels(&self) -> Vec<ChannelDetails> {
1826                 self.list_channels_with_filter(|_| true)
1827         }
1828
1829         /// Gets the list of usable channels, in random order. Useful as an argument to [`find_route`]
1830         /// to ensure non-announced channels are used.
1831         ///
1832         /// These are guaranteed to have their [`ChannelDetails::is_usable`] value set to true, see the
1833         /// documentation for [`ChannelDetails::is_usable`] for more info on exactly what the criteria
1834         /// are.
1835         ///
1836         /// [`find_route`]: crate::routing::router::find_route
1837         pub fn list_usable_channels(&self) -> Vec<ChannelDetails> {
1838                 // Note we use is_live here instead of usable which leads to somewhat confused
1839                 // internal/external nomenclature, but that's ok cause that's probably what the user
1840                 // really wanted anyway.
1841                 self.list_channels_with_filter(|&(_, ref channel)| channel.is_live())
1842         }
1843
1844         /// Helper function that issues the channel close events
1845         fn issue_channel_close_events(&self, channel: &Channel<Signer>, closure_reason: ClosureReason) {
1846                 let mut pending_events_lock = self.pending_events.lock().unwrap();
1847                 match channel.unbroadcasted_funding() {
1848                         Some(transaction) => {
1849                                 pending_events_lock.push(events::Event::DiscardFunding { channel_id: channel.channel_id(), transaction })
1850                         },
1851                         None => {},
1852                 }
1853                 pending_events_lock.push(events::Event::ChannelClosed {
1854                         channel_id: channel.channel_id(),
1855                         user_channel_id: channel.get_user_id(),
1856                         reason: closure_reason
1857                 });
1858         }
1859
1860         fn close_channel_internal(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: Option<u32>) -> Result<(), APIError> {
1861                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
1862
1863                 let mut failed_htlcs: Vec<(HTLCSource, PaymentHash)>;
1864                 let result: Result<(), _> = loop {
1865                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1866                         let channel_state = &mut *channel_state_lock;
1867                         match channel_state.by_id.entry(channel_id.clone()) {
1868                                 hash_map::Entry::Occupied(mut chan_entry) => {
1869                                         if *counterparty_node_id != chan_entry.get().get_counterparty_node_id(){
1870                                                 return Err(APIError::APIMisuseError { err: "The passed counterparty_node_id doesn't match the channel's counterparty node_id".to_owned() });
1871                                         }
1872                                         let per_peer_state = self.per_peer_state.read().unwrap();
1873                                         let (shutdown_msg, monitor_update, htlcs) = match per_peer_state.get(&counterparty_node_id) {
1874                                                 Some(peer_state) => {
1875                                                         let peer_state = peer_state.lock().unwrap();
1876                                                         let their_features = &peer_state.latest_features;
1877                                                         chan_entry.get_mut().get_shutdown(&self.keys_manager, their_features, target_feerate_sats_per_1000_weight)?
1878                                                 },
1879                                                 None => return Err(APIError::ChannelUnavailable { err: format!("Not connected to node: {}", counterparty_node_id) }),
1880                                         };
1881                                         failed_htlcs = htlcs;
1882
1883                                         // Update the monitor with the shutdown script if necessary.
1884                                         if let Some(monitor_update) = monitor_update {
1885                                                 let update_res = self.chain_monitor.update_channel(chan_entry.get().get_funding_txo().unwrap(), monitor_update);
1886                                                 let (result, is_permanent) =
1887                                                         handle_monitor_update_res!(self, update_res, channel_state.short_to_chan_info, chan_entry.get_mut(), RAACommitmentOrder::CommitmentFirst, chan_entry.key(), NO_UPDATE);
1888                                                 if is_permanent {
1889                                                         remove_channel!(self, channel_state, chan_entry);
1890                                                         break result;
1891                                                 }
1892                                         }
1893
1894                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
1895                                                 node_id: *counterparty_node_id,
1896                                                 msg: shutdown_msg
1897                                         });
1898
1899                                         if chan_entry.get().is_shutdown() {
1900                                                 let channel = remove_channel!(self, channel_state, chan_entry);
1901                                                 if let Ok(channel_update) = self.get_channel_update_for_broadcast(&channel) {
1902                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
1903                                                                 msg: channel_update
1904                                                         });
1905                                                 }
1906                                                 self.issue_channel_close_events(&channel, ClosureReason::HolderForceClosed);
1907                                         }
1908                                         break Ok(());
1909                                 },
1910                                 hash_map::Entry::Vacant(_) => return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()})
1911                         }
1912                 };
1913
1914                 for htlc_source in failed_htlcs.drain(..) {
1915                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: *channel_id };
1916                         self.fail_htlc_backwards_internal(htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
1917                 }
1918
1919                 let _ = handle_error!(self, result, *counterparty_node_id);
1920                 Ok(())
1921         }
1922
1923         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1924         /// will be accepted on the given channel, and after additional timeout/the closing of all
1925         /// pending HTLCs, the channel will be closed on chain.
1926         ///
1927         ///  * If we are the channel initiator, we will pay between our [`Background`] and
1928         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1929         ///    estimate.
1930         ///  * If our counterparty is the channel initiator, we will require a channel closing
1931         ///    transaction feerate of at least our [`Background`] feerate or the feerate which
1932         ///    would appear on a force-closure transaction, whichever is lower. We will allow our
1933         ///    counterparty to pay as much fee as they'd like, however.
1934         ///
1935         /// May generate a SendShutdown message event on success, which should be relayed.
1936         ///
1937         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1938         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1939         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1940         pub fn close_channel(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey) -> Result<(), APIError> {
1941                 self.close_channel_internal(channel_id, counterparty_node_id, None)
1942         }
1943
1944         /// Begins the process of closing a channel. After this call (plus some timeout), no new HTLCs
1945         /// will be accepted on the given channel, and after additional timeout/the closing of all
1946         /// pending HTLCs, the channel will be closed on chain.
1947         ///
1948         /// `target_feerate_sat_per_1000_weight` has different meanings depending on if we initiated
1949         /// the channel being closed or not:
1950         ///  * If we are the channel initiator, we will pay at least this feerate on the closing
1951         ///    transaction. The upper-bound is set by
1952         ///    [`ChannelConfig::force_close_avoidance_max_fee_satoshis`] plus our [`Normal`] fee
1953         ///    estimate (or `target_feerate_sat_per_1000_weight`, if it is greater).
1954         ///  * If our counterparty is the channel initiator, we will refuse to accept a channel closure
1955         ///    transaction feerate below `target_feerate_sat_per_1000_weight` (or the feerate which
1956         ///    will appear on a force-closure transaction, whichever is lower).
1957         ///
1958         /// May generate a SendShutdown message event on success, which should be relayed.
1959         ///
1960         /// [`ChannelConfig::force_close_avoidance_max_fee_satoshis`]: crate::util::config::ChannelConfig::force_close_avoidance_max_fee_satoshis
1961         /// [`Background`]: crate::chain::chaininterface::ConfirmationTarget::Background
1962         /// [`Normal`]: crate::chain::chaininterface::ConfirmationTarget::Normal
1963         pub fn close_channel_with_target_feerate(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, target_feerate_sats_per_1000_weight: u32) -> Result<(), APIError> {
1964                 self.close_channel_internal(channel_id, counterparty_node_id, Some(target_feerate_sats_per_1000_weight))
1965         }
1966
1967         #[inline]
1968         fn finish_force_close_channel(&self, shutdown_res: ShutdownResult) {
1969                 let (monitor_update_option, mut failed_htlcs) = shutdown_res;
1970                 log_debug!(self.logger, "Finishing force-closure of channel with {} HTLCs to fail", failed_htlcs.len());
1971                 for htlc_source in failed_htlcs.drain(..) {
1972                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
1973                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
1974                         self.fail_htlc_backwards_internal(source, &payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
1975                 }
1976                 if let Some((funding_txo, monitor_update)) = monitor_update_option {
1977                         // There isn't anything we can do if we get an update failure - we're already
1978                         // force-closing. The monitor update on the required in-memory copy should broadcast
1979                         // the latest local state, which is the best we can do anyway. Thus, it is safe to
1980                         // ignore the result here.
1981                         let _ = self.chain_monitor.update_channel(funding_txo, monitor_update);
1982                 }
1983         }
1984
1985         /// `peer_msg` should be set when we receive a message from a peer, but not set when the
1986         /// user closes, which will be re-exposed as the `ChannelClosed` reason.
1987         fn force_close_channel_with_peer(&self, channel_id: &[u8; 32], peer_node_id: &PublicKey, peer_msg: Option<&String>, broadcast: bool)
1988         -> Result<PublicKey, APIError> {
1989                 let mut chan = {
1990                         let mut channel_state_lock = self.channel_state.lock().unwrap();
1991                         let channel_state = &mut *channel_state_lock;
1992                         if let hash_map::Entry::Occupied(chan) = channel_state.by_id.entry(channel_id.clone()) {
1993                                 if chan.get().get_counterparty_node_id() != *peer_node_id {
1994                                         return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
1995                                 }
1996                                 if let Some(peer_msg) = peer_msg {
1997                                         self.issue_channel_close_events(chan.get(),ClosureReason::CounterpartyForceClosed { peer_msg: peer_msg.to_string() });
1998                                 } else {
1999                                         self.issue_channel_close_events(chan.get(),ClosureReason::HolderForceClosed);
2000                                 }
2001                                 remove_channel!(self, channel_state, chan)
2002                         } else {
2003                                 return Err(APIError::ChannelUnavailable{err: "No such channel".to_owned()});
2004                         }
2005                 };
2006                 log_error!(self.logger, "Force-closing channel {}", log_bytes!(channel_id[..]));
2007                 self.finish_force_close_channel(chan.force_shutdown(broadcast));
2008                 if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
2009                         let mut channel_state = self.channel_state.lock().unwrap();
2010                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
2011                                 msg: update
2012                         });
2013                 }
2014
2015                 Ok(chan.get_counterparty_node_id())
2016         }
2017
2018         fn force_close_sending_error(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey, broadcast: bool) -> Result<(), APIError> {
2019                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2020                 match self.force_close_channel_with_peer(channel_id, counterparty_node_id, None, broadcast) {
2021                         Ok(counterparty_node_id) => {
2022                                 self.channel_state.lock().unwrap().pending_msg_events.push(
2023                                         events::MessageSendEvent::HandleError {
2024                                                 node_id: counterparty_node_id,
2025                                                 action: msgs::ErrorAction::SendErrorMessage {
2026                                                         msg: msgs::ErrorMessage { channel_id: *channel_id, data: "Channel force-closed".to_owned() }
2027                                                 },
2028                                         }
2029                                 );
2030                                 Ok(())
2031                         },
2032                         Err(e) => Err(e)
2033                 }
2034         }
2035
2036         /// Force closes a channel, immediately broadcasting the latest local transaction(s) and
2037         /// rejecting new HTLCs on the given channel. Fails if `channel_id` is unknown to
2038         /// the manager, or if the `counterparty_node_id` isn't the counterparty of the corresponding
2039         /// channel.
2040         pub fn force_close_broadcasting_latest_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2041         -> Result<(), APIError> {
2042                 self.force_close_sending_error(channel_id, counterparty_node_id, true)
2043         }
2044
2045         /// Force closes a channel, rejecting new HTLCs on the given channel but skips broadcasting
2046         /// the latest local transaction(s). Fails if `channel_id` is unknown to the manager, or if the
2047         /// `counterparty_node_id` isn't the counterparty of the corresponding channel.
2048         ///
2049         /// You can always get the latest local transaction(s) to broadcast from
2050         /// [`ChannelMonitor::get_latest_holder_commitment_txn`].
2051         pub fn force_close_without_broadcasting_txn(&self, channel_id: &[u8; 32], counterparty_node_id: &PublicKey)
2052         -> Result<(), APIError> {
2053                 self.force_close_sending_error(channel_id, counterparty_node_id, false)
2054         }
2055
2056         /// Force close all channels, immediately broadcasting the latest local commitment transaction
2057         /// for each to the chain and rejecting new HTLCs on each.
2058         pub fn force_close_all_channels_broadcasting_latest_txn(&self) {
2059                 for chan in self.list_channels() {
2060                         let _ = self.force_close_broadcasting_latest_txn(&chan.channel_id, &chan.counterparty.node_id);
2061                 }
2062         }
2063
2064         /// Force close all channels rejecting new HTLCs on each but without broadcasting the latest
2065         /// local transaction(s).
2066         pub fn force_close_all_channels_without_broadcasting_txn(&self) {
2067                 for chan in self.list_channels() {
2068                         let _ = self.force_close_without_broadcasting_txn(&chan.channel_id, &chan.counterparty.node_id);
2069                 }
2070         }
2071
2072         fn construct_recv_pending_htlc_info(&self, hop_data: msgs::OnionHopData, shared_secret: [u8; 32],
2073                 payment_hash: PaymentHash, amt_msat: u64, cltv_expiry: u32, phantom_shared_secret: Option<[u8; 32]>) -> Result<PendingHTLCInfo, ReceiveError>
2074         {
2075                 // final_incorrect_cltv_expiry
2076                 if hop_data.outgoing_cltv_value != cltv_expiry {
2077                         return Err(ReceiveError {
2078                                 msg: "Upstream node set CLTV to the wrong value",
2079                                 err_code: 18,
2080                                 err_data: byte_utils::be32_to_array(cltv_expiry).to_vec()
2081                         })
2082                 }
2083                 // final_expiry_too_soon
2084                 // We have to have some headroom to broadcast on chain if we have the preimage, so make sure
2085                 // we have at least HTLC_FAIL_BACK_BUFFER blocks to go.
2086                 // Also, ensure that, in the case of an unknown preimage for the received payment hash, our
2087                 // payment logic has enough time to fail the HTLC backward before our onchain logic triggers a
2088                 // channel closure (see HTLC_FAIL_BACK_BUFFER rationale).
2089                 if (hop_data.outgoing_cltv_value as u64) <= self.best_block.read().unwrap().height() as u64 + HTLC_FAIL_BACK_BUFFER as u64 + 1  {
2090                         return Err(ReceiveError {
2091                                 err_code: 17,
2092                                 err_data: Vec::new(),
2093                                 msg: "The final CLTV expiry is too soon to handle",
2094                         });
2095                 }
2096                 if hop_data.amt_to_forward > amt_msat {
2097                         return Err(ReceiveError {
2098                                 err_code: 19,
2099                                 err_data: byte_utils::be64_to_array(amt_msat).to_vec(),
2100                                 msg: "Upstream node sent less than we were supposed to receive in payment",
2101                         });
2102                 }
2103
2104                 let routing = match hop_data.format {
2105                         msgs::OnionHopDataFormat::Legacy { .. } => {
2106                                 return Err(ReceiveError {
2107                                         err_code: 0x4000|0x2000|3,
2108                                         err_data: Vec::new(),
2109                                         msg: "We require payment_secrets",
2110                                 });
2111                         },
2112                         msgs::OnionHopDataFormat::NonFinalNode { .. } => {
2113                                 return Err(ReceiveError {
2114                                         err_code: 0x4000|22,
2115                                         err_data: Vec::new(),
2116                                         msg: "Got non final data with an HMAC of 0",
2117                                 });
2118                         },
2119                         msgs::OnionHopDataFormat::FinalNode { payment_data, keysend_preimage } => {
2120                                 if payment_data.is_some() && keysend_preimage.is_some() {
2121                                         return Err(ReceiveError {
2122                                                 err_code: 0x4000|22,
2123                                                 err_data: Vec::new(),
2124                                                 msg: "We don't support MPP keysend payments",
2125                                         });
2126                                 } else if let Some(data) = payment_data {
2127                                         PendingHTLCRouting::Receive {
2128                                                 payment_data: data,
2129                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2130                                                 phantom_shared_secret,
2131                                         }
2132                                 } else if let Some(payment_preimage) = keysend_preimage {
2133                                         // We need to check that the sender knows the keysend preimage before processing this
2134                                         // payment further. Otherwise, an intermediary routing hop forwarding non-keysend-HTLC X
2135                                         // could discover the final destination of X, by probing the adjacent nodes on the route
2136                                         // with a keysend payment of identical payment hash to X and observing the processing
2137                                         // time discrepancies due to a hash collision with X.
2138                                         let hashed_preimage = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
2139                                         if hashed_preimage != payment_hash {
2140                                                 return Err(ReceiveError {
2141                                                         err_code: 0x4000|22,
2142                                                         err_data: Vec::new(),
2143                                                         msg: "Payment preimage didn't match payment hash",
2144                                                 });
2145                                         }
2146
2147                                         PendingHTLCRouting::ReceiveKeysend {
2148                                                 payment_preimage,
2149                                                 incoming_cltv_expiry: hop_data.outgoing_cltv_value,
2150                                         }
2151                                 } else {
2152                                         return Err(ReceiveError {
2153                                                 err_code: 0x4000|0x2000|3,
2154                                                 err_data: Vec::new(),
2155                                                 msg: "We require payment_secrets",
2156                                         });
2157                                 }
2158                         },
2159                 };
2160                 Ok(PendingHTLCInfo {
2161                         routing,
2162                         payment_hash,
2163                         incoming_shared_secret: shared_secret,
2164                         amt_to_forward: amt_msat,
2165                         outgoing_cltv_value: hop_data.outgoing_cltv_value,
2166                 })
2167         }
2168
2169         fn decode_update_add_htlc_onion(&self, msg: &msgs::UpdateAddHTLC) -> PendingHTLCStatus {
2170                 macro_rules! return_malformed_err {
2171                         ($msg: expr, $err_code: expr) => {
2172                                 {
2173                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2174                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
2175                                                 channel_id: msg.channel_id,
2176                                                 htlc_id: msg.htlc_id,
2177                                                 sha256_of_onion: Sha256::hash(&msg.onion_routing_packet.hop_data).into_inner(),
2178                                                 failure_code: $err_code,
2179                                         }));
2180                                 }
2181                         }
2182                 }
2183
2184                 if let Err(_) = msg.onion_routing_packet.public_key {
2185                         return_malformed_err!("invalid ephemeral pubkey", 0x8000 | 0x4000 | 6);
2186                 }
2187
2188                 let shared_secret = SharedSecret::new(&msg.onion_routing_packet.public_key.unwrap(), &self.our_network_key).secret_bytes();
2189
2190                 if msg.onion_routing_packet.version != 0 {
2191                         //TODO: Spec doesn't indicate if we should only hash hop_data here (and in other
2192                         //sha256_of_onion error data packets), or the entire onion_routing_packet. Either way,
2193                         //the hash doesn't really serve any purpose - in the case of hashing all data, the
2194                         //receiving node would have to brute force to figure out which version was put in the
2195                         //packet by the node that send us the message, in the case of hashing the hop_data, the
2196                         //node knows the HMAC matched, so they already know what is there...
2197                         return_malformed_err!("Unknown onion packet version", 0x8000 | 0x4000 | 4);
2198                 }
2199                 macro_rules! return_err {
2200                         ($msg: expr, $err_code: expr, $data: expr) => {
2201                                 {
2202                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
2203                                         return PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
2204                                                 channel_id: msg.channel_id,
2205                                                 htlc_id: msg.htlc_id,
2206                                                 reason: onion_utils::build_first_hop_failure_packet(&shared_secret, $err_code, $data),
2207                                         }));
2208                                 }
2209                         }
2210                 }
2211
2212                 let next_hop = match onion_utils::decode_next_payment_hop(shared_secret, &msg.onion_routing_packet.hop_data[..], msg.onion_routing_packet.hmac, msg.payment_hash) {
2213                         Ok(res) => res,
2214                         Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
2215                                 return_malformed_err!(err_msg, err_code);
2216                         },
2217                         Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
2218                                 return_err!(err_msg, err_code, &[0; 0]);
2219                         },
2220                 };
2221
2222                 let pending_forward_info = match next_hop {
2223                         onion_utils::Hop::Receive(next_hop_data) => {
2224                                 // OUR PAYMENT!
2225                                 match self.construct_recv_pending_htlc_info(next_hop_data, shared_secret, msg.payment_hash, msg.amount_msat, msg.cltv_expiry, None) {
2226                                         Ok(info) => {
2227                                                 // Note that we could obviously respond immediately with an update_fulfill_htlc
2228                                                 // message, however that would leak that we are the recipient of this payment, so
2229                                                 // instead we stay symmetric with the forwarding case, only responding (after a
2230                                                 // delay) once they've send us a commitment_signed!
2231                                                 PendingHTLCStatus::Forward(info)
2232                                         },
2233                                         Err(ReceiveError { err_code, err_data, msg }) => return_err!(msg, err_code, &err_data)
2234                                 }
2235                         },
2236                         onion_utils::Hop::Forward { next_hop_data, next_hop_hmac, new_packet_bytes } => {
2237                                 let new_pubkey = msg.onion_routing_packet.public_key.unwrap();
2238                                 let outgoing_packet = msgs::OnionPacket {
2239                                         version: 0,
2240                                         public_key: onion_utils::next_hop_packet_pubkey(&self.secp_ctx, new_pubkey, &shared_secret),
2241                                         hop_data: new_packet_bytes,
2242                                         hmac: next_hop_hmac.clone(),
2243                                 };
2244
2245                                 let short_channel_id = match next_hop_data.format {
2246                                         msgs::OnionHopDataFormat::Legacy { short_channel_id } => short_channel_id,
2247                                         msgs::OnionHopDataFormat::NonFinalNode { short_channel_id } => short_channel_id,
2248                                         msgs::OnionHopDataFormat::FinalNode { .. } => {
2249                                                 return_err!("Final Node OnionHopData provided for us as an intermediary node", 0x4000 | 22, &[0;0]);
2250                                         },
2251                                 };
2252
2253                                 PendingHTLCStatus::Forward(PendingHTLCInfo {
2254                                         routing: PendingHTLCRouting::Forward {
2255                                                 onion_packet: outgoing_packet,
2256                                                 short_channel_id,
2257                                         },
2258                                         payment_hash: msg.payment_hash.clone(),
2259                                         incoming_shared_secret: shared_secret,
2260                                         amt_to_forward: next_hop_data.amt_to_forward,
2261                                         outgoing_cltv_value: next_hop_data.outgoing_cltv_value,
2262                                 })
2263                         }
2264                 };
2265
2266                 if let &PendingHTLCStatus::Forward(PendingHTLCInfo { ref routing, ref amt_to_forward, ref outgoing_cltv_value, .. }) = &pending_forward_info {
2267                         // If short_channel_id is 0 here, we'll reject the HTLC as there cannot be a channel
2268                         // with a short_channel_id of 0. This is important as various things later assume
2269                         // short_channel_id is non-0 in any ::Forward.
2270                         if let &PendingHTLCRouting::Forward { ref short_channel_id, .. } = routing {
2271                                 if let Some((err, code, chan_update)) = loop {
2272                                         let mut channel_state = self.channel_state.lock().unwrap();
2273                                         let id_option = channel_state.short_to_chan_info.get(&short_channel_id).cloned();
2274                                         let forwarding_id_opt = match id_option {
2275                                                 None => { // unknown_next_peer
2276                                                         // Note that this is likely a timing oracle for detecting whether an scid is a
2277                                                         // phantom.
2278                                                         if fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, *short_channel_id) {
2279                                                                 None
2280                                                         } else {
2281                                                                 break Some(("Don't have available channel for forwarding as requested.", 0x4000 | 10, None));
2282                                                         }
2283                                                 },
2284                                                 Some((_cp_id, chan_id)) => Some(chan_id.clone()),
2285                                         };
2286                                         let chan_update_opt = if let Some(forwarding_id) = forwarding_id_opt {
2287                                                 let chan = channel_state.by_id.get_mut(&forwarding_id).unwrap();
2288                                                 if !chan.should_announce() && !self.default_configuration.accept_forwards_to_priv_channels {
2289                                                         // Note that the behavior here should be identical to the above block - we
2290                                                         // should NOT reveal the existence or non-existence of a private channel if
2291                                                         // we don't allow forwards outbound over them.
2292                                                         break Some(("Refusing to forward to a private channel based on our config.", 0x4000 | 10, None));
2293                                                 }
2294                                                 if chan.get_channel_type().supports_scid_privacy() && *short_channel_id != chan.outbound_scid_alias() {
2295                                                         // `option_scid_alias` (referred to in LDK as `scid_privacy`) means
2296                                                         // "refuse to forward unless the SCID alias was used", so we pretend
2297                                                         // we don't have the channel here.
2298                                                         break Some(("Refusing to forward over real channel SCID as our counterparty requested.", 0x4000 | 10, None));
2299                                                 }
2300                                                 let chan_update_opt = self.get_channel_update_for_onion(*short_channel_id, chan).ok();
2301
2302                                                 // Note that we could technically not return an error yet here and just hope
2303                                                 // that the connection is reestablished or monitor updated by the time we get
2304                                                 // around to doing the actual forward, but better to fail early if we can and
2305                                                 // hopefully an attacker trying to path-trace payments cannot make this occur
2306                                                 // on a small/per-node/per-channel scale.
2307                                                 if !chan.is_live() { // channel_disabled
2308                                                         break Some(("Forwarding channel is not in a ready state.", 0x1000 | 20, chan_update_opt));
2309                                                 }
2310                                                 if *amt_to_forward < chan.get_counterparty_htlc_minimum_msat() { // amount_below_minimum
2311                                                         break Some(("HTLC amount was below the htlc_minimum_msat", 0x1000 | 11, chan_update_opt));
2312                                                 }
2313                                                 if let Err((err, code)) = chan.htlc_satisfies_config(&msg, *amt_to_forward, *outgoing_cltv_value) {
2314                                                         break Some((err, code, chan_update_opt));
2315                                                 }
2316                                                 chan_update_opt
2317                                         } else {
2318                                                 if (msg.cltv_expiry as u64) < (*outgoing_cltv_value) as u64 + MIN_CLTV_EXPIRY_DELTA as u64 { // incorrect_cltv_expiry
2319                                                         break Some((
2320                                                                 "Forwarding node has tampered with the intended HTLC values or origin node has an obsolete cltv_expiry_delta",
2321                                                                 0x1000 | 13, None,
2322                                                         ));
2323                                                 }
2324                                                 None
2325                                         };
2326
2327                                         let cur_height = self.best_block.read().unwrap().height() + 1;
2328                                         // Theoretically, channel counterparty shouldn't send us a HTLC expiring now,
2329                                         // but we want to be robust wrt to counterparty packet sanitization (see
2330                                         // HTLC_FAIL_BACK_BUFFER rationale).
2331                                         if msg.cltv_expiry <= cur_height + HTLC_FAIL_BACK_BUFFER as u32 { // expiry_too_soon
2332                                                 break Some(("CLTV expiry is too close", 0x1000 | 14, chan_update_opt));
2333                                         }
2334                                         if msg.cltv_expiry > cur_height + CLTV_FAR_FAR_AWAY as u32 { // expiry_too_far
2335                                                 break Some(("CLTV expiry is too far in the future", 21, None));
2336                                         }
2337                                         // If the HTLC expires ~now, don't bother trying to forward it to our
2338                                         // counterparty. They should fail it anyway, but we don't want to bother with
2339                                         // the round-trips or risk them deciding they definitely want the HTLC and
2340                                         // force-closing to ensure they get it if we're offline.
2341                                         // We previously had a much more aggressive check here which tried to ensure
2342                                         // our counterparty receives an HTLC which has *our* risk threshold met on it,
2343                                         // but there is no need to do that, and since we're a bit conservative with our
2344                                         // risk threshold it just results in failing to forward payments.
2345                                         if (*outgoing_cltv_value) as u64 <= (cur_height + LATENCY_GRACE_PERIOD_BLOCKS) as u64 {
2346                                                 break Some(("Outgoing CLTV value is too soon", 0x1000 | 14, chan_update_opt));
2347                                         }
2348
2349                                         break None;
2350                                 }
2351                                 {
2352                                         let mut res = VecWriter(Vec::with_capacity(chan_update.serialized_length() + 2 + 8 + 2));
2353                                         if let Some(chan_update) = chan_update {
2354                                                 if code == 0x1000 | 11 || code == 0x1000 | 12 {
2355                                                         msg.amount_msat.write(&mut res).expect("Writes cannot fail");
2356                                                 }
2357                                                 else if code == 0x1000 | 13 {
2358                                                         msg.cltv_expiry.write(&mut res).expect("Writes cannot fail");
2359                                                 }
2360                                                 else if code == 0x1000 | 20 {
2361                                                         // TODO: underspecified, follow https://github.com/lightning/bolts/issues/791
2362                                                         0u16.write(&mut res).expect("Writes cannot fail");
2363                                                 }
2364                                                 (chan_update.serialized_length() as u16 + 2).write(&mut res).expect("Writes cannot fail");
2365                                                 msgs::ChannelUpdate::TYPE.write(&mut res).expect("Writes cannot fail");
2366                                                 chan_update.write(&mut res).expect("Writes cannot fail");
2367                                         }
2368                                         return_err!(err, code, &res.0[..]);
2369                                 }
2370                         }
2371                 }
2372
2373                 pending_forward_info
2374         }
2375
2376         /// Gets the current channel_update for the given channel. This first checks if the channel is
2377         /// public, and thus should be called whenever the result is going to be passed out in a
2378         /// [`MessageSendEvent::BroadcastChannelUpdate`] event.
2379         ///
2380         /// May be called with channel_state already locked!
2381         fn get_channel_update_for_broadcast(&self, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2382                 if !chan.should_announce() {
2383                         return Err(LightningError {
2384                                 err: "Cannot broadcast a channel_update for a private channel".to_owned(),
2385                                 action: msgs::ErrorAction::IgnoreError
2386                         });
2387                 }
2388                 if chan.get_short_channel_id().is_none() {
2389                         return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError});
2390                 }
2391                 log_trace!(self.logger, "Attempting to generate broadcast channel update for channel {}", log_bytes!(chan.channel_id()));
2392                 self.get_channel_update_for_unicast(chan)
2393         }
2394
2395         /// Gets the current channel_update for the given channel. This does not check if the channel
2396         /// is public (only returning an Err if the channel does not yet have an assigned short_id),
2397         /// and thus MUST NOT be called unless the recipient of the resulting message has already
2398         /// provided evidence that they know about the existence of the channel.
2399         /// May be called with channel_state already locked!
2400         fn get_channel_update_for_unicast(&self, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2401                 log_trace!(self.logger, "Attempting to generate channel update for channel {}", log_bytes!(chan.channel_id()));
2402                 let short_channel_id = match chan.get_short_channel_id().or(chan.latest_inbound_scid_alias()) {
2403                         None => return Err(LightningError{err: "Channel not yet established".to_owned(), action: msgs::ErrorAction::IgnoreError}),
2404                         Some(id) => id,
2405                 };
2406
2407                 self.get_channel_update_for_onion(short_channel_id, chan)
2408         }
2409         fn get_channel_update_for_onion(&self, short_channel_id: u64, chan: &Channel<Signer>) -> Result<msgs::ChannelUpdate, LightningError> {
2410                 log_trace!(self.logger, "Generating channel update for channel {}", log_bytes!(chan.channel_id()));
2411                 let were_node_one = PublicKey::from_secret_key(&self.secp_ctx, &self.our_network_key).serialize()[..] < chan.get_counterparty_node_id().serialize()[..];
2412
2413                 let unsigned = msgs::UnsignedChannelUpdate {
2414                         chain_hash: self.genesis_hash,
2415                         short_channel_id,
2416                         timestamp: chan.get_update_time_counter(),
2417                         flags: (!were_node_one) as u8 | ((!chan.is_live() as u8) << 1),
2418                         cltv_expiry_delta: chan.get_cltv_expiry_delta(),
2419                         htlc_minimum_msat: chan.get_counterparty_htlc_minimum_msat(),
2420                         htlc_maximum_msat: chan.get_announced_htlc_max_msat(),
2421                         fee_base_msat: chan.get_outbound_forwarding_fee_base_msat(),
2422                         fee_proportional_millionths: chan.get_fee_proportional_millionths(),
2423                         excess_data: Vec::new(),
2424                 };
2425
2426                 let msg_hash = Sha256dHash::hash(&unsigned.encode()[..]);
2427                 let sig = self.secp_ctx.sign_ecdsa(&hash_to_message!(&msg_hash[..]), &self.our_network_key);
2428
2429                 Ok(msgs::ChannelUpdate {
2430                         signature: sig,
2431                         contents: unsigned
2432                 })
2433         }
2434
2435         // Only public for testing, this should otherwise never be called direcly
2436         pub(crate) fn send_payment_along_path(&self, path: &Vec<RouteHop>, payment_params: &Option<PaymentParameters>, payment_hash: &PaymentHash, payment_secret: &Option<PaymentSecret>, total_value: u64, cur_height: u32, payment_id: PaymentId, keysend_preimage: &Option<PaymentPreimage>, session_priv_bytes: [u8; 32]) -> Result<(), APIError> {
2437                 log_trace!(self.logger, "Attempting to send payment for path with next hop {}", path.first().unwrap().short_channel_id);
2438                 let prng_seed = self.keys_manager.get_secure_random_bytes();
2439                 let session_priv = SecretKey::from_slice(&session_priv_bytes[..]).expect("RNG is busted");
2440
2441                 let onion_keys = onion_utils::construct_onion_keys(&self.secp_ctx, &path, &session_priv)
2442                         .map_err(|_| APIError::RouteError{err: "Pubkey along hop was maliciously selected"})?;
2443                 let (onion_payloads, htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(path, total_value, payment_secret, cur_height, keysend_preimage)?;
2444                 if onion_utils::route_size_insane(&onion_payloads) {
2445                         return Err(APIError::RouteError{err: "Route size too large considering onion data"});
2446                 }
2447                 let onion_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, prng_seed, payment_hash);
2448
2449                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2450
2451                 let err: Result<(), _> = loop {
2452                         let mut channel_lock = self.channel_state.lock().unwrap();
2453
2454                         let id = match channel_lock.short_to_chan_info.get(&path.first().unwrap().short_channel_id) {
2455                                 None => return Err(APIError::ChannelUnavailable{err: "No channel available with first hop!".to_owned()}),
2456                                 Some((_cp_id, chan_id)) => chan_id.clone(),
2457                         };
2458
2459                         let channel_state = &mut *channel_lock;
2460                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(id) {
2461                                 match {
2462                                         if chan.get().get_counterparty_node_id() != path.first().unwrap().pubkey {
2463                                                 return Err(APIError::RouteError{err: "Node ID mismatch on first hop!"});
2464                                         }
2465                                         if !chan.get().is_live() {
2466                                                 return Err(APIError::ChannelUnavailable{err: "Peer for first hop currently disconnected/pending monitor update!".to_owned()});
2467                                         }
2468                                         break_chan_entry!(self, chan.get_mut().send_htlc_and_commit(
2469                                                 htlc_msat, payment_hash.clone(), htlc_cltv, HTLCSource::OutboundRoute {
2470                                                         path: path.clone(),
2471                                                         session_priv: session_priv.clone(),
2472                                                         first_hop_htlc_msat: htlc_msat,
2473                                                         payment_id,
2474                                                         payment_secret: payment_secret.clone(),
2475                                                         payment_params: payment_params.clone(),
2476                                                 }, onion_packet, &self.logger),
2477                                         channel_state, chan)
2478                                 } {
2479                                         Some((update_add, commitment_signed, monitor_update)) => {
2480                                                 let update_err = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update);
2481                                                 let chan_id = chan.get().channel_id();
2482                                                 match (update_err,
2483                                                         handle_monitor_update_res!(self, update_err, channel_state, chan,
2484                                                                 RAACommitmentOrder::CommitmentFirst, false, true))
2485                                                 {
2486                                                         (ChannelMonitorUpdateStatus::PermanentFailure, Err(e)) => break Err(e),
2487                                                         (ChannelMonitorUpdateStatus::Completed, Ok(())) => {},
2488                                                         (ChannelMonitorUpdateStatus::InProgress, Err(_)) => {
2489                                                                 // Note that MonitorUpdateInProgress here indicates (per function
2490                                                                 // docs) that we will resend the commitment update once monitor
2491                                                                 // updating completes. Therefore, we must return an error
2492                                                                 // indicating that it is unsafe to retry the payment wholesale,
2493                                                                 // which we do in the send_payment check for
2494                                                                 // MonitorUpdateInProgress, below.
2495                                                                 return Err(APIError::MonitorUpdateInProgress);
2496                                                         },
2497                                                         _ => unreachable!(),
2498                                                 }
2499
2500                                                 log_debug!(self.logger, "Sending payment along path resulted in a commitment_signed for channel {}", log_bytes!(chan_id));
2501                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
2502                                                         node_id: path.first().unwrap().pubkey,
2503                                                         updates: msgs::CommitmentUpdate {
2504                                                                 update_add_htlcs: vec![update_add],
2505                                                                 update_fulfill_htlcs: Vec::new(),
2506                                                                 update_fail_htlcs: Vec::new(),
2507                                                                 update_fail_malformed_htlcs: Vec::new(),
2508                                                                 update_fee: None,
2509                                                                 commitment_signed,
2510                                                         },
2511                                                 });
2512                                         },
2513                                         None => { },
2514                                 }
2515                         } else { unreachable!(); }
2516                         return Ok(());
2517                 };
2518
2519                 match handle_error!(self, err, path.first().unwrap().pubkey) {
2520                         Ok(_) => unreachable!(),
2521                         Err(e) => {
2522                                 Err(APIError::ChannelUnavailable { err: e.err })
2523                         },
2524                 }
2525         }
2526
2527         /// Sends a payment along a given route.
2528         ///
2529         /// Value parameters are provided via the last hop in route, see documentation for RouteHop
2530         /// fields for more info.
2531         ///
2532         /// If a pending payment is currently in-flight with the same [`PaymentId`] provided, this
2533         /// method will error with an [`APIError::RouteError`]. Note, however, that once a payment
2534         /// is no longer pending (either via [`ChannelManager::abandon_payment`], or handling of an
2535         /// [`Event::PaymentSent`]) LDK will not stop you from sending a second payment with the same
2536         /// [`PaymentId`].
2537         ///
2538         /// Thus, in order to ensure duplicate payments are not sent, you should implement your own
2539         /// tracking of payments, including state to indicate once a payment has completed. Because you
2540         /// should also ensure that [`PaymentHash`]es are not re-used, for simplicity, you should
2541         /// consider using the [`PaymentHash`] as the key for tracking payments. In that case, the
2542         /// [`PaymentId`] should be a copy of the [`PaymentHash`] bytes.
2543         ///
2544         /// May generate SendHTLCs message(s) event on success, which should be relayed (e.g. via
2545         /// [`PeerManager::process_events`]).
2546         ///
2547         /// Each path may have a different return value, and PaymentSendValue may return a Vec with
2548         /// each entry matching the corresponding-index entry in the route paths, see
2549         /// PaymentSendFailure for more info.
2550         ///
2551         /// In general, a path may raise:
2552         ///  * [`APIError::RouteError`] when an invalid route or forwarding parameter (cltv_delta, fee,
2553         ///    node public key) is specified.
2554         ///  * [`APIError::ChannelUnavailable`] if the next-hop channel is not available for updates
2555         ///    (including due to previous monitor update failure or new permanent monitor update
2556         ///    failure).
2557         ///  * [`APIError::MonitorUpdateInProgress`] if a new monitor update failure prevented sending the
2558         ///    relevant updates.
2559         ///
2560         /// Note that depending on the type of the PaymentSendFailure the HTLC may have been
2561         /// irrevocably committed to on our end. In such a case, do NOT retry the payment with a
2562         /// different route unless you intend to pay twice!
2563         ///
2564         /// payment_secret is unrelated to payment_hash (or PaymentPreimage) and exists to authenticate
2565         /// the sender to the recipient and prevent payment-probing (deanonymization) attacks. For
2566         /// newer nodes, it will be provided to you in the invoice. If you do not have one, the Route
2567         /// must not contain multiple paths as multi-path payments require a recipient-provided
2568         /// payment_secret.
2569         ///
2570         /// If a payment_secret *is* provided, we assume that the invoice had the payment_secret feature
2571         /// bit set (either as required or as available). If multiple paths are present in the Route,
2572         /// we assume the invoice had the basic_mpp feature set.
2573         ///
2574         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2575         /// [`PeerManager::process_events`]: crate::ln::peer_handler::PeerManager::process_events
2576         pub fn send_payment(&self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2577                 let onion_session_privs = self.add_new_pending_payment(payment_hash, *payment_secret, payment_id, route)?;
2578                 self.send_payment_internal(route, payment_hash, payment_secret, None, payment_id, None, onion_session_privs)
2579         }
2580
2581         #[cfg(test)]
2582         pub(crate) fn test_add_new_pending_payment(&self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId, route: &Route) -> Result<Vec<[u8; 32]>, PaymentSendFailure> {
2583                 self.add_new_pending_payment(payment_hash, payment_secret, payment_id, route)
2584         }
2585
2586         fn add_new_pending_payment(&self, payment_hash: PaymentHash, payment_secret: Option<PaymentSecret>, payment_id: PaymentId, route: &Route) -> Result<Vec<[u8; 32]>, PaymentSendFailure> {
2587                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
2588                 for _ in 0..route.paths.len() {
2589                         onion_session_privs.push(self.keys_manager.get_secure_random_bytes());
2590                 }
2591
2592                 let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
2593                 match pending_outbounds.entry(payment_id) {
2594                         hash_map::Entry::Occupied(_) => Err(PaymentSendFailure::ParameterError(APIError::RouteError {
2595                                 err: "Payment already in progress"
2596                         })),
2597                         hash_map::Entry::Vacant(entry) => {
2598                                 let payment = entry.insert(PendingOutboundPayment::Retryable {
2599                                         session_privs: HashSet::new(),
2600                                         pending_amt_msat: 0,
2601                                         pending_fee_msat: Some(0),
2602                                         payment_hash,
2603                                         payment_secret,
2604                                         starting_block_height: self.best_block.read().unwrap().height(),
2605                                         total_msat: route.get_total_amount(),
2606                                 });
2607
2608                                 for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
2609                                         assert!(payment.insert(*session_priv_bytes, path));
2610                                 }
2611
2612                                 Ok(onion_session_privs)
2613                         },
2614                 }
2615         }
2616
2617         fn send_payment_internal(&self, route: &Route, payment_hash: PaymentHash, payment_secret: &Option<PaymentSecret>, keysend_preimage: Option<PaymentPreimage>, payment_id: PaymentId, recv_value_msat: Option<u64>, onion_session_privs: Vec<[u8; 32]>) -> Result<(), PaymentSendFailure> {
2618                 if route.paths.len() < 1 {
2619                         return Err(PaymentSendFailure::ParameterError(APIError::RouteError{err: "There must be at least one path to send over"}));
2620                 }
2621                 if payment_secret.is_none() && route.paths.len() > 1 {
2622                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError{err: "Payment secret is required for multi-path payments".to_string()}));
2623                 }
2624                 let mut total_value = 0;
2625                 let our_node_id = self.get_our_node_id();
2626                 let mut path_errs = Vec::with_capacity(route.paths.len());
2627                 'path_check: for path in route.paths.iter() {
2628                         if path.len() < 1 || path.len() > 20 {
2629                                 path_errs.push(Err(APIError::RouteError{err: "Path didn't go anywhere/had bogus size"}));
2630                                 continue 'path_check;
2631                         }
2632                         for (idx, hop) in path.iter().enumerate() {
2633                                 if idx != path.len() - 1 && hop.pubkey == our_node_id {
2634                                         path_errs.push(Err(APIError::RouteError{err: "Path went through us but wasn't a simple rebalance loop to us"}));
2635                                         continue 'path_check;
2636                                 }
2637                         }
2638                         total_value += path.last().unwrap().fee_msat;
2639                         path_errs.push(Ok(()));
2640                 }
2641                 if path_errs.iter().any(|e| e.is_err()) {
2642                         return Err(PaymentSendFailure::PathParameterError(path_errs));
2643                 }
2644                 if let Some(amt_msat) = recv_value_msat {
2645                         debug_assert!(amt_msat >= total_value);
2646                         total_value = amt_msat;
2647                 }
2648
2649                 let cur_height = self.best_block.read().unwrap().height() + 1;
2650                 let mut results = Vec::new();
2651                 debug_assert_eq!(route.paths.len(), onion_session_privs.len());
2652                 for (path, session_priv) in route.paths.iter().zip(onion_session_privs.into_iter()) {
2653                         let mut path_res = self.send_payment_along_path(&path, &route.payment_params, &payment_hash, payment_secret, total_value, cur_height, payment_id, &keysend_preimage, session_priv);
2654                         match path_res {
2655                                 Ok(_) => {},
2656                                 Err(APIError::MonitorUpdateInProgress) => {
2657                                         // While a MonitorUpdateInProgress is an Err(_), the payment is still
2658                                         // considered "in flight" and we shouldn't remove it from the
2659                                         // PendingOutboundPayment set.
2660                                 },
2661                                 Err(_) => {
2662                                         let mut pending_outbounds = self.pending_outbound_payments.lock().unwrap();
2663                                         if let Some(payment) = pending_outbounds.get_mut(&payment_id) {
2664                                                 let removed = payment.remove(&session_priv, Some(path));
2665                                                 debug_assert!(removed, "This can't happen as the payment has an entry for this path added by callers");
2666                                         } else {
2667                                                 debug_assert!(false, "This can't happen as the payment was added by callers");
2668                                                 path_res = Err(APIError::APIMisuseError { err: "Internal error: payment disappeared during processing. Please report this bug!".to_owned() });
2669                                         }
2670                                 }
2671                         }
2672                         results.push(path_res);
2673                 }
2674                 let mut has_ok = false;
2675                 let mut has_err = false;
2676                 let mut pending_amt_unsent = 0;
2677                 let mut max_unsent_cltv_delta = 0;
2678                 for (res, path) in results.iter().zip(route.paths.iter()) {
2679                         if res.is_ok() { has_ok = true; }
2680                         if res.is_err() { has_err = true; }
2681                         if let &Err(APIError::MonitorUpdateInProgress) = res {
2682                                 // MonitorUpdateInProgress is inherently unsafe to retry, so we call it a
2683                                 // PartialFailure.
2684                                 has_err = true;
2685                                 has_ok = true;
2686                         } else if res.is_err() {
2687                                 pending_amt_unsent += path.last().unwrap().fee_msat;
2688                                 max_unsent_cltv_delta = cmp::max(max_unsent_cltv_delta, path.last().unwrap().cltv_expiry_delta);
2689                         }
2690                 }
2691                 if has_err && has_ok {
2692                         Err(PaymentSendFailure::PartialFailure {
2693                                 results,
2694                                 payment_id,
2695                                 failed_paths_retry: if pending_amt_unsent != 0 {
2696                                         if let Some(payment_params) = &route.payment_params {
2697                                                 Some(RouteParameters {
2698                                                         payment_params: payment_params.clone(),
2699                                                         final_value_msat: pending_amt_unsent,
2700                                                         final_cltv_expiry_delta: max_unsent_cltv_delta,
2701                                                 })
2702                                         } else { None }
2703                                 } else { None },
2704                         })
2705                 } else if has_err {
2706                         // If we failed to send any paths, we should remove the new PaymentId from the
2707                         // `pending_outbound_payments` map, as the user isn't expected to `abandon_payment`.
2708                         let removed = self.pending_outbound_payments.lock().unwrap().remove(&payment_id).is_some();
2709                         debug_assert!(removed, "We should always have a pending payment to remove here");
2710                         Err(PaymentSendFailure::AllFailedRetrySafe(results.drain(..).map(|r| r.unwrap_err()).collect()))
2711                 } else {
2712                         Ok(())
2713                 }
2714         }
2715
2716         /// Retries a payment along the given [`Route`].
2717         ///
2718         /// Errors returned are a superset of those returned from [`send_payment`], so see
2719         /// [`send_payment`] documentation for more details on errors. This method will also error if the
2720         /// retry amount puts the payment more than 10% over the payment's total amount, if the payment
2721         /// for the given `payment_id` cannot be found (likely due to timeout or success), or if
2722         /// further retries have been disabled with [`abandon_payment`].
2723         ///
2724         /// [`send_payment`]: [`ChannelManager::send_payment`]
2725         /// [`abandon_payment`]: [`ChannelManager::abandon_payment`]
2726         pub fn retry_payment(&self, route: &Route, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
2727                 const RETRY_OVERFLOW_PERCENTAGE: u64 = 10;
2728                 for path in route.paths.iter() {
2729                         if path.len() == 0 {
2730                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2731                                         err: "length-0 path in route".to_string()
2732                                 }))
2733                         }
2734                 }
2735
2736                 let mut onion_session_privs = Vec::with_capacity(route.paths.len());
2737                 for _ in 0..route.paths.len() {
2738                         onion_session_privs.push(self.keys_manager.get_secure_random_bytes());
2739                 }
2740
2741                 let (total_msat, payment_hash, payment_secret) = {
2742                         let mut outbounds = self.pending_outbound_payments.lock().unwrap();
2743                         match outbounds.get_mut(&payment_id) {
2744                                 Some(payment) => {
2745                                         let res = match payment {
2746                                                 PendingOutboundPayment::Retryable {
2747                                                         total_msat, payment_hash, payment_secret, pending_amt_msat, ..
2748                                                 } => {
2749                                                         let retry_amt_msat: u64 = route.paths.iter().map(|path| path.last().unwrap().fee_msat).sum();
2750                                                         if retry_amt_msat + *pending_amt_msat > *total_msat * (100 + RETRY_OVERFLOW_PERCENTAGE) / 100 {
2751                                                                 return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2752                                                                         err: format!("retry_amt_msat of {} will put pending_amt_msat (currently: {}) more than 10% over total_payment_amt_msat of {}", retry_amt_msat, pending_amt_msat, total_msat).to_string()
2753                                                                 }))
2754                                                         }
2755                                                         (*total_msat, *payment_hash, *payment_secret)
2756                                                 },
2757                                                 PendingOutboundPayment::Legacy { .. } => {
2758                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2759                                                                 err: "Unable to retry payments that were initially sent on LDK versions prior to 0.0.102".to_string()
2760                                                         }))
2761                                                 },
2762                                                 PendingOutboundPayment::Fulfilled { .. } => {
2763                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2764                                                                 err: "Payment already completed".to_owned()
2765                                                         }));
2766                                                 },
2767                                                 PendingOutboundPayment::Abandoned { .. } => {
2768                                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2769                                                                 err: "Payment already abandoned (with some HTLCs still pending)".to_owned()
2770                                                         }));
2771                                                 },
2772                                         };
2773                                         for (path, session_priv_bytes) in route.paths.iter().zip(onion_session_privs.iter()) {
2774                                                 assert!(payment.insert(*session_priv_bytes, path));
2775                                         }
2776                                         res
2777                                 },
2778                                 None =>
2779                                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2780                                                 err: format!("Payment with ID {} not found", log_bytes!(payment_id.0)),
2781                                         })),
2782                         }
2783                 };
2784                 self.send_payment_internal(route, payment_hash, &payment_secret, None, payment_id, Some(total_msat), onion_session_privs)
2785         }
2786
2787         /// Signals that no further retries for the given payment will occur.
2788         ///
2789         /// After this method returns, any future calls to [`retry_payment`] for the given `payment_id`
2790         /// will fail with [`PaymentSendFailure::ParameterError`]. If no such event has been generated,
2791         /// an [`Event::PaymentFailed`] event will be generated as soon as there are no remaining
2792         /// pending HTLCs for this payment.
2793         ///
2794         /// Note that calling this method does *not* prevent a payment from succeeding. You must still
2795         /// wait until you receive either a [`Event::PaymentFailed`] or [`Event::PaymentSent`] event to
2796         /// determine the ultimate status of a payment.
2797         ///
2798         /// [`retry_payment`]: Self::retry_payment
2799         /// [`Event::PaymentFailed`]: events::Event::PaymentFailed
2800         /// [`Event::PaymentSent`]: events::Event::PaymentSent
2801         pub fn abandon_payment(&self, payment_id: PaymentId) {
2802                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2803
2804                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
2805                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
2806                         if let Ok(()) = payment.get_mut().mark_abandoned() {
2807                                 if payment.get().remaining_parts() == 0 {
2808                                         self.pending_events.lock().unwrap().push(events::Event::PaymentFailed {
2809                                                 payment_id,
2810                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
2811                                         });
2812                                         payment.remove();
2813                                 }
2814                         }
2815                 }
2816         }
2817
2818         /// Send a spontaneous payment, which is a payment that does not require the recipient to have
2819         /// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
2820         /// the preimage, it must be a cryptographically secure random value that no intermediate node
2821         /// would be able to guess -- otherwise, an intermediate node may claim the payment and it will
2822         /// never reach the recipient.
2823         ///
2824         /// See [`send_payment`] documentation for more details on the return value of this function
2825         /// and idempotency guarantees provided by the [`PaymentId`] key.
2826         ///
2827         /// Similar to regular payments, you MUST NOT reuse a `payment_preimage` value. See
2828         /// [`send_payment`] for more information about the risks of duplicate preimage usage.
2829         ///
2830         /// Note that `route` must have exactly one path.
2831         ///
2832         /// [`send_payment`]: Self::send_payment
2833         pub fn send_spontaneous_payment(&self, route: &Route, payment_preimage: Option<PaymentPreimage>, payment_id: PaymentId) -> Result<PaymentHash, PaymentSendFailure> {
2834                 let preimage = match payment_preimage {
2835                         Some(p) => p,
2836                         None => PaymentPreimage(self.keys_manager.get_secure_random_bytes()),
2837                 };
2838                 let payment_hash = PaymentHash(Sha256::hash(&preimage.0).into_inner());
2839                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, &route)?;
2840
2841                 match self.send_payment_internal(route, payment_hash, &None, Some(preimage), payment_id, None, onion_session_privs) {
2842                         Ok(()) => Ok(payment_hash),
2843                         Err(e) => Err(e)
2844                 }
2845         }
2846
2847         /// Send a payment that is probing the given route for liquidity. We calculate the
2848         /// [`PaymentHash`] of probes based on a static secret and a random [`PaymentId`], which allows
2849         /// us to easily discern them from real payments.
2850         pub fn send_probe(&self, hops: Vec<RouteHop>) -> Result<(PaymentHash, PaymentId), PaymentSendFailure> {
2851                 let payment_id = PaymentId(self.keys_manager.get_secure_random_bytes());
2852
2853                 let payment_hash = self.probing_cookie_from_id(&payment_id);
2854
2855                 if hops.len() < 2 {
2856                         return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
2857                                 err: "No need probing a path with less than two hops".to_string()
2858                         }))
2859                 }
2860
2861                 let route = Route { paths: vec![hops], payment_params: None };
2862                 let onion_session_privs = self.add_new_pending_payment(payment_hash, None, payment_id, &route)?;
2863
2864                 match self.send_payment_internal(&route, payment_hash, &None, None, payment_id, None, onion_session_privs) {
2865                         Ok(()) => Ok((payment_hash, payment_id)),
2866                         Err(e) => Err(e)
2867                 }
2868         }
2869
2870         /// Returns whether a payment with the given [`PaymentHash`] and [`PaymentId`] is, in fact, a
2871         /// payment probe.
2872         pub(crate) fn payment_is_probe(&self, payment_hash: &PaymentHash, payment_id: &PaymentId) -> bool {
2873                 let target_payment_hash = self.probing_cookie_from_id(payment_id);
2874                 target_payment_hash == *payment_hash
2875         }
2876
2877         /// Returns the 'probing cookie' for the given [`PaymentId`].
2878         fn probing_cookie_from_id(&self, payment_id: &PaymentId) -> PaymentHash {
2879                 let mut preimage = [0u8; 64];
2880                 preimage[..32].copy_from_slice(&self.probing_cookie_secret);
2881                 preimage[32..].copy_from_slice(&payment_id.0);
2882                 PaymentHash(Sha256::hash(&preimage).into_inner())
2883         }
2884
2885         /// Handles the generation of a funding transaction, optionally (for tests) with a function
2886         /// which checks the correctness of the funding transaction given the associated channel.
2887         fn funding_transaction_generated_intern<FundingOutput: Fn(&Channel<Signer>, &Transaction) -> Result<OutPoint, APIError>>(
2888                 &self, temporary_channel_id: &[u8; 32], _counterparty_node_id: &PublicKey, funding_transaction: Transaction, find_funding_output: FundingOutput
2889         ) -> Result<(), APIError> {
2890                 let (chan, msg) = {
2891                         let (res, chan) = match self.channel_state.lock().unwrap().by_id.remove(temporary_channel_id) {
2892                                 Some(mut chan) => {
2893                                         let funding_txo = find_funding_output(&chan, &funding_transaction)?;
2894
2895                                         (chan.get_outbound_funding_created(funding_transaction, funding_txo, &self.logger)
2896                                                 .map_err(|e| if let ChannelError::Close(msg) = e {
2897                                                         MsgHandleErrInternal::from_finish_shutdown(msg, chan.channel_id(), chan.get_user_id(), chan.force_shutdown(true), None)
2898                                                 } else { unreachable!(); })
2899                                         , chan)
2900                                 },
2901                                 None => { return Err(APIError::ChannelUnavailable { err: "No such channel".to_owned() }) },
2902                         };
2903                         match handle_error!(self, res, chan.get_counterparty_node_id()) {
2904                                 Ok(funding_msg) => {
2905                                         (chan, funding_msg)
2906                                 },
2907                                 Err(_) => { return Err(APIError::ChannelUnavailable {
2908                                         err: "Error deriving keys or signing initial commitment transactions - either our RNG or our counterparty's RNG is broken or the Signer refused to sign".to_owned()
2909                                 }) },
2910                         }
2911                 };
2912
2913                 let mut channel_state = self.channel_state.lock().unwrap();
2914                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingCreated {
2915                         node_id: chan.get_counterparty_node_id(),
2916                         msg,
2917                 });
2918                 match channel_state.by_id.entry(chan.channel_id()) {
2919                         hash_map::Entry::Occupied(_) => {
2920                                 panic!("Generated duplicate funding txid?");
2921                         },
2922                         hash_map::Entry::Vacant(e) => {
2923                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
2924                                 if id_to_peer.insert(chan.channel_id(), chan.get_counterparty_node_id()).is_some() {
2925                                         panic!("id_to_peer map already contained funding txid, which shouldn't be possible");
2926                                 }
2927                                 e.insert(chan);
2928                         }
2929                 }
2930                 Ok(())
2931         }
2932
2933         #[cfg(test)]
2934         pub(crate) fn funding_transaction_generated_unchecked(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction, output_index: u16) -> Result<(), APIError> {
2935                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |_, tx| {
2936                         Ok(OutPoint { txid: tx.txid(), index: output_index })
2937                 })
2938         }
2939
2940         /// Call this upon creation of a funding transaction for the given channel.
2941         ///
2942         /// Returns an [`APIError::APIMisuseError`] if the funding_transaction spent non-SegWit outputs
2943         /// or if no output was found which matches the parameters in [`Event::FundingGenerationReady`].
2944         ///
2945         /// Returns [`APIError::APIMisuseError`] if the funding transaction is not final for propagation
2946         /// across the p2p network.
2947         ///
2948         /// Returns [`APIError::ChannelUnavailable`] if a funding transaction has already been provided
2949         /// for the channel or if the channel has been closed as indicated by [`Event::ChannelClosed`].
2950         ///
2951         /// May panic if the output found in the funding transaction is duplicative with some other
2952         /// channel (note that this should be trivially prevented by using unique funding transaction
2953         /// keys per-channel).
2954         ///
2955         /// Do NOT broadcast the funding transaction yourself. When we have safely received our
2956         /// counterparty's signature the funding transaction will automatically be broadcast via the
2957         /// [`BroadcasterInterface`] provided when this `ChannelManager` was constructed.
2958         ///
2959         /// Note that this includes RBF or similar transaction replacement strategies - lightning does
2960         /// not currently support replacing a funding transaction on an existing channel. Instead,
2961         /// create a new channel with a conflicting funding transaction.
2962         ///
2963         /// Note to keep the miner incentives aligned in moving the blockchain forward, we recommend
2964         /// the wallet software generating the funding transaction to apply anti-fee sniping as
2965         /// implemented by Bitcoin Core wallet. See <https://bitcoinops.org/en/topics/fee-sniping/>
2966         /// for more details.
2967         ///
2968         /// [`Event::FundingGenerationReady`]: crate::util::events::Event::FundingGenerationReady
2969         /// [`Event::ChannelClosed`]: crate::util::events::Event::ChannelClosed
2970         pub fn funding_transaction_generated(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, funding_transaction: Transaction) -> Result<(), APIError> {
2971                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
2972
2973                 for inp in funding_transaction.input.iter() {
2974                         if inp.witness.is_empty() {
2975                                 return Err(APIError::APIMisuseError {
2976                                         err: "Funding transaction must be fully signed and spend Segwit outputs".to_owned()
2977                                 });
2978                         }
2979                 }
2980                 {
2981                         let height = self.best_block.read().unwrap().height();
2982                         // Transactions are evaluated as final by network mempools at the next block. However, the modules
2983                         // constituting our Lightning node might not have perfect sync about their blockchain views. Thus, if
2984                         // the wallet module is in advance on the LDK view, allow one more block of headroom.
2985                         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 + 2 {
2986                                 return Err(APIError::APIMisuseError {
2987                                         err: "Funding transaction absolute timelock is non-final".to_owned()
2988                                 });
2989                         }
2990                 }
2991                 self.funding_transaction_generated_intern(temporary_channel_id, counterparty_node_id, funding_transaction, |chan, tx| {
2992                         let mut output_index = None;
2993                         let expected_spk = chan.get_funding_redeemscript().to_v0_p2wsh();
2994                         for (idx, outp) in tx.output.iter().enumerate() {
2995                                 if outp.script_pubkey == expected_spk && outp.value == chan.get_value_satoshis() {
2996                                         if output_index.is_some() {
2997                                                 return Err(APIError::APIMisuseError {
2998                                                         err: "Multiple outputs matched the expected script and value".to_owned()
2999                                                 });
3000                                         }
3001                                         if idx > u16::max_value() as usize {
3002                                                 return Err(APIError::APIMisuseError {
3003                                                         err: "Transaction had more than 2^16 outputs, which is not supported".to_owned()
3004                                                 });
3005                                         }
3006                                         output_index = Some(idx as u16);
3007                                 }
3008                         }
3009                         if output_index.is_none() {
3010                                 return Err(APIError::APIMisuseError {
3011                                         err: "No output matched the script_pubkey and value in the FundingGenerationReady event".to_owned()
3012                                 });
3013                         }
3014                         Ok(OutPoint { txid: tx.txid(), index: output_index.unwrap() })
3015                 })
3016         }
3017
3018         /// Atomically updates the [`ChannelConfig`] for the given channels.
3019         ///
3020         /// Once the updates are applied, each eligible channel (advertised with a known short channel
3021         /// ID and a change in [`forwarding_fee_proportional_millionths`], [`forwarding_fee_base_msat`],
3022         /// or [`cltv_expiry_delta`]) has a [`BroadcastChannelUpdate`] event message generated
3023         /// containing the new [`ChannelUpdate`] message which should be broadcast to the network.
3024         ///
3025         /// Returns [`ChannelUnavailable`] when a channel is not found or an incorrect
3026         /// `counterparty_node_id` is provided.
3027         ///
3028         /// Returns [`APIMisuseError`] when a [`cltv_expiry_delta`] update is to be applied with a value
3029         /// below [`MIN_CLTV_EXPIRY_DELTA`].
3030         ///
3031         /// If an error is returned, none of the updates should be considered applied.
3032         ///
3033         /// [`forwarding_fee_proportional_millionths`]: ChannelConfig::forwarding_fee_proportional_millionths
3034         /// [`forwarding_fee_base_msat`]: ChannelConfig::forwarding_fee_base_msat
3035         /// [`cltv_expiry_delta`]: ChannelConfig::cltv_expiry_delta
3036         /// [`BroadcastChannelUpdate`]: events::MessageSendEvent::BroadcastChannelUpdate
3037         /// [`ChannelUpdate`]: msgs::ChannelUpdate
3038         /// [`ChannelUnavailable`]: APIError::ChannelUnavailable
3039         /// [`APIMisuseError`]: APIError::APIMisuseError
3040         pub fn update_channel_config(
3041                 &self, counterparty_node_id: &PublicKey, channel_ids: &[[u8; 32]], config: &ChannelConfig,
3042         ) -> Result<(), APIError> {
3043                 if config.cltv_expiry_delta < MIN_CLTV_EXPIRY_DELTA {
3044                         return Err(APIError::APIMisuseError {
3045                                 err: format!("The chosen CLTV expiry delta is below the minimum of {}", MIN_CLTV_EXPIRY_DELTA),
3046                         });
3047                 }
3048
3049                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(
3050                         &self.total_consistency_lock, &self.persistence_notifier,
3051                 );
3052                 {
3053                         let mut channel_state_lock = self.channel_state.lock().unwrap();
3054                         let channel_state = &mut *channel_state_lock;
3055                         for channel_id in channel_ids {
3056                                 let channel_counterparty_node_id = channel_state.by_id.get(channel_id)
3057                                         .ok_or(APIError::ChannelUnavailable {
3058                                                 err: format!("Channel with ID {} was not found", log_bytes!(*channel_id)),
3059                                         })?
3060                                         .get_counterparty_node_id();
3061                                 if channel_counterparty_node_id != *counterparty_node_id {
3062                                         return Err(APIError::APIMisuseError {
3063                                                 err: "counterparty node id mismatch".to_owned(),
3064                                         });
3065                                 }
3066                         }
3067                         for channel_id in channel_ids {
3068                                 let channel = channel_state.by_id.get_mut(channel_id).unwrap();
3069                                 if !channel.update_config(config) {
3070                                         continue;
3071                                 }
3072                                 if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
3073                                         channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
3074                                 } else if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
3075                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
3076                                                 node_id: channel.get_counterparty_node_id(),
3077                                                 msg,
3078                                         });
3079                                 }
3080                         }
3081                 }
3082                 Ok(())
3083         }
3084
3085         /// Processes HTLCs which are pending waiting on random forward delay.
3086         ///
3087         /// Should only really ever be called in response to a PendingHTLCsForwardable event.
3088         /// Will likely generate further events.
3089         pub fn process_pending_htlc_forwards(&self) {
3090                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3091
3092                 let mut new_events = Vec::new();
3093                 let mut failed_forwards = Vec::new();
3094                 let mut phantom_receives: Vec<(u64, OutPoint, Vec<(PendingHTLCInfo, u64)>)> = Vec::new();
3095                 let mut handle_errors = Vec::new();
3096                 {
3097                         let mut forward_htlcs = HashMap::new();
3098                         mem::swap(&mut forward_htlcs, &mut self.forward_htlcs.lock().unwrap());
3099
3100                         for (short_chan_id, mut pending_forwards) in forward_htlcs {
3101                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3102                                 let channel_state = &mut *channel_state_lock;
3103                                 if short_chan_id != 0 {
3104                                         let forward_chan_id = match channel_state.short_to_chan_info.get(&short_chan_id) {
3105                                                 Some((_cp_id, chan_id)) => chan_id.clone(),
3106                                                 None => {
3107                                                         for forward_info in pending_forwards.drain(..) {
3108                                                                 match forward_info {
3109                                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3110                                                                                 routing, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value },
3111                                                                                 prev_funding_outpoint } => {
3112                                                                                         macro_rules! failure_handler {
3113                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr, $next_hop_unknown: expr) => {
3114                                                                                                         log_info!(self.logger, "Failed to accept/forward incoming HTLC: {}", $msg);
3115
3116                                                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3117                                                                                                                 short_channel_id: prev_short_channel_id,
3118                                                                                                                 outpoint: prev_funding_outpoint,
3119                                                                                                                 htlc_id: prev_htlc_id,
3120                                                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3121                                                                                                                 phantom_shared_secret: $phantom_ss,
3122                                                                                                         });
3123
3124                                                                                                         let reason = if $next_hop_unknown {
3125                                                                                                                 HTLCDestination::UnknownNextHop { requested_forward_scid: short_chan_id }
3126                                                                                                         } else {
3127                                                                                                                 HTLCDestination::FailedPayment{ payment_hash }
3128                                                                                                         };
3129
3130                                                                                                         failed_forwards.push((htlc_source, payment_hash,
3131                                                                                                                 HTLCFailReason::Reason { failure_code: $err_code, data: $err_data },
3132                                                                                                                 reason
3133                                                                                                         ));
3134                                                                                                         continue;
3135                                                                                                 }
3136                                                                                         }
3137                                                                                         macro_rules! fail_forward {
3138                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3139                                                                                                         {
3140                                                                                                                 failure_handler!($msg, $err_code, $err_data, $phantom_ss, true);
3141                                                                                                         }
3142                                                                                                 }
3143                                                                                         }
3144                                                                                         macro_rules! failed_payment {
3145                                                                                                 ($msg: expr, $err_code: expr, $err_data: expr, $phantom_ss: expr) => {
3146                                                                                                         {
3147                                                                                                                 failure_handler!($msg, $err_code, $err_data, $phantom_ss, false);
3148                                                                                                         }
3149                                                                                                 }
3150                                                                                         }
3151                                                                                         if let PendingHTLCRouting::Forward { onion_packet, .. } = routing {
3152                                                                                                 let phantom_secret_res = self.keys_manager.get_node_secret(Recipient::PhantomNode);
3153                                                                                                 if phantom_secret_res.is_ok() && fake_scid::is_valid_phantom(&self.fake_scid_rand_bytes, short_chan_id) {
3154                                                                                                         let phantom_shared_secret = SharedSecret::new(&onion_packet.public_key.unwrap(), &phantom_secret_res.unwrap()).secret_bytes();
3155                                                                                                         let next_hop = match onion_utils::decode_next_payment_hop(phantom_shared_secret, &onion_packet.hop_data, onion_packet.hmac, payment_hash) {
3156                                                                                                                 Ok(res) => res,
3157                                                                                                                 Err(onion_utils::OnionDecodeErr::Malformed { err_msg, err_code }) => {
3158                                                                                                                         let sha256_of_onion = Sha256::hash(&onion_packet.hop_data).into_inner();
3159                                                                                                                         // In this scenario, the phantom would have sent us an
3160                                                                                                                         // `update_fail_malformed_htlc`, meaning here we encrypt the error as
3161                                                                                                                         // if it came from us (the second-to-last hop) but contains the sha256
3162                                                                                                                         // of the onion.
3163                                                                                                                         failed_payment!(err_msg, err_code, sha256_of_onion.to_vec(), None);
3164                                                                                                                 },
3165                                                                                                                 Err(onion_utils::OnionDecodeErr::Relay { err_msg, err_code }) => {
3166                                                                                                                         failed_payment!(err_msg, err_code, Vec::new(), Some(phantom_shared_secret));
3167                                                                                                                 },
3168                                                                                                         };
3169                                                                                                         match next_hop {
3170                                                                                                                 onion_utils::Hop::Receive(hop_data) => {
3171                                                                                                                         match self.construct_recv_pending_htlc_info(hop_data, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value, Some(phantom_shared_secret)) {
3172                                                                                                                                 Ok(info) => phantom_receives.push((prev_short_channel_id, prev_funding_outpoint, vec![(info, prev_htlc_id)])),
3173                                                                                                                                 Err(ReceiveError { err_code, err_data, msg }) => failed_payment!(msg, err_code, err_data, Some(phantom_shared_secret))
3174                                                                                                                         }
3175                                                                                                                 },
3176                                                                                                                 _ => panic!(),
3177                                                                                                         }
3178                                                                                                 } else {
3179                                                                                                         fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3180                                                                                                 }
3181                                                                                         } else {
3182                                                                                                 fail_forward!(format!("Unknown short channel id {} for forward HTLC", short_chan_id), 0x4000 | 10, Vec::new(), None);
3183                                                                                         }
3184                                                                                 },
3185                                                                         HTLCForwardInfo::FailHTLC { .. } => {
3186                                                                                 // Channel went away before we could fail it. This implies
3187                                                                                 // the channel is now on chain and our counterparty is
3188                                                                                 // trying to broadcast the HTLC-Timeout, but that's their
3189                                                                                 // problem, not ours.
3190                                                                         }
3191                                                                 }
3192                                                         }
3193                                                         continue;
3194                                                 }
3195                                         };
3196                                         if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(forward_chan_id) {
3197                                                 let mut add_htlc_msgs = Vec::new();
3198                                                 let mut fail_htlc_msgs = Vec::new();
3199                                                 for forward_info in pending_forwards.drain(..) {
3200                                                         match forward_info {
3201                                                                 HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3202                                                                                 routing: PendingHTLCRouting::Forward {
3203                                                                                         onion_packet, ..
3204                                                                                 }, incoming_shared_secret, payment_hash, amt_to_forward, outgoing_cltv_value },
3205                                                                                 prev_funding_outpoint } => {
3206                                                                         log_trace!(self.logger, "Adding HTLC from short id {} with payment_hash {} to channel with short id {} after delay", prev_short_channel_id, log_bytes!(payment_hash.0), short_chan_id);
3207                                                                         let htlc_source = HTLCSource::PreviousHopData(HTLCPreviousHopData {
3208                                                                                 short_channel_id: prev_short_channel_id,
3209                                                                                 outpoint: prev_funding_outpoint,
3210                                                                                 htlc_id: prev_htlc_id,
3211                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3212                                                                                 // Phantom payments are only PendingHTLCRouting::Receive.
3213                                                                                 phantom_shared_secret: None,
3214                                                                         });
3215                                                                         match chan.get_mut().send_htlc(amt_to_forward, payment_hash, outgoing_cltv_value, htlc_source.clone(), onion_packet, &self.logger) {
3216                                                                                 Err(e) => {
3217                                                                                         if let ChannelError::Ignore(msg) = e {
3218                                                                                                 log_trace!(self.logger, "Failed to forward HTLC with payment_hash {}: {}", log_bytes!(payment_hash.0), msg);
3219                                                                                         } else {
3220                                                                                                 panic!("Stated return value requirements in send_htlc() were not met");
3221                                                                                         }
3222                                                                                         let (failure_code, data) = self.get_htlc_temp_fail_err_and_data(0x1000|7, short_chan_id, chan.get());
3223                                                                                         failed_forwards.push((htlc_source, payment_hash,
3224                                                                                                 HTLCFailReason::Reason { failure_code, data },
3225                                                                                                 HTLCDestination::NextHopChannel { node_id: Some(chan.get().get_counterparty_node_id()), channel_id: forward_chan_id }
3226                                                                                         ));
3227                                                                                         continue;
3228                                                                                 },
3229                                                                                 Ok(update_add) => {
3230                                                                                         match update_add {
3231                                                                                                 Some(msg) => { add_htlc_msgs.push(msg); },
3232                                                                                                 None => {
3233                                                                                                         // Nothing to do here...we're waiting on a remote
3234                                                                                                         // revoke_and_ack before we can add anymore HTLCs. The Channel
3235                                                                                                         // will automatically handle building the update_add_htlc and
3236                                                                                                         // commitment_signed messages when we can.
3237                                                                                                         // TODO: Do some kind of timer to set the channel as !is_live()
3238                                                                                                         // as we don't really want others relying on us relaying through
3239                                                                                                         // this channel currently :/.
3240                                                                                                 }
3241                                                                                         }
3242                                                                                 }
3243                                                                         }
3244                                                                 },
3245                                                                 HTLCForwardInfo::AddHTLC { .. } => {
3246                                                                         panic!("short_channel_id != 0 should imply any pending_forward entries are of type Forward");
3247                                                                 },
3248                                                                 HTLCForwardInfo::FailHTLC { htlc_id, err_packet } => {
3249                                                                         log_trace!(self.logger, "Failing HTLC back to channel with short id {} (backward HTLC ID {}) after delay", short_chan_id, htlc_id);
3250                                                                         match chan.get_mut().get_update_fail_htlc(htlc_id, err_packet, &self.logger) {
3251                                                                                 Err(e) => {
3252                                                                                         if let ChannelError::Ignore(msg) = e {
3253                                                                                                 log_trace!(self.logger, "Failed to fail HTLC with ID {} backwards to short_id {}: {}", htlc_id, short_chan_id, msg);
3254                                                                                         } else {
3255                                                                                                 panic!("Stated return value requirements in get_update_fail_htlc() were not met");
3256                                                                                         }
3257                                                                                         // fail-backs are best-effort, we probably already have one
3258                                                                                         // pending, and if not that's OK, if not, the channel is on
3259                                                                                         // the chain and sending the HTLC-Timeout is their problem.
3260                                                                                         continue;
3261                                                                                 },
3262                                                                                 Ok(Some(msg)) => { fail_htlc_msgs.push(msg); },
3263                                                                                 Ok(None) => {
3264                                                                                         // Nothing to do here...we're waiting on a remote
3265                                                                                         // revoke_and_ack before we can update the commitment
3266                                                                                         // transaction. The Channel will automatically handle
3267                                                                                         // building the update_fail_htlc and commitment_signed
3268                                                                                         // messages when we can.
3269                                                                                         // We don't need any kind of timer here as they should fail
3270                                                                                         // the channel onto the chain if they can't get our
3271                                                                                         // update_fail_htlc in time, it's not our problem.
3272                                                                                 }
3273                                                                         }
3274                                                                 },
3275                                                         }
3276                                                 }
3277
3278                                                 if !add_htlc_msgs.is_empty() || !fail_htlc_msgs.is_empty() {
3279                                                         let (commitment_msg, monitor_update) = match chan.get_mut().send_commitment(&self.logger) {
3280                                                                 Ok(res) => res,
3281                                                                 Err(e) => {
3282                                                                         // We surely failed send_commitment due to bad keys, in that case
3283                                                                         // close channel and then send error message to peer.
3284                                                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
3285                                                                         let err: Result<(), _>  = match e {
3286                                                                                 ChannelError::Ignore(_) | ChannelError::Warn(_) => {
3287                                                                                         panic!("Stated return value requirements in send_commitment() were not met");
3288                                                                                 }
3289                                                                                 ChannelError::Close(msg) => {
3290                                                                                         log_trace!(self.logger, "Closing channel {} due to Close-required error: {}", log_bytes!(chan.key()[..]), msg);
3291                                                                                         let mut channel = remove_channel!(self, channel_state, chan);
3292                                                                                         // ChannelClosed event is generated by handle_error for us.
3293                                                                                         Err(MsgHandleErrInternal::from_finish_shutdown(msg, channel.channel_id(), channel.get_user_id(), channel.force_shutdown(true), self.get_channel_update_for_broadcast(&channel).ok()))
3294                                                                                 },
3295                                                                         };
3296                                                                         handle_errors.push((counterparty_node_id, err));
3297                                                                         continue;
3298                                                                 }
3299                                                         };
3300                                                         match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
3301                                                                 ChannelMonitorUpdateStatus::Completed => {},
3302                                                                 e => {
3303                                                                         handle_errors.push((chan.get().get_counterparty_node_id(), handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, true)));
3304                                                                         continue;
3305                                                                 }
3306                                                         }
3307                                                         log_debug!(self.logger, "Forwarding HTLCs resulted in a commitment update with {} HTLCs added and {} HTLCs failed for channel {}",
3308                                                                 add_htlc_msgs.len(), fail_htlc_msgs.len(), log_bytes!(chan.get().channel_id()));
3309                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3310                                                                 node_id: chan.get().get_counterparty_node_id(),
3311                                                                 updates: msgs::CommitmentUpdate {
3312                                                                         update_add_htlcs: add_htlc_msgs,
3313                                                                         update_fulfill_htlcs: Vec::new(),
3314                                                                         update_fail_htlcs: fail_htlc_msgs,
3315                                                                         update_fail_malformed_htlcs: Vec::new(),
3316                                                                         update_fee: None,
3317                                                                         commitment_signed: commitment_msg,
3318                                                                 },
3319                                                         });
3320                                                 }
3321                                         } else {
3322                                                 unreachable!();
3323                                         }
3324                                 } else {
3325                                         for forward_info in pending_forwards.drain(..) {
3326                                                 match forward_info {
3327                                                         HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_htlc_id, forward_info: PendingHTLCInfo {
3328                                                                         routing, incoming_shared_secret, payment_hash, amt_to_forward, .. },
3329                                                                         prev_funding_outpoint } => {
3330                                                                 let (cltv_expiry, onion_payload, payment_data, phantom_shared_secret) = match routing {
3331                                                                         PendingHTLCRouting::Receive { payment_data, incoming_cltv_expiry, phantom_shared_secret } => {
3332                                                                                 let _legacy_hop_data = Some(payment_data.clone());
3333                                                                                 (incoming_cltv_expiry, OnionPayload::Invoice { _legacy_hop_data }, Some(payment_data), phantom_shared_secret)
3334                                                                         },
3335                                                                         PendingHTLCRouting::ReceiveKeysend { payment_preimage, incoming_cltv_expiry } =>
3336                                                                                 (incoming_cltv_expiry, OnionPayload::Spontaneous(payment_preimage), None, None),
3337                                                                         _ => {
3338                                                                                 panic!("short_channel_id == 0 should imply any pending_forward entries are of type Receive");
3339                                                                         }
3340                                                                 };
3341                                                                 let claimable_htlc = ClaimableHTLC {
3342                                                                         prev_hop: HTLCPreviousHopData {
3343                                                                                 short_channel_id: prev_short_channel_id,
3344                                                                                 outpoint: prev_funding_outpoint,
3345                                                                                 htlc_id: prev_htlc_id,
3346                                                                                 incoming_packet_shared_secret: incoming_shared_secret,
3347                                                                                 phantom_shared_secret,
3348                                                                         },
3349                                                                         value: amt_to_forward,
3350                                                                         timer_ticks: 0,
3351                                                                         total_msat: if let Some(data) = &payment_data { data.total_msat } else { amt_to_forward },
3352                                                                         cltv_expiry,
3353                                                                         onion_payload,
3354                                                                 };
3355
3356                                                                 macro_rules! fail_htlc {
3357                                                                         ($htlc: expr, $payment_hash: expr) => {
3358                                                                                 let mut htlc_msat_height_data = byte_utils::be64_to_array($htlc.value).to_vec();
3359                                                                                 htlc_msat_height_data.extend_from_slice(
3360                                                                                         &byte_utils::be32_to_array(self.best_block.read().unwrap().height()),
3361                                                                                 );
3362                                                                                 failed_forwards.push((HTLCSource::PreviousHopData(HTLCPreviousHopData {
3363                                                                                                 short_channel_id: $htlc.prev_hop.short_channel_id,
3364                                                                                                 outpoint: prev_funding_outpoint,
3365                                                                                                 htlc_id: $htlc.prev_hop.htlc_id,
3366                                                                                                 incoming_packet_shared_secret: $htlc.prev_hop.incoming_packet_shared_secret,
3367                                                                                                 phantom_shared_secret,
3368                                                                                         }), payment_hash,
3369                                                                                         HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data },
3370                                                                                         HTLCDestination::FailedPayment { payment_hash: $payment_hash },
3371                                                                                 ));
3372                                                                         }
3373                                                                 }
3374
3375                                                                 macro_rules! check_total_value {
3376                                                                         ($payment_data: expr, $payment_preimage: expr) => {{
3377                                                                                 let mut payment_received_generated = false;
3378                                                                                 let purpose = || {
3379                                                                                         events::PaymentPurpose::InvoicePayment {
3380                                                                                                 payment_preimage: $payment_preimage,
3381                                                                                                 payment_secret: $payment_data.payment_secret,
3382                                                                                         }
3383                                                                                 };
3384                                                                                 let (_, htlcs) = channel_state.claimable_htlcs.entry(payment_hash)
3385                                                                                         .or_insert_with(|| (purpose(), Vec::new()));
3386                                                                                 if htlcs.len() == 1 {
3387                                                                                         if let OnionPayload::Spontaneous(_) = htlcs[0].onion_payload {
3388                                                                                                 log_trace!(self.logger, "Failing new HTLC with payment_hash {} as we already had an existing keysend HTLC with the same payment hash", log_bytes!(payment_hash.0));
3389                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3390                                                                                                 continue
3391                                                                                         }
3392                                                                                 }
3393                                                                                 let mut total_value = claimable_htlc.value;
3394                                                                                 for htlc in htlcs.iter() {
3395                                                                                         total_value += htlc.value;
3396                                                                                         match &htlc.onion_payload {
3397                                                                                                 OnionPayload::Invoice { .. } => {
3398                                                                                                         if htlc.total_msat != $payment_data.total_msat {
3399                                                                                                                 log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the HTLCs had inconsistent total values (eg {} and {})",
3400                                                                                                                         log_bytes!(payment_hash.0), $payment_data.total_msat, htlc.total_msat);
3401                                                                                                                 total_value = msgs::MAX_VALUE_MSAT;
3402                                                                                                         }
3403                                                                                                         if total_value >= msgs::MAX_VALUE_MSAT { break; }
3404                                                                                                 },
3405                                                                                                 _ => unreachable!(),
3406                                                                                         }
3407                                                                                 }
3408                                                                                 if total_value >= msgs::MAX_VALUE_MSAT || total_value > $payment_data.total_msat {
3409                                                                                         log_trace!(self.logger, "Failing HTLCs with payment_hash {} as the total value {} ran over expected value {} (or HTLCs were inconsistent)",
3410                                                                                                 log_bytes!(payment_hash.0), total_value, $payment_data.total_msat);
3411                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3412                                                                                 } else if total_value == $payment_data.total_msat {
3413                                                                                         htlcs.push(claimable_htlc);
3414                                                                                         new_events.push(events::Event::PaymentReceived {
3415                                                                                                 payment_hash,
3416                                                                                                 purpose: purpose(),
3417                                                                                                 amount_msat: total_value,
3418                                                                                         });
3419                                                                                         payment_received_generated = true;
3420                                                                                 } else {
3421                                                                                         // Nothing to do - we haven't reached the total
3422                                                                                         // payment value yet, wait until we receive more
3423                                                                                         // MPP parts.
3424                                                                                         htlcs.push(claimable_htlc);
3425                                                                                 }
3426                                                                                 payment_received_generated
3427                                                                         }}
3428                                                                 }
3429
3430                                                                 // Check that the payment hash and secret are known. Note that we
3431                                                                 // MUST take care to handle the "unknown payment hash" and
3432                                                                 // "incorrect payment secret" cases here identically or we'd expose
3433                                                                 // that we are the ultimate recipient of the given payment hash.
3434                                                                 // Further, we must not expose whether we have any other HTLCs
3435                                                                 // associated with the same payment_hash pending or not.
3436                                                                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
3437                                                                 match payment_secrets.entry(payment_hash) {
3438                                                                         hash_map::Entry::Vacant(_) => {
3439                                                                                 match claimable_htlc.onion_payload {
3440                                                                                         OnionPayload::Invoice { .. } => {
3441                                                                                                 let payment_data = payment_data.unwrap();
3442                                                                                                 let payment_preimage = match inbound_payment::verify(payment_hash, &payment_data, self.highest_seen_timestamp.load(Ordering::Acquire) as u64, &self.inbound_payment_key, &self.logger) {
3443                                                                                                         Ok(payment_preimage) => payment_preimage,
3444                                                                                                         Err(()) => {
3445                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3446                                                                                                                 continue
3447                                                                                                         }
3448                                                                                                 };
3449                                                                                                 check_total_value!(payment_data, payment_preimage);
3450                                                                                         },
3451                                                                                         OnionPayload::Spontaneous(preimage) => {
3452                                                                                                 match channel_state.claimable_htlcs.entry(payment_hash) {
3453                                                                                                         hash_map::Entry::Vacant(e) => {
3454                                                                                                                 let purpose = events::PaymentPurpose::SpontaneousPayment(preimage);
3455                                                                                                                 e.insert((purpose.clone(), vec![claimable_htlc]));
3456                                                                                                                 new_events.push(events::Event::PaymentReceived {
3457                                                                                                                         payment_hash,
3458                                                                                                                         amount_msat: amt_to_forward,
3459                                                                                                                         purpose,
3460                                                                                                                 });
3461                                                                                                         },
3462                                                                                                         hash_map::Entry::Occupied(_) => {
3463                                                                                                                 log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} for a duplicative payment hash", log_bytes!(payment_hash.0));
3464                                                                                                                 fail_htlc!(claimable_htlc, payment_hash);
3465                                                                                                         }
3466                                                                                                 }
3467                                                                                         }
3468                                                                                 }
3469                                                                         },
3470                                                                         hash_map::Entry::Occupied(inbound_payment) => {
3471                                                                                 if payment_data.is_none() {
3472                                                                                         log_trace!(self.logger, "Failing new keysend HTLC with payment_hash {} because we already have an inbound payment with the same payment hash", log_bytes!(payment_hash.0));
3473                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3474                                                                                         continue
3475                                                                                 };
3476                                                                                 let payment_data = payment_data.unwrap();
3477                                                                                 if inbound_payment.get().payment_secret != payment_data.payment_secret {
3478                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our expected payment secret.", log_bytes!(payment_hash.0));
3479                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3480                                                                                 } else if inbound_payment.get().min_value_msat.is_some() && payment_data.total_msat < inbound_payment.get().min_value_msat.unwrap() {
3481                                                                                         log_trace!(self.logger, "Failing new HTLC with payment_hash {} as it didn't match our minimum value (had {}, needed {}).",
3482                                                                                                 log_bytes!(payment_hash.0), payment_data.total_msat, inbound_payment.get().min_value_msat.unwrap());
3483                                                                                         fail_htlc!(claimable_htlc, payment_hash);
3484                                                                                 } else {
3485                                                                                         let payment_received_generated = check_total_value!(payment_data, inbound_payment.get().payment_preimage);
3486                                                                                         if payment_received_generated {
3487                                                                                                 inbound_payment.remove_entry();
3488                                                                                         }
3489                                                                                 }
3490                                                                         },
3491                                                                 };
3492                                                         },
3493                                                         HTLCForwardInfo::FailHTLC { .. } => {
3494                                                                 panic!("Got pending fail of our own HTLC");
3495                                                         }
3496                                                 }
3497                                         }
3498                                 }
3499                         }
3500                 }
3501
3502                 for (htlc_source, payment_hash, failure_reason, destination) in failed_forwards.drain(..) {
3503                         self.fail_htlc_backwards_internal(htlc_source, &payment_hash, failure_reason, destination);
3504                 }
3505                 self.forward_htlcs(&mut phantom_receives);
3506
3507                 for (counterparty_node_id, err) in handle_errors.drain(..) {
3508                         let _ = handle_error!(self, err, counterparty_node_id);
3509                 }
3510
3511                 if new_events.is_empty() { return }
3512                 let mut events = self.pending_events.lock().unwrap();
3513                 events.append(&mut new_events);
3514         }
3515
3516         /// Free the background events, generally called from timer_tick_occurred.
3517         ///
3518         /// Exposed for testing to allow us to process events quickly without generating accidental
3519         /// BroadcastChannelUpdate events in timer_tick_occurred.
3520         ///
3521         /// Expects the caller to have a total_consistency_lock read lock.
3522         fn process_background_events(&self) -> bool {
3523                 let mut background_events = Vec::new();
3524                 mem::swap(&mut *self.pending_background_events.lock().unwrap(), &mut background_events);
3525                 if background_events.is_empty() {
3526                         return false;
3527                 }
3528
3529                 for event in background_events.drain(..) {
3530                         match event {
3531                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)) => {
3532                                         // The channel has already been closed, so no use bothering to care about the
3533                                         // monitor updating completing.
3534                                         let _ = self.chain_monitor.update_channel(funding_txo, update);
3535                                 },
3536                         }
3537                 }
3538                 true
3539         }
3540
3541         #[cfg(any(test, feature = "_test_utils"))]
3542         /// Process background events, for functional testing
3543         pub fn test_process_background_events(&self) {
3544                 self.process_background_events();
3545         }
3546
3547         fn update_channel_fee(&self, short_to_chan_info: &mut HashMap<u64, (PublicKey, [u8; 32])>, pending_msg_events: &mut Vec<events::MessageSendEvent>, chan_id: &[u8; 32], chan: &mut Channel<Signer>, new_feerate: u32) -> (bool, NotifyOption, Result<(), MsgHandleErrInternal>) {
3548                 if !chan.is_outbound() { return (true, NotifyOption::SkipPersist, Ok(())); }
3549                 // If the feerate has decreased by less than half, don't bother
3550                 if new_feerate <= chan.get_feerate() && new_feerate * 2 > chan.get_feerate() {
3551                         log_trace!(self.logger, "Channel {} does not qualify for a feerate change from {} to {}.",
3552                                 log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3553                         return (true, NotifyOption::SkipPersist, Ok(()));
3554                 }
3555                 if !chan.is_live() {
3556                         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).",
3557                                 log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3558                         return (true, NotifyOption::SkipPersist, Ok(()));
3559                 }
3560                 log_trace!(self.logger, "Channel {} qualifies for a feerate change from {} to {}.",
3561                         log_bytes!(chan_id[..]), chan.get_feerate(), new_feerate);
3562
3563                 let mut retain_channel = true;
3564                 let res = match chan.send_update_fee_and_commit(new_feerate, &self.logger) {
3565                         Ok(res) => Ok(res),
3566                         Err(e) => {
3567                                 let (drop, res) = convert_chan_err!(self, e, short_to_chan_info, chan, chan_id);
3568                                 if drop { retain_channel = false; }
3569                                 Err(res)
3570                         }
3571                 };
3572                 let ret_err = match res {
3573                         Ok(Some((update_fee, commitment_signed, monitor_update))) => {
3574                                 match self.chain_monitor.update_channel(chan.get_funding_txo().unwrap(), monitor_update) {
3575                                         ChannelMonitorUpdateStatus::Completed => {
3576                                                 pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
3577                                                         node_id: chan.get_counterparty_node_id(),
3578                                                         updates: msgs::CommitmentUpdate {
3579                                                                 update_add_htlcs: Vec::new(),
3580                                                                 update_fulfill_htlcs: Vec::new(),
3581                                                                 update_fail_htlcs: Vec::new(),
3582                                                                 update_fail_malformed_htlcs: Vec::new(),
3583                                                                 update_fee: Some(update_fee),
3584                                                                 commitment_signed,
3585                                                         },
3586                                                 });
3587                                                 Ok(())
3588                                         },
3589                                         e => {
3590                                                 let (res, drop) = handle_monitor_update_res!(self, e, short_to_chan_info, chan, RAACommitmentOrder::CommitmentFirst, chan_id, COMMITMENT_UPDATE_ONLY);
3591                                                 if drop { retain_channel = false; }
3592                                                 res
3593                                         }
3594                                 }
3595                         },
3596                         Ok(None) => Ok(()),
3597                         Err(e) => Err(e),
3598                 };
3599                 (retain_channel, NotifyOption::DoPersist, ret_err)
3600         }
3601
3602         #[cfg(fuzzing)]
3603         /// In chanmon_consistency we want to sometimes do the channel fee updates done in
3604         /// timer_tick_occurred, but we can't generate the disabled channel updates as it considers
3605         /// these a fuzz failure (as they usually indicate a channel force-close, which is exactly what
3606         /// it wants to detect). Thus, we have a variant exposed here for its benefit.
3607         pub fn maybe_update_chan_fees(&self) {
3608                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3609                         let mut should_persist = NotifyOption::SkipPersist;
3610
3611                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3612
3613                         let mut handle_errors = Vec::new();
3614                         {
3615                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3616                                 let channel_state = &mut *channel_state_lock;
3617                                 let pending_msg_events = &mut channel_state.pending_msg_events;
3618                                 let short_to_chan_info = &mut channel_state.short_to_chan_info;
3619                                 channel_state.by_id.retain(|chan_id, chan| {
3620                                         let (retain_channel, chan_needs_persist, err) = self.update_channel_fee(short_to_chan_info, pending_msg_events, chan_id, chan, new_feerate);
3621                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3622                                         if err.is_err() {
3623                                                 handle_errors.push(err);
3624                                         }
3625                                         retain_channel
3626                                 });
3627                         }
3628
3629                         should_persist
3630                 });
3631         }
3632
3633         fn remove_stale_resolved_payments(&self) {
3634                 // If an outbound payment was completed, and no pending HTLCs remain, we should remove it
3635                 // from the map. However, if we did that immediately when the last payment HTLC is claimed,
3636                 // this could race the user making a duplicate send_payment call and our idempotency
3637                 // guarantees would be violated. Instead, we wait a few timer ticks to do the actual
3638                 // removal. This should be more than sufficient to ensure the idempotency of any
3639                 // `send_payment` calls that were made at the same time the `PaymentSent` event was being
3640                 // processed.
3641                 let mut pending_outbound_payments = self.pending_outbound_payments.lock().unwrap();
3642                 let pending_events = self.pending_events.lock().unwrap();
3643                 pending_outbound_payments.retain(|payment_id, payment| {
3644                         if let PendingOutboundPayment::Fulfilled { session_privs, timer_ticks_without_htlcs, .. } = payment {
3645                                 let mut no_remaining_entries = session_privs.is_empty();
3646                                 if no_remaining_entries {
3647                                         for ev in pending_events.iter() {
3648                                                 match ev {
3649                                                         events::Event::PaymentSent { payment_id: Some(ev_payment_id), .. } |
3650                                                         events::Event::PaymentPathSuccessful { payment_id: ev_payment_id, .. } |
3651                                                         events::Event::PaymentPathFailed { payment_id: Some(ev_payment_id), .. } => {
3652                                                                 if payment_id == ev_payment_id {
3653                                                                         no_remaining_entries = false;
3654                                                                         break;
3655                                                                 }
3656                                                         },
3657                                                         _ => {},
3658                                                 }
3659                                         }
3660                                 }
3661                                 if no_remaining_entries {
3662                                         *timer_ticks_without_htlcs += 1;
3663                                         *timer_ticks_without_htlcs <= IDEMPOTENCY_TIMEOUT_TICKS
3664                                 } else {
3665                                         *timer_ticks_without_htlcs = 0;
3666                                         true
3667                                 }
3668                         } else { true }
3669                 });
3670         }
3671
3672         /// Performs actions which should happen on startup and roughly once per minute thereafter.
3673         ///
3674         /// This currently includes:
3675         ///  * Increasing or decreasing the on-chain feerate estimates for our outbound channels,
3676         ///  * Broadcasting `ChannelUpdate` messages if we've been disconnected from our peer for more
3677         ///    than a minute, informing the network that they should no longer attempt to route over
3678         ///    the channel.
3679         ///  * Expiring a channel's previous `ChannelConfig` if necessary to only allow forwarding HTLCs
3680         ///    with the current `ChannelConfig`.
3681         ///
3682         /// Note that this may cause reentrancy through `chain::Watch::update_channel` calls or feerate
3683         /// estimate fetches.
3684         pub fn timer_tick_occurred(&self) {
3685                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
3686                         let mut should_persist = NotifyOption::SkipPersist;
3687                         if self.process_background_events() { should_persist = NotifyOption::DoPersist; }
3688
3689                         let new_feerate = self.fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Normal);
3690
3691                         let mut handle_errors = Vec::new();
3692                         let mut timed_out_mpp_htlcs = Vec::new();
3693                         {
3694                                 let mut channel_state_lock = self.channel_state.lock().unwrap();
3695                                 let channel_state = &mut *channel_state_lock;
3696                                 let pending_msg_events = &mut channel_state.pending_msg_events;
3697                                 let short_to_chan_info = &mut channel_state.short_to_chan_info;
3698                                 channel_state.by_id.retain(|chan_id, chan| {
3699                                         let counterparty_node_id = chan.get_counterparty_node_id();
3700                                         let (retain_channel, chan_needs_persist, err) = self.update_channel_fee(short_to_chan_info, pending_msg_events, chan_id, chan, new_feerate);
3701                                         if chan_needs_persist == NotifyOption::DoPersist { should_persist = NotifyOption::DoPersist; }
3702                                         if err.is_err() {
3703                                                 handle_errors.push((err, counterparty_node_id));
3704                                         }
3705                                         if !retain_channel { return false; }
3706
3707                                         if let Err(e) = chan.timer_check_closing_negotiation_progress() {
3708                                                 let (needs_close, err) = convert_chan_err!(self, e, short_to_chan_info, chan, chan_id);
3709                                                 handle_errors.push((Err(err), chan.get_counterparty_node_id()));
3710                                                 if needs_close { return false; }
3711                                         }
3712
3713                                         match chan.channel_update_status() {
3714                                                 ChannelUpdateStatus::Enabled if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::DisabledStaged),
3715                                                 ChannelUpdateStatus::Disabled if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::EnabledStaged),
3716                                                 ChannelUpdateStatus::DisabledStaged if chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::Enabled),
3717                                                 ChannelUpdateStatus::EnabledStaged if !chan.is_live() => chan.set_channel_update_status(ChannelUpdateStatus::Disabled),
3718                                                 ChannelUpdateStatus::DisabledStaged if !chan.is_live() => {
3719                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3720                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3721                                                                         msg: update
3722                                                                 });
3723                                                         }
3724                                                         should_persist = NotifyOption::DoPersist;
3725                                                         chan.set_channel_update_status(ChannelUpdateStatus::Disabled);
3726                                                 },
3727                                                 ChannelUpdateStatus::EnabledStaged if chan.is_live() => {
3728                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
3729                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
3730                                                                         msg: update
3731                                                                 });
3732                                                         }
3733                                                         should_persist = NotifyOption::DoPersist;
3734                                                         chan.set_channel_update_status(ChannelUpdateStatus::Enabled);
3735                                                 },
3736                                                 _ => {},
3737                                         }
3738
3739                                         chan.maybe_expire_prev_config();
3740
3741                                         true
3742                                 });
3743
3744                                 channel_state.claimable_htlcs.retain(|payment_hash, (_, htlcs)| {
3745                                         if htlcs.is_empty() {
3746                                                 // This should be unreachable
3747                                                 debug_assert!(false);
3748                                                 return false;
3749                                         }
3750                                         if let OnionPayload::Invoice { .. } = htlcs[0].onion_payload {
3751                                                 // Check if we've received all the parts we need for an MPP (the value of the parts adds to total_msat).
3752                                                 // In this case we're not going to handle any timeouts of the parts here.
3753                                                 if htlcs[0].total_msat == htlcs.iter().fold(0, |total, htlc| total + htlc.value) {
3754                                                         return true;
3755                                                 } else if htlcs.into_iter().any(|htlc| {
3756                                                         htlc.timer_ticks += 1;
3757                                                         return htlc.timer_ticks >= MPP_TIMEOUT_TICKS
3758                                                 }) {
3759                                                         timed_out_mpp_htlcs.extend(htlcs.into_iter().map(|htlc| (htlc.prev_hop.clone(), payment_hash.clone())));
3760                                                         return false;
3761                                                 }
3762                                         }
3763                                         true
3764                                 });
3765                         }
3766
3767                         for htlc_source in timed_out_mpp_htlcs.drain(..) {
3768                                 let receiver = HTLCDestination::FailedPayment { payment_hash: htlc_source.1 };
3769                                 self.fail_htlc_backwards_internal(HTLCSource::PreviousHopData(htlc_source.0.clone()), &htlc_source.1, HTLCFailReason::Reason { failure_code: 23, data: Vec::new() }, receiver );
3770                         }
3771
3772                         for (err, counterparty_node_id) in handle_errors.drain(..) {
3773                                 let _ = handle_error!(self, err, counterparty_node_id);
3774                         }
3775
3776                         self.remove_stale_resolved_payments();
3777
3778                         should_persist
3779                 });
3780         }
3781
3782         /// Indicates that the preimage for payment_hash is unknown or the received amount is incorrect
3783         /// after a PaymentReceived event, failing the HTLC back to its origin and freeing resources
3784         /// along the path (including in our own channel on which we received it).
3785         ///
3786         /// Note that in some cases around unclean shutdown, it is possible the payment may have
3787         /// already been claimed by you via [`ChannelManager::claim_funds`] prior to you seeing (a
3788         /// second copy of) the [`events::Event::PaymentReceived`] event. Alternatively, the payment
3789         /// may have already been failed automatically by LDK if it was nearing its expiration time.
3790         ///
3791         /// While LDK will never claim a payment automatically on your behalf (i.e. without you calling
3792         /// [`ChannelManager::claim_funds`]), you should still monitor for
3793         /// [`events::Event::PaymentClaimed`] events even for payments you intend to fail, especially on
3794         /// startup during which time claims that were in-progress at shutdown may be replayed.
3795         pub fn fail_htlc_backwards(&self, payment_hash: &PaymentHash) {
3796                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
3797
3798                 let removed_source = {
3799                         let mut channel_state = self.channel_state.lock().unwrap();
3800                         channel_state.claimable_htlcs.remove(payment_hash)
3801                 };
3802                 if let Some((_, mut sources)) = removed_source {
3803                         for htlc in sources.drain(..) {
3804                                 let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
3805                                 htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
3806                                                 self.best_block.read().unwrap().height()));
3807                                 self.fail_htlc_backwards_internal(
3808                                                 HTLCSource::PreviousHopData(htlc.prev_hop), payment_hash,
3809                                                 HTLCFailReason::Reason { failure_code: 0x4000 | 15, data: htlc_msat_height_data },
3810                                                 HTLCDestination::FailedPayment { payment_hash: *payment_hash });
3811                         }
3812                 }
3813         }
3814
3815         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
3816         /// that we want to return and a channel.
3817         ///
3818         /// This is for failures on the channel on which the HTLC was *received*, not failures
3819         /// forwarding
3820         fn get_htlc_inbound_temp_fail_err_and_data(&self, desired_err_code: u16, chan: &Channel<Signer>) -> (u16, Vec<u8>) {
3821                 // We can't be sure what SCID was used when relaying inbound towards us, so we have to
3822                 // guess somewhat. If its a public channel, we figure best to just use the real SCID (as
3823                 // we're not leaking that we have a channel with the counterparty), otherwise we try to use
3824                 // an inbound SCID alias before the real SCID.
3825                 let scid_pref = if chan.should_announce() {
3826                         chan.get_short_channel_id().or(chan.latest_inbound_scid_alias())
3827                 } else {
3828                         chan.latest_inbound_scid_alias().or(chan.get_short_channel_id())
3829                 };
3830                 if let Some(scid) = scid_pref {
3831                         self.get_htlc_temp_fail_err_and_data(desired_err_code, scid, chan)
3832                 } else {
3833                         (0x4000|10, Vec::new())
3834                 }
3835         }
3836
3837
3838         /// Gets an HTLC onion failure code and error data for an `UPDATE` error, given the error code
3839         /// that we want to return and a channel.
3840         fn get_htlc_temp_fail_err_and_data(&self, desired_err_code: u16, scid: u64, chan: &Channel<Signer>) -> (u16, Vec<u8>) {
3841                 debug_assert_eq!(desired_err_code & 0x1000, 0x1000);
3842                 if let Ok(upd) = self.get_channel_update_for_onion(scid, chan) {
3843                         let mut enc = VecWriter(Vec::with_capacity(upd.serialized_length() + 6));
3844                         if desired_err_code == 0x1000 | 20 {
3845                                 // No flags for `disabled_flags` are currently defined so they're always two zero bytes.
3846                                 // See https://github.com/lightning/bolts/blob/341ec84/04-onion-routing.md?plain=1#L1008
3847                                 0u16.write(&mut enc).expect("Writes cannot fail");
3848                         }
3849                         (upd.serialized_length() as u16 + 2).write(&mut enc).expect("Writes cannot fail");
3850                         msgs::ChannelUpdate::TYPE.write(&mut enc).expect("Writes cannot fail");
3851                         upd.write(&mut enc).expect("Writes cannot fail");
3852                         (desired_err_code, enc.0)
3853                 } else {
3854                         // If we fail to get a unicast channel_update, it implies we don't yet have an SCID,
3855                         // which means we really shouldn't have gotten a payment to be forwarded over this
3856                         // channel yet, or if we did it's from a route hint. Either way, returning an error of
3857                         // PERM|no_such_channel should be fine.
3858                         (0x4000|10, Vec::new())
3859                 }
3860         }
3861
3862         // Fail a list of HTLCs that were just freed from the holding cell. The HTLCs need to be
3863         // failed backwards or, if they were one of our outgoing HTLCs, then their failure needs to
3864         // be surfaced to the user.
3865         fn fail_holding_cell_htlcs(
3866                 &self, mut htlcs_to_fail: Vec<(HTLCSource, PaymentHash)>, channel_id: [u8; 32],
3867                 counterparty_node_id: &PublicKey
3868         ) {
3869                 for (htlc_src, payment_hash) in htlcs_to_fail.drain(..) {
3870                         let (failure_code, onion_failure_data) =
3871                                 match self.channel_state.lock().unwrap().by_id.entry(channel_id) {
3872                                         hash_map::Entry::Occupied(chan_entry) => {
3873                                                 self.get_htlc_inbound_temp_fail_err_and_data(0x1000|7, &chan_entry.get())
3874                                         },
3875                                         hash_map::Entry::Vacant(_) => (0x4000|10, Vec::new())
3876                                 };
3877
3878                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id };
3879                         self.fail_htlc_backwards_internal(htlc_src, &payment_hash, HTLCFailReason::Reason { failure_code, data: onion_failure_data }, receiver);
3880                 }
3881         }
3882
3883         /// Fails an HTLC backwards to the sender of it to us.
3884         /// Note that we do not assume that channels corresponding to failed HTLCs are still available.
3885         fn fail_htlc_backwards_internal(&self, source: HTLCSource, payment_hash: &PaymentHash, onion_error: HTLCFailReason,destination: HTLCDestination) {
3886                 #[cfg(debug_assertions)]
3887                 {
3888                         // Ensure that the `channel_state` lock is not held when calling this function.
3889                         // This ensures that future code doesn't introduce a lock_order requirement for
3890                         // `forward_htlcs` to be locked after the `channel_state` lock, which calling this
3891                         // function with the `channel_state` locked would.
3892                         assert!(self.channel_state.try_lock().is_ok());
3893                 }
3894
3895                 //TODO: There is a timing attack here where if a node fails an HTLC back to us they can
3896                 //identify whether we sent it or not based on the (I presume) very different runtime
3897                 //between the branches here. We should make this async and move it into the forward HTLCs
3898                 //timer handling.
3899
3900                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
3901                 // from block_connected which may run during initialization prior to the chain_monitor
3902                 // being fully configured. See the docs for `ChannelManagerReadArgs` for more.
3903                 match source {
3904                         HTLCSource::OutboundRoute { ref path, session_priv, payment_id, ref payment_params, .. } => {
3905                                 let mut session_priv_bytes = [0; 32];
3906                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
3907                                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
3908                                 let mut all_paths_failed = false;
3909                                 let mut full_failure_ev = None;
3910                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
3911                                         if !payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
3912                                                 log_trace!(self.logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3913                                                 return;
3914                                         }
3915                                         if payment.get().is_fulfilled() {
3916                                                 log_trace!(self.logger, "Received failure of HTLC with payment_hash {} after payment completion", log_bytes!(payment_hash.0));
3917                                                 return;
3918                                         }
3919                                         if payment.get().remaining_parts() == 0 {
3920                                                 all_paths_failed = true;
3921                                                 if payment.get().abandoned() {
3922                                                         full_failure_ev = Some(events::Event::PaymentFailed {
3923                                                                 payment_id,
3924                                                                 payment_hash: payment.get().payment_hash().expect("PendingOutboundPayments::RetriesExceeded always has a payment hash set"),
3925                                                         });
3926                                                         payment.remove();
3927                                                 }
3928                                         }
3929                                 } else {
3930                                         log_trace!(self.logger, "Received duplicative fail for HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3931                                         return;
3932                                 }
3933                                 let mut retry = if let Some(payment_params_data) = payment_params {
3934                                         let path_last_hop = path.last().expect("Outbound payments must have had a valid path");
3935                                         Some(RouteParameters {
3936                                                 payment_params: payment_params_data.clone(),
3937                                                 final_value_msat: path_last_hop.fee_msat,
3938                                                 final_cltv_expiry_delta: path_last_hop.cltv_expiry_delta,
3939                                         })
3940                                 } else { None };
3941                                 log_trace!(self.logger, "Failing outbound payment HTLC with payment_hash {}", log_bytes!(payment_hash.0));
3942
3943                                 let path_failure = match &onion_error {
3944                                         &HTLCFailReason::LightningError { ref err } => {
3945 #[cfg(test)]
3946                                                 let (network_update, short_channel_id, payment_retryable, onion_error_code, onion_error_data) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
3947 #[cfg(not(test))]
3948                                                 let (network_update, short_channel_id, payment_retryable, _, _) = onion_utils::process_onion_failure(&self.secp_ctx, &self.logger, &source, err.data.clone());
3949
3950                                                 if self.payment_is_probe(payment_hash, &payment_id) {
3951                                                         if !payment_retryable {
3952                                                                 events::Event::ProbeSuccessful {
3953                                                                         payment_id,
3954                                                                         payment_hash: payment_hash.clone(),
3955                                                                         path: path.clone(),
3956                                                                 }
3957                                                         } else {
3958                                                                 events::Event::ProbeFailed {
3959                                                                         payment_id,
3960                                                                         payment_hash: payment_hash.clone(),
3961                                                                         path: path.clone(),
3962                                                                         short_channel_id,
3963                                                                 }
3964                                                         }
3965                                                 } else {
3966                                                         // TODO: If we decided to blame ourselves (or one of our channels) in
3967                                                         // process_onion_failure we should close that channel as it implies our
3968                                                         // next-hop is needlessly blaming us!
3969                                                         if let Some(scid) = short_channel_id {
3970                                                                 retry.as_mut().map(|r| r.payment_params.previously_failed_channels.push(scid));
3971                                                         }
3972                                                         events::Event::PaymentPathFailed {
3973                                                                 payment_id: Some(payment_id),
3974                                                                 payment_hash: payment_hash.clone(),
3975                                                                 payment_failed_permanently: !payment_retryable,
3976                                                                 network_update,
3977                                                                 all_paths_failed,
3978                                                                 path: path.clone(),
3979                                                                 short_channel_id,
3980                                                                 retry,
3981                                                                 #[cfg(test)]
3982                                                                 error_code: onion_error_code,
3983                                                                 #[cfg(test)]
3984                                                                 error_data: onion_error_data
3985                                                         }
3986                                                 }
3987                                         },
3988                                         &HTLCFailReason::Reason {
3989 #[cfg(test)]
3990                                                         ref failure_code,
3991 #[cfg(test)]
3992                                                         ref data,
3993                                                         .. } => {
3994                                                 // we get a fail_malformed_htlc from the first hop
3995                                                 // TODO: We'd like to generate a NetworkUpdate for temporary
3996                                                 // failures here, but that would be insufficient as find_route
3997                                                 // generally ignores its view of our own channels as we provide them via
3998                                                 // ChannelDetails.
3999                                                 // TODO: For non-temporary failures, we really should be closing the
4000                                                 // channel here as we apparently can't relay through them anyway.
4001                                                 let scid = path.first().unwrap().short_channel_id;
4002                                                 retry.as_mut().map(|r| r.payment_params.previously_failed_channels.push(scid));
4003
4004                                                 if self.payment_is_probe(payment_hash, &payment_id) {
4005                                                         events::Event::ProbeFailed {
4006                                                                 payment_id,
4007                                                                 payment_hash: payment_hash.clone(),
4008                                                                 path: path.clone(),
4009                                                                 short_channel_id: Some(scid),
4010                                                         }
4011                                                 } else {
4012                                                         events::Event::PaymentPathFailed {
4013                                                                 payment_id: Some(payment_id),
4014                                                                 payment_hash: payment_hash.clone(),
4015                                                                 payment_failed_permanently: false,
4016                                                                 network_update: None,
4017                                                                 all_paths_failed,
4018                                                                 path: path.clone(),
4019                                                                 short_channel_id: Some(scid),
4020                                                                 retry,
4021 #[cfg(test)]
4022                                                                 error_code: Some(*failure_code),
4023 #[cfg(test)]
4024                                                                 error_data: Some(data.clone()),
4025                                                         }
4026                                                 }
4027                                         }
4028                                 };
4029                                 let mut pending_events = self.pending_events.lock().unwrap();
4030                                 pending_events.push(path_failure);
4031                                 if let Some(ev) = full_failure_ev { pending_events.push(ev); }
4032                         },
4033                         HTLCSource::PreviousHopData(HTLCPreviousHopData { short_channel_id, htlc_id, incoming_packet_shared_secret, phantom_shared_secret, outpoint }) => {
4034                                 let err_packet = match onion_error {
4035                                         HTLCFailReason::Reason { failure_code, data } => {
4036                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards from us with code {}", log_bytes!(payment_hash.0), failure_code);
4037                                                 if let Some(phantom_ss) = phantom_shared_secret {
4038                                                         let phantom_packet = onion_utils::build_failure_packet(&phantom_ss, failure_code, &data[..]).encode();
4039                                                         let encrypted_phantom_packet = onion_utils::encrypt_failure_packet(&phantom_ss, &phantom_packet);
4040                                                         onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &encrypted_phantom_packet.data[..])
4041                                                 } else {
4042                                                         let packet = onion_utils::build_failure_packet(&incoming_packet_shared_secret, failure_code, &data[..]).encode();
4043                                                         onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &packet)
4044                                                 }
4045                                         },
4046                                         HTLCFailReason::LightningError { err } => {
4047                                                 log_trace!(self.logger, "Failing HTLC with payment_hash {} backwards with pre-built LightningError", log_bytes!(payment_hash.0));
4048                                                 onion_utils::encrypt_failure_packet(&incoming_packet_shared_secret, &err.data)
4049                                         }
4050                                 };
4051
4052                                 let mut forward_event = None;
4053                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
4054                                 if forward_htlcs.is_empty() {
4055                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS));
4056                                 }
4057                                 match forward_htlcs.entry(short_channel_id) {
4058                                         hash_map::Entry::Occupied(mut entry) => {
4059                                                 entry.get_mut().push(HTLCForwardInfo::FailHTLC { htlc_id, err_packet });
4060                                         },
4061                                         hash_map::Entry::Vacant(entry) => {
4062                                                 entry.insert(vec!(HTLCForwardInfo::FailHTLC { htlc_id, err_packet }));
4063                                         }
4064                                 }
4065                                 mem::drop(forward_htlcs);
4066                                 let mut pending_events = self.pending_events.lock().unwrap();
4067                                 if let Some(time) = forward_event {
4068                                         pending_events.push(events::Event::PendingHTLCsForwardable {
4069                                                 time_forwardable: time
4070                                         });
4071                                 }
4072                                 pending_events.push(events::Event::HTLCHandlingFailed {
4073                                         prev_channel_id: outpoint.to_channel_id(),
4074                                         failed_next_destination: destination
4075                                 });
4076                         },
4077                 }
4078         }
4079
4080         /// Provides a payment preimage in response to [`Event::PaymentReceived`], generating any
4081         /// [`MessageSendEvent`]s needed to claim the payment.
4082         ///
4083         /// Note that calling this method does *not* guarantee that the payment has been claimed. You
4084         /// *must* wait for an [`Event::PaymentClaimed`] event which upon a successful claim will be
4085         /// provided to your [`EventHandler`] when [`process_pending_events`] is next called.
4086         ///
4087         /// Note that if you did not set an `amount_msat` when calling [`create_inbound_payment`] or
4088         /// [`create_inbound_payment_for_hash`] you must check that the amount in the `PaymentReceived`
4089         /// event matches your expectation. If you fail to do so and call this method, you may provide
4090         /// the sender "proof-of-payment" when they did not fulfill the full expected payment.
4091         ///
4092         /// [`Event::PaymentReceived`]: crate::util::events::Event::PaymentReceived
4093         /// [`Event::PaymentClaimed`]: crate::util::events::Event::PaymentClaimed
4094         /// [`process_pending_events`]: EventsProvider::process_pending_events
4095         /// [`create_inbound_payment`]: Self::create_inbound_payment
4096         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
4097         /// [`get_and_clear_pending_msg_events`]: MessageSendEventsProvider::get_and_clear_pending_msg_events
4098         pub fn claim_funds(&self, payment_preimage: PaymentPreimage) {
4099                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4100
4101                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4102
4103                 let removed_source = self.channel_state.lock().unwrap().claimable_htlcs.remove(&payment_hash);
4104                 if let Some((payment_purpose, mut sources)) = removed_source {
4105                         assert!(!sources.is_empty());
4106
4107                         // If we are claiming an MPP payment, we have to take special care to ensure that each
4108                         // channel exists before claiming all of the payments (inside one lock).
4109                         // Note that channel existance is sufficient as we should always get a monitor update
4110                         // which will take care of the real HTLC claim enforcement.
4111                         //
4112                         // If we find an HTLC which we would need to claim but for which we do not have a
4113                         // channel, we will fail all parts of the MPP payment. While we could wait and see if
4114                         // the sender retries the already-failed path(s), it should be a pretty rare case where
4115                         // we got all the HTLCs and then a channel closed while we were waiting for the user to
4116                         // provide the preimage, so worrying too much about the optimal handling isn't worth
4117                         // it.
4118                         let mut claimable_amt_msat = 0;
4119                         let mut expected_amt_msat = None;
4120                         let mut valid_mpp = true;
4121                         let mut errs = Vec::new();
4122                         let mut claimed_any_htlcs = false;
4123                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4124                         let channel_state = &mut *channel_state_lock;
4125                         for htlc in sources.iter() {
4126                                 if let None = channel_state.short_to_chan_info.get(&htlc.prev_hop.short_channel_id) {
4127                                         valid_mpp = false;
4128                                         break;
4129                                 }
4130                                 if expected_amt_msat.is_some() && expected_amt_msat != Some(htlc.total_msat) {
4131                                         log_error!(self.logger, "Somehow ended up with an MPP payment with different total amounts - this should not be reachable!");
4132                                         debug_assert!(false);
4133                                         valid_mpp = false;
4134                                         break;
4135                                 }
4136                                 expected_amt_msat = Some(htlc.total_msat);
4137                                 if let OnionPayload::Spontaneous(_) = &htlc.onion_payload {
4138                                         // We don't currently support MPP for spontaneous payments, so just check
4139                                         // that there's one payment here and move on.
4140                                         if sources.len() != 1 {
4141                                                 log_error!(self.logger, "Somehow ended up with an MPP spontaneous payment - this should not be reachable!");
4142                                                 debug_assert!(false);
4143                                                 valid_mpp = false;
4144                                                 break;
4145                                         }
4146                                 }
4147
4148                                 claimable_amt_msat += htlc.value;
4149                         }
4150                         if sources.is_empty() || expected_amt_msat.is_none() {
4151                                 log_info!(self.logger, "Attempted to claim an incomplete payment which no longer had any available HTLCs!");
4152                                 return;
4153                         }
4154                         if claimable_amt_msat != expected_amt_msat.unwrap() {
4155                                 log_info!(self.logger, "Attempted to claim an incomplete payment, expected {} msat, had {} available to claim.",
4156                                         expected_amt_msat.unwrap(), claimable_amt_msat);
4157                                 return;
4158                         }
4159                         if valid_mpp {
4160                                 for htlc in sources.drain(..) {
4161                                         match self.claim_funds_from_hop(&mut channel_state_lock, htlc.prev_hop, payment_preimage) {
4162                                                 ClaimFundsFromHop::MonitorUpdateFail(pk, err, _) => {
4163                                                         if let msgs::ErrorAction::IgnoreError = err.err.action {
4164                                                                 // We got a temporary failure updating monitor, but will claim the
4165                                                                 // HTLC when the monitor updating is restored (or on chain).
4166                                                                 log_error!(self.logger, "Temporary failure claiming HTLC, treating as success: {}", err.err.err);
4167                                                                 claimed_any_htlcs = true;
4168                                                         } else { errs.push((pk, err)); }
4169                                                 },
4170                                                 ClaimFundsFromHop::PrevHopForceClosed => unreachable!("We already checked for channel existence, we can't fail here!"),
4171                                                 ClaimFundsFromHop::DuplicateClaim => {
4172                                                         // While we should never get here in most cases, if we do, it likely
4173                                                         // indicates that the HTLC was timed out some time ago and is no longer
4174                                                         // available to be claimed. Thus, it does not make sense to set
4175                                                         // `claimed_any_htlcs`.
4176                                                 },
4177                                                 ClaimFundsFromHop::Success(_) => claimed_any_htlcs = true,
4178                                         }
4179                                 }
4180                         }
4181                         mem::drop(channel_state_lock);
4182                         if !valid_mpp {
4183                                 for htlc in sources.drain(..) {
4184                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
4185                                         htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(
4186                                                 self.best_block.read().unwrap().height()));
4187                                         self.fail_htlc_backwards_internal(
4188                                                 HTLCSource::PreviousHopData(htlc.prev_hop), &payment_hash,
4189                                                 HTLCFailReason::Reason { failure_code: 0x4000|15, data: htlc_msat_height_data },
4190                                                 HTLCDestination::FailedPayment { payment_hash } );
4191                                 }
4192                         }
4193
4194                         if claimed_any_htlcs {
4195                                 self.pending_events.lock().unwrap().push(events::Event::PaymentClaimed {
4196                                         payment_hash,
4197                                         purpose: payment_purpose,
4198                                         amount_msat: claimable_amt_msat,
4199                                 });
4200                         }
4201
4202                         // Now we can handle any errors which were generated.
4203                         for (counterparty_node_id, err) in errs.drain(..) {
4204                                 let res: Result<(), _> = Err(err);
4205                                 let _ = handle_error!(self, res, counterparty_node_id);
4206                         }
4207                 }
4208         }
4209
4210         fn claim_funds_from_hop(&self, channel_state_lock: &mut MutexGuard<ChannelHolder<Signer>>, prev_hop: HTLCPreviousHopData, payment_preimage: PaymentPreimage) -> ClaimFundsFromHop {
4211                 //TODO: Delay the claimed_funds relaying just like we do outbound relay!
4212                 let channel_state = &mut **channel_state_lock;
4213                 let chan_id = match channel_state.short_to_chan_info.get(&prev_hop.short_channel_id) {
4214                         Some((_cp_id, chan_id)) => chan_id.clone(),
4215                         None => {
4216                                 return ClaimFundsFromHop::PrevHopForceClosed
4217                         }
4218                 };
4219
4220                 if let hash_map::Entry::Occupied(mut chan) = channel_state.by_id.entry(chan_id) {
4221                         match chan.get_mut().get_update_fulfill_htlc_and_commit(prev_hop.htlc_id, payment_preimage, &self.logger) {
4222                                 Ok(msgs_monitor_option) => {
4223                                         if let UpdateFulfillCommitFetch::NewClaim { msgs, htlc_value_msat, monitor_update } = msgs_monitor_option {
4224                                                 match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
4225                                                         ChannelMonitorUpdateStatus::Completed => {},
4226                                                         e => {
4227                                                                 log_given_level!(self.logger, if e == ChannelMonitorUpdateStatus::PermanentFailure { Level::Error } else { Level::Debug },
4228                                                                         "Failed to update channel monitor with preimage {:?}: {:?}",
4229                                                                         payment_preimage, e);
4230                                                                 return ClaimFundsFromHop::MonitorUpdateFail(
4231                                                                         chan.get().get_counterparty_node_id(),
4232                                                                         handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::CommitmentFirst, false, msgs.is_some()).unwrap_err(),
4233                                                                         Some(htlc_value_msat)
4234                                                                 );
4235                                                         }
4236                                                 }
4237                                                 if let Some((msg, commitment_signed)) = msgs {
4238                                                         log_debug!(self.logger, "Claiming funds for HTLC with preimage {} resulted in a commitment_signed for channel {}",
4239                                                                 log_bytes!(payment_preimage.0), log_bytes!(chan.get().channel_id()));
4240                                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4241                                                                 node_id: chan.get().get_counterparty_node_id(),
4242                                                                 updates: msgs::CommitmentUpdate {
4243                                                                         update_add_htlcs: Vec::new(),
4244                                                                         update_fulfill_htlcs: vec![msg],
4245                                                                         update_fail_htlcs: Vec::new(),
4246                                                                         update_fail_malformed_htlcs: Vec::new(),
4247                                                                         update_fee: None,
4248                                                                         commitment_signed,
4249                                                                 }
4250                                                         });
4251                                                 }
4252                                                 return ClaimFundsFromHop::Success(htlc_value_msat);
4253                                         } else {
4254                                                 return ClaimFundsFromHop::DuplicateClaim;
4255                                         }
4256                                 },
4257                                 Err((e, monitor_update)) => {
4258                                         match self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update) {
4259                                                 ChannelMonitorUpdateStatus::Completed => {},
4260                                                 e => {
4261                                                         log_given_level!(self.logger, if e == ChannelMonitorUpdateStatus::PermanentFailure { Level::Error } else { Level::Info },
4262                                                                 "Failed to update channel monitor with preimage {:?} immediately prior to force-close: {:?}",
4263                                                                 payment_preimage, e);
4264                                                 },
4265                                         }
4266                                         let counterparty_node_id = chan.get().get_counterparty_node_id();
4267                                         let (drop, res) = convert_chan_err!(self, e, channel_state.short_to_chan_info, chan.get_mut(), &chan_id);
4268                                         if drop {
4269                                                 chan.remove_entry();
4270                                         }
4271                                         return ClaimFundsFromHop::MonitorUpdateFail(counterparty_node_id, res, None);
4272                                 },
4273                         }
4274                 } else { unreachable!(); }
4275         }
4276
4277         fn finalize_claims(&self, mut sources: Vec<HTLCSource>) {
4278                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
4279                 let mut pending_events = self.pending_events.lock().unwrap();
4280                 for source in sources.drain(..) {
4281                         if let HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } = source {
4282                                 let mut session_priv_bytes = [0; 32];
4283                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
4284                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
4285                                         assert!(payment.get().is_fulfilled());
4286                                         if payment.get_mut().remove(&session_priv_bytes, None) {
4287                                                 pending_events.push(
4288                                                         events::Event::PaymentPathSuccessful {
4289                                                                 payment_id,
4290                                                                 payment_hash: payment.get().payment_hash(),
4291                                                                 path,
4292                                                         }
4293                                                 );
4294                                         }
4295                                 }
4296                         }
4297                 }
4298         }
4299
4300         fn claim_funds_internal(&self, mut channel_state_lock: MutexGuard<ChannelHolder<Signer>>, source: HTLCSource, payment_preimage: PaymentPreimage, forwarded_htlc_value_msat: Option<u64>, from_onchain: bool, next_channel_id: [u8; 32]) {
4301                 match source {
4302                         HTLCSource::OutboundRoute { session_priv, payment_id, path, .. } => {
4303                                 mem::drop(channel_state_lock);
4304                                 let mut session_priv_bytes = [0; 32];
4305                                 session_priv_bytes.copy_from_slice(&session_priv[..]);
4306                                 let mut outbounds = self.pending_outbound_payments.lock().unwrap();
4307                                 if let hash_map::Entry::Occupied(mut payment) = outbounds.entry(payment_id) {
4308                                         let mut pending_events = self.pending_events.lock().unwrap();
4309                                         if !payment.get().is_fulfilled() {
4310                                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
4311                                                 let fee_paid_msat = payment.get().get_pending_fee_msat();
4312                                                 pending_events.push(
4313                                                         events::Event::PaymentSent {
4314                                                                 payment_id: Some(payment_id),
4315                                                                 payment_preimage,
4316                                                                 payment_hash,
4317                                                                 fee_paid_msat,
4318                                                         }
4319                                                 );
4320                                                 payment.get_mut().mark_fulfilled();
4321                                         }
4322
4323                                         if from_onchain {
4324                                                 // We currently immediately remove HTLCs which were fulfilled on-chain.
4325                                                 // This could potentially lead to removing a pending payment too early,
4326                                                 // with a reorg of one block causing us to re-add the fulfilled payment on
4327                                                 // restart.
4328                                                 // TODO: We should have a second monitor event that informs us of payments
4329                                                 // irrevocably fulfilled.
4330                                                 if payment.get_mut().remove(&session_priv_bytes, Some(&path)) {
4331                                                         let payment_hash = Some(PaymentHash(Sha256::hash(&payment_preimage.0).into_inner()));
4332                                                         pending_events.push(
4333                                                                 events::Event::PaymentPathSuccessful {
4334                                                                         payment_id,
4335                                                                         payment_hash,
4336                                                                         path,
4337                                                                 }
4338                                                         );
4339                                                 }
4340                                         }
4341                                 } else {
4342                                         log_trace!(self.logger, "Received duplicative fulfill for HTLC with payment_preimage {}", log_bytes!(payment_preimage.0));
4343                                 }
4344                         },
4345                         HTLCSource::PreviousHopData(hop_data) => {
4346                                 let prev_outpoint = hop_data.outpoint;
4347                                 let res = self.claim_funds_from_hop(&mut channel_state_lock, hop_data, payment_preimage);
4348                                 let claimed_htlc = if let ClaimFundsFromHop::DuplicateClaim = res { false } else { true };
4349                                 let htlc_claim_value_msat = match res {
4350                                         ClaimFundsFromHop::MonitorUpdateFail(_, _, amt_opt) => amt_opt,
4351                                         ClaimFundsFromHop::Success(amt) => Some(amt),
4352                                         _ => None,
4353                                 };
4354                                 if let ClaimFundsFromHop::PrevHopForceClosed = res {
4355                                         let preimage_update = ChannelMonitorUpdate {
4356                                                 update_id: CLOSED_CHANNEL_UPDATE_ID,
4357                                                 updates: vec![ChannelMonitorUpdateStep::PaymentPreimage {
4358                                                         payment_preimage: payment_preimage.clone(),
4359                                                 }],
4360                                         };
4361                                         // We update the ChannelMonitor on the backward link, after
4362                                         // receiving an offchain preimage event from the forward link (the
4363                                         // event being update_fulfill_htlc).
4364                                         let update_res = self.chain_monitor.update_channel(prev_outpoint, preimage_update);
4365                                         if update_res != ChannelMonitorUpdateStatus::Completed {
4366                                                 // TODO: This needs to be handled somehow - if we receive a monitor update
4367                                                 // with a preimage we *must* somehow manage to propagate it to the upstream
4368                                                 // channel, or we must have an ability to receive the same event and try
4369                                                 // again on restart.
4370                                                 log_error!(self.logger, "Critical error: failed to update channel monitor with preimage {:?}: {:?}",
4371                                                         payment_preimage, update_res);
4372                                         }
4373                                         // Note that we do *not* set `claimed_htlc` to false here. In fact, this
4374                                         // totally could be a duplicate claim, but we have no way of knowing
4375                                         // without interrogating the `ChannelMonitor` we've provided the above
4376                                         // update to. Instead, we simply document in `PaymentForwarded` that this
4377                                         // can happen.
4378                                 }
4379                                 mem::drop(channel_state_lock);
4380                                 if let ClaimFundsFromHop::MonitorUpdateFail(pk, err, _) = res {
4381                                         let result: Result<(), _> = Err(err);
4382                                         let _ = handle_error!(self, result, pk);
4383                                 }
4384
4385                                 if claimed_htlc {
4386                                         if let Some(forwarded_htlc_value) = forwarded_htlc_value_msat {
4387                                                 let fee_earned_msat = if let Some(claimed_htlc_value) = htlc_claim_value_msat {
4388                                                         Some(claimed_htlc_value - forwarded_htlc_value)
4389                                                 } else { None };
4390
4391                                                 let mut pending_events = self.pending_events.lock().unwrap();
4392                                                 let prev_channel_id = Some(prev_outpoint.to_channel_id());
4393                                                 let next_channel_id = Some(next_channel_id);
4394
4395                                                 pending_events.push(events::Event::PaymentForwarded {
4396                                                         fee_earned_msat,
4397                                                         claim_from_onchain_tx: from_onchain,
4398                                                         prev_channel_id,
4399                                                         next_channel_id,
4400                                                 });
4401                                         }
4402                                 }
4403                         },
4404                 }
4405         }
4406
4407         /// Gets the node_id held by this ChannelManager
4408         pub fn get_our_node_id(&self) -> PublicKey {
4409                 self.our_network_pubkey.clone()
4410         }
4411
4412         fn channel_monitor_updated(&self, funding_txo: &OutPoint, highest_applied_update_id: u64) {
4413                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4414
4415                 let chan_restoration_res;
4416                 let (mut pending_failures, finalized_claims, counterparty_node_id) = {
4417                         let mut channel_lock = self.channel_state.lock().unwrap();
4418                         let channel_state = &mut *channel_lock;
4419                         let mut channel = match channel_state.by_id.entry(funding_txo.to_channel_id()) {
4420                                 hash_map::Entry::Occupied(chan) => chan,
4421                                 hash_map::Entry::Vacant(_) => return,
4422                         };
4423                         if !channel.get().is_awaiting_monitor_update() || channel.get().get_latest_monitor_update_id() != highest_applied_update_id {
4424                                 return;
4425                         }
4426
4427                         let counterparty_node_id = channel.get().get_counterparty_node_id();
4428                         let updates = channel.get_mut().monitor_updating_restored(&self.logger, self.get_our_node_id(), self.genesis_hash, self.best_block.read().unwrap().height());
4429                         let channel_update = if updates.channel_ready.is_some() && channel.get().is_usable() {
4430                                 // We only send a channel_update in the case where we are just now sending a
4431                                 // channel_ready and the channel is in a usable state. We may re-send a
4432                                 // channel_update later through the announcement_signatures process for public
4433                                 // channels, but there's no reason not to just inform our counterparty of our fees
4434                                 // now.
4435                                 if let Ok(msg) = self.get_channel_update_for_unicast(channel.get()) {
4436                                         Some(events::MessageSendEvent::SendChannelUpdate {
4437                                                 node_id: channel.get().get_counterparty_node_id(),
4438                                                 msg,
4439                                         })
4440                                 } else { None }
4441                         } else { None };
4442                         chan_restoration_res = handle_chan_restoration_locked!(self, channel_lock, channel_state, channel, updates.raa, updates.commitment_update, updates.order, None, updates.accepted_htlcs, updates.funding_broadcastable, updates.channel_ready, updates.announcement_sigs);
4443                         if let Some(upd) = channel_update {
4444                                 channel_state.pending_msg_events.push(upd);
4445                         }
4446
4447                         (updates.failed_htlcs, updates.finalized_claimed_htlcs, counterparty_node_id)
4448                 };
4449                 post_handle_chan_restoration!(self, chan_restoration_res);
4450                 self.finalize_claims(finalized_claims);
4451                 for failure in pending_failures.drain(..) {
4452                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id: funding_txo.to_channel_id() };
4453                         self.fail_htlc_backwards_internal(failure.0, &failure.1, failure.2, receiver);
4454                 }
4455         }
4456
4457         /// Accepts a request to open a channel after a [`Event::OpenChannelRequest`].
4458         ///
4459         /// The `temporary_channel_id` parameter indicates which inbound channel should be accepted,
4460         /// and the `counterparty_node_id` parameter is the id of the peer which has requested to open
4461         /// the channel.
4462         ///
4463         /// The `user_channel_id` parameter will be provided back in
4464         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4465         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4466         ///
4467         /// Note that this method will return an error and reject the channel, if it requires support
4468         /// for zero confirmations. Instead, `accept_inbound_channel_from_trusted_peer_0conf` must be
4469         /// used to accept such channels.
4470         ///
4471         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4472         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4473         pub fn accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u64) -> Result<(), APIError> {
4474                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, false, user_channel_id)
4475         }
4476
4477         /// Accepts a request to open a channel after a [`events::Event::OpenChannelRequest`], treating
4478         /// it as confirmed immediately.
4479         ///
4480         /// The `user_channel_id` parameter will be provided back in
4481         /// [`Event::ChannelClosed::user_channel_id`] to allow tracking of which events correspond
4482         /// with which `accept_inbound_channel`/`accept_inbound_channel_from_trusted_peer_0conf` call.
4483         ///
4484         /// Unlike [`ChannelManager::accept_inbound_channel`], this method accepts the incoming channel
4485         /// and (if the counterparty agrees), enables forwarding of payments immediately.
4486         ///
4487         /// This fully trusts that the counterparty has honestly and correctly constructed the funding
4488         /// transaction and blindly assumes that it will eventually confirm.
4489         ///
4490         /// If it does not confirm before we decide to close the channel, or if the funding transaction
4491         /// does not pay to the correct script the correct amount, *you will lose funds*.
4492         ///
4493         /// [`Event::OpenChannelRequest`]: events::Event::OpenChannelRequest
4494         /// [`Event::ChannelClosed::user_channel_id`]: events::Event::ChannelClosed::user_channel_id
4495         pub fn accept_inbound_channel_from_trusted_peer_0conf(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, user_channel_id: u64) -> Result<(), APIError> {
4496                 self.do_accept_inbound_channel(temporary_channel_id, counterparty_node_id, true, user_channel_id)
4497         }
4498
4499         fn do_accept_inbound_channel(&self, temporary_channel_id: &[u8; 32], counterparty_node_id: &PublicKey, accept_0conf: bool, user_channel_id: u64) -> Result<(), APIError> {
4500                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
4501
4502                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4503                 let channel_state = &mut *channel_state_lock;
4504                 match channel_state.by_id.entry(temporary_channel_id.clone()) {
4505                         hash_map::Entry::Occupied(mut channel) => {
4506                                 if !channel.get().inbound_is_awaiting_accept() {
4507                                         return Err(APIError::APIMisuseError { err: "The channel isn't currently awaiting to be accepted.".to_owned() });
4508                                 }
4509                                 if *counterparty_node_id != channel.get().get_counterparty_node_id() {
4510                                         return Err(APIError::APIMisuseError { err: "The passed counterparty_node_id doesn't match the channel's counterparty node_id".to_owned() });
4511                                 }
4512                                 if accept_0conf {
4513                                         channel.get_mut().set_0conf();
4514                                 } else if channel.get().get_channel_type().requires_zero_conf() {
4515                                         let send_msg_err_event = events::MessageSendEvent::HandleError {
4516                                                 node_id: channel.get().get_counterparty_node_id(),
4517                                                 action: msgs::ErrorAction::SendErrorMessage{
4518                                                         msg: msgs::ErrorMessage { channel_id: temporary_channel_id.clone(), data: "No zero confirmation channels accepted".to_owned(), }
4519                                                 }
4520                                         };
4521                                         channel_state.pending_msg_events.push(send_msg_err_event);
4522                                         let _ = remove_channel!(self, channel_state, channel);
4523                                         return Err(APIError::APIMisuseError { err: "Please use accept_inbound_channel_from_trusted_peer_0conf to accept channels with zero confirmations.".to_owned() });
4524                                 }
4525
4526                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4527                                         node_id: channel.get().get_counterparty_node_id(),
4528                                         msg: channel.get_mut().accept_inbound_channel(user_channel_id),
4529                                 });
4530                         }
4531                         hash_map::Entry::Vacant(_) => {
4532                                 return Err(APIError::ChannelUnavailable { err: "Can't accept a channel that doesn't exist".to_owned() });
4533                         }
4534                 }
4535                 Ok(())
4536         }
4537
4538         fn internal_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) -> Result<(), MsgHandleErrInternal> {
4539                 if msg.chain_hash != self.genesis_hash {
4540                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Unknown genesis block hash".to_owned(), msg.temporary_channel_id.clone()));
4541                 }
4542
4543                 if !self.default_configuration.accept_inbound_channels {
4544                         return Err(MsgHandleErrInternal::send_err_msg_no_close("No inbound channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4545                 }
4546
4547                 let outbound_scid_alias = self.create_and_insert_outbound_scid_alias();
4548                 let mut channel = match Channel::new_from_req(&self.fee_estimator, &self.keys_manager,
4549                         counterparty_node_id.clone(), &their_features, msg, 0, &self.default_configuration,
4550                         self.best_block.read().unwrap().height(), &self.logger, outbound_scid_alias)
4551                 {
4552                         Err(e) => {
4553                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4554                                 return Err(MsgHandleErrInternal::from_chan_no_close(e, msg.temporary_channel_id));
4555                         },
4556                         Ok(res) => res
4557                 };
4558                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4559                 let channel_state = &mut *channel_state_lock;
4560                 match channel_state.by_id.entry(channel.channel_id()) {
4561                         hash_map::Entry::Occupied(_) => {
4562                                 self.outbound_scid_aliases.lock().unwrap().remove(&outbound_scid_alias);
4563                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("temporary_channel_id collision!".to_owned(), msg.temporary_channel_id.clone()))
4564                         },
4565                         hash_map::Entry::Vacant(entry) => {
4566                                 if !self.default_configuration.manually_accept_inbound_channels {
4567                                         if channel.get_channel_type().requires_zero_conf() {
4568                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("No zero confirmation channels accepted".to_owned(), msg.temporary_channel_id.clone()));
4569                                         }
4570                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendAcceptChannel {
4571                                                 node_id: counterparty_node_id.clone(),
4572                                                 msg: channel.accept_inbound_channel(0),
4573                                         });
4574                                 } else {
4575                                         let mut pending_events = self.pending_events.lock().unwrap();
4576                                         pending_events.push(
4577                                                 events::Event::OpenChannelRequest {
4578                                                         temporary_channel_id: msg.temporary_channel_id.clone(),
4579                                                         counterparty_node_id: counterparty_node_id.clone(),
4580                                                         funding_satoshis: msg.funding_satoshis,
4581                                                         push_msat: msg.push_msat,
4582                                                         channel_type: channel.get_channel_type().clone(),
4583                                                 }
4584                                         );
4585                                 }
4586
4587                                 entry.insert(channel);
4588                         }
4589                 }
4590                 Ok(())
4591         }
4592
4593         fn internal_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) -> Result<(), MsgHandleErrInternal> {
4594                 let (value, output_script, user_id) = {
4595                         let mut channel_lock = self.channel_state.lock().unwrap();
4596                         let channel_state = &mut *channel_lock;
4597                         match channel_state.by_id.entry(msg.temporary_channel_id) {
4598                                 hash_map::Entry::Occupied(mut chan) => {
4599                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4600                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
4601                                         }
4602                                         try_chan_entry!(self, chan.get_mut().accept_channel(&msg, &self.default_configuration.channel_handshake_limits, &their_features), channel_state, chan);
4603                                         (chan.get().get_value_satoshis(), chan.get().get_funding_redeemscript().to_v0_p2wsh(), chan.get().get_user_id())
4604                                 },
4605                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
4606                         }
4607                 };
4608                 let mut pending_events = self.pending_events.lock().unwrap();
4609                 pending_events.push(events::Event::FundingGenerationReady {
4610                         temporary_channel_id: msg.temporary_channel_id,
4611                         counterparty_node_id: *counterparty_node_id,
4612                         channel_value_satoshis: value,
4613                         output_script,
4614                         user_channel_id: user_id,
4615                 });
4616                 Ok(())
4617         }
4618
4619         fn internal_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) -> Result<(), MsgHandleErrInternal> {
4620                 let ((funding_msg, monitor, mut channel_ready), mut chan) = {
4621                         let best_block = *self.best_block.read().unwrap();
4622                         let mut channel_lock = self.channel_state.lock().unwrap();
4623                         let channel_state = &mut *channel_lock;
4624                         match channel_state.by_id.entry(msg.temporary_channel_id.clone()) {
4625                                 hash_map::Entry::Occupied(mut chan) => {
4626                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4627                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.temporary_channel_id));
4628                                         }
4629                                         (try_chan_entry!(self, chan.get_mut().funding_created(msg, best_block, &self.logger), channel_state, chan), chan.remove())
4630                                 },
4631                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.temporary_channel_id))
4632                         }
4633                 };
4634                 // Because we have exclusive ownership of the channel here we can release the channel_state
4635                 // lock before watch_channel
4636                 match self.chain_monitor.watch_channel(monitor.get_funding_txo().0, monitor) {
4637                         ChannelMonitorUpdateStatus::Completed => {},
4638                         ChannelMonitorUpdateStatus::PermanentFailure => {
4639                                 // Note that we reply with the new channel_id in error messages if we gave up on the
4640                                 // channel, not the temporary_channel_id. This is compatible with ourselves, but the
4641                                 // spec is somewhat ambiguous here. Not a huge deal since we'll send error messages for
4642                                 // any messages referencing a previously-closed channel anyway.
4643                                 // We do not propagate the monitor update to the user as it would be for a monitor
4644                                 // that we didn't manage to store (and that we don't care about - we don't respond
4645                                 // with the funding_signed so the channel can never go on chain).
4646                                 let (_monitor_update, failed_htlcs) = chan.force_shutdown(false);
4647                                 assert!(failed_htlcs.is_empty());
4648                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("ChannelMonitor storage failure".to_owned(), funding_msg.channel_id));
4649                         },
4650                         ChannelMonitorUpdateStatus::InProgress => {
4651                                 // There's no problem signing a counterparty's funding transaction if our monitor
4652                                 // hasn't persisted to disk yet - we can't lose money on a transaction that we haven't
4653                                 // accepted payment from yet. We do, however, need to wait to send our channel_ready
4654                                 // until we have persisted our monitor.
4655                                 chan.monitor_updating_paused(false, false, channel_ready.is_some(), Vec::new(), Vec::new(), Vec::new());
4656                                 channel_ready = None; // Don't send the channel_ready now
4657                         },
4658                 }
4659                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4660                 let channel_state = &mut *channel_state_lock;
4661                 match channel_state.by_id.entry(funding_msg.channel_id) {
4662                         hash_map::Entry::Occupied(_) => {
4663                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Already had channel with the new channel_id".to_owned(), funding_msg.channel_id))
4664                         },
4665                         hash_map::Entry::Vacant(e) => {
4666                                 let mut id_to_peer = self.id_to_peer.lock().unwrap();
4667                                 match id_to_peer.entry(chan.channel_id()) {
4668                                         hash_map::Entry::Occupied(_) => {
4669                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close(
4670                                                         "The funding_created message had the same funding_txid as an existing channel - funding is not possible".to_owned(),
4671                                                         funding_msg.channel_id))
4672                                         },
4673                                         hash_map::Entry::Vacant(i_e) => {
4674                                                 i_e.insert(chan.get_counterparty_node_id());
4675                                         }
4676                                 }
4677                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendFundingSigned {
4678                                         node_id: counterparty_node_id.clone(),
4679                                         msg: funding_msg,
4680                                 });
4681                                 if let Some(msg) = channel_ready {
4682                                         send_channel_ready!(channel_state.short_to_chan_info, channel_state.pending_msg_events, chan, msg);
4683                                 }
4684                                 e.insert(chan);
4685                         }
4686                 }
4687                 Ok(())
4688         }
4689
4690         fn internal_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) -> Result<(), MsgHandleErrInternal> {
4691                 let funding_tx = {
4692                         let best_block = *self.best_block.read().unwrap();
4693                         let mut channel_lock = self.channel_state.lock().unwrap();
4694                         let channel_state = &mut *channel_lock;
4695                         match channel_state.by_id.entry(msg.channel_id) {
4696                                 hash_map::Entry::Occupied(mut chan) => {
4697                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4698                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4699                                         }
4700                                         let (monitor, funding_tx, channel_ready) = match chan.get_mut().funding_signed(&msg, best_block, &self.logger) {
4701                                                 Ok(update) => update,
4702                                                 Err(e) => try_chan_entry!(self, Err(e), channel_state, chan),
4703                                         };
4704                                         match self.chain_monitor.watch_channel(chan.get().get_funding_txo().unwrap(), monitor) {
4705                                                 ChannelMonitorUpdateStatus::Completed => {},
4706                                                 e => {
4707                                                         let mut res = handle_monitor_update_res!(self, e, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, channel_ready.is_some(), OPTIONALLY_RESEND_FUNDING_LOCKED);
4708                                                         if let Err(MsgHandleErrInternal { ref mut shutdown_finish, .. }) = res {
4709                                                                 // We weren't able to watch the channel to begin with, so no updates should be made on
4710                                                                 // it. Previously, full_stack_target found an (unreachable) panic when the
4711                                                                 // monitor update contained within `shutdown_finish` was applied.
4712                                                                 if let Some((ref mut shutdown_finish, _)) = shutdown_finish {
4713                                                                         shutdown_finish.0.take();
4714                                                                 }
4715                                                         }
4716                                                         return res
4717                                                 },
4718                                         }
4719                                         if let Some(msg) = channel_ready {
4720                                                 send_channel_ready!(channel_state.short_to_chan_info, channel_state.pending_msg_events, chan.get(), msg);
4721                                         }
4722                                         funding_tx
4723                                 },
4724                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4725                         }
4726                 };
4727                 log_info!(self.logger, "Broadcasting funding transaction with txid {}", funding_tx.txid());
4728                 self.tx_broadcaster.broadcast_transaction(&funding_tx);
4729                 Ok(())
4730         }
4731
4732         fn internal_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) -> Result<(), MsgHandleErrInternal> {
4733                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4734                 let channel_state = &mut *channel_state_lock;
4735                 match channel_state.by_id.entry(msg.channel_id) {
4736                         hash_map::Entry::Occupied(mut chan) => {
4737                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4738                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4739                                 }
4740                                 let announcement_sigs_opt = try_chan_entry!(self, chan.get_mut().channel_ready(&msg, self.get_our_node_id(),
4741                                         self.genesis_hash.clone(), &self.best_block.read().unwrap(), &self.logger), channel_state, chan);
4742                                 if let Some(announcement_sigs) = announcement_sigs_opt {
4743                                         log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(chan.get().channel_id()));
4744                                         channel_state.pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
4745                                                 node_id: counterparty_node_id.clone(),
4746                                                 msg: announcement_sigs,
4747                                         });
4748                                 } else if chan.get().is_usable() {
4749                                         // If we're sending an announcement_signatures, we'll send the (public)
4750                                         // channel_update after sending a channel_announcement when we receive our
4751                                         // counterparty's announcement_signatures. Thus, we only bother to send a
4752                                         // channel_update here if the channel is not public, i.e. we're not sending an
4753                                         // announcement_signatures.
4754                                         log_trace!(self.logger, "Sending private initial channel_update for our counterparty on channel {}", log_bytes!(chan.get().channel_id()));
4755                                         if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
4756                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
4757                                                         node_id: counterparty_node_id.clone(),
4758                                                         msg,
4759                                                 });
4760                                         }
4761                                 }
4762                                 Ok(())
4763                         },
4764                         hash_map::Entry::Vacant(_) => Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4765                 }
4766         }
4767
4768         fn internal_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) -> Result<(), MsgHandleErrInternal> {
4769                 let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
4770                 let result: Result<(), _> = loop {
4771                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4772                         let channel_state = &mut *channel_state_lock;
4773
4774                         match channel_state.by_id.entry(msg.channel_id.clone()) {
4775                                 hash_map::Entry::Occupied(mut chan_entry) => {
4776                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
4777                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4778                                         }
4779
4780                                         if !chan_entry.get().received_shutdown() {
4781                                                 log_info!(self.logger, "Received a shutdown message from our counterparty for channel {}{}.",
4782                                                         log_bytes!(msg.channel_id),
4783                                                         if chan_entry.get().sent_shutdown() { " after we initiated shutdown" } else { "" });
4784                                         }
4785
4786                                         let (shutdown, monitor_update, htlcs) = try_chan_entry!(self, chan_entry.get_mut().shutdown(&self.keys_manager, &their_features, &msg), channel_state, chan_entry);
4787                                         dropped_htlcs = htlcs;
4788
4789                                         // Update the monitor with the shutdown script if necessary.
4790                                         if let Some(monitor_update) = monitor_update {
4791                                                 let update_res = self.chain_monitor.update_channel(chan_entry.get().get_funding_txo().unwrap(), monitor_update);
4792                                                 let (result, is_permanent) =
4793                                                         handle_monitor_update_res!(self, update_res, channel_state.short_to_chan_info, chan_entry.get_mut(), RAACommitmentOrder::CommitmentFirst, chan_entry.key(), NO_UPDATE);
4794                                                 if is_permanent {
4795                                                         remove_channel!(self, channel_state, chan_entry);
4796                                                         break result;
4797                                                 }
4798                                         }
4799
4800                                         if let Some(msg) = shutdown {
4801                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
4802                                                         node_id: *counterparty_node_id,
4803                                                         msg,
4804                                                 });
4805                                         }
4806
4807                                         break Ok(());
4808                                 },
4809                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4810                         }
4811                 };
4812                 for htlc_source in dropped_htlcs.drain(..) {
4813                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id.clone()), channel_id: msg.channel_id };
4814                         self.fail_htlc_backwards_internal(htlc_source.0, &htlc_source.1, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
4815                 }
4816
4817                 let _ = handle_error!(self, result, *counterparty_node_id);
4818                 Ok(())
4819         }
4820
4821         fn internal_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) -> Result<(), MsgHandleErrInternal> {
4822                 let (tx, chan_option) = {
4823                         let mut channel_state_lock = self.channel_state.lock().unwrap();
4824                         let channel_state = &mut *channel_state_lock;
4825                         match channel_state.by_id.entry(msg.channel_id.clone()) {
4826                                 hash_map::Entry::Occupied(mut chan_entry) => {
4827                                         if chan_entry.get().get_counterparty_node_id() != *counterparty_node_id {
4828                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4829                                         }
4830                                         let (closing_signed, tx) = try_chan_entry!(self, chan_entry.get_mut().closing_signed(&self.fee_estimator, &msg), channel_state, chan_entry);
4831                                         if let Some(msg) = closing_signed {
4832                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
4833                                                         node_id: counterparty_node_id.clone(),
4834                                                         msg,
4835                                                 });
4836                                         }
4837                                         if tx.is_some() {
4838                                                 // We're done with this channel, we've got a signed closing transaction and
4839                                                 // will send the closing_signed back to the remote peer upon return. This
4840                                                 // also implies there are no pending HTLCs left on the channel, so we can
4841                                                 // fully delete it from tracking (the channel monitor is still around to
4842                                                 // watch for old state broadcasts)!
4843                                                 (tx, Some(remove_channel!(self, channel_state, chan_entry)))
4844                                         } else { (tx, None) }
4845                                 },
4846                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4847                         }
4848                 };
4849                 if let Some(broadcast_tx) = tx {
4850                         log_info!(self.logger, "Broadcasting {}", log_tx!(broadcast_tx));
4851                         self.tx_broadcaster.broadcast_transaction(&broadcast_tx);
4852                 }
4853                 if let Some(chan) = chan_option {
4854                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
4855                                 let mut channel_state = self.channel_state.lock().unwrap();
4856                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
4857                                         msg: update
4858                                 });
4859                         }
4860                         self.issue_channel_close_events(&chan, ClosureReason::CooperativeClosure);
4861                 }
4862                 Ok(())
4863         }
4864
4865         fn internal_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) -> Result<(), MsgHandleErrInternal> {
4866                 //TODO: BOLT 4 points out a specific attack where a peer may re-send an onion packet and
4867                 //determine the state of the payment based on our response/if we forward anything/the time
4868                 //we take to respond. We should take care to avoid allowing such an attack.
4869                 //
4870                 //TODO: There exists a further attack where a node may garble the onion data, forward it to
4871                 //us repeatedly garbled in different ways, and compare our error messages, which are
4872                 //encrypted with the same key. It's not immediately obvious how to usefully exploit that,
4873                 //but we should prevent it anyway.
4874
4875                 let pending_forward_info = self.decode_update_add_htlc_onion(msg);
4876                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4877                 let channel_state = &mut *channel_state_lock;
4878
4879                 match channel_state.by_id.entry(msg.channel_id) {
4880                         hash_map::Entry::Occupied(mut chan) => {
4881                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4882                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4883                                 }
4884
4885                                 let create_pending_htlc_status = |chan: &Channel<Signer>, pending_forward_info: PendingHTLCStatus, error_code: u16| {
4886                                         // If the update_add is completely bogus, the call will Err and we will close,
4887                                         // but if we've sent a shutdown and they haven't acknowledged it yet, we just
4888                                         // want to reject the new HTLC and fail it backwards instead of forwarding.
4889                                         match pending_forward_info {
4890                                                 PendingHTLCStatus::Forward(PendingHTLCInfo { ref incoming_shared_secret, .. }) => {
4891                                                         let reason = if (error_code & 0x1000) != 0 {
4892                                                                 let (real_code, error_data) = self.get_htlc_inbound_temp_fail_err_and_data(error_code, chan);
4893                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, real_code, &error_data)
4894                                                         } else {
4895                                                                 onion_utils::build_first_hop_failure_packet(incoming_shared_secret, error_code, &[])
4896                                                         };
4897                                                         let msg = msgs::UpdateFailHTLC {
4898                                                                 channel_id: msg.channel_id,
4899                                                                 htlc_id: msg.htlc_id,
4900                                                                 reason
4901                                                         };
4902                                                         PendingHTLCStatus::Fail(HTLCFailureMsg::Relay(msg))
4903                                                 },
4904                                                 _ => pending_forward_info
4905                                         }
4906                                 };
4907                                 try_chan_entry!(self, chan.get_mut().update_add_htlc(&msg, pending_forward_info, create_pending_htlc_status, &self.logger), channel_state, chan);
4908                         },
4909                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4910                 }
4911                 Ok(())
4912         }
4913
4914         fn internal_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) -> Result<(), MsgHandleErrInternal> {
4915                 let mut channel_lock = self.channel_state.lock().unwrap();
4916                 let (htlc_source, forwarded_htlc_value) = {
4917                         let channel_state = &mut *channel_lock;
4918                         match channel_state.by_id.entry(msg.channel_id) {
4919                                 hash_map::Entry::Occupied(mut chan) => {
4920                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4921                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4922                                         }
4923                                         try_chan_entry!(self, chan.get_mut().update_fulfill_htlc(&msg), channel_state, chan)
4924                                 },
4925                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4926                         }
4927                 };
4928                 self.claim_funds_internal(channel_lock, htlc_source, msg.payment_preimage.clone(), Some(forwarded_htlc_value), false, msg.channel_id);
4929                 Ok(())
4930         }
4931
4932         fn internal_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) -> Result<(), MsgHandleErrInternal> {
4933                 let mut channel_lock = self.channel_state.lock().unwrap();
4934                 let channel_state = &mut *channel_lock;
4935                 match channel_state.by_id.entry(msg.channel_id) {
4936                         hash_map::Entry::Occupied(mut chan) => {
4937                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4938                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4939                                 }
4940                                 try_chan_entry!(self, chan.get_mut().update_fail_htlc(&msg, HTLCFailReason::LightningError { err: msg.reason.clone() }), channel_state, chan);
4941                         },
4942                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4943                 }
4944                 Ok(())
4945         }
4946
4947         fn internal_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) -> Result<(), MsgHandleErrInternal> {
4948                 let mut channel_lock = self.channel_state.lock().unwrap();
4949                 let channel_state = &mut *channel_lock;
4950                 match channel_state.by_id.entry(msg.channel_id) {
4951                         hash_map::Entry::Occupied(mut chan) => {
4952                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4953                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4954                                 }
4955                                 if (msg.failure_code & 0x8000) == 0 {
4956                                         let chan_err: ChannelError = ChannelError::Close("Got update_fail_malformed_htlc with BADONION not set".to_owned());
4957                                         try_chan_entry!(self, Err(chan_err), channel_state, chan);
4958                                 }
4959                                 try_chan_entry!(self, chan.get_mut().update_fail_malformed_htlc(&msg, HTLCFailReason::Reason { failure_code: msg.failure_code, data: Vec::new() }), channel_state, chan);
4960                                 Ok(())
4961                         },
4962                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
4963                 }
4964         }
4965
4966         fn internal_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) -> Result<(), MsgHandleErrInternal> {
4967                 let mut channel_state_lock = self.channel_state.lock().unwrap();
4968                 let channel_state = &mut *channel_state_lock;
4969                 match channel_state.by_id.entry(msg.channel_id) {
4970                         hash_map::Entry::Occupied(mut chan) => {
4971                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
4972                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
4973                                 }
4974                                 let (revoke_and_ack, commitment_signed, monitor_update) =
4975                                         match chan.get_mut().commitment_signed(&msg, &self.logger) {
4976                                                 Err((None, e)) => try_chan_entry!(self, Err(e), channel_state, chan),
4977                                                 Err((Some(update), e)) => {
4978                                                         assert!(chan.get().is_awaiting_monitor_update());
4979                                                         let _ = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), update);
4980                                                         try_chan_entry!(self, Err(e), channel_state, chan);
4981                                                         unreachable!();
4982                                                 },
4983                                                 Ok(res) => res
4984                                         };
4985                                 let update_res = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), monitor_update);
4986                                 if let Err(e) = handle_monitor_update_res!(self, update_res, channel_state, chan, RAACommitmentOrder::RevokeAndACKFirst, true, commitment_signed.is_some()) {
4987                                         return Err(e);
4988                                 }
4989
4990                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendRevokeAndACK {
4991                                         node_id: counterparty_node_id.clone(),
4992                                         msg: revoke_and_ack,
4993                                 });
4994                                 if let Some(msg) = commitment_signed {
4995                                         channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
4996                                                 node_id: counterparty_node_id.clone(),
4997                                                 updates: msgs::CommitmentUpdate {
4998                                                         update_add_htlcs: Vec::new(),
4999                                                         update_fulfill_htlcs: Vec::new(),
5000                                                         update_fail_htlcs: Vec::new(),
5001                                                         update_fail_malformed_htlcs: Vec::new(),
5002                                                         update_fee: None,
5003                                                         commitment_signed: msg,
5004                                                 },
5005                                         });
5006                                 }
5007                                 Ok(())
5008                         },
5009                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5010                 }
5011         }
5012
5013         #[inline]
5014         fn forward_htlcs(&self, per_source_pending_forwards: &mut [(u64, OutPoint, Vec<(PendingHTLCInfo, u64)>)]) {
5015                 for &mut (prev_short_channel_id, prev_funding_outpoint, ref mut pending_forwards) in per_source_pending_forwards {
5016                         let mut forward_event = None;
5017                         if !pending_forwards.is_empty() {
5018                                 let mut forward_htlcs = self.forward_htlcs.lock().unwrap();
5019                                 if forward_htlcs.is_empty() {
5020                                         forward_event = Some(Duration::from_millis(MIN_HTLC_RELAY_HOLDING_CELL_MILLIS))
5021                                 }
5022                                 for (forward_info, prev_htlc_id) in pending_forwards.drain(..) {
5023                                         match forward_htlcs.entry(match forward_info.routing {
5024                                                         PendingHTLCRouting::Forward { short_channel_id, .. } => short_channel_id,
5025                                                         PendingHTLCRouting::Receive { .. } => 0,
5026                                                         PendingHTLCRouting::ReceiveKeysend { .. } => 0,
5027                                         }) {
5028                                                 hash_map::Entry::Occupied(mut entry) => {
5029                                                         entry.get_mut().push(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
5030                                                                                                         prev_htlc_id, forward_info });
5031                                                 },
5032                                                 hash_map::Entry::Vacant(entry) => {
5033                                                         entry.insert(vec!(HTLCForwardInfo::AddHTLC { prev_short_channel_id, prev_funding_outpoint,
5034                                                                                                      prev_htlc_id, forward_info }));
5035                                                 }
5036                                         }
5037                                 }
5038                         }
5039                         match forward_event {
5040                                 Some(time) => {
5041                                         let mut pending_events = self.pending_events.lock().unwrap();
5042                                         pending_events.push(events::Event::PendingHTLCsForwardable {
5043                                                 time_forwardable: time
5044                                         });
5045                                 }
5046                                 None => {},
5047                         }
5048                 }
5049         }
5050
5051         fn internal_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) -> Result<(), MsgHandleErrInternal> {
5052                 let mut htlcs_to_fail = Vec::new();
5053                 let res = loop {
5054                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5055                         let channel_state = &mut *channel_state_lock;
5056                         match channel_state.by_id.entry(msg.channel_id) {
5057                                 hash_map::Entry::Occupied(mut chan) => {
5058                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5059                                                 break Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5060                                         }
5061                                         let was_paused_for_mon_update = chan.get().is_awaiting_monitor_update();
5062                                         let raa_updates = break_chan_entry!(self,
5063                                                 chan.get_mut().revoke_and_ack(&msg, &self.logger), channel_state, chan);
5064                                         htlcs_to_fail = raa_updates.holding_cell_failed_htlcs;
5065                                         let update_res = self.chain_monitor.update_channel(chan.get().get_funding_txo().unwrap(), raa_updates.monitor_update);
5066                                         if was_paused_for_mon_update {
5067                                                 assert!(update_res != ChannelMonitorUpdateStatus::Completed);
5068                                                 assert!(raa_updates.commitment_update.is_none());
5069                                                 assert!(raa_updates.accepted_htlcs.is_empty());
5070                                                 assert!(raa_updates.failed_htlcs.is_empty());
5071                                                 assert!(raa_updates.finalized_claimed_htlcs.is_empty());
5072                                                 break Err(MsgHandleErrInternal::ignore_no_close("Existing pending monitor update prevented responses to RAA".to_owned()));
5073                                         }
5074                                         if update_res != ChannelMonitorUpdateStatus::Completed {
5075                                                 if let Err(e) = handle_monitor_update_res!(self, update_res, channel_state, chan,
5076                                                                 RAACommitmentOrder::CommitmentFirst, false,
5077                                                                 raa_updates.commitment_update.is_some(), false,
5078                                                                 raa_updates.accepted_htlcs, raa_updates.failed_htlcs,
5079                                                                 raa_updates.finalized_claimed_htlcs) {
5080                                                         break Err(e);
5081                                                 } else { unreachable!(); }
5082                                         }
5083                                         if let Some(updates) = raa_updates.commitment_update {
5084                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5085                                                         node_id: counterparty_node_id.clone(),
5086                                                         updates,
5087                                                 });
5088                                         }
5089                                         break Ok((raa_updates.accepted_htlcs, raa_updates.failed_htlcs,
5090                                                         raa_updates.finalized_claimed_htlcs,
5091                                                         chan.get().get_short_channel_id()
5092                                                                 .unwrap_or(chan.get().outbound_scid_alias()),
5093                                                         chan.get().get_funding_txo().unwrap()))
5094                                 },
5095                                 hash_map::Entry::Vacant(_) => break Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5096                         }
5097                 };
5098                 self.fail_holding_cell_htlcs(htlcs_to_fail, msg.channel_id, counterparty_node_id);
5099                 match res {
5100                         Ok((pending_forwards, mut pending_failures, finalized_claim_htlcs,
5101                                 short_channel_id, channel_outpoint)) =>
5102                         {
5103                                 for failure in pending_failures.drain(..) {
5104                                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(*counterparty_node_id), channel_id: channel_outpoint.to_channel_id() };
5105                                         self.fail_htlc_backwards_internal(failure.0, &failure.1, failure.2, receiver);
5106                                 }
5107                                 self.forward_htlcs(&mut [(short_channel_id, channel_outpoint, pending_forwards)]);
5108                                 self.finalize_claims(finalized_claim_htlcs);
5109                                 Ok(())
5110                         },
5111                         Err(e) => Err(e)
5112                 }
5113         }
5114
5115         fn internal_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) -> Result<(), MsgHandleErrInternal> {
5116                 let mut channel_lock = self.channel_state.lock().unwrap();
5117                 let channel_state = &mut *channel_lock;
5118                 match channel_state.by_id.entry(msg.channel_id) {
5119                         hash_map::Entry::Occupied(mut chan) => {
5120                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5121                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5122                                 }
5123                                 try_chan_entry!(self, chan.get_mut().update_fee(&self.fee_estimator, &msg), channel_state, chan);
5124                         },
5125                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5126                 }
5127                 Ok(())
5128         }
5129
5130         fn internal_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) -> Result<(), MsgHandleErrInternal> {
5131                 let mut channel_state_lock = self.channel_state.lock().unwrap();
5132                 let channel_state = &mut *channel_state_lock;
5133
5134                 match channel_state.by_id.entry(msg.channel_id) {
5135                         hash_map::Entry::Occupied(mut chan) => {
5136                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5137                                         return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5138                                 }
5139                                 if !chan.get().is_usable() {
5140                                         return Err(MsgHandleErrInternal::from_no_close(LightningError{err: "Got an announcement_signatures before we were ready for it".to_owned(), action: msgs::ErrorAction::IgnoreError}));
5141                                 }
5142
5143                                 channel_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5144                                         msg: try_chan_entry!(self, chan.get_mut().announcement_signatures(
5145                                                 self.get_our_node_id(), self.genesis_hash.clone(), self.best_block.read().unwrap().height(), msg), channel_state, chan),
5146                                         // Note that announcement_signatures fails if the channel cannot be announced,
5147                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5148                                         update_msg: self.get_channel_update_for_broadcast(chan.get()).unwrap(),
5149                                 });
5150                         },
5151                         hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5152                 }
5153                 Ok(())
5154         }
5155
5156         /// Returns ShouldPersist if anything changed, otherwise either SkipPersist or an Err.
5157         fn internal_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) -> Result<NotifyOption, MsgHandleErrInternal> {
5158                 let mut channel_state_lock = self.channel_state.lock().unwrap();
5159                 let channel_state = &mut *channel_state_lock;
5160                 let chan_id = match channel_state.short_to_chan_info.get(&msg.contents.short_channel_id) {
5161                         Some((_cp_id, chan_id)) => chan_id.clone(),
5162                         None => {
5163                                 // It's not a local channel
5164                                 return Ok(NotifyOption::SkipPersist)
5165                         }
5166                 };
5167                 match channel_state.by_id.entry(chan_id) {
5168                         hash_map::Entry::Occupied(mut chan) => {
5169                                 if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5170                                         if chan.get().should_announce() {
5171                                                 // If the announcement is about a channel of ours which is public, some
5172                                                 // other peer may simply be forwarding all its gossip to us. Don't provide
5173                                                 // a scary-looking error message and return Ok instead.
5174                                                 return Ok(NotifyOption::SkipPersist);
5175                                         }
5176                                         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));
5177                                 }
5178                                 let were_node_one = self.get_our_node_id().serialize()[..] < chan.get().get_counterparty_node_id().serialize()[..];
5179                                 let msg_from_node_one = msg.contents.flags & 1 == 0;
5180                                 if were_node_one == msg_from_node_one {
5181                                         return Ok(NotifyOption::SkipPersist);
5182                                 } else {
5183                                         log_debug!(self.logger, "Received channel_update for channel {}.", log_bytes!(chan_id));
5184                                         try_chan_entry!(self, chan.get_mut().channel_update(&msg), channel_state, chan);
5185                                 }
5186                         },
5187                         hash_map::Entry::Vacant(_) => unreachable!()
5188                 }
5189                 Ok(NotifyOption::DoPersist)
5190         }
5191
5192         fn internal_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) -> Result<(), MsgHandleErrInternal> {
5193                 let chan_restoration_res;
5194                 let (htlcs_failed_forward, need_lnd_workaround) = {
5195                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5196                         let channel_state = &mut *channel_state_lock;
5197
5198                         match channel_state.by_id.entry(msg.channel_id) {
5199                                 hash_map::Entry::Occupied(mut chan) => {
5200                                         if chan.get().get_counterparty_node_id() != *counterparty_node_id {
5201                                                 return Err(MsgHandleErrInternal::send_err_msg_no_close("Got a message for a channel from the wrong node!".to_owned(), msg.channel_id));
5202                                         }
5203                                         // Currently, we expect all holding cell update_adds to be dropped on peer
5204                                         // disconnect, so Channel's reestablish will never hand us any holding cell
5205                                         // freed HTLCs to fail backwards. If in the future we no longer drop pending
5206                                         // add-HTLCs on disconnect, we may be handed HTLCs to fail backwards here.
5207                                         let responses = try_chan_entry!(self, chan.get_mut().channel_reestablish(
5208                                                 msg, &self.logger, self.our_network_pubkey.clone(), self.genesis_hash,
5209                                                 &*self.best_block.read().unwrap()), channel_state, chan);
5210                                         let mut channel_update = None;
5211                                         if let Some(msg) = responses.shutdown_msg {
5212                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendShutdown {
5213                                                         node_id: counterparty_node_id.clone(),
5214                                                         msg,
5215                                                 });
5216                                         } else if chan.get().is_usable() {
5217                                                 // If the channel is in a usable state (ie the channel is not being shut
5218                                                 // down), send a unicast channel_update to our counterparty to make sure
5219                                                 // they have the latest channel parameters.
5220                                                 if let Ok(msg) = self.get_channel_update_for_unicast(chan.get()) {
5221                                                         channel_update = Some(events::MessageSendEvent::SendChannelUpdate {
5222                                                                 node_id: chan.get().get_counterparty_node_id(),
5223                                                                 msg,
5224                                                         });
5225                                                 }
5226                                         }
5227                                         let need_lnd_workaround = chan.get_mut().workaround_lnd_bug_4006.take();
5228                                         chan_restoration_res = handle_chan_restoration_locked!(
5229                                                 self, channel_state_lock, channel_state, chan, responses.raa, responses.commitment_update, responses.order,
5230                                                 responses.mon_update, Vec::new(), None, responses.channel_ready, responses.announcement_sigs);
5231                                         if let Some(upd) = channel_update {
5232                                                 channel_state.pending_msg_events.push(upd);
5233                                         }
5234                                         (responses.holding_cell_failed_htlcs, need_lnd_workaround)
5235                                 },
5236                                 hash_map::Entry::Vacant(_) => return Err(MsgHandleErrInternal::send_err_msg_no_close("Failed to find corresponding channel".to_owned(), msg.channel_id))
5237                         }
5238                 };
5239                 post_handle_chan_restoration!(self, chan_restoration_res);
5240                 self.fail_holding_cell_htlcs(htlcs_failed_forward, msg.channel_id, counterparty_node_id);
5241
5242                 if let Some(channel_ready_msg) = need_lnd_workaround {
5243                         self.internal_channel_ready(counterparty_node_id, &channel_ready_msg)?;
5244                 }
5245                 Ok(())
5246         }
5247
5248         /// Process pending events from the `chain::Watch`, returning whether any events were processed.
5249         fn process_pending_monitor_events(&self) -> bool {
5250                 let mut failed_channels = Vec::new();
5251                 let mut pending_monitor_events = self.chain_monitor.release_pending_monitor_events();
5252                 let has_pending_monitor_events = !pending_monitor_events.is_empty();
5253                 for (funding_outpoint, mut monitor_events, counterparty_node_id) in pending_monitor_events.drain(..) {
5254                         for monitor_event in monitor_events.drain(..) {
5255                                 match monitor_event {
5256                                         MonitorEvent::HTLCEvent(htlc_update) => {
5257                                                 if let Some(preimage) = htlc_update.payment_preimage {
5258                                                         log_trace!(self.logger, "Claiming HTLC with preimage {} from our monitor", log_bytes!(preimage.0));
5259                                                         self.claim_funds_internal(self.channel_state.lock().unwrap(), htlc_update.source, preimage, htlc_update.htlc_value_satoshis.map(|v| v * 1000), true, funding_outpoint.to_channel_id());
5260                                                 } else {
5261                                                         log_trace!(self.logger, "Failing HTLC with hash {} from our monitor", log_bytes!(htlc_update.payment_hash.0));
5262                                                         let receiver = HTLCDestination::NextHopChannel { node_id: counterparty_node_id, channel_id: funding_outpoint.to_channel_id() };
5263                                                         self.fail_htlc_backwards_internal(htlc_update.source, &htlc_update.payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
5264                                                 }
5265                                         },
5266                                         MonitorEvent::CommitmentTxConfirmed(funding_outpoint) |
5267                                         MonitorEvent::UpdateFailed(funding_outpoint) => {
5268                                                 let mut channel_lock = self.channel_state.lock().unwrap();
5269                                                 let channel_state = &mut *channel_lock;
5270                                                 let by_id = &mut channel_state.by_id;
5271                                                 let pending_msg_events = &mut channel_state.pending_msg_events;
5272                                                 if let hash_map::Entry::Occupied(chan_entry) = by_id.entry(funding_outpoint.to_channel_id()) {
5273                                                         let mut chan = remove_channel!(self, channel_state, chan_entry);
5274                                                         failed_channels.push(chan.force_shutdown(false));
5275                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5276                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5277                                                                         msg: update
5278                                                                 });
5279                                                         }
5280                                                         let reason = if let MonitorEvent::UpdateFailed(_) = monitor_event {
5281                                                                 ClosureReason::ProcessingError { err: "Failed to persist ChannelMonitor update during chain sync".to_string() }
5282                                                         } else {
5283                                                                 ClosureReason::CommitmentTxConfirmed
5284                                                         };
5285                                                         self.issue_channel_close_events(&chan, reason);
5286                                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5287                                                                 node_id: chan.get_counterparty_node_id(),
5288                                                                 action: msgs::ErrorAction::SendErrorMessage {
5289                                                                         msg: msgs::ErrorMessage { channel_id: chan.channel_id(), data: "Channel force-closed".to_owned() }
5290                                                                 },
5291                                                         });
5292                                                 }
5293                                         },
5294                                         MonitorEvent::Completed { funding_txo, monitor_update_id } => {
5295                                                 self.channel_monitor_updated(&funding_txo, monitor_update_id);
5296                                         },
5297                                 }
5298                         }
5299                 }
5300
5301                 for failure in failed_channels.drain(..) {
5302                         self.finish_force_close_channel(failure);
5303                 }
5304
5305                 has_pending_monitor_events
5306         }
5307
5308         /// In chanmon_consistency_target, we'd like to be able to restore monitor updating without
5309         /// handling all pending events (i.e. not PendingHTLCsForwardable). Thus, we expose monitor
5310         /// update events as a separate process method here.
5311         #[cfg(fuzzing)]
5312         pub fn process_monitor_events(&self) {
5313                 self.process_pending_monitor_events();
5314         }
5315
5316         /// Check the holding cell in each channel and free any pending HTLCs in them if possible.
5317         /// Returns whether there were any updates such as if pending HTLCs were freed or a monitor
5318         /// update was applied.
5319         ///
5320         /// This should only apply to HTLCs which were added to the holding cell because we were
5321         /// waiting on a monitor update to finish. In that case, we don't want to free the holding cell
5322         /// directly in `channel_monitor_updated` as it may introduce deadlocks calling back into user
5323         /// code to inform them of a channel monitor update.
5324         fn check_free_holding_cells(&self) -> bool {
5325                 let mut has_monitor_update = false;
5326                 let mut failed_htlcs = Vec::new();
5327                 let mut handle_errors = Vec::new();
5328                 {
5329                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5330                         let channel_state = &mut *channel_state_lock;
5331                         let by_id = &mut channel_state.by_id;
5332                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5333                         let pending_msg_events = &mut channel_state.pending_msg_events;
5334
5335                         by_id.retain(|channel_id, chan| {
5336                                 match chan.maybe_free_holding_cell_htlcs(&self.logger) {
5337                                         Ok((commitment_opt, holding_cell_failed_htlcs)) => {
5338                                                 if !holding_cell_failed_htlcs.is_empty() {
5339                                                         failed_htlcs.push((
5340                                                                 holding_cell_failed_htlcs,
5341                                                                 *channel_id,
5342                                                                 chan.get_counterparty_node_id()
5343                                                         ));
5344                                                 }
5345                                                 if let Some((commitment_update, monitor_update)) = commitment_opt {
5346                                                         match self.chain_monitor.update_channel(chan.get_funding_txo().unwrap(), monitor_update) {
5347                                                                 ChannelMonitorUpdateStatus::Completed => {
5348                                                                         pending_msg_events.push(events::MessageSendEvent::UpdateHTLCs {
5349                                                                                 node_id: chan.get_counterparty_node_id(),
5350                                                                                 updates: commitment_update,
5351                                                                         });
5352                                                                 },
5353                                                                 e => {
5354                                                                         has_monitor_update = true;
5355                                                                         let (res, close_channel) = handle_monitor_update_res!(self, e, short_to_chan_info, chan, RAACommitmentOrder::CommitmentFirst, channel_id, COMMITMENT_UPDATE_ONLY);
5356                                                                         handle_errors.push((chan.get_counterparty_node_id(), res));
5357                                                                         if close_channel { return false; }
5358                                                                 },
5359                                                         }
5360                                                 }
5361                                                 true
5362                                         },
5363                                         Err(e) => {
5364                                                 let (close_channel, res) = convert_chan_err!(self, e, short_to_chan_info, chan, channel_id);
5365                                                 handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5366                                                 // ChannelClosed event is generated by handle_error for us
5367                                                 !close_channel
5368                                         }
5369                                 }
5370                         });
5371                 }
5372
5373                 let has_update = has_monitor_update || !failed_htlcs.is_empty() || !handle_errors.is_empty();
5374                 for (failures, channel_id, counterparty_node_id) in failed_htlcs.drain(..) {
5375                         self.fail_holding_cell_htlcs(failures, channel_id, &counterparty_node_id);
5376                 }
5377
5378                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5379                         let _ = handle_error!(self, err, counterparty_node_id);
5380                 }
5381
5382                 has_update
5383         }
5384
5385         /// Check whether any channels have finished removing all pending updates after a shutdown
5386         /// exchange and can now send a closing_signed.
5387         /// Returns whether any closing_signed messages were generated.
5388         fn maybe_generate_initial_closing_signed(&self) -> bool {
5389                 let mut handle_errors: Vec<(PublicKey, Result<(), _>)> = Vec::new();
5390                 let mut has_update = false;
5391                 {
5392                         let mut channel_state_lock = self.channel_state.lock().unwrap();
5393                         let channel_state = &mut *channel_state_lock;
5394                         let by_id = &mut channel_state.by_id;
5395                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5396                         let pending_msg_events = &mut channel_state.pending_msg_events;
5397
5398                         by_id.retain(|channel_id, chan| {
5399                                 match chan.maybe_propose_closing_signed(&self.fee_estimator, &self.logger) {
5400                                         Ok((msg_opt, tx_opt)) => {
5401                                                 if let Some(msg) = msg_opt {
5402                                                         has_update = true;
5403                                                         pending_msg_events.push(events::MessageSendEvent::SendClosingSigned {
5404                                                                 node_id: chan.get_counterparty_node_id(), msg,
5405                                                         });
5406                                                 }
5407                                                 if let Some(tx) = tx_opt {
5408                                                         // We're done with this channel. We got a closing_signed and sent back
5409                                                         // a closing_signed with a closing transaction to broadcast.
5410                                                         if let Ok(update) = self.get_channel_update_for_broadcast(&chan) {
5411                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5412                                                                         msg: update
5413                                                                 });
5414                                                         }
5415
5416                                                         self.issue_channel_close_events(chan, ClosureReason::CooperativeClosure);
5417
5418                                                         log_info!(self.logger, "Broadcasting {}", log_tx!(tx));
5419                                                         self.tx_broadcaster.broadcast_transaction(&tx);
5420                                                         update_maps_on_chan_removal!(self, short_to_chan_info, chan);
5421                                                         false
5422                                                 } else { true }
5423                                         },
5424                                         Err(e) => {
5425                                                 has_update = true;
5426                                                 let (close_channel, res) = convert_chan_err!(self, e, short_to_chan_info, chan, channel_id);
5427                                                 handle_errors.push((chan.get_counterparty_node_id(), Err(res)));
5428                                                 !close_channel
5429                                         }
5430                                 }
5431                         });
5432                 }
5433
5434                 for (counterparty_node_id, err) in handle_errors.drain(..) {
5435                         let _ = handle_error!(self, err, counterparty_node_id);
5436                 }
5437
5438                 has_update
5439         }
5440
5441         /// Handle a list of channel failures during a block_connected or block_disconnected call,
5442         /// pushing the channel monitor update (if any) to the background events queue and removing the
5443         /// Channel object.
5444         fn handle_init_event_channel_failures(&self, mut failed_channels: Vec<ShutdownResult>) {
5445                 for mut failure in failed_channels.drain(..) {
5446                         // Either a commitment transactions has been confirmed on-chain or
5447                         // Channel::block_disconnected detected that the funding transaction has been
5448                         // reorganized out of the main chain.
5449                         // We cannot broadcast our latest local state via monitor update (as
5450                         // Channel::force_shutdown tries to make us do) as we may still be in initialization,
5451                         // so we track the update internally and handle it when the user next calls
5452                         // timer_tick_occurred, guaranteeing we're running normally.
5453                         if let Some((funding_txo, update)) = failure.0.take() {
5454                                 assert_eq!(update.updates.len(), 1);
5455                                 if let ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } = update.updates[0] {
5456                                         assert!(should_broadcast);
5457                                 } else { unreachable!(); }
5458                                 self.pending_background_events.lock().unwrap().push(BackgroundEvent::ClosingMonitorUpdate((funding_txo, update)));
5459                         }
5460                         self.finish_force_close_channel(failure);
5461                 }
5462         }
5463
5464         fn set_payment_hash_secret_map(&self, payment_hash: PaymentHash, payment_preimage: Option<PaymentPreimage>, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
5465                 assert!(invoice_expiry_delta_secs <= 60*60*24*365); // Sadly bitcoin timestamps are u32s, so panic before 2106
5466
5467                 if min_value_msat.is_some() && min_value_msat.unwrap() > MAX_VALUE_MSAT {
5468                         return Err(APIError::APIMisuseError { err: format!("min_value_msat of {} greater than total 21 million bitcoin supply", min_value_msat.unwrap()) });
5469                 }
5470
5471                 let payment_secret = PaymentSecret(self.keys_manager.get_secure_random_bytes());
5472
5473                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5474                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5475                 match payment_secrets.entry(payment_hash) {
5476                         hash_map::Entry::Vacant(e) => {
5477                                 e.insert(PendingInboundPayment {
5478                                         payment_secret, min_value_msat, payment_preimage,
5479                                         user_payment_id: 0, // For compatibility with version 0.0.103 and earlier
5480                                         // We assume that highest_seen_timestamp is pretty close to the current time -
5481                                         // it's updated when we receive a new block with the maximum time we've seen in
5482                                         // a header. It should never be more than two hours in the future.
5483                                         // Thus, we add two hours here as a buffer to ensure we absolutely
5484                                         // never fail a payment too early.
5485                                         // Note that we assume that received blocks have reasonably up-to-date
5486                                         // timestamps.
5487                                         expiry_time: self.highest_seen_timestamp.load(Ordering::Acquire) as u64 + invoice_expiry_delta_secs as u64 + 7200,
5488                                 });
5489                         },
5490                         hash_map::Entry::Occupied(_) => return Err(APIError::APIMisuseError { err: "Duplicate payment hash".to_owned() }),
5491                 }
5492                 Ok(payment_secret)
5493         }
5494
5495         /// Gets a payment secret and payment hash for use in an invoice given to a third party wishing
5496         /// to pay us.
5497         ///
5498         /// This differs from [`create_inbound_payment_for_hash`] only in that it generates the
5499         /// [`PaymentHash`] and [`PaymentPreimage`] for you.
5500         ///
5501         /// The [`PaymentPreimage`] will ultimately be returned to you in the [`PaymentReceived`], which
5502         /// will have the [`PaymentReceived::payment_preimage`] field filled in. That should then be
5503         /// passed directly to [`claim_funds`].
5504         ///
5505         /// See [`create_inbound_payment_for_hash`] for detailed documentation on behavior and requirements.
5506         ///
5507         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5508         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5509         ///
5510         /// # Note
5511         ///
5512         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5513         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5514         ///
5515         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5516         ///
5517         /// [`claim_funds`]: Self::claim_funds
5518         /// [`PaymentReceived`]: events::Event::PaymentReceived
5519         /// [`PaymentReceived::payment_preimage`]: events::Event::PaymentReceived::payment_preimage
5520         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5521         pub fn create_inbound_payment(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), ()> {
5522                 inbound_payment::create(&self.inbound_payment_key, min_value_msat, invoice_expiry_delta_secs, &self.keys_manager, self.highest_seen_timestamp.load(Ordering::Acquire) as u64)
5523         }
5524
5525         /// Legacy version of [`create_inbound_payment`]. Use this method if you wish to share
5526         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5527         ///
5528         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5529         ///
5530         /// # Note
5531         /// This method is deprecated and will be removed soon.
5532         ///
5533         /// [`create_inbound_payment`]: Self::create_inbound_payment
5534         #[deprecated]
5535         pub fn create_inbound_payment_legacy(&self, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<(PaymentHash, PaymentSecret), APIError> {
5536                 let payment_preimage = PaymentPreimage(self.keys_manager.get_secure_random_bytes());
5537                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0).into_inner());
5538                 let payment_secret = self.set_payment_hash_secret_map(payment_hash, Some(payment_preimage), min_value_msat, invoice_expiry_delta_secs)?;
5539                 Ok((payment_hash, payment_secret))
5540         }
5541
5542         /// Gets a [`PaymentSecret`] for a given [`PaymentHash`], for which the payment preimage is
5543         /// stored external to LDK.
5544         ///
5545         /// A [`PaymentReceived`] event will only be generated if the [`PaymentSecret`] matches a
5546         /// payment secret fetched via this method or [`create_inbound_payment`], and which is at least
5547         /// the `min_value_msat` provided here, if one is provided.
5548         ///
5549         /// The [`PaymentHash`] (and corresponding [`PaymentPreimage`]) should be globally unique, though
5550         /// note that LDK will not stop you from registering duplicate payment hashes for inbound
5551         /// payments.
5552         ///
5553         /// `min_value_msat` should be set if the invoice being generated contains a value. Any payment
5554         /// received for the returned [`PaymentHash`] will be required to be at least `min_value_msat`
5555         /// before a [`PaymentReceived`] event will be generated, ensuring that we do not provide the
5556         /// sender "proof-of-payment" unless they have paid the required amount.
5557         ///
5558         /// `invoice_expiry_delta_secs` describes the number of seconds that the invoice is valid for
5559         /// in excess of the current time. This should roughly match the expiry time set in the invoice.
5560         /// After this many seconds, we will remove the inbound payment, resulting in any attempts to
5561         /// pay the invoice failing. The BOLT spec suggests 3,600 secs as a default validity time for
5562         /// invoices when no timeout is set.
5563         ///
5564         /// Note that we use block header time to time-out pending inbound payments (with some margin
5565         /// to compensate for the inaccuracy of block header timestamps). Thus, in practice we will
5566         /// accept a payment and generate a [`PaymentReceived`] event for some time after the expiry.
5567         /// If you need exact expiry semantics, you should enforce them upon receipt of
5568         /// [`PaymentReceived`].
5569         ///
5570         /// Note that invoices generated for inbound payments should have their `min_final_cltv_expiry`
5571         /// set to at least [`MIN_FINAL_CLTV_EXPIRY`].
5572         ///
5573         /// Note that a malicious eavesdropper can intuit whether an inbound payment was created by
5574         /// `create_inbound_payment` or `create_inbound_payment_for_hash` based on runtime.
5575         ///
5576         /// # Note
5577         ///
5578         /// If you register an inbound payment with this method, then serialize the `ChannelManager`, then
5579         /// deserialize it with a node running 0.0.103 and earlier, the payment will fail to be received.
5580         ///
5581         /// Errors if `min_value_msat` is greater than total bitcoin supply.
5582         ///
5583         /// [`create_inbound_payment`]: Self::create_inbound_payment
5584         /// [`PaymentReceived`]: events::Event::PaymentReceived
5585         pub fn create_inbound_payment_for_hash(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, ()> {
5586                 inbound_payment::create_from_hash(&self.inbound_payment_key, min_value_msat, payment_hash, invoice_expiry_delta_secs, self.highest_seen_timestamp.load(Ordering::Acquire) as u64)
5587         }
5588
5589         /// Legacy version of [`create_inbound_payment_for_hash`]. Use this method if you wish to share
5590         /// serialized state with LDK node(s) running 0.0.103 and earlier.
5591         ///
5592         /// May panic if `invoice_expiry_delta_secs` is greater than one year.
5593         ///
5594         /// # Note
5595         /// This method is deprecated and will be removed soon.
5596         ///
5597         /// [`create_inbound_payment_for_hash`]: Self::create_inbound_payment_for_hash
5598         #[deprecated]
5599         pub fn create_inbound_payment_for_hash_legacy(&self, payment_hash: PaymentHash, min_value_msat: Option<u64>, invoice_expiry_delta_secs: u32) -> Result<PaymentSecret, APIError> {
5600                 self.set_payment_hash_secret_map(payment_hash, None, min_value_msat, invoice_expiry_delta_secs)
5601         }
5602
5603         /// Gets an LDK-generated payment preimage from a payment hash and payment secret that were
5604         /// previously returned from [`create_inbound_payment`].
5605         ///
5606         /// [`create_inbound_payment`]: Self::create_inbound_payment
5607         pub fn get_payment_preimage(&self, payment_hash: PaymentHash, payment_secret: PaymentSecret) -> Result<PaymentPreimage, APIError> {
5608                 inbound_payment::get_payment_preimage(payment_hash, payment_secret, &self.inbound_payment_key)
5609         }
5610
5611         /// Gets a fake short channel id for use in receiving [phantom node payments]. These fake scids
5612         /// are used when constructing the phantom invoice's route hints.
5613         ///
5614         /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
5615         pub fn get_phantom_scid(&self) -> u64 {
5616                 let mut channel_state = self.channel_state.lock().unwrap();
5617                 let best_block = self.best_block.read().unwrap();
5618                 loop {
5619                         let scid_candidate = fake_scid::Namespace::Phantom.get_fake_scid(best_block.height(), &self.genesis_hash, &self.fake_scid_rand_bytes, &self.keys_manager);
5620                         // Ensure the generated scid doesn't conflict with a real channel.
5621                         match channel_state.short_to_chan_info.entry(scid_candidate) {
5622                                 hash_map::Entry::Occupied(_) => continue,
5623                                 hash_map::Entry::Vacant(_) => return scid_candidate
5624                         }
5625                 }
5626         }
5627
5628         /// Gets route hints for use in receiving [phantom node payments].
5629         ///
5630         /// [phantom node payments]: crate::chain::keysinterface::PhantomKeysManager
5631         pub fn get_phantom_route_hints(&self) -> PhantomRouteHints {
5632                 PhantomRouteHints {
5633                         channels: self.list_usable_channels(),
5634                         phantom_scid: self.get_phantom_scid(),
5635                         real_node_pubkey: self.get_our_node_id(),
5636                 }
5637         }
5638
5639         #[cfg(any(test, fuzzing, feature = "_test_utils"))]
5640         pub fn get_and_clear_pending_events(&self) -> Vec<events::Event> {
5641                 let events = core::cell::RefCell::new(Vec::new());
5642                 let event_handler = |event: &events::Event| events.borrow_mut().push(event.clone());
5643                 self.process_pending_events(&event_handler);
5644                 events.into_inner()
5645         }
5646
5647         #[cfg(test)]
5648         pub fn has_pending_payments(&self) -> bool {
5649                 !self.pending_outbound_payments.lock().unwrap().is_empty()
5650         }
5651
5652         #[cfg(test)]
5653         pub fn clear_pending_payments(&self) {
5654                 self.pending_outbound_payments.lock().unwrap().clear()
5655         }
5656 }
5657
5658 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> MessageSendEventsProvider for ChannelManager<Signer, M, T, K, F, L>
5659         where M::Target: chain::Watch<Signer>,
5660         T::Target: BroadcasterInterface,
5661         K::Target: KeysInterface<Signer = Signer>,
5662         F::Target: FeeEstimator,
5663                                 L::Target: Logger,
5664 {
5665         fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent> {
5666                 let events = RefCell::new(Vec::new());
5667                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
5668                         let mut result = NotifyOption::SkipPersist;
5669
5670                         // TODO: This behavior should be documented. It's unintuitive that we query
5671                         // ChannelMonitors when clearing other events.
5672                         if self.process_pending_monitor_events() {
5673                                 result = NotifyOption::DoPersist;
5674                         }
5675
5676                         if self.check_free_holding_cells() {
5677                                 result = NotifyOption::DoPersist;
5678                         }
5679                         if self.maybe_generate_initial_closing_signed() {
5680                                 result = NotifyOption::DoPersist;
5681                         }
5682
5683                         let mut pending_events = Vec::new();
5684                         let mut channel_state = self.channel_state.lock().unwrap();
5685                         mem::swap(&mut pending_events, &mut channel_state.pending_msg_events);
5686
5687                         if !pending_events.is_empty() {
5688                                 events.replace(pending_events);
5689                         }
5690
5691                         result
5692                 });
5693                 events.into_inner()
5694         }
5695 }
5696
5697 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> EventsProvider for ChannelManager<Signer, M, T, K, F, L>
5698 where
5699         M::Target: chain::Watch<Signer>,
5700         T::Target: BroadcasterInterface,
5701         K::Target: KeysInterface<Signer = Signer>,
5702         F::Target: FeeEstimator,
5703         L::Target: Logger,
5704 {
5705         /// Processes events that must be periodically handled.
5706         ///
5707         /// An [`EventHandler`] may safely call back to the provider in order to handle an event.
5708         /// However, it must not call [`Writeable::write`] as doing so would result in a deadlock.
5709         fn process_pending_events<H: Deref>(&self, handler: H) where H::Target: EventHandler {
5710                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
5711                         let mut result = NotifyOption::SkipPersist;
5712
5713                         // TODO: This behavior should be documented. It's unintuitive that we query
5714                         // ChannelMonitors when clearing other events.
5715                         if self.process_pending_monitor_events() {
5716                                 result = NotifyOption::DoPersist;
5717                         }
5718
5719                         let mut pending_events = mem::replace(&mut *self.pending_events.lock().unwrap(), vec![]);
5720                         if !pending_events.is_empty() {
5721                                 result = NotifyOption::DoPersist;
5722                         }
5723
5724                         for event in pending_events.drain(..) {
5725                                 handler.handle_event(&event);
5726                         }
5727
5728                         result
5729                 });
5730         }
5731 }
5732
5733 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> chain::Listen for ChannelManager<Signer, M, T, K, F, L>
5734 where
5735         M::Target: chain::Watch<Signer>,
5736         T::Target: BroadcasterInterface,
5737         K::Target: KeysInterface<Signer = Signer>,
5738         F::Target: FeeEstimator,
5739         L::Target: Logger,
5740 {
5741         fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
5742                 {
5743                         let best_block = self.best_block.read().unwrap();
5744                         assert_eq!(best_block.block_hash(), header.prev_blockhash,
5745                                 "Blocks must be connected in chain-order - the connected header must build on the last connected header");
5746                         assert_eq!(best_block.height(), height - 1,
5747                                 "Blocks must be connected in chain-order - the connected block height must be one greater than the previous height");
5748                 }
5749
5750                 self.transactions_confirmed(header, txdata, height);
5751                 self.best_block_updated(header, height);
5752         }
5753
5754         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
5755                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5756                 let new_height = height - 1;
5757                 {
5758                         let mut best_block = self.best_block.write().unwrap();
5759                         assert_eq!(best_block.block_hash(), header.block_hash(),
5760                                 "Blocks must be disconnected in chain-order - the disconnected header must be the last connected header");
5761                         assert_eq!(best_block.height(), height,
5762                                 "Blocks must be disconnected in chain-order - the disconnected block must have the correct height");
5763                         *best_block = BestBlock::new(header.prev_blockhash, new_height)
5764                 }
5765
5766                 self.do_chain_event(Some(new_height), |channel| channel.best_block_updated(new_height, header.time, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger));
5767         }
5768 }
5769
5770 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> chain::Confirm for ChannelManager<Signer, M, T, K, F, L>
5771 where
5772         M::Target: chain::Watch<Signer>,
5773         T::Target: BroadcasterInterface,
5774         K::Target: KeysInterface<Signer = Signer>,
5775         F::Target: FeeEstimator,
5776         L::Target: Logger,
5777 {
5778         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
5779                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5780                 // during initialization prior to the chain_monitor being fully configured in some cases.
5781                 // See the docs for `ChannelManagerReadArgs` for more.
5782
5783                 let block_hash = header.block_hash();
5784                 log_trace!(self.logger, "{} transactions included in block {} at height {} provided", txdata.len(), block_hash, height);
5785
5786                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5787                 self.do_chain_event(Some(height), |channel| channel.transactions_confirmed(&block_hash, height, txdata, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger)
5788                         .map(|(a, b)| (a, Vec::new(), b)));
5789
5790                 let last_best_block_height = self.best_block.read().unwrap().height();
5791                 if height < last_best_block_height {
5792                         let timestamp = self.highest_seen_timestamp.load(Ordering::Acquire);
5793                         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.get_our_node_id(), &self.logger));
5794                 }
5795         }
5796
5797         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
5798                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5799                 // during initialization prior to the chain_monitor being fully configured in some cases.
5800                 // See the docs for `ChannelManagerReadArgs` for more.
5801
5802                 let block_hash = header.block_hash();
5803                 log_trace!(self.logger, "New best block: {} at height {}", block_hash, height);
5804
5805                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5806
5807                 *self.best_block.write().unwrap() = BestBlock::new(block_hash, height);
5808
5809                 self.do_chain_event(Some(height), |channel| channel.best_block_updated(height, header.time, self.genesis_hash.clone(), self.get_our_node_id(), &self.logger));
5810
5811                 macro_rules! max_time {
5812                         ($timestamp: expr) => {
5813                                 loop {
5814                                         // Update $timestamp to be the max of its current value and the block
5815                                         // timestamp. This should keep us close to the current time without relying on
5816                                         // having an explicit local time source.
5817                                         // Just in case we end up in a race, we loop until we either successfully
5818                                         // update $timestamp or decide we don't need to.
5819                                         let old_serial = $timestamp.load(Ordering::Acquire);
5820                                         if old_serial >= header.time as usize { break; }
5821                                         if $timestamp.compare_exchange(old_serial, header.time as usize, Ordering::AcqRel, Ordering::Relaxed).is_ok() {
5822                                                 break;
5823                                         }
5824                                 }
5825                         }
5826                 }
5827                 max_time!(self.highest_seen_timestamp);
5828                 let mut payment_secrets = self.pending_inbound_payments.lock().unwrap();
5829                 payment_secrets.retain(|_, inbound_payment| {
5830                         inbound_payment.expiry_time > header.time as u64
5831                 });
5832         }
5833
5834         fn get_relevant_txids(&self) -> Vec<Txid> {
5835                 let channel_state = self.channel_state.lock().unwrap();
5836                 let mut res = Vec::with_capacity(channel_state.short_to_chan_info.len());
5837                 for chan in channel_state.by_id.values() {
5838                         if let Some(funding_txo) = chan.get_funding_txo() {
5839                                 res.push(funding_txo.txid);
5840                         }
5841                 }
5842                 res
5843         }
5844
5845         fn transaction_unconfirmed(&self, txid: &Txid) {
5846                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
5847                 self.do_chain_event(None, |channel| {
5848                         if let Some(funding_txo) = channel.get_funding_txo() {
5849                                 if funding_txo.txid == *txid {
5850                                         channel.funding_transaction_unconfirmed(&self.logger).map(|()| (None, Vec::new(), None))
5851                                 } else { Ok((None, Vec::new(), None)) }
5852                         } else { Ok((None, Vec::new(), None)) }
5853                 });
5854         }
5855 }
5856
5857 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelManager<Signer, M, T, K, F, L>
5858 where
5859         M::Target: chain::Watch<Signer>,
5860         T::Target: BroadcasterInterface,
5861         K::Target: KeysInterface<Signer = Signer>,
5862         F::Target: FeeEstimator,
5863         L::Target: Logger,
5864 {
5865         /// Calls a function which handles an on-chain event (blocks dis/connected, transactions
5866         /// un/confirmed, etc) on each channel, handling any resulting errors or messages generated by
5867         /// the function.
5868         fn do_chain_event<FN: Fn(&mut Channel<Signer>) -> Result<(Option<msgs::ChannelReady>, Vec<(HTLCSource, PaymentHash)>, Option<msgs::AnnouncementSignatures>), ClosureReason>>
5869                         (&self, height_opt: Option<u32>, f: FN) {
5870                 // Note that we MUST NOT end up calling methods on self.chain_monitor here - we're called
5871                 // during initialization prior to the chain_monitor being fully configured in some cases.
5872                 // See the docs for `ChannelManagerReadArgs` for more.
5873
5874                 let mut failed_channels = Vec::new();
5875                 let mut timed_out_htlcs = Vec::new();
5876                 {
5877                         let mut channel_lock = self.channel_state.lock().unwrap();
5878                         let channel_state = &mut *channel_lock;
5879                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
5880                         let pending_msg_events = &mut channel_state.pending_msg_events;
5881                         channel_state.by_id.retain(|_, channel| {
5882                                 let res = f(channel);
5883                                 if let Ok((channel_ready_opt, mut timed_out_pending_htlcs, announcement_sigs)) = res {
5884                                         for (source, payment_hash) in timed_out_pending_htlcs.drain(..) {
5885                                                 let (failure_code, data) = self.get_htlc_inbound_temp_fail_err_and_data(0x1000|14 /* expiry_too_soon */, &channel);
5886                                                 timed_out_htlcs.push((source, payment_hash, HTLCFailReason::Reason {
5887                                                         failure_code, data,
5888                                                 }, HTLCDestination::NextHopChannel { node_id: Some(channel.get_counterparty_node_id()), channel_id: channel.channel_id() }));
5889                                         }
5890                                         if let Some(channel_ready) = channel_ready_opt {
5891                                                 send_channel_ready!(short_to_chan_info, pending_msg_events, channel, channel_ready);
5892                                                 if channel.is_usable() {
5893                                                         log_trace!(self.logger, "Sending channel_ready with private initial channel_update for our counterparty on channel {}", log_bytes!(channel.channel_id()));
5894                                                         if let Ok(msg) = self.get_channel_update_for_unicast(channel) {
5895                                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelUpdate {
5896                                                                         node_id: channel.get_counterparty_node_id(),
5897                                                                         msg,
5898                                                                 });
5899                                                         }
5900                                                 } else {
5901                                                         log_trace!(self.logger, "Sending channel_ready WITHOUT channel_update for {}", log_bytes!(channel.channel_id()));
5902                                                 }
5903                                         }
5904                                         if let Some(announcement_sigs) = announcement_sigs {
5905                                                 log_trace!(self.logger, "Sending announcement_signatures for channel {}", log_bytes!(channel.channel_id()));
5906                                                 pending_msg_events.push(events::MessageSendEvent::SendAnnouncementSignatures {
5907                                                         node_id: channel.get_counterparty_node_id(),
5908                                                         msg: announcement_sigs,
5909                                                 });
5910                                                 if let Some(height) = height_opt {
5911                                                         if let Some(announcement) = channel.get_signed_channel_announcement(self.get_our_node_id(), self.genesis_hash, height) {
5912                                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelAnnouncement {
5913                                                                         msg: announcement,
5914                                                                         // Note that announcement_signatures fails if the channel cannot be announced,
5915                                                                         // so get_channel_update_for_broadcast will never fail by the time we get here.
5916                                                                         update_msg: self.get_channel_update_for_broadcast(channel).unwrap(),
5917                                                                 });
5918                                                         }
5919                                                 }
5920                                         }
5921                                         if channel.is_our_channel_ready() {
5922                                                 if let Some(real_scid) = channel.get_short_channel_id() {
5923                                                         // If we sent a 0conf channel_ready, and now have an SCID, we add it
5924                                                         // to the short_to_chan_info map here. Note that we check whether we
5925                                                         // can relay using the real SCID at relay-time (i.e.
5926                                                         // enforce option_scid_alias then), and if the funding tx is ever
5927                                                         // un-confirmed we force-close the channel, ensuring short_to_chan_info
5928                                                         // is always consistent.
5929                                                         let scid_insert = short_to_chan_info.insert(real_scid, (channel.get_counterparty_node_id(), channel.channel_id()));
5930                                                         assert!(scid_insert.is_none() || scid_insert.unwrap() == (channel.get_counterparty_node_id(), channel.channel_id()),
5931                                                                 "SCIDs should never collide - ensure you weren't behind by a full {} blocks when creating channels",
5932                                                                 fake_scid::MAX_SCID_BLOCKS_FROM_NOW);
5933                                                 }
5934                                         }
5935                                 } else if let Err(reason) = res {
5936                                         update_maps_on_chan_removal!(self, short_to_chan_info, channel);
5937                                         // It looks like our counterparty went on-chain or funding transaction was
5938                                         // reorged out of the main chain. Close the channel.
5939                                         failed_channels.push(channel.force_shutdown(true));
5940                                         if let Ok(update) = self.get_channel_update_for_broadcast(&channel) {
5941                                                 pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
5942                                                         msg: update
5943                                                 });
5944                                         }
5945                                         let reason_message = format!("{}", reason);
5946                                         self.issue_channel_close_events(channel, reason);
5947                                         pending_msg_events.push(events::MessageSendEvent::HandleError {
5948                                                 node_id: channel.get_counterparty_node_id(),
5949                                                 action: msgs::ErrorAction::SendErrorMessage { msg: msgs::ErrorMessage {
5950                                                         channel_id: channel.channel_id(),
5951                                                         data: reason_message,
5952                                                 } },
5953                                         });
5954                                         return false;
5955                                 }
5956                                 true
5957                         });
5958
5959                         if let Some(height) = height_opt {
5960                                 channel_state.claimable_htlcs.retain(|payment_hash, (_, htlcs)| {
5961                                         htlcs.retain(|htlc| {
5962                                                 // If height is approaching the number of blocks we think it takes us to get
5963                                                 // our commitment transaction confirmed before the HTLC expires, plus the
5964                                                 // number of blocks we generally consider it to take to do a commitment update,
5965                                                 // just give up on it and fail the HTLC.
5966                                                 if height >= htlc.cltv_expiry - HTLC_FAIL_BACK_BUFFER {
5967                                                         let mut htlc_msat_height_data = byte_utils::be64_to_array(htlc.value).to_vec();
5968                                                         htlc_msat_height_data.extend_from_slice(&byte_utils::be32_to_array(height));
5969
5970                                                         timed_out_htlcs.push((HTLCSource::PreviousHopData(htlc.prev_hop.clone()), payment_hash.clone(), HTLCFailReason::Reason {
5971                                                                 failure_code: 0x4000 | 15,
5972                                                                 data: htlc_msat_height_data
5973                                                         }, HTLCDestination::FailedPayment { payment_hash: payment_hash.clone() }));
5974                                                         false
5975                                                 } else { true }
5976                                         });
5977                                         !htlcs.is_empty() // Only retain this entry if htlcs has at least one entry.
5978                                 });
5979                         }
5980                 }
5981
5982                 self.handle_init_event_channel_failures(failed_channels);
5983
5984                 for (source, payment_hash, reason, destination) in timed_out_htlcs.drain(..) {
5985                         self.fail_htlc_backwards_internal(source, &payment_hash, reason, destination);
5986                 }
5987         }
5988
5989         /// Blocks until ChannelManager needs to be persisted or a timeout is reached. It returns a bool
5990         /// indicating whether persistence is necessary. Only one listener on
5991         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
5992         /// up.
5993         ///
5994         /// Note that this method is not available with the `no-std` feature.
5995         #[cfg(any(test, feature = "std"))]
5996         pub fn await_persistable_update_timeout(&self, max_wait: Duration) -> bool {
5997                 self.persistence_notifier.wait_timeout(max_wait)
5998         }
5999
6000         /// Blocks until ChannelManager needs to be persisted. Only one listener on
6001         /// `await_persistable_update` or `await_persistable_update_timeout` is guaranteed to be woken
6002         /// up.
6003         pub fn await_persistable_update(&self) {
6004                 self.persistence_notifier.wait()
6005         }
6006
6007         /// Gets a [`Future`] that completes when a persistable update is available. Note that
6008         /// callbacks registered on the [`Future`] MUST NOT call back into this [`ChannelManager`] and
6009         /// should instead register actions to be taken later.
6010         pub fn get_persistable_update_future(&self) -> Future {
6011                 self.persistence_notifier.get_future()
6012         }
6013
6014         #[cfg(any(test, feature = "_test_utils"))]
6015         pub fn get_persistence_condvar_value(&self) -> bool {
6016                 self.persistence_notifier.notify_pending()
6017         }
6018
6019         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
6020         /// [`chain::Confirm`] interfaces.
6021         pub fn current_best_block(&self) -> BestBlock {
6022                 self.best_block.read().unwrap().clone()
6023         }
6024 }
6025
6026 impl<Signer: Sign, M: Deref , T: Deref , K: Deref , F: Deref , L: Deref >
6027         ChannelMessageHandler for ChannelManager<Signer, M, T, K, F, L>
6028         where M::Target: chain::Watch<Signer>,
6029         T::Target: BroadcasterInterface,
6030         K::Target: KeysInterface<Signer = Signer>,
6031         F::Target: FeeEstimator,
6032         L::Target: Logger,
6033 {
6034         fn handle_open_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::OpenChannel) {
6035                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6036                 let _ = handle_error!(self, self.internal_open_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
6037         }
6038
6039         fn handle_accept_channel(&self, counterparty_node_id: &PublicKey, their_features: InitFeatures, msg: &msgs::AcceptChannel) {
6040                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6041                 let _ = handle_error!(self, self.internal_accept_channel(counterparty_node_id, their_features, msg), *counterparty_node_id);
6042         }
6043
6044         fn handle_funding_created(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingCreated) {
6045                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6046                 let _ = handle_error!(self, self.internal_funding_created(counterparty_node_id, msg), *counterparty_node_id);
6047         }
6048
6049         fn handle_funding_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::FundingSigned) {
6050                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6051                 let _ = handle_error!(self, self.internal_funding_signed(counterparty_node_id, msg), *counterparty_node_id);
6052         }
6053
6054         fn handle_channel_ready(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReady) {
6055                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6056                 let _ = handle_error!(self, self.internal_channel_ready(counterparty_node_id, msg), *counterparty_node_id);
6057         }
6058
6059         fn handle_shutdown(&self, counterparty_node_id: &PublicKey, their_features: &InitFeatures, msg: &msgs::Shutdown) {
6060                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6061                 let _ = handle_error!(self, self.internal_shutdown(counterparty_node_id, their_features, msg), *counterparty_node_id);
6062         }
6063
6064         fn handle_closing_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::ClosingSigned) {
6065                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6066                 let _ = handle_error!(self, self.internal_closing_signed(counterparty_node_id, msg), *counterparty_node_id);
6067         }
6068
6069         fn handle_update_add_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateAddHTLC) {
6070                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6071                 let _ = handle_error!(self, self.internal_update_add_htlc(counterparty_node_id, msg), *counterparty_node_id);
6072         }
6073
6074         fn handle_update_fulfill_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFulfillHTLC) {
6075                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6076                 let _ = handle_error!(self, self.internal_update_fulfill_htlc(counterparty_node_id, msg), *counterparty_node_id);
6077         }
6078
6079         fn handle_update_fail_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailHTLC) {
6080                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6081                 let _ = handle_error!(self, self.internal_update_fail_htlc(counterparty_node_id, msg), *counterparty_node_id);
6082         }
6083
6084         fn handle_update_fail_malformed_htlc(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFailMalformedHTLC) {
6085                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6086                 let _ = handle_error!(self, self.internal_update_fail_malformed_htlc(counterparty_node_id, msg), *counterparty_node_id);
6087         }
6088
6089         fn handle_commitment_signed(&self, counterparty_node_id: &PublicKey, msg: &msgs::CommitmentSigned) {
6090                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6091                 let _ = handle_error!(self, self.internal_commitment_signed(counterparty_node_id, msg), *counterparty_node_id);
6092         }
6093
6094         fn handle_revoke_and_ack(&self, counterparty_node_id: &PublicKey, msg: &msgs::RevokeAndACK) {
6095                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6096                 let _ = handle_error!(self, self.internal_revoke_and_ack(counterparty_node_id, msg), *counterparty_node_id);
6097         }
6098
6099         fn handle_update_fee(&self, counterparty_node_id: &PublicKey, msg: &msgs::UpdateFee) {
6100                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6101                 let _ = handle_error!(self, self.internal_update_fee(counterparty_node_id, msg), *counterparty_node_id);
6102         }
6103
6104         fn handle_announcement_signatures(&self, counterparty_node_id: &PublicKey, msg: &msgs::AnnouncementSignatures) {
6105                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6106                 let _ = handle_error!(self, self.internal_announcement_signatures(counterparty_node_id, msg), *counterparty_node_id);
6107         }
6108
6109         fn handle_channel_update(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelUpdate) {
6110                 PersistenceNotifierGuard::optionally_notify(&self.total_consistency_lock, &self.persistence_notifier, || {
6111                         if let Ok(persist) = handle_error!(self, self.internal_channel_update(counterparty_node_id, msg), *counterparty_node_id) {
6112                                 persist
6113                         } else {
6114                                 NotifyOption::SkipPersist
6115                         }
6116                 });
6117         }
6118
6119         fn handle_channel_reestablish(&self, counterparty_node_id: &PublicKey, msg: &msgs::ChannelReestablish) {
6120                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6121                 let _ = handle_error!(self, self.internal_channel_reestablish(counterparty_node_id, msg), *counterparty_node_id);
6122         }
6123
6124         fn peer_disconnected(&self, counterparty_node_id: &PublicKey, no_connection_possible: bool) {
6125                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6126                 let mut failed_channels = Vec::new();
6127                 let mut no_channels_remain = true;
6128                 {
6129                         let mut channel_state_lock = self.channel_state.lock().unwrap();
6130                         let channel_state = &mut *channel_state_lock;
6131                         let pending_msg_events = &mut channel_state.pending_msg_events;
6132                         let short_to_chan_info = &mut channel_state.short_to_chan_info;
6133                         log_debug!(self.logger, "Marking channels with {} disconnected and generating channel_updates. We believe we {} make future connections to this peer.",
6134                                 log_pubkey!(counterparty_node_id), if no_connection_possible { "cannot" } else { "can" });
6135                         channel_state.by_id.retain(|_, chan| {
6136                                 if chan.get_counterparty_node_id() == *counterparty_node_id {
6137                                         chan.remove_uncommitted_htlcs_and_mark_paused(&self.logger);
6138                                         if chan.is_shutdown() {
6139                                                 update_maps_on_chan_removal!(self, short_to_chan_info, chan);
6140                                                 self.issue_channel_close_events(chan, ClosureReason::DisconnectedPeer);
6141                                                 return false;
6142                                         } else {
6143                                                 no_channels_remain = false;
6144                                         }
6145                                 }
6146                                 true
6147                         });
6148                         pending_msg_events.retain(|msg| {
6149                                 match msg {
6150                                         &events::MessageSendEvent::SendAcceptChannel { ref node_id, .. } => node_id != counterparty_node_id,
6151                                         &events::MessageSendEvent::SendOpenChannel { ref node_id, .. } => node_id != counterparty_node_id,
6152                                         &events::MessageSendEvent::SendFundingCreated { ref node_id, .. } => node_id != counterparty_node_id,
6153                                         &events::MessageSendEvent::SendFundingSigned { ref node_id, .. } => node_id != counterparty_node_id,
6154                                         &events::MessageSendEvent::SendChannelReady { ref node_id, .. } => node_id != counterparty_node_id,
6155                                         &events::MessageSendEvent::SendAnnouncementSignatures { ref node_id, .. } => node_id != counterparty_node_id,
6156                                         &events::MessageSendEvent::UpdateHTLCs { ref node_id, .. } => node_id != counterparty_node_id,
6157                                         &events::MessageSendEvent::SendRevokeAndACK { ref node_id, .. } => node_id != counterparty_node_id,
6158                                         &events::MessageSendEvent::SendClosingSigned { ref node_id, .. } => node_id != counterparty_node_id,
6159                                         &events::MessageSendEvent::SendShutdown { ref node_id, .. } => node_id != counterparty_node_id,
6160                                         &events::MessageSendEvent::SendChannelReestablish { ref node_id, .. } => node_id != counterparty_node_id,
6161                                         &events::MessageSendEvent::SendChannelAnnouncement { ref node_id, .. } => node_id != counterparty_node_id,
6162                                         &events::MessageSendEvent::BroadcastChannelAnnouncement { .. } => true,
6163                                         &events::MessageSendEvent::BroadcastChannelUpdate { .. } => true,
6164                                         &events::MessageSendEvent::SendChannelUpdate { ref node_id, .. } => node_id != counterparty_node_id,
6165                                         &events::MessageSendEvent::HandleError { ref node_id, .. } => node_id != counterparty_node_id,
6166                                         &events::MessageSendEvent::SendChannelRangeQuery { .. } => false,
6167                                         &events::MessageSendEvent::SendShortIdsQuery { .. } => false,
6168                                         &events::MessageSendEvent::SendReplyChannelRange { .. } => false,
6169                                         &events::MessageSendEvent::SendGossipTimestampFilter { .. } => false,
6170                                 }
6171                         });
6172                 }
6173                 if no_channels_remain {
6174                         self.per_peer_state.write().unwrap().remove(counterparty_node_id);
6175                 }
6176
6177                 for failure in failed_channels.drain(..) {
6178                         self.finish_force_close_channel(failure);
6179                 }
6180         }
6181
6182         fn peer_connected(&self, counterparty_node_id: &PublicKey, init_msg: &msgs::Init) -> Result<(), ()> {
6183                 if !init_msg.features.supports_static_remote_key() {
6184                         log_debug!(self.logger, "Peer {} does not support static remote key, disconnecting with no_connection_possible", log_pubkey!(counterparty_node_id));
6185                         return Err(());
6186                 }
6187
6188                 log_debug!(self.logger, "Generating channel_reestablish events for {}", log_pubkey!(counterparty_node_id));
6189
6190                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6191
6192                 {
6193                         let mut peer_state_lock = self.per_peer_state.write().unwrap();
6194                         match peer_state_lock.entry(counterparty_node_id.clone()) {
6195                                 hash_map::Entry::Vacant(e) => {
6196                                         e.insert(Mutex::new(PeerState {
6197                                                 latest_features: init_msg.features.clone(),
6198                                         }));
6199                                 },
6200                                 hash_map::Entry::Occupied(e) => {
6201                                         e.get().lock().unwrap().latest_features = init_msg.features.clone();
6202                                 },
6203                         }
6204                 }
6205
6206                 let mut channel_state_lock = self.channel_state.lock().unwrap();
6207                 let channel_state = &mut *channel_state_lock;
6208                 let pending_msg_events = &mut channel_state.pending_msg_events;
6209                 channel_state.by_id.retain(|_, chan| {
6210                         let retain = if chan.get_counterparty_node_id() == *counterparty_node_id {
6211                                 if !chan.have_received_message() {
6212                                         // If we created this (outbound) channel while we were disconnected from the
6213                                         // peer we probably failed to send the open_channel message, which is now
6214                                         // lost. We can't have had anything pending related to this channel, so we just
6215                                         // drop it.
6216                                         false
6217                                 } else {
6218                                         pending_msg_events.push(events::MessageSendEvent::SendChannelReestablish {
6219                                                 node_id: chan.get_counterparty_node_id(),
6220                                                 msg: chan.get_channel_reestablish(&self.logger),
6221                                         });
6222                                         true
6223                                 }
6224                         } else { true };
6225                         if retain && chan.get_counterparty_node_id() != *counterparty_node_id {
6226                                 if let Some(msg) = chan.get_signed_channel_announcement(self.get_our_node_id(), self.genesis_hash.clone(), self.best_block.read().unwrap().height()) {
6227                                         if let Ok(update_msg) = self.get_channel_update_for_broadcast(chan) {
6228                                                 pending_msg_events.push(events::MessageSendEvent::SendChannelAnnouncement {
6229                                                         node_id: *counterparty_node_id,
6230                                                         msg, update_msg,
6231                                                 });
6232                                         }
6233                                 }
6234                         }
6235                         retain
6236                 });
6237                 //TODO: Also re-broadcast announcement_signatures
6238                 Ok(())
6239         }
6240
6241         fn handle_error(&self, counterparty_node_id: &PublicKey, msg: &msgs::ErrorMessage) {
6242                 let _persistence_guard = PersistenceNotifierGuard::notify_on_drop(&self.total_consistency_lock, &self.persistence_notifier);
6243
6244                 if msg.channel_id == [0; 32] {
6245                         for chan in self.list_channels() {
6246                                 if chan.counterparty.node_id == *counterparty_node_id {
6247                                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6248                                         let _ = self.force_close_channel_with_peer(&chan.channel_id, counterparty_node_id, Some(&msg.data), true);
6249                                 }
6250                         }
6251                 } else {
6252                         {
6253                                 // First check if we can advance the channel type and try again.
6254                                 let mut channel_state = self.channel_state.lock().unwrap();
6255                                 if let Some(chan) = channel_state.by_id.get_mut(&msg.channel_id) {
6256                                         if chan.get_counterparty_node_id() != *counterparty_node_id {
6257                                                 return;
6258                                         }
6259                                         if let Ok(msg) = chan.maybe_handle_error_without_close(self.genesis_hash) {
6260                                                 channel_state.pending_msg_events.push(events::MessageSendEvent::SendOpenChannel {
6261                                                         node_id: *counterparty_node_id,
6262                                                         msg,
6263                                                 });
6264                                                 return;
6265                                         }
6266                                 }
6267                         }
6268
6269                         // Untrusted messages from peer, we throw away the error if id points to a non-existent channel
6270                         let _ = self.force_close_channel_with_peer(&msg.channel_id, counterparty_node_id, Some(&msg.data), true);
6271                 }
6272         }
6273
6274         fn provided_node_features(&self) -> NodeFeatures {
6275                 provided_node_features()
6276         }
6277
6278         fn provided_init_features(&self, _their_init_features: &PublicKey) -> InitFeatures {
6279                 provided_init_features()
6280         }
6281 }
6282
6283 /// Fetches the set of [`NodeFeatures`] flags which are provided by or required by
6284 /// [`ChannelManager`].
6285 pub fn provided_node_features() -> NodeFeatures {
6286         provided_init_features().to_context()
6287 }
6288
6289 /// Fetches the set of [`InvoiceFeatures`] flags which are provided by or required by
6290 /// [`ChannelManager`].
6291 ///
6292 /// Note that the invoice feature flags can vary depending on if the invoice is a "phantom invoice"
6293 /// or not. Thus, this method is not public.
6294 #[cfg(any(feature = "_test_utils", test))]
6295 pub fn provided_invoice_features() -> InvoiceFeatures {
6296         provided_init_features().to_context()
6297 }
6298
6299 /// Fetches the set of [`ChannelFeatures`] flags which are provided by or required by
6300 /// [`ChannelManager`].
6301 pub fn provided_channel_features() -> ChannelFeatures {
6302         provided_init_features().to_context()
6303 }
6304
6305 /// Fetches the set of [`InitFeatures`] flags which are provided by or required by
6306 /// [`ChannelManager`].
6307 pub fn provided_init_features() -> InitFeatures {
6308         // Note that if new features are added here which other peers may (eventually) require, we
6309         // should also add the corresponding (optional) bit to the ChannelMessageHandler impl for
6310         // ErroringMessageHandler.
6311         let mut features = InitFeatures::empty();
6312         features.set_data_loss_protect_optional();
6313         features.set_upfront_shutdown_script_optional();
6314         features.set_variable_length_onion_required();
6315         features.set_static_remote_key_required();
6316         features.set_payment_secret_required();
6317         features.set_basic_mpp_optional();
6318         features.set_wumbo_optional();
6319         features.set_shutdown_any_segwit_optional();
6320         features.set_channel_type_optional();
6321         features.set_scid_privacy_optional();
6322         features.set_zero_conf_optional();
6323         features
6324 }
6325
6326 const SERIALIZATION_VERSION: u8 = 1;
6327 const MIN_SERIALIZATION_VERSION: u8 = 1;
6328
6329 impl_writeable_tlv_based!(CounterpartyForwardingInfo, {
6330         (2, fee_base_msat, required),
6331         (4, fee_proportional_millionths, required),
6332         (6, cltv_expiry_delta, required),
6333 });
6334
6335 impl_writeable_tlv_based!(ChannelCounterparty, {
6336         (2, node_id, required),
6337         (4, features, required),
6338         (6, unspendable_punishment_reserve, required),
6339         (8, forwarding_info, option),
6340         (9, outbound_htlc_minimum_msat, option),
6341         (11, outbound_htlc_maximum_msat, option),
6342 });
6343
6344 impl_writeable_tlv_based!(ChannelDetails, {
6345         (1, inbound_scid_alias, option),
6346         (2, channel_id, required),
6347         (3, channel_type, option),
6348         (4, counterparty, required),
6349         (5, outbound_scid_alias, option),
6350         (6, funding_txo, option),
6351         (7, config, option),
6352         (8, short_channel_id, option),
6353         (10, channel_value_satoshis, required),
6354         (12, unspendable_punishment_reserve, option),
6355         (14, user_channel_id, required),
6356         (16, balance_msat, required),
6357         (18, outbound_capacity_msat, required),
6358         // Note that by the time we get past the required read above, outbound_capacity_msat will be
6359         // filled in, so we can safely unwrap it here.
6360         (19, next_outbound_htlc_limit_msat, (default_value, outbound_capacity_msat.0.unwrap() as u64)),
6361         (20, inbound_capacity_msat, required),
6362         (22, confirmations_required, option),
6363         (24, force_close_spend_delay, option),
6364         (26, is_outbound, required),
6365         (28, is_channel_ready, required),
6366         (30, is_usable, required),
6367         (32, is_public, required),
6368         (33, inbound_htlc_minimum_msat, option),
6369         (35, inbound_htlc_maximum_msat, option),
6370 });
6371
6372 impl_writeable_tlv_based!(PhantomRouteHints, {
6373         (2, channels, vec_type),
6374         (4, phantom_scid, required),
6375         (6, real_node_pubkey, required),
6376 });
6377
6378 impl_writeable_tlv_based_enum!(PendingHTLCRouting,
6379         (0, Forward) => {
6380                 (0, onion_packet, required),
6381                 (2, short_channel_id, required),
6382         },
6383         (1, Receive) => {
6384                 (0, payment_data, required),
6385                 (1, phantom_shared_secret, option),
6386                 (2, incoming_cltv_expiry, required),
6387         },
6388         (2, ReceiveKeysend) => {
6389                 (0, payment_preimage, required),
6390                 (2, incoming_cltv_expiry, required),
6391         },
6392 ;);
6393
6394 impl_writeable_tlv_based!(PendingHTLCInfo, {
6395         (0, routing, required),
6396         (2, incoming_shared_secret, required),
6397         (4, payment_hash, required),
6398         (6, amt_to_forward, required),
6399         (8, outgoing_cltv_value, required)
6400 });
6401
6402
6403 impl Writeable for HTLCFailureMsg {
6404         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6405                 match self {
6406                         HTLCFailureMsg::Relay(msgs::UpdateFailHTLC { channel_id, htlc_id, reason }) => {
6407                                 0u8.write(writer)?;
6408                                 channel_id.write(writer)?;
6409                                 htlc_id.write(writer)?;
6410                                 reason.write(writer)?;
6411                         },
6412                         HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
6413                                 channel_id, htlc_id, sha256_of_onion, failure_code
6414                         }) => {
6415                                 1u8.write(writer)?;
6416                                 channel_id.write(writer)?;
6417                                 htlc_id.write(writer)?;
6418                                 sha256_of_onion.write(writer)?;
6419                                 failure_code.write(writer)?;
6420                         },
6421                 }
6422                 Ok(())
6423         }
6424 }
6425
6426 impl Readable for HTLCFailureMsg {
6427         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6428                 let id: u8 = Readable::read(reader)?;
6429                 match id {
6430                         0 => {
6431                                 Ok(HTLCFailureMsg::Relay(msgs::UpdateFailHTLC {
6432                                         channel_id: Readable::read(reader)?,
6433                                         htlc_id: Readable::read(reader)?,
6434                                         reason: Readable::read(reader)?,
6435                                 }))
6436                         },
6437                         1 => {
6438                                 Ok(HTLCFailureMsg::Malformed(msgs::UpdateFailMalformedHTLC {
6439                                         channel_id: Readable::read(reader)?,
6440                                         htlc_id: Readable::read(reader)?,
6441                                         sha256_of_onion: Readable::read(reader)?,
6442                                         failure_code: Readable::read(reader)?,
6443                                 }))
6444                         },
6445                         // In versions prior to 0.0.101, HTLCFailureMsg objects were written with type 0 or 1 but
6446                         // weren't length-prefixed and thus didn't support reading the TLV stream suffix of the network
6447                         // messages contained in the variants.
6448                         // In version 0.0.101, support for reading the variants with these types was added, and
6449                         // we should migrate to writing these variants when UpdateFailHTLC or
6450                         // UpdateFailMalformedHTLC get TLV fields.
6451                         2 => {
6452                                 let length: BigSize = Readable::read(reader)?;
6453                                 let mut s = FixedLengthReader::new(reader, length.0);
6454                                 let res = Readable::read(&mut s)?;
6455                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
6456                                 Ok(HTLCFailureMsg::Relay(res))
6457                         },
6458                         3 => {
6459                                 let length: BigSize = Readable::read(reader)?;
6460                                 let mut s = FixedLengthReader::new(reader, length.0);
6461                                 let res = Readable::read(&mut s)?;
6462                                 s.eat_remaining()?; // Return ShortRead if there's actually not enough bytes
6463                                 Ok(HTLCFailureMsg::Malformed(res))
6464                         },
6465                         _ => Err(DecodeError::UnknownRequiredFeature),
6466                 }
6467         }
6468 }
6469
6470 impl_writeable_tlv_based_enum!(PendingHTLCStatus, ;
6471         (0, Forward),
6472         (1, Fail),
6473 );
6474
6475 impl_writeable_tlv_based!(HTLCPreviousHopData, {
6476         (0, short_channel_id, required),
6477         (1, phantom_shared_secret, option),
6478         (2, outpoint, required),
6479         (4, htlc_id, required),
6480         (6, incoming_packet_shared_secret, required)
6481 });
6482
6483 impl Writeable for ClaimableHTLC {
6484         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6485                 let (payment_data, keysend_preimage) = match &self.onion_payload {
6486                         OnionPayload::Invoice { _legacy_hop_data } => (_legacy_hop_data.as_ref(), None),
6487                         OnionPayload::Spontaneous(preimage) => (None, Some(preimage)),
6488                 };
6489                 write_tlv_fields!(writer, {
6490                         (0, self.prev_hop, required),
6491                         (1, self.total_msat, required),
6492                         (2, self.value, required),
6493                         (4, payment_data, option),
6494                         (6, self.cltv_expiry, required),
6495                         (8, keysend_preimage, option),
6496                 });
6497                 Ok(())
6498         }
6499 }
6500
6501 impl Readable for ClaimableHTLC {
6502         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6503                 let mut prev_hop = crate::util::ser::OptionDeserWrapper(None);
6504                 let mut value = 0;
6505                 let mut payment_data: Option<msgs::FinalOnionHopData> = None;
6506                 let mut cltv_expiry = 0;
6507                 let mut total_msat = None;
6508                 let mut keysend_preimage: Option<PaymentPreimage> = None;
6509                 read_tlv_fields!(reader, {
6510                         (0, prev_hop, required),
6511                         (1, total_msat, option),
6512                         (2, value, required),
6513                         (4, payment_data, option),
6514                         (6, cltv_expiry, required),
6515                         (8, keysend_preimage, option)
6516                 });
6517                 let onion_payload = match keysend_preimage {
6518                         Some(p) => {
6519                                 if payment_data.is_some() {
6520                                         return Err(DecodeError::InvalidValue)
6521                                 }
6522                                 if total_msat.is_none() {
6523                                         total_msat = Some(value);
6524                                 }
6525                                 OnionPayload::Spontaneous(p)
6526                         },
6527                         None => {
6528                                 if total_msat.is_none() {
6529                                         if payment_data.is_none() {
6530                                                 return Err(DecodeError::InvalidValue)
6531                                         }
6532                                         total_msat = Some(payment_data.as_ref().unwrap().total_msat);
6533                                 }
6534                                 OnionPayload::Invoice { _legacy_hop_data: payment_data }
6535                         },
6536                 };
6537                 Ok(Self {
6538                         prev_hop: prev_hop.0.unwrap(),
6539                         timer_ticks: 0,
6540                         value,
6541                         total_msat: total_msat.unwrap(),
6542                         onion_payload,
6543                         cltv_expiry,
6544                 })
6545         }
6546 }
6547
6548 impl Readable for HTLCSource {
6549         fn read<R: Read>(reader: &mut R) -> Result<Self, DecodeError> {
6550                 let id: u8 = Readable::read(reader)?;
6551                 match id {
6552                         0 => {
6553                                 let mut session_priv: crate::util::ser::OptionDeserWrapper<SecretKey> = crate::util::ser::OptionDeserWrapper(None);
6554                                 let mut first_hop_htlc_msat: u64 = 0;
6555                                 let mut path = Some(Vec::new());
6556                                 let mut payment_id = None;
6557                                 let mut payment_secret = None;
6558                                 let mut payment_params = None;
6559                                 read_tlv_fields!(reader, {
6560                                         (0, session_priv, required),
6561                                         (1, payment_id, option),
6562                                         (2, first_hop_htlc_msat, required),
6563                                         (3, payment_secret, option),
6564                                         (4, path, vec_type),
6565                                         (5, payment_params, option),
6566                                 });
6567                                 if payment_id.is_none() {
6568                                         // For backwards compat, if there was no payment_id written, use the session_priv bytes
6569                                         // instead.
6570                                         payment_id = Some(PaymentId(*session_priv.0.unwrap().as_ref()));
6571                                 }
6572                                 Ok(HTLCSource::OutboundRoute {
6573                                         session_priv: session_priv.0.unwrap(),
6574                                         first_hop_htlc_msat,
6575                                         path: path.unwrap(),
6576                                         payment_id: payment_id.unwrap(),
6577                                         payment_secret,
6578                                         payment_params,
6579                                 })
6580                         }
6581                         1 => Ok(HTLCSource::PreviousHopData(Readable::read(reader)?)),
6582                         _ => Err(DecodeError::UnknownRequiredFeature),
6583                 }
6584         }
6585 }
6586
6587 impl Writeable for HTLCSource {
6588         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), crate::io::Error> {
6589                 match self {
6590                         HTLCSource::OutboundRoute { ref session_priv, ref first_hop_htlc_msat, ref path, payment_id, payment_secret, payment_params } => {
6591                                 0u8.write(writer)?;
6592                                 let payment_id_opt = Some(payment_id);
6593                                 write_tlv_fields!(writer, {
6594                                         (0, session_priv, required),
6595                                         (1, payment_id_opt, option),
6596                                         (2, first_hop_htlc_msat, required),
6597                                         (3, payment_secret, option),
6598                                         (4, path, vec_type),
6599                                         (5, payment_params, option),
6600                                  });
6601                         }
6602                         HTLCSource::PreviousHopData(ref field) => {
6603                                 1u8.write(writer)?;
6604                                 field.write(writer)?;
6605                         }
6606                 }
6607                 Ok(())
6608         }
6609 }
6610
6611 impl_writeable_tlv_based_enum!(HTLCFailReason,
6612         (0, LightningError) => {
6613                 (0, err, required),
6614         },
6615         (1, Reason) => {
6616                 (0, failure_code, required),
6617                 (2, data, vec_type),
6618         },
6619 ;);
6620
6621 impl_writeable_tlv_based_enum!(HTLCForwardInfo,
6622         (0, AddHTLC) => {
6623                 (0, forward_info, required),
6624                 (2, prev_short_channel_id, required),
6625                 (4, prev_htlc_id, required),
6626                 (6, prev_funding_outpoint, required),
6627         },
6628         (1, FailHTLC) => {
6629                 (0, htlc_id, required),
6630                 (2, err_packet, required),
6631         },
6632 ;);
6633
6634 impl_writeable_tlv_based!(PendingInboundPayment, {
6635         (0, payment_secret, required),
6636         (2, expiry_time, required),
6637         (4, user_payment_id, required),
6638         (6, payment_preimage, required),
6639         (8, min_value_msat, required),
6640 });
6641
6642 impl_writeable_tlv_based_enum_upgradable!(PendingOutboundPayment,
6643         (0, Legacy) => {
6644                 (0, session_privs, required),
6645         },
6646         (1, Fulfilled) => {
6647                 (0, session_privs, required),
6648                 (1, payment_hash, option),
6649                 (3, timer_ticks_without_htlcs, (default_value, 0)),
6650         },
6651         (2, Retryable) => {
6652                 (0, session_privs, required),
6653                 (1, pending_fee_msat, option),
6654                 (2, payment_hash, required),
6655                 (4, payment_secret, option),
6656                 (6, total_msat, required),
6657                 (8, pending_amt_msat, required),
6658                 (10, starting_block_height, required),
6659         },
6660         (3, Abandoned) => {
6661                 (0, session_privs, required),
6662                 (2, payment_hash, required),
6663         },
6664 );
6665
6666 impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> Writeable for ChannelManager<Signer, M, T, K, F, L>
6667         where M::Target: chain::Watch<Signer>,
6668         T::Target: BroadcasterInterface,
6669         K::Target: KeysInterface<Signer = Signer>,
6670         F::Target: FeeEstimator,
6671         L::Target: Logger,
6672 {
6673         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
6674                 let _consistency_lock = self.total_consistency_lock.write().unwrap();
6675
6676                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
6677
6678                 self.genesis_hash.write(writer)?;
6679                 {
6680                         let best_block = self.best_block.read().unwrap();
6681                         best_block.height().write(writer)?;
6682                         best_block.block_hash().write(writer)?;
6683                 }
6684
6685                 {
6686                         // Take `channel_state` lock temporarily to avoid creating a lock order that requires
6687                         // that the `forward_htlcs` lock is taken after `channel_state`
6688                         let channel_state = self.channel_state.lock().unwrap();
6689                         let mut unfunded_channels = 0;
6690                         for (_, channel) in channel_state.by_id.iter() {
6691                                 if !channel.is_funding_initiated() {
6692                                         unfunded_channels += 1;
6693                                 }
6694                         }
6695                         ((channel_state.by_id.len() - unfunded_channels) as u64).write(writer)?;
6696                         for (_, channel) in channel_state.by_id.iter() {
6697                                 if channel.is_funding_initiated() {
6698                                         channel.write(writer)?;
6699                                 }
6700                         }
6701                 }
6702
6703                 {
6704                         let forward_htlcs = self.forward_htlcs.lock().unwrap();
6705                         (forward_htlcs.len() as u64).write(writer)?;
6706                         for (short_channel_id, pending_forwards) in forward_htlcs.iter() {
6707                                 short_channel_id.write(writer)?;
6708                                 (pending_forwards.len() as u64).write(writer)?;
6709                                 for forward in pending_forwards {
6710                                         forward.write(writer)?;
6711                                 }
6712                         }
6713                 }
6714
6715                 let channel_state = self.channel_state.lock().unwrap();
6716                 let mut htlc_purposes: Vec<&events::PaymentPurpose> = Vec::new();
6717                 (channel_state.claimable_htlcs.len() as u64).write(writer)?;
6718                 for (payment_hash, (purpose, previous_hops)) in channel_state.claimable_htlcs.iter() {
6719                         payment_hash.write(writer)?;
6720                         (previous_hops.len() as u64).write(writer)?;
6721                         for htlc in previous_hops.iter() {
6722                                 htlc.write(writer)?;
6723                         }
6724                         htlc_purposes.push(purpose);
6725                 }
6726
6727                 let per_peer_state = self.per_peer_state.write().unwrap();
6728                 (per_peer_state.len() as u64).write(writer)?;
6729                 for (peer_pubkey, peer_state_mutex) in per_peer_state.iter() {
6730                         peer_pubkey.write(writer)?;
6731                         let peer_state = peer_state_mutex.lock().unwrap();
6732                         peer_state.latest_features.write(writer)?;
6733                 }
6734
6735                 let pending_inbound_payments = self.pending_inbound_payments.lock().unwrap();
6736                 let pending_outbound_payments = self.pending_outbound_payments.lock().unwrap();
6737                 let events = self.pending_events.lock().unwrap();
6738                 (events.len() as u64).write(writer)?;
6739                 for event in events.iter() {
6740                         event.write(writer)?;
6741                 }
6742
6743                 let background_events = self.pending_background_events.lock().unwrap();
6744                 (background_events.len() as u64).write(writer)?;
6745                 for event in background_events.iter() {
6746                         match event {
6747                                 BackgroundEvent::ClosingMonitorUpdate((funding_txo, monitor_update)) => {
6748                                         0u8.write(writer)?;
6749                                         funding_txo.write(writer)?;
6750                                         monitor_update.write(writer)?;
6751                                 },
6752                         }
6753                 }
6754
6755                 // Prior to 0.0.111 we tracked node_announcement serials here, however that now happens in
6756                 // `PeerManager`, and thus we simply write the `highest_seen_timestamp` twice, which is
6757                 // likely to be identical.
6758                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
6759                 (self.highest_seen_timestamp.load(Ordering::Acquire) as u32).write(writer)?;
6760
6761                 (pending_inbound_payments.len() as u64).write(writer)?;
6762                 for (hash, pending_payment) in pending_inbound_payments.iter() {
6763                         hash.write(writer)?;
6764                         pending_payment.write(writer)?;
6765                 }
6766
6767                 // For backwards compat, write the session privs and their total length.
6768                 let mut num_pending_outbounds_compat: u64 = 0;
6769                 for (_, outbound) in pending_outbound_payments.iter() {
6770                         if !outbound.is_fulfilled() && !outbound.abandoned() {
6771                                 num_pending_outbounds_compat += outbound.remaining_parts() as u64;
6772                         }
6773                 }
6774                 num_pending_outbounds_compat.write(writer)?;
6775                 for (_, outbound) in pending_outbound_payments.iter() {
6776                         match outbound {
6777                                 PendingOutboundPayment::Legacy { session_privs } |
6778                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
6779                                         for session_priv in session_privs.iter() {
6780                                                 session_priv.write(writer)?;
6781                                         }
6782                                 }
6783                                 PendingOutboundPayment::Fulfilled { .. } => {},
6784                                 PendingOutboundPayment::Abandoned { .. } => {},
6785                         }
6786                 }
6787
6788                 // Encode without retry info for 0.0.101 compatibility.
6789                 let mut pending_outbound_payments_no_retry: HashMap<PaymentId, HashSet<[u8; 32]>> = HashMap::new();
6790                 for (id, outbound) in pending_outbound_payments.iter() {
6791                         match outbound {
6792                                 PendingOutboundPayment::Legacy { session_privs } |
6793                                 PendingOutboundPayment::Retryable { session_privs, .. } => {
6794                                         pending_outbound_payments_no_retry.insert(*id, session_privs.clone());
6795                                 },
6796                                 _ => {},
6797                         }
6798                 }
6799                 write_tlv_fields!(writer, {
6800                         (1, pending_outbound_payments_no_retry, required),
6801                         (3, pending_outbound_payments, required),
6802                         (5, self.our_network_pubkey, required),
6803                         (7, self.fake_scid_rand_bytes, required),
6804                         (9, htlc_purposes, vec_type),
6805                         (11, self.probing_cookie_secret, required),
6806                 });
6807
6808                 Ok(())
6809         }
6810 }
6811
6812 /// Arguments for the creation of a ChannelManager that are not deserialized.
6813 ///
6814 /// At a high-level, the process for deserializing a ChannelManager and resuming normal operation
6815 /// is:
6816 /// 1) Deserialize all stored [`ChannelMonitor`]s.
6817 /// 2) Deserialize the [`ChannelManager`] by filling in this struct and calling:
6818 ///    `<(BlockHash, ChannelManager)>::read(reader, args)`
6819 ///    This may result in closing some channels if the [`ChannelMonitor`] is newer than the stored
6820 ///    [`ChannelManager`] state to ensure no loss of funds. Thus, transactions may be broadcasted.
6821 /// 3) If you are not fetching full blocks, register all relevant [`ChannelMonitor`] outpoints the
6822 ///    same way you would handle a [`chain::Filter`] call using
6823 ///    [`ChannelMonitor::get_outputs_to_watch`] and [`ChannelMonitor::get_funding_txo`].
6824 /// 4) Reconnect blocks on your [`ChannelMonitor`]s.
6825 /// 5) Disconnect/connect blocks on the [`ChannelManager`].
6826 /// 6) Re-persist the [`ChannelMonitor`]s to ensure the latest state is on disk.
6827 ///    Note that if you're using a [`ChainMonitor`] for your [`chain::Watch`] implementation, you
6828 ///    will likely accomplish this as a side-effect of calling [`chain::Watch::watch_channel`] in
6829 ///    the next step.
6830 /// 7) Move the [`ChannelMonitor`]s into your local [`chain::Watch`]. If you're using a
6831 ///    [`ChainMonitor`], this is done by calling [`chain::Watch::watch_channel`].
6832 ///
6833 /// Note that the ordering of #4-7 is not of importance, however all four must occur before you
6834 /// call any other methods on the newly-deserialized [`ChannelManager`].
6835 ///
6836 /// Note that because some channels may be closed during deserialization, it is critical that you
6837 /// always deserialize only the latest version of a ChannelManager and ChannelMonitors available to
6838 /// you. If you deserialize an old ChannelManager (during which force-closure transactions may be
6839 /// broadcast), and then later deserialize a newer version of the same ChannelManager (which will
6840 /// not force-close the same channels but consider them live), you may end up revoking a state for
6841 /// which you've already broadcasted the transaction.
6842 ///
6843 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
6844 pub struct ChannelManagerReadArgs<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6845         where M::Target: chain::Watch<Signer>,
6846         T::Target: BroadcasterInterface,
6847         K::Target: KeysInterface<Signer = Signer>,
6848         F::Target: FeeEstimator,
6849         L::Target: Logger,
6850 {
6851         /// The keys provider which will give us relevant keys. Some keys will be loaded during
6852         /// deserialization and KeysInterface::read_chan_signer will be used to read per-Channel
6853         /// signing data.
6854         pub keys_manager: K,
6855
6856         /// The fee_estimator for use in the ChannelManager in the future.
6857         ///
6858         /// No calls to the FeeEstimator will be made during deserialization.
6859         pub fee_estimator: F,
6860         /// The chain::Watch for use in the ChannelManager in the future.
6861         ///
6862         /// No calls to the chain::Watch will be made during deserialization. It is assumed that
6863         /// you have deserialized ChannelMonitors separately and will add them to your
6864         /// chain::Watch after deserializing this ChannelManager.
6865         pub chain_monitor: M,
6866
6867         /// The BroadcasterInterface which will be used in the ChannelManager in the future and may be
6868         /// used to broadcast the latest local commitment transactions of channels which must be
6869         /// force-closed during deserialization.
6870         pub tx_broadcaster: T,
6871         /// The Logger for use in the ChannelManager and which may be used to log information during
6872         /// deserialization.
6873         pub logger: L,
6874         /// Default settings used for new channels. Any existing channels will continue to use the
6875         /// runtime settings which were stored when the ChannelManager was serialized.
6876         pub default_config: UserConfig,
6877
6878         /// A map from channel funding outpoints to ChannelMonitors for those channels (ie
6879         /// value.get_funding_txo() should be the key).
6880         ///
6881         /// If a monitor is inconsistent with the channel state during deserialization the channel will
6882         /// be force-closed using the data in the ChannelMonitor and the channel will be dropped. This
6883         /// is true for missing channels as well. If there is a monitor missing for which we find
6884         /// channel data Err(DecodeError::InvalidValue) will be returned.
6885         ///
6886         /// In such cases the latest local transactions will be sent to the tx_broadcaster included in
6887         /// this struct.
6888         ///
6889         /// (C-not exported) because we have no HashMap bindings
6890         pub channel_monitors: HashMap<OutPoint, &'a mut ChannelMonitor<Signer>>,
6891 }
6892
6893 impl<'a, Signer: 'a + Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6894                 ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>
6895         where M::Target: chain::Watch<Signer>,
6896                 T::Target: BroadcasterInterface,
6897                 K::Target: KeysInterface<Signer = Signer>,
6898                 F::Target: FeeEstimator,
6899                 L::Target: Logger,
6900         {
6901         /// Simple utility function to create a ChannelManagerReadArgs which creates the monitor
6902         /// HashMap for you. This is primarily useful for C bindings where it is not practical to
6903         /// populate a HashMap directly from C.
6904         pub fn new(keys_manager: K, fee_estimator: F, chain_monitor: M, tx_broadcaster: T, logger: L, default_config: UserConfig,
6905                         mut channel_monitors: Vec<&'a mut ChannelMonitor<Signer>>) -> Self {
6906                 Self {
6907                         keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, default_config,
6908                         channel_monitors: channel_monitors.drain(..).map(|monitor| { (monitor.get_funding_txo().0, monitor) }).collect()
6909                 }
6910         }
6911 }
6912
6913 // Implement ReadableArgs for an Arc'd ChannelManager to make it a bit easier to work with the
6914 // SipmleArcChannelManager type:
6915 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6916         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, Arc<ChannelManager<Signer, M, T, K, F, L>>)
6917         where M::Target: chain::Watch<Signer>,
6918         T::Target: BroadcasterInterface,
6919         K::Target: KeysInterface<Signer = Signer>,
6920         F::Target: FeeEstimator,
6921         L::Target: Logger,
6922 {
6923         fn read<R: io::Read>(reader: &mut R, args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
6924                 let (blockhash, chan_manager) = <(BlockHash, ChannelManager<Signer, M, T, K, F, L>)>::read(reader, args)?;
6925                 Ok((blockhash, Arc::new(chan_manager)))
6926         }
6927 }
6928
6929 impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
6930         ReadableArgs<ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>> for (BlockHash, ChannelManager<Signer, M, T, K, F, L>)
6931         where M::Target: chain::Watch<Signer>,
6932         T::Target: BroadcasterInterface,
6933         K::Target: KeysInterface<Signer = Signer>,
6934         F::Target: FeeEstimator,
6935         L::Target: Logger,
6936 {
6937         fn read<R: io::Read>(reader: &mut R, mut args: ChannelManagerReadArgs<'a, Signer, M, T, K, F, L>) -> Result<Self, DecodeError> {
6938                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
6939
6940                 let genesis_hash: BlockHash = Readable::read(reader)?;
6941                 let best_block_height: u32 = Readable::read(reader)?;
6942                 let best_block_hash: BlockHash = Readable::read(reader)?;
6943
6944                 let mut failed_htlcs = Vec::new();
6945
6946                 let channel_count: u64 = Readable::read(reader)?;
6947                 let mut funding_txo_set = HashSet::with_capacity(cmp::min(channel_count as usize, 128));
6948                 let mut by_id = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6949                 let mut id_to_peer = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6950                 let mut short_to_chan_info = HashMap::with_capacity(cmp::min(channel_count as usize, 128));
6951                 let mut channel_closures = Vec::new();
6952                 for _ in 0..channel_count {
6953                         let mut channel: Channel<Signer> = Channel::read(reader, (&args.keys_manager, best_block_height))?;
6954                         let funding_txo = channel.get_funding_txo().ok_or(DecodeError::InvalidValue)?;
6955                         funding_txo_set.insert(funding_txo.clone());
6956                         if let Some(ref mut monitor) = args.channel_monitors.get_mut(&funding_txo) {
6957                                 if channel.get_cur_holder_commitment_transaction_number() < monitor.get_cur_holder_commitment_number() ||
6958                                                 channel.get_revoked_counterparty_commitment_transaction_number() < monitor.get_min_seen_secret() ||
6959                                                 channel.get_cur_counterparty_commitment_transaction_number() < monitor.get_cur_counterparty_commitment_number() ||
6960                                                 channel.get_latest_monitor_update_id() > monitor.get_latest_update_id() {
6961                                         // If the channel is ahead of the monitor, return InvalidValue:
6962                                         log_error!(args.logger, "A ChannelMonitor is stale compared to the current ChannelManager! This indicates a potentially-critical violation of the chain::Watch API!");
6963                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
6964                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
6965                                         log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
6966                                         log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
6967                                         log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
6968                                         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");
6969                                         return Err(DecodeError::InvalidValue);
6970                                 } else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
6971                                                 channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
6972                                                 channel.get_cur_counterparty_commitment_transaction_number() > monitor.get_cur_counterparty_commitment_number() ||
6973                                                 channel.get_latest_monitor_update_id() < monitor.get_latest_update_id() {
6974                                         // But if the channel is behind of the monitor, close the channel:
6975                                         log_error!(args.logger, "A ChannelManager is stale compared to the current ChannelMonitor!");
6976                                         log_error!(args.logger, " The channel will be force-closed and the latest commitment transaction from the ChannelMonitor broadcast.");
6977                                         log_error!(args.logger, " The ChannelMonitor for channel {} is at update_id {} but the ChannelManager is at update_id {}.",
6978                                                 log_bytes!(channel.channel_id()), monitor.get_latest_update_id(), channel.get_latest_monitor_update_id());
6979                                         let (_, mut new_failed_htlcs) = channel.force_shutdown(true);
6980                                         failed_htlcs.append(&mut new_failed_htlcs);
6981                                         monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
6982                                         channel_closures.push(events::Event::ChannelClosed {
6983                                                 channel_id: channel.channel_id(),
6984                                                 user_channel_id: channel.get_user_id(),
6985                                                 reason: ClosureReason::OutdatedChannelManager
6986                                         });
6987                                 } else {
6988                                         log_info!(args.logger, "Successfully loaded channel {}", log_bytes!(channel.channel_id()));
6989                                         if let Some(short_channel_id) = channel.get_short_channel_id() {
6990                                                 short_to_chan_info.insert(short_channel_id, (channel.get_counterparty_node_id(), channel.channel_id()));
6991                                         }
6992                                         if channel.is_funding_initiated() {
6993                                                 id_to_peer.insert(channel.channel_id(), channel.get_counterparty_node_id());
6994                                         }
6995                                         by_id.insert(channel.channel_id(), channel);
6996                                 }
6997                         } else if channel.is_awaiting_initial_mon_persist() {
6998                                 // If we were persisted and shut down while the initial ChannelMonitor persistence
6999                                 // was in-progress, we never broadcasted the funding transaction and can still
7000                                 // safely discard the channel.
7001                                 let _ = channel.force_shutdown(false);
7002                                 channel_closures.push(events::Event::ChannelClosed {
7003                                         channel_id: channel.channel_id(),
7004                                         user_channel_id: channel.get_user_id(),
7005                                         reason: ClosureReason::DisconnectedPeer,
7006                                 });
7007                         } else {
7008                                 log_error!(args.logger, "Missing ChannelMonitor for channel {} needed by ChannelManager.", log_bytes!(channel.channel_id()));
7009                                 log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
7010                                 log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
7011                                 log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
7012                                 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");
7013                                 return Err(DecodeError::InvalidValue);
7014                         }
7015                 }
7016
7017                 for (ref funding_txo, ref mut monitor) in args.channel_monitors.iter_mut() {
7018                         if !funding_txo_set.contains(funding_txo) {
7019                                 log_info!(args.logger, "Broadcasting latest holder commitment transaction for closed channel {}", log_bytes!(funding_txo.to_channel_id()));
7020                                 monitor.broadcast_latest_holder_commitment_txn(&args.tx_broadcaster, &args.logger);
7021                         }
7022                 }
7023
7024                 const MAX_ALLOC_SIZE: usize = 1024 * 64;
7025                 let forward_htlcs_count: u64 = Readable::read(reader)?;
7026                 let mut forward_htlcs = HashMap::with_capacity(cmp::min(forward_htlcs_count as usize, 128));
7027                 for _ in 0..forward_htlcs_count {
7028                         let short_channel_id = Readable::read(reader)?;
7029                         let pending_forwards_count: u64 = Readable::read(reader)?;
7030                         let mut pending_forwards = Vec::with_capacity(cmp::min(pending_forwards_count as usize, MAX_ALLOC_SIZE/mem::size_of::<HTLCForwardInfo>()));
7031                         for _ in 0..pending_forwards_count {
7032                                 pending_forwards.push(Readable::read(reader)?);
7033                         }
7034                         forward_htlcs.insert(short_channel_id, pending_forwards);
7035                 }
7036
7037                 let claimable_htlcs_count: u64 = Readable::read(reader)?;
7038                 let mut claimable_htlcs_list = Vec::with_capacity(cmp::min(claimable_htlcs_count as usize, 128));
7039                 for _ in 0..claimable_htlcs_count {
7040                         let payment_hash = Readable::read(reader)?;
7041                         let previous_hops_len: u64 = Readable::read(reader)?;
7042                         let mut previous_hops = Vec::with_capacity(cmp::min(previous_hops_len as usize, MAX_ALLOC_SIZE/mem::size_of::<ClaimableHTLC>()));
7043                         for _ in 0..previous_hops_len {
7044                                 previous_hops.push(<ClaimableHTLC as Readable>::read(reader)?);
7045                         }
7046                         claimable_htlcs_list.push((payment_hash, previous_hops));
7047                 }
7048
7049                 let peer_count: u64 = Readable::read(reader)?;
7050                 let mut per_peer_state = HashMap::with_capacity(cmp::min(peer_count as usize, MAX_ALLOC_SIZE/mem::size_of::<(PublicKey, Mutex<PeerState>)>()));
7051                 for _ in 0..peer_count {
7052                         let peer_pubkey = Readable::read(reader)?;
7053                         let peer_state = PeerState {
7054                                 latest_features: Readable::read(reader)?,
7055                         };
7056                         per_peer_state.insert(peer_pubkey, Mutex::new(peer_state));
7057                 }
7058
7059                 let event_count: u64 = Readable::read(reader)?;
7060                 let mut pending_events_read: Vec<events::Event> = Vec::with_capacity(cmp::min(event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<events::Event>()));
7061                 for _ in 0..event_count {
7062                         match MaybeReadable::read(reader)? {
7063                                 Some(event) => pending_events_read.push(event),
7064                                 None => continue,
7065                         }
7066                 }
7067                 if forward_htlcs_count > 0 {
7068                         // If we have pending HTLCs to forward, assume we either dropped a
7069                         // `PendingHTLCsForwardable` or the user received it but never processed it as they
7070                         // shut down before the timer hit. Either way, set the time_forwardable to a small
7071                         // constant as enough time has likely passed that we should simply handle the forwards
7072                         // now, or at least after the user gets a chance to reconnect to our peers.
7073                         pending_events_read.push(events::Event::PendingHTLCsForwardable {
7074                                 time_forwardable: Duration::from_secs(2),
7075                         });
7076                 }
7077
7078                 let background_event_count: u64 = Readable::read(reader)?;
7079                 let mut pending_background_events_read: Vec<BackgroundEvent> = Vec::with_capacity(cmp::min(background_event_count as usize, MAX_ALLOC_SIZE/mem::size_of::<BackgroundEvent>()));
7080                 for _ in 0..background_event_count {
7081                         match <u8 as Readable>::read(reader)? {
7082                                 0 => pending_background_events_read.push(BackgroundEvent::ClosingMonitorUpdate((Readable::read(reader)?, Readable::read(reader)?))),
7083                                 _ => return Err(DecodeError::InvalidValue),
7084                         }
7085                 }
7086
7087                 let _last_node_announcement_serial: u32 = Readable::read(reader)?; // Only used < 0.0.111
7088                 let highest_seen_timestamp: u32 = Readable::read(reader)?;
7089
7090                 let pending_inbound_payment_count: u64 = Readable::read(reader)?;
7091                 let mut pending_inbound_payments: HashMap<PaymentHash, PendingInboundPayment> = HashMap::with_capacity(cmp::min(pending_inbound_payment_count as usize, MAX_ALLOC_SIZE/(3*32)));
7092                 for _ in 0..pending_inbound_payment_count {
7093                         if pending_inbound_payments.insert(Readable::read(reader)?, Readable::read(reader)?).is_some() {
7094                                 return Err(DecodeError::InvalidValue);
7095                         }
7096                 }
7097
7098                 let pending_outbound_payments_count_compat: u64 = Readable::read(reader)?;
7099                 let mut pending_outbound_payments_compat: HashMap<PaymentId, PendingOutboundPayment> =
7100                         HashMap::with_capacity(cmp::min(pending_outbound_payments_count_compat as usize, MAX_ALLOC_SIZE/32));
7101                 for _ in 0..pending_outbound_payments_count_compat {
7102                         let session_priv = Readable::read(reader)?;
7103                         let payment = PendingOutboundPayment::Legacy {
7104                                 session_privs: [session_priv].iter().cloned().collect()
7105                         };
7106                         if pending_outbound_payments_compat.insert(PaymentId(session_priv), payment).is_some() {
7107                                 return Err(DecodeError::InvalidValue)
7108                         };
7109                 }
7110
7111                 // pending_outbound_payments_no_retry is for compatibility with 0.0.101 clients.
7112                 let mut pending_outbound_payments_no_retry: Option<HashMap<PaymentId, HashSet<[u8; 32]>>> = None;
7113                 let mut pending_outbound_payments = None;
7114                 let mut received_network_pubkey: Option<PublicKey> = None;
7115                 let mut fake_scid_rand_bytes: Option<[u8; 32]> = None;
7116                 let mut probing_cookie_secret: Option<[u8; 32]> = None;
7117                 let mut claimable_htlc_purposes = None;
7118                 read_tlv_fields!(reader, {
7119                         (1, pending_outbound_payments_no_retry, option),
7120                         (3, pending_outbound_payments, option),
7121                         (5, received_network_pubkey, option),
7122                         (7, fake_scid_rand_bytes, option),
7123                         (9, claimable_htlc_purposes, vec_type),
7124                         (11, probing_cookie_secret, option),
7125                 });
7126                 if fake_scid_rand_bytes.is_none() {
7127                         fake_scid_rand_bytes = Some(args.keys_manager.get_secure_random_bytes());
7128                 }
7129
7130                 if probing_cookie_secret.is_none() {
7131                         probing_cookie_secret = Some(args.keys_manager.get_secure_random_bytes());
7132                 }
7133
7134                 if pending_outbound_payments.is_none() && pending_outbound_payments_no_retry.is_none() {
7135                         pending_outbound_payments = Some(pending_outbound_payments_compat);
7136                 } else if pending_outbound_payments.is_none() {
7137                         let mut outbounds = HashMap::new();
7138                         for (id, session_privs) in pending_outbound_payments_no_retry.unwrap().drain() {
7139                                 outbounds.insert(id, PendingOutboundPayment::Legacy { session_privs });
7140                         }
7141                         pending_outbound_payments = Some(outbounds);
7142                 } else {
7143                         // If we're tracking pending payments, ensure we haven't lost any by looking at the
7144                         // ChannelMonitor data for any channels for which we do not have authorative state
7145                         // (i.e. those for which we just force-closed above or we otherwise don't have a
7146                         // corresponding `Channel` at all).
7147                         // This avoids several edge-cases where we would otherwise "forget" about pending
7148                         // payments which are still in-flight via their on-chain state.
7149                         // We only rebuild the pending payments map if we were most recently serialized by
7150                         // 0.0.102+
7151                         for (_, monitor) in args.channel_monitors.iter() {
7152                                 if by_id.get(&monitor.get_funding_txo().0.to_channel_id()).is_none() {
7153                                         for (htlc_source, htlc) in monitor.get_pending_outbound_htlcs() {
7154                                                 if let HTLCSource::OutboundRoute { payment_id, session_priv, path, payment_secret, .. } = htlc_source {
7155                                                         if path.is_empty() {
7156                                                                 log_error!(args.logger, "Got an empty path for a pending payment");
7157                                                                 return Err(DecodeError::InvalidValue);
7158                                                         }
7159                                                         let path_amt = path.last().unwrap().fee_msat;
7160                                                         let mut session_priv_bytes = [0; 32];
7161                                                         session_priv_bytes[..].copy_from_slice(&session_priv[..]);
7162                                                         match pending_outbound_payments.as_mut().unwrap().entry(payment_id) {
7163                                                                 hash_map::Entry::Occupied(mut entry) => {
7164                                                                         let newly_added = entry.get_mut().insert(session_priv_bytes, &path);
7165                                                                         log_info!(args.logger, "{} a pending payment path for {} msat for session priv {} on an existing pending payment with payment hash {}",
7166                                                                                 if newly_added { "Added" } else { "Had" }, path_amt, log_bytes!(session_priv_bytes), log_bytes!(htlc.payment_hash.0));
7167                                                                 },
7168                                                                 hash_map::Entry::Vacant(entry) => {
7169                                                                         let path_fee = path.get_path_fees();
7170                                                                         entry.insert(PendingOutboundPayment::Retryable {
7171                                                                                 session_privs: [session_priv_bytes].iter().map(|a| *a).collect(),
7172                                                                                 payment_hash: htlc.payment_hash,
7173                                                                                 payment_secret,
7174                                                                                 pending_amt_msat: path_amt,
7175                                                                                 pending_fee_msat: Some(path_fee),
7176                                                                                 total_msat: path_amt,
7177                                                                                 starting_block_height: best_block_height,
7178                                                                         });
7179                                                                         log_info!(args.logger, "Added a pending payment for {} msat with payment hash {} for path with session priv {}",
7180                                                                                 path_amt, log_bytes!(htlc.payment_hash.0),  log_bytes!(session_priv_bytes));
7181                                                                 }
7182                                                         }
7183                                                 }
7184                                         }
7185                                 }
7186                         }
7187                 }
7188
7189                 let inbound_pmt_key_material = args.keys_manager.get_inbound_payment_key_material();
7190                 let expanded_inbound_key = inbound_payment::ExpandedKey::new(&inbound_pmt_key_material);
7191
7192                 let mut claimable_htlcs = HashMap::with_capacity(claimable_htlcs_list.len());
7193                 if let Some(mut purposes) = claimable_htlc_purposes {
7194                         if purposes.len() != claimable_htlcs_list.len() {
7195                                 return Err(DecodeError::InvalidValue);
7196                         }
7197                         for (purpose, (payment_hash, previous_hops)) in purposes.drain(..).zip(claimable_htlcs_list.drain(..)) {
7198                                 claimable_htlcs.insert(payment_hash, (purpose, previous_hops));
7199                         }
7200                 } else {
7201                         // LDK versions prior to 0.0.107 did not write a `pending_htlc_purposes`, but do
7202                         // include a `_legacy_hop_data` in the `OnionPayload`.
7203                         for (payment_hash, previous_hops) in claimable_htlcs_list.drain(..) {
7204                                 if previous_hops.is_empty() {
7205                                         return Err(DecodeError::InvalidValue);
7206                                 }
7207                                 let purpose = match &previous_hops[0].onion_payload {
7208                                         OnionPayload::Invoice { _legacy_hop_data } => {
7209                                                 if let Some(hop_data) = _legacy_hop_data {
7210                                                         events::PaymentPurpose::InvoicePayment {
7211                                                                 payment_preimage: match pending_inbound_payments.get(&payment_hash) {
7212                                                                         Some(inbound_payment) => inbound_payment.payment_preimage,
7213                                                                         None => match inbound_payment::verify(payment_hash, &hop_data, 0, &expanded_inbound_key, &args.logger) {
7214                                                                                 Ok(payment_preimage) => payment_preimage,
7215                                                                                 Err(()) => {
7216                                                                                         log_error!(args.logger, "Failed to read claimable payment data for HTLC with payment hash {} - was not a pending inbound payment and didn't match our payment key", log_bytes!(payment_hash.0));
7217                                                                                         return Err(DecodeError::InvalidValue);
7218                                                                                 }
7219                                                                         }
7220                                                                 },
7221                                                                 payment_secret: hop_data.payment_secret,
7222                                                         }
7223                                                 } else { return Err(DecodeError::InvalidValue); }
7224                                         },
7225                                         OnionPayload::Spontaneous(payment_preimage) =>
7226                                                 events::PaymentPurpose::SpontaneousPayment(*payment_preimage),
7227                                 };
7228                                 claimable_htlcs.insert(payment_hash, (purpose, previous_hops));
7229                         }
7230                 }
7231
7232                 let mut secp_ctx = Secp256k1::new();
7233                 secp_ctx.seeded_randomize(&args.keys_manager.get_secure_random_bytes());
7234
7235                 if !channel_closures.is_empty() {
7236                         pending_events_read.append(&mut channel_closures);
7237                 }
7238
7239                 let our_network_key = match args.keys_manager.get_node_secret(Recipient::Node) {
7240                         Ok(key) => key,
7241                         Err(()) => return Err(DecodeError::InvalidValue)
7242                 };
7243                 let our_network_pubkey = PublicKey::from_secret_key(&secp_ctx, &our_network_key);
7244                 if let Some(network_pubkey) = received_network_pubkey {
7245                         if network_pubkey != our_network_pubkey {
7246                                 log_error!(args.logger, "Key that was generated does not match the existing key.");
7247                                 return Err(DecodeError::InvalidValue);
7248                         }
7249                 }
7250
7251                 let mut outbound_scid_aliases = HashSet::new();
7252                 for (chan_id, chan) in by_id.iter_mut() {
7253                         if chan.outbound_scid_alias() == 0 {
7254                                 let mut outbound_scid_alias;
7255                                 loop {
7256                                         outbound_scid_alias = fake_scid::Namespace::OutboundAlias
7257                                                 .get_fake_scid(best_block_height, &genesis_hash, fake_scid_rand_bytes.as_ref().unwrap(), &args.keys_manager);
7258                                         if outbound_scid_aliases.insert(outbound_scid_alias) { break; }
7259                                 }
7260                                 chan.set_outbound_scid_alias(outbound_scid_alias);
7261                         } else if !outbound_scid_aliases.insert(chan.outbound_scid_alias()) {
7262                                 // Note that in rare cases its possible to hit this while reading an older
7263                                 // channel if we just happened to pick a colliding outbound alias above.
7264                                 log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
7265                                 return Err(DecodeError::InvalidValue);
7266                         }
7267                         if chan.is_usable() {
7268                                 if short_to_chan_info.insert(chan.outbound_scid_alias(), (chan.get_counterparty_node_id(), *chan_id)).is_some() {
7269                                         // Note that in rare cases its possible to hit this while reading an older
7270                                         // channel if we just happened to pick a colliding outbound alias above.
7271                                         log_error!(args.logger, "Got duplicate outbound SCID alias; {}", chan.outbound_scid_alias());
7272                                         return Err(DecodeError::InvalidValue);
7273                                 }
7274                         }
7275                 }
7276
7277                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(args.fee_estimator);
7278
7279                 for (_, monitor) in args.channel_monitors.iter() {
7280                         for (payment_hash, payment_preimage) in monitor.get_stored_preimages() {
7281                                 if let Some((payment_purpose, claimable_htlcs)) = claimable_htlcs.remove(&payment_hash) {
7282                                         log_info!(args.logger, "Re-claiming HTLCs with payment hash {} as we've released the preimage to a ChannelMonitor!", log_bytes!(payment_hash.0));
7283                                         let mut claimable_amt_msat = 0;
7284                                         for claimable_htlc in claimable_htlcs {
7285                                                 claimable_amt_msat += claimable_htlc.value;
7286
7287                                                 // Add a holding-cell claim of the payment to the Channel, which should be
7288                                                 // applied ~immediately on peer reconnection. Because it won't generate a
7289                                                 // new commitment transaction we can just provide the payment preimage to
7290                                                 // the corresponding ChannelMonitor and nothing else.
7291                                                 //
7292                                                 // We do so directly instead of via the normal ChannelMonitor update
7293                                                 // procedure as the ChainMonitor hasn't yet been initialized, implying
7294                                                 // we're not allowed to call it directly yet. Further, we do the update
7295                                                 // without incrementing the ChannelMonitor update ID as there isn't any
7296                                                 // reason to.
7297                                                 // If we were to generate a new ChannelMonitor update ID here and then
7298                                                 // crash before the user finishes block connect we'd end up force-closing
7299                                                 // this channel as well. On the flip side, there's no harm in restarting
7300                                                 // without the new monitor persisted - we'll end up right back here on
7301                                                 // restart.
7302                                                 let previous_channel_id = claimable_htlc.prev_hop.outpoint.to_channel_id();
7303                                                 if let Some(channel) = by_id.get_mut(&previous_channel_id) {
7304                                                         channel.claim_htlc_while_disconnected_dropping_mon_update(claimable_htlc.prev_hop.htlc_id, payment_preimage, &args.logger);
7305                                                 }
7306                                                 if let Some(previous_hop_monitor) = args.channel_monitors.get(&claimable_htlc.prev_hop.outpoint) {
7307                                                         previous_hop_monitor.provide_payment_preimage(&payment_hash, &payment_preimage, &args.tx_broadcaster, &bounded_fee_estimator, &args.logger);
7308                                                 }
7309                                         }
7310                                         pending_events_read.push(events::Event::PaymentClaimed {
7311                                                 payment_hash,
7312                                                 purpose: payment_purpose,
7313                                                 amount_msat: claimable_amt_msat,
7314                                         });
7315                                 }
7316                         }
7317                 }
7318
7319                 let channel_manager = ChannelManager {
7320                         genesis_hash,
7321                         fee_estimator: bounded_fee_estimator,
7322                         chain_monitor: args.chain_monitor,
7323                         tx_broadcaster: args.tx_broadcaster,
7324
7325                         best_block: RwLock::new(BestBlock::new(best_block_hash, best_block_height)),
7326
7327                         channel_state: Mutex::new(ChannelHolder {
7328                                 by_id,
7329                                 short_to_chan_info,
7330                                 claimable_htlcs,
7331                                 pending_msg_events: Vec::new(),
7332                         }),
7333                         inbound_payment_key: expanded_inbound_key,
7334                         pending_inbound_payments: Mutex::new(pending_inbound_payments),
7335                         pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()),
7336
7337                         forward_htlcs: Mutex::new(forward_htlcs),
7338                         outbound_scid_aliases: Mutex::new(outbound_scid_aliases),
7339                         id_to_peer: Mutex::new(id_to_peer),
7340                         fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(),
7341
7342                         probing_cookie_secret: probing_cookie_secret.unwrap(),
7343
7344                         our_network_key,
7345                         our_network_pubkey,
7346                         secp_ctx,
7347
7348                         highest_seen_timestamp: AtomicUsize::new(highest_seen_timestamp as usize),
7349
7350                         per_peer_state: RwLock::new(per_peer_state),
7351
7352                         pending_events: Mutex::new(pending_events_read),
7353                         pending_background_events: Mutex::new(pending_background_events_read),
7354                         total_consistency_lock: RwLock::new(()),
7355                         persistence_notifier: Notifier::new(),
7356
7357                         keys_manager: args.keys_manager,
7358                         logger: args.logger,
7359                         default_configuration: args.default_config,
7360                 };
7361
7362                 for htlc_source in failed_htlcs.drain(..) {
7363                         let (source, payment_hash, counterparty_node_id, channel_id) = htlc_source;
7364                         let receiver = HTLCDestination::NextHopChannel { node_id: Some(counterparty_node_id), channel_id };
7365                         channel_manager.fail_htlc_backwards_internal(source, &payment_hash, HTLCFailReason::Reason { failure_code: 0x4000 | 8, data: Vec::new() }, receiver);
7366                 }
7367
7368                 //TODO: Broadcast channel update for closed channels, but only after we've made a
7369                 //connection or two.
7370
7371                 Ok((best_block_hash.clone(), channel_manager))
7372         }
7373 }
7374
7375 #[cfg(test)]
7376 mod tests {
7377         use bitcoin::hashes::Hash;
7378         use bitcoin::hashes::sha256::Hash as Sha256;
7379         use core::time::Duration;
7380         use core::sync::atomic::Ordering;
7381         use crate::ln::{PaymentPreimage, PaymentHash, PaymentSecret};
7382         use crate::ln::channelmanager::{self, inbound_payment, PaymentId, PaymentSendFailure};
7383         use crate::ln::functional_test_utils::*;
7384         use crate::ln::msgs;
7385         use crate::ln::msgs::ChannelMessageHandler;
7386         use crate::routing::router::{PaymentParameters, RouteParameters, find_route};
7387         use crate::util::errors::APIError;
7388         use crate::util::events::{Event, HTLCDestination, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
7389         use crate::util::test_utils;
7390         use crate::chain::keysinterface::KeysInterface;
7391
7392         #[test]
7393         fn test_notify_limits() {
7394                 // Check that a few cases which don't require the persistence of a new ChannelManager,
7395                 // indeed, do not cause the persistence of a new ChannelManager.
7396                 let chanmon_cfgs = create_chanmon_cfgs(3);
7397                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
7398                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
7399                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
7400
7401                 // All nodes start with a persistable update pending as `create_network` connects each node
7402                 // with all other nodes to make most tests simpler.
7403                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7404                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7405                 assert!(nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7406
7407                 let mut chan = create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7408
7409                 // We check that the channel info nodes have doesn't change too early, even though we try
7410                 // to connect messages with new values
7411                 chan.0.contents.fee_base_msat *= 2;
7412                 chan.1.contents.fee_base_msat *= 2;
7413                 let node_a_chan_info = nodes[0].node.list_channels()[0].clone();
7414                 let node_b_chan_info = nodes[1].node.list_channels()[0].clone();
7415
7416                 // The first two nodes (which opened a channel) should now require fresh persistence
7417                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7418                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7419                 // ... but the last node should not.
7420                 assert!(!nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7421                 // After persisting the first two nodes they should no longer need fresh persistence.
7422                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7423                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7424
7425                 // Node 3, unrelated to the only channel, shouldn't care if it receives a channel_update
7426                 // about the channel.
7427                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.0);
7428                 nodes[2].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &chan.1);
7429                 assert!(!nodes[2].node.await_persistable_update_timeout(Duration::from_millis(1)));
7430
7431                 // The nodes which are a party to the channel should also ignore messages from unrelated
7432                 // parties.
7433                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
7434                 nodes[0].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
7435                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.0);
7436                 nodes[1].node.handle_channel_update(&nodes[2].node.get_our_node_id(), &chan.1);
7437                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7438                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7439
7440                 // At this point the channel info given by peers should still be the same.
7441                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
7442                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
7443
7444                 // An earlier version of handle_channel_update didn't check the directionality of the
7445                 // update message and would always update the local fee info, even if our peer was
7446                 // (spuriously) forwarding us our own channel_update.
7447                 let as_node_one = nodes[0].node.get_our_node_id().serialize()[..] < nodes[1].node.get_our_node_id().serialize()[..];
7448                 let as_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.0 } else { &chan.1 };
7449                 let bs_update = if as_node_one == (chan.0.contents.flags & 1 == 0 /* chan.0 is from node one */) { &chan.1 } else { &chan.0 };
7450
7451                 // First deliver each peers' own message, checking that the node doesn't need to be
7452                 // persisted and that its channel info remains the same.
7453                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &as_update);
7454                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &bs_update);
7455                 assert!(!nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7456                 assert!(!nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7457                 assert_eq!(nodes[0].node.list_channels()[0], node_a_chan_info);
7458                 assert_eq!(nodes[1].node.list_channels()[0], node_b_chan_info);
7459
7460                 // Finally, deliver the other peers' message, ensuring each node needs to be persisted and
7461                 // the channel info has updated.
7462                 nodes[0].node.handle_channel_update(&nodes[1].node.get_our_node_id(), &bs_update);
7463                 nodes[1].node.handle_channel_update(&nodes[0].node.get_our_node_id(), &as_update);
7464                 assert!(nodes[0].node.await_persistable_update_timeout(Duration::from_millis(1)));
7465                 assert!(nodes[1].node.await_persistable_update_timeout(Duration::from_millis(1)));
7466                 assert_ne!(nodes[0].node.list_channels()[0], node_a_chan_info);
7467                 assert_ne!(nodes[1].node.list_channels()[0], node_b_chan_info);
7468         }
7469
7470         #[test]
7471         fn test_keysend_dup_hash_partial_mpp() {
7472                 // Test that a keysend payment with a duplicate hash to an existing partial MPP payment fails as
7473                 // expected.
7474                 let chanmon_cfgs = create_chanmon_cfgs(2);
7475                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7476                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7477                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7478                 create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7479
7480                 // First, send a partial MPP payment.
7481                 let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
7482                 let mut mpp_route = route.clone();
7483                 mpp_route.paths.push(mpp_route.paths[0].clone());
7484
7485                 let payment_id = PaymentId([42; 32]);
7486                 // Use the utility function send_payment_along_path to send the payment with MPP data which
7487                 // indicates there are more HTLCs coming.
7488                 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.
7489                 let session_privs = nodes[0].node.add_new_pending_payment(our_payment_hash, Some(payment_secret), payment_id, &mpp_route).unwrap();
7490                 nodes[0].node.send_payment_along_path(&mpp_route.paths[0], &route.payment_params, &our_payment_hash, &Some(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[0]).unwrap();
7491                 check_added_monitors!(nodes[0], 1);
7492                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7493                 assert_eq!(events.len(), 1);
7494                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), false, None);
7495
7496                 // Next, send a keysend payment with the same payment_hash and make sure it fails.
7497                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7498                 check_added_monitors!(nodes[0], 1);
7499                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7500                 assert_eq!(events.len(), 1);
7501                 let ev = events.drain(..).next().unwrap();
7502                 let payment_event = SendEvent::from_event(ev);
7503                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7504                 check_added_monitors!(nodes[1], 0);
7505                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7506                 expect_pending_htlcs_forwardable!(nodes[1]);
7507                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash: our_payment_hash }]);
7508                 check_added_monitors!(nodes[1], 1);
7509                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7510                 assert!(updates.update_add_htlcs.is_empty());
7511                 assert!(updates.update_fulfill_htlcs.is_empty());
7512                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7513                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7514                 assert!(updates.update_fee.is_none());
7515                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7516                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7517                 expect_payment_failed!(nodes[0], our_payment_hash, true);
7518
7519                 // Send the second half of the original MPP payment.
7520                 nodes[0].node.send_payment_along_path(&mpp_route.paths[1], &route.payment_params, &our_payment_hash, &Some(payment_secret), 200_000, cur_height, payment_id, &None, session_privs[1]).unwrap();
7521                 check_added_monitors!(nodes[0], 1);
7522                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7523                 assert_eq!(events.len(), 1);
7524                 pass_along_path(&nodes[0], &[&nodes[1]], 200_000, our_payment_hash, Some(payment_secret), events.drain(..).next().unwrap(), true, None);
7525
7526                 // Claim the full MPP payment. Note that we can't use a test utility like
7527                 // claim_funds_along_route because the ordering of the messages causes the second half of the
7528                 // payment to be put in the holding cell, which confuses the test utilities. So we exchange the
7529                 // lightning messages manually.
7530                 nodes[1].node.claim_funds(payment_preimage);
7531                 expect_payment_claimed!(nodes[1], our_payment_hash, 200_000);
7532                 check_added_monitors!(nodes[1], 2);
7533
7534                 let bs_first_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7535                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_first_updates.update_fulfill_htlcs[0]);
7536                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_first_updates.commitment_signed);
7537                 check_added_monitors!(nodes[0], 1);
7538                 let (as_first_raa, as_first_cs) = get_revoke_commit_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7539                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_first_raa);
7540                 check_added_monitors!(nodes[1], 1);
7541                 let bs_second_updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7542                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_first_cs);
7543                 check_added_monitors!(nodes[1], 1);
7544                 let bs_first_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
7545                 nodes[0].node.handle_update_fulfill_htlc(&nodes[1].node.get_our_node_id(), &bs_second_updates.update_fulfill_htlcs[0]);
7546                 nodes[0].node.handle_commitment_signed(&nodes[1].node.get_our_node_id(), &bs_second_updates.commitment_signed);
7547                 check_added_monitors!(nodes[0], 1);
7548                 let as_second_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
7549                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_first_raa);
7550                 let as_second_updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7551                 check_added_monitors!(nodes[0], 1);
7552                 nodes[1].node.handle_revoke_and_ack(&nodes[0].node.get_our_node_id(), &as_second_raa);
7553                 check_added_monitors!(nodes[1], 1);
7554                 nodes[1].node.handle_commitment_signed(&nodes[0].node.get_our_node_id(), &as_second_updates.commitment_signed);
7555                 check_added_monitors!(nodes[1], 1);
7556                 let bs_third_raa = get_event_msg!(nodes[1], MessageSendEvent::SendRevokeAndACK, nodes[0].node.get_our_node_id());
7557                 nodes[0].node.handle_revoke_and_ack(&nodes[1].node.get_our_node_id(), &bs_third_raa);
7558                 check_added_monitors!(nodes[0], 1);
7559
7560                 // Note that successful MPP payments will generate a single PaymentSent event upon the first
7561                 // path's success and a PaymentPathSuccessful event for each path's success.
7562                 let events = nodes[0].node.get_and_clear_pending_events();
7563                 assert_eq!(events.len(), 3);
7564                 match events[0] {
7565                         Event::PaymentSent { payment_id: ref id, payment_preimage: ref preimage, payment_hash: ref hash, .. } => {
7566                                 assert_eq!(Some(payment_id), *id);
7567                                 assert_eq!(payment_preimage, *preimage);
7568                                 assert_eq!(our_payment_hash, *hash);
7569                         },
7570                         _ => panic!("Unexpected event"),
7571                 }
7572                 match events[1] {
7573                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
7574                                 assert_eq!(payment_id, *actual_payment_id);
7575                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
7576                                 assert_eq!(route.paths[0], *path);
7577                         },
7578                         _ => panic!("Unexpected event"),
7579                 }
7580                 match events[2] {
7581                         Event::PaymentPathSuccessful { payment_id: ref actual_payment_id, ref payment_hash, ref path } => {
7582                                 assert_eq!(payment_id, *actual_payment_id);
7583                                 assert_eq!(our_payment_hash, *payment_hash.as_ref().unwrap());
7584                                 assert_eq!(route.paths[0], *path);
7585                         },
7586                         _ => panic!("Unexpected event"),
7587                 }
7588         }
7589
7590         #[test]
7591         fn test_keysend_dup_payment_hash() {
7592                 // (1): Test that a keysend payment with a duplicate payment hash to an existing pending
7593                 //      outbound regular payment fails as expected.
7594                 // (2): Test that a regular payment with a duplicate payment hash to an existing keysend payment
7595                 //      fails as expected.
7596                 let chanmon_cfgs = create_chanmon_cfgs(2);
7597                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7598                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7599                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7600                 create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features());
7601                 let scorer = test_utils::TestScorer::with_penalty(0);
7602                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7603
7604                 // To start (1), send a regular payment but don't claim it.
7605                 let expected_route = [&nodes[1]];
7606                 let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &expected_route, 100_000);
7607
7608                 // Next, attempt a keysend payment and make sure it fails.
7609                 let route_params = RouteParameters {
7610                         payment_params: PaymentParameters::for_keysend(expected_route.last().unwrap().node.get_our_node_id()),
7611                         final_value_msat: 100_000,
7612                         final_cltv_expiry_delta: TEST_FINAL_CLTV,
7613                 };
7614                 let route = find_route(
7615                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
7616                         None, nodes[0].logger, &scorer, &random_seed_bytes
7617                 ).unwrap();
7618                 nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7619                 check_added_monitors!(nodes[0], 1);
7620                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7621                 assert_eq!(events.len(), 1);
7622                 let ev = events.drain(..).next().unwrap();
7623                 let payment_event = SendEvent::from_event(ev);
7624                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7625                 check_added_monitors!(nodes[1], 0);
7626                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7627                 // We have to forward pending HTLCs twice - once tries to forward the payment forward (and
7628                 // fails), the second will process the resulting failure and fail the HTLC backward
7629                 expect_pending_htlcs_forwardable!(nodes[1]);
7630                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
7631                 check_added_monitors!(nodes[1], 1);
7632                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7633                 assert!(updates.update_add_htlcs.is_empty());
7634                 assert!(updates.update_fulfill_htlcs.is_empty());
7635                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7636                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7637                 assert!(updates.update_fee.is_none());
7638                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7639                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7640                 expect_payment_failed!(nodes[0], payment_hash, true);
7641
7642                 // Finally, claim the original payment.
7643                 claim_payment(&nodes[0], &expected_route, payment_preimage);
7644
7645                 // To start (2), send a keysend payment but don't claim it.
7646                 let payment_preimage = PaymentPreimage([42; 32]);
7647                 let route = find_route(
7648                         &nodes[0].node.get_our_node_id(), &route_params, &nodes[0].network_graph,
7649                         None, nodes[0].logger, &scorer, &random_seed_bytes
7650                 ).unwrap();
7651                 let payment_hash = nodes[0].node.send_spontaneous_payment(&route, Some(payment_preimage), PaymentId(payment_preimage.0)).unwrap();
7652                 check_added_monitors!(nodes[0], 1);
7653                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7654                 assert_eq!(events.len(), 1);
7655                 let event = events.pop().unwrap();
7656                 let path = vec![&nodes[1]];
7657                 pass_along_path(&nodes[0], &path, 100_000, payment_hash, None, event, true, Some(payment_preimage));
7658
7659                 // Next, attempt a regular payment and make sure it fails.
7660                 let payment_secret = PaymentSecret([43; 32]);
7661                 nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret), PaymentId(payment_hash.0)).unwrap();
7662                 check_added_monitors!(nodes[0], 1);
7663                 let mut events = nodes[0].node.get_and_clear_pending_msg_events();
7664                 assert_eq!(events.len(), 1);
7665                 let ev = events.drain(..).next().unwrap();
7666                 let payment_event = SendEvent::from_event(ev);
7667                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
7668                 check_added_monitors!(nodes[1], 0);
7669                 commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
7670                 expect_pending_htlcs_forwardable!(nodes[1]);
7671                 expect_pending_htlcs_forwardable_and_htlc_handling_failed!(nodes[1], vec![HTLCDestination::FailedPayment { payment_hash }]);
7672                 check_added_monitors!(nodes[1], 1);
7673                 let updates = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
7674                 assert!(updates.update_add_htlcs.is_empty());
7675                 assert!(updates.update_fulfill_htlcs.is_empty());
7676                 assert_eq!(updates.update_fail_htlcs.len(), 1);
7677                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7678                 assert!(updates.update_fee.is_none());
7679                 nodes[0].node.handle_update_fail_htlc(&nodes[1].node.get_our_node_id(), &updates.update_fail_htlcs[0]);
7680                 commitment_signed_dance!(nodes[0], nodes[1], updates.commitment_signed, true, true);
7681                 expect_payment_failed!(nodes[0], payment_hash, true);
7682
7683                 // Finally, succeed the keysend payment.
7684                 claim_payment(&nodes[0], &expected_route, payment_preimage);
7685         }
7686
7687         #[test]
7688         fn test_keysend_hash_mismatch() {
7689                 // Test that if we receive a keysend `update_add_htlc` msg, we fail as expected if the keysend
7690                 // preimage doesn't match the msg's payment hash.
7691                 let chanmon_cfgs = create_chanmon_cfgs(2);
7692                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7693                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7694                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7695
7696                 let payer_pubkey = nodes[0].node.get_our_node_id();
7697                 let payee_pubkey = nodes[1].node.get_our_node_id();
7698                 nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7699                 nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7700
7701                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], channelmanager::provided_init_features(), channelmanager::provided_init_features());
7702                 let route_params = RouteParameters {
7703                         payment_params: PaymentParameters::for_keysend(payee_pubkey),
7704                         final_value_msat: 10_000,
7705                         final_cltv_expiry_delta: 40,
7706                 };
7707                 let network_graph = nodes[0].network_graph;
7708                 let first_hops = nodes[0].node.list_usable_channels();
7709                 let scorer = test_utils::TestScorer::with_penalty(0);
7710                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7711                 let route = find_route(
7712                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
7713                         nodes[0].logger, &scorer, &random_seed_bytes
7714                 ).unwrap();
7715
7716                 let test_preimage = PaymentPreimage([42; 32]);
7717                 let mismatch_payment_hash = PaymentHash([43; 32]);
7718                 let session_privs = nodes[0].node.add_new_pending_payment(mismatch_payment_hash, None, PaymentId(mismatch_payment_hash.0), &route).unwrap();
7719                 nodes[0].node.send_payment_internal(&route, mismatch_payment_hash, &None, Some(test_preimage), PaymentId(mismatch_payment_hash.0), None, session_privs).unwrap();
7720                 check_added_monitors!(nodes[0], 1);
7721
7722                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7723                 assert_eq!(updates.update_add_htlcs.len(), 1);
7724                 assert!(updates.update_fulfill_htlcs.is_empty());
7725                 assert!(updates.update_fail_htlcs.is_empty());
7726                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7727                 assert!(updates.update_fee.is_none());
7728                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
7729
7730                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "Payment preimage didn't match payment hash".to_string(), 1);
7731         }
7732
7733         #[test]
7734         fn test_keysend_msg_with_secret_err() {
7735                 // Test that we error as expected if we receive a keysend payment that includes a payment secret.
7736                 let chanmon_cfgs = create_chanmon_cfgs(2);
7737                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7738                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7739                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7740
7741                 let payer_pubkey = nodes[0].node.get_our_node_id();
7742                 let payee_pubkey = nodes[1].node.get_our_node_id();
7743                 nodes[0].node.peer_connected(&payee_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7744                 nodes[1].node.peer_connected(&payer_pubkey, &msgs::Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
7745
7746                 let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], channelmanager::provided_init_features(), channelmanager::provided_init_features());
7747                 let route_params = RouteParameters {
7748                         payment_params: PaymentParameters::for_keysend(payee_pubkey),
7749                         final_value_msat: 10_000,
7750                         final_cltv_expiry_delta: 40,
7751                 };
7752                 let network_graph = nodes[0].network_graph;
7753                 let first_hops = nodes[0].node.list_usable_channels();
7754                 let scorer = test_utils::TestScorer::with_penalty(0);
7755                 let random_seed_bytes = chanmon_cfgs[1].keys_manager.get_secure_random_bytes();
7756                 let route = find_route(
7757                         &payer_pubkey, &route_params, &network_graph, Some(&first_hops.iter().collect::<Vec<_>>()),
7758                         nodes[0].logger, &scorer, &random_seed_bytes
7759                 ).unwrap();
7760
7761                 let test_preimage = PaymentPreimage([42; 32]);
7762                 let test_secret = PaymentSecret([43; 32]);
7763                 let payment_hash = PaymentHash(Sha256::hash(&test_preimage.0).into_inner());
7764                 let session_privs = nodes[0].node.add_new_pending_payment(payment_hash, Some(test_secret), PaymentId(payment_hash.0), &route).unwrap();
7765                 nodes[0].node.send_payment_internal(&route, payment_hash, &Some(test_secret), Some(test_preimage), PaymentId(payment_hash.0), None, session_privs).unwrap();
7766                 check_added_monitors!(nodes[0], 1);
7767
7768                 let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
7769                 assert_eq!(updates.update_add_htlcs.len(), 1);
7770                 assert!(updates.update_fulfill_htlcs.is_empty());
7771                 assert!(updates.update_fail_htlcs.is_empty());
7772                 assert!(updates.update_fail_malformed_htlcs.is_empty());
7773                 assert!(updates.update_fee.is_none());
7774                 nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &updates.update_add_htlcs[0]);
7775
7776                 nodes[1].logger.assert_log_contains("lightning::ln::channelmanager".to_string(), "We don't support MPP keysend payments".to_string(), 1);
7777         }
7778
7779         #[test]
7780         fn test_multi_hop_missing_secret() {
7781                 let chanmon_cfgs = create_chanmon_cfgs(4);
7782                 let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
7783                 let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
7784                 let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
7785
7786                 let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7787                 let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7788                 let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7789                 let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, channelmanager::provided_init_features(), channelmanager::provided_init_features()).0.contents.short_channel_id;
7790
7791                 // Marshall an MPP route.
7792                 let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
7793                 let path = route.paths[0].clone();
7794                 route.paths.push(path);
7795                 route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
7796                 route.paths[0][0].short_channel_id = chan_1_id;
7797                 route.paths[0][1].short_channel_id = chan_3_id;
7798                 route.paths[1][0].pubkey = nodes[2].node.get_our_node_id();
7799                 route.paths[1][0].short_channel_id = chan_2_id;
7800                 route.paths[1][1].short_channel_id = chan_4_id;
7801
7802                 match nodes[0].node.send_payment(&route, payment_hash, &None, PaymentId(payment_hash.0)).unwrap_err() {
7803                         PaymentSendFailure::ParameterError(APIError::APIMisuseError { ref err }) => {
7804                                 assert!(regex::Regex::new(r"Payment secret is required for multi-path payments").unwrap().is_match(err))                        },
7805                         _ => panic!("unexpected error")
7806                 }
7807         }
7808
7809         #[test]
7810         fn bad_inbound_payment_hash() {
7811                 // Add coverage for checking that a user-provided payment hash matches the payment secret.
7812                 let chanmon_cfgs = create_chanmon_cfgs(2);
7813                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7814                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7815                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7816
7817                 let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
7818                 let payment_data = msgs::FinalOnionHopData {
7819                         payment_secret,
7820                         total_msat: 100_000,
7821                 };
7822
7823                 // Ensure that if the payment hash given to `inbound_payment::verify` differs from the original,
7824                 // payment verification fails as expected.
7825                 let mut bad_payment_hash = payment_hash.clone();
7826                 bad_payment_hash.0[0] += 1;
7827                 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) {
7828                         Ok(_) => panic!("Unexpected ok"),
7829                         Err(()) => {
7830                                 nodes[0].logger.assert_log_contains("lightning::ln::inbound_payment".to_string(), "Failing HTLC with user-generated payment_hash".to_string(), 1);
7831                         }
7832                 }
7833
7834                 // Check that using the original payment hash succeeds.
7835                 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());
7836         }
7837
7838         #[test]
7839         fn test_id_to_peer_coverage() {
7840                 // Test that the `ChannelManager:id_to_peer` contains channels which have been assigned
7841                 // a `channel_id` (i.e. have had the funding tx created), and that they are removed once
7842                 // the channel is successfully closed.
7843                 let chanmon_cfgs = create_chanmon_cfgs(2);
7844                 let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
7845                 let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
7846                 let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
7847
7848                 nodes[0].node.create_channel(nodes[1].node.get_our_node_id(), 1_000_000, 500_000_000, 42, None).unwrap();
7849                 let open_channel = get_event_msg!(nodes[0], MessageSendEvent::SendOpenChannel, nodes[1].node.get_our_node_id());
7850                 nodes[1].node.handle_open_channel(&nodes[0].node.get_our_node_id(), channelmanager::provided_init_features(), &open_channel);
7851                 let accept_channel = get_event_msg!(nodes[1], MessageSendEvent::SendAcceptChannel, nodes[0].node.get_our_node_id());
7852                 nodes[0].node.handle_accept_channel(&nodes[1].node.get_our_node_id(), channelmanager::provided_init_features(), &accept_channel);
7853
7854                 let (temporary_channel_id, tx, _funding_output) = create_funding_transaction(&nodes[0], &nodes[1].node.get_our_node_id(), 1_000_000, 42);
7855                 let channel_id = &tx.txid().into_inner();
7856                 {
7857                         // Ensure that the `id_to_peer` map is empty until either party has received the
7858                         // funding transaction, and have the real `channel_id`.
7859                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
7860                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7861                 }
7862
7863                 nodes[0].node.funding_transaction_generated(&temporary_channel_id, &nodes[1].node.get_our_node_id(), tx.clone()).unwrap();
7864                 {
7865                         // Assert that `nodes[0]`'s `id_to_peer` map is populated with the channel as soon as
7866                         // as it has the funding transaction.
7867                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7868                         assert_eq!(nodes_0_lock.len(), 1);
7869                         assert!(nodes_0_lock.contains_key(channel_id));
7870
7871                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7872                 }
7873
7874                 let funding_created_msg = get_event_msg!(nodes[0], MessageSendEvent::SendFundingCreated, nodes[1].node.get_our_node_id());
7875
7876                 nodes[1].node.handle_funding_created(&nodes[0].node.get_our_node_id(), &funding_created_msg);
7877                 {
7878                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7879                         assert_eq!(nodes_0_lock.len(), 1);
7880                         assert!(nodes_0_lock.contains_key(channel_id));
7881
7882                         // Assert that `nodes[1]`'s `id_to_peer` map is populated with the channel as soon as
7883                         // as it has the funding transaction.
7884                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7885                         assert_eq!(nodes_1_lock.len(), 1);
7886                         assert!(nodes_1_lock.contains_key(channel_id));
7887                 }
7888                 check_added_monitors!(nodes[1], 1);
7889                 let funding_signed = get_event_msg!(nodes[1], MessageSendEvent::SendFundingSigned, nodes[0].node.get_our_node_id());
7890                 nodes[0].node.handle_funding_signed(&nodes[1].node.get_our_node_id(), &funding_signed);
7891                 check_added_monitors!(nodes[0], 1);
7892                 let (channel_ready, _) = create_chan_between_nodes_with_value_confirm(&nodes[0], &nodes[1], &tx);
7893                 let (announcement, nodes_0_update, nodes_1_update) = create_chan_between_nodes_with_value_b(&nodes[0], &nodes[1], &channel_ready);
7894                 update_nodes_with_chan_announce(&nodes, 0, 1, &announcement, &nodes_0_update, &nodes_1_update);
7895
7896                 nodes[0].node.close_channel(channel_id, &nodes[1].node.get_our_node_id()).unwrap();
7897                 nodes[1].node.handle_shutdown(&nodes[0].node.get_our_node_id(), &channelmanager::provided_init_features(), &get_event_msg!(nodes[0], MessageSendEvent::SendShutdown, nodes[1].node.get_our_node_id()));
7898                 let nodes_1_shutdown = get_event_msg!(nodes[1], MessageSendEvent::SendShutdown, nodes[0].node.get_our_node_id());
7899                 nodes[0].node.handle_shutdown(&nodes[1].node.get_our_node_id(), &channelmanager::provided_init_features(), &nodes_1_shutdown);
7900
7901                 let closing_signed_node_0 = get_event_msg!(nodes[0], MessageSendEvent::SendClosingSigned, nodes[1].node.get_our_node_id());
7902                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0);
7903                 {
7904                         // Assert that the channel is kept in the `id_to_peer` map for both nodes until the
7905                         // channel can be fully closed by both parties (i.e. no outstanding htlcs exists, the
7906                         // fee for the closing transaction has been negotiated and the parties has the other
7907                         // party's signature for the fee negotiated closing transaction.)
7908                         let nodes_0_lock = nodes[0].node.id_to_peer.lock().unwrap();
7909                         assert_eq!(nodes_0_lock.len(), 1);
7910                         assert!(nodes_0_lock.contains_key(channel_id));
7911
7912                         // At this stage, `nodes[1]` has proposed a fee for the closing transaction in the
7913                         // `handle_closing_signed` call above. As `nodes[1]` has not yet received the signature
7914                         // from `nodes[0]` for the closing transaction with the proposed fee, the channel is
7915                         // kept in the `nodes[1]`'s `id_to_peer` map.
7916                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7917                         assert_eq!(nodes_1_lock.len(), 1);
7918                         assert!(nodes_1_lock.contains_key(channel_id));
7919                 }
7920
7921                 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()));
7922                 {
7923                         // `nodes[0]` accepts `nodes[1]`'s proposed fee for the closing transaction, and
7924                         // therefore has all it needs to fully close the channel (both signatures for the
7925                         // closing transaction).
7926                         // Assert that the channel is removed from `nodes[0]`'s `id_to_peer` map as it can be
7927                         // fully closed by `nodes[0]`.
7928                         assert_eq!(nodes[0].node.id_to_peer.lock().unwrap().len(), 0);
7929
7930                         // Assert that the channel is still in `nodes[1]`'s  `id_to_peer` map, as `nodes[1]`
7931                         // doesn't have `nodes[0]`'s signature for the closing transaction yet.
7932                         let nodes_1_lock = nodes[1].node.id_to_peer.lock().unwrap();
7933                         assert_eq!(nodes_1_lock.len(), 1);
7934                         assert!(nodes_1_lock.contains_key(channel_id));
7935                 }
7936
7937                 let (_nodes_0_update, closing_signed_node_0) = get_closing_signed_broadcast!(nodes[0].node, nodes[1].node.get_our_node_id());
7938
7939                 nodes[1].node.handle_closing_signed(&nodes[0].node.get_our_node_id(), &closing_signed_node_0.unwrap());
7940                 {
7941                         // Assert that the channel has now been removed from both parties `id_to_peer` map once
7942                         // they both have everything required to fully close the channel.
7943                         assert_eq!(nodes[1].node.id_to_peer.lock().unwrap().len(), 0);
7944                 }
7945                 let (_nodes_1_update, _none) = get_closing_signed_broadcast!(nodes[1].node, nodes[0].node.get_our_node_id());
7946
7947                 check_closed_event!(nodes[0], 1, ClosureReason::CooperativeClosure);
7948                 check_closed_event!(nodes[1], 1, ClosureReason::CooperativeClosure);
7949         }
7950 }
7951
7952 #[cfg(all(any(test, feature = "_test_utils"), feature = "_bench_unstable"))]
7953 pub mod bench {
7954         use crate::chain::Listen;
7955         use crate::chain::chainmonitor::{ChainMonitor, Persist};
7956         use crate::chain::keysinterface::{KeysManager, KeysInterface, InMemorySigner};
7957         use crate::ln::channelmanager::{self, BestBlock, ChainParameters, ChannelManager, PaymentHash, PaymentPreimage, PaymentId};
7958         use crate::ln::functional_test_utils::*;
7959         use crate::ln::msgs::{ChannelMessageHandler, Init};
7960         use crate::routing::gossip::NetworkGraph;
7961         use crate::routing::router::{PaymentParameters, get_route};
7962         use crate::util::test_utils;
7963         use crate::util::config::UserConfig;
7964         use crate::util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
7965
7966         use bitcoin::hashes::Hash;
7967         use bitcoin::hashes::sha256::Hash as Sha256;
7968         use bitcoin::{Block, BlockHeader, PackedLockTime, Transaction, TxMerkleNode, TxOut};
7969
7970         use crate::sync::{Arc, Mutex};
7971
7972         use test::Bencher;
7973
7974         struct NodeHolder<'a, P: Persist<InMemorySigner>> {
7975                 node: &'a ChannelManager<InMemorySigner,
7976                         &'a ChainMonitor<InMemorySigner, &'a test_utils::TestChainSource,
7977                                 &'a test_utils::TestBroadcaster, &'a test_utils::TestFeeEstimator,
7978                                 &'a test_utils::TestLogger, &'a P>,
7979                         &'a test_utils::TestBroadcaster, &'a KeysManager,
7980                         &'a test_utils::TestFeeEstimator, &'a test_utils::TestLogger>
7981         }
7982
7983         #[cfg(test)]
7984         #[bench]
7985         fn bench_sends(bench: &mut Bencher) {
7986                 bench_two_sends(bench, test_utils::TestPersister::new(), test_utils::TestPersister::new());
7987         }
7988
7989         pub fn bench_two_sends<P: Persist<InMemorySigner>>(bench: &mut Bencher, persister_a: P, persister_b: P) {
7990                 // Do a simple benchmark of sending a payment back and forth between two nodes.
7991                 // Note that this is unrealistic as each payment send will require at least two fsync
7992                 // calls per node.
7993                 let network = bitcoin::Network::Testnet;
7994                 let genesis_hash = bitcoin::blockdata::constants::genesis_block(network).header.block_hash();
7995
7996                 let tx_broadcaster = test_utils::TestBroadcaster{txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new()))};
7997                 let fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(253) };
7998
7999                 let mut config: UserConfig = Default::default();
8000                 config.channel_handshake_config.minimum_depth = 1;
8001
8002                 let logger_a = test_utils::TestLogger::with_id("node a".to_owned());
8003                 let chain_monitor_a = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_a);
8004                 let seed_a = [1u8; 32];
8005                 let keys_manager_a = KeysManager::new(&seed_a, 42, 42);
8006                 let node_a = ChannelManager::new(&fee_estimator, &chain_monitor_a, &tx_broadcaster, &logger_a, &keys_manager_a, config.clone(), ChainParameters {
8007                         network,
8008                         best_block: BestBlock::from_genesis(network),
8009                 });
8010                 let node_a_holder = NodeHolder { node: &node_a };
8011
8012                 let logger_b = test_utils::TestLogger::with_id("node a".to_owned());
8013                 let chain_monitor_b = ChainMonitor::new(None, &tx_broadcaster, &logger_a, &fee_estimator, &persister_b);
8014                 let seed_b = [2u8; 32];
8015                 let keys_manager_b = KeysManager::new(&seed_b, 42, 42);
8016                 let node_b = ChannelManager::new(&fee_estimator, &chain_monitor_b, &tx_broadcaster, &logger_b, &keys_manager_b, config.clone(), ChainParameters {
8017                         network,
8018                         best_block: BestBlock::from_genesis(network),
8019                 });
8020                 let node_b_holder = NodeHolder { node: &node_b };
8021
8022                 node_a.peer_connected(&node_b.get_our_node_id(), &Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
8023                 node_b.peer_connected(&node_a.get_our_node_id(), &Init { features: channelmanager::provided_init_features(), remote_network_address: None }).unwrap();
8024                 node_a.create_channel(node_b.get_our_node_id(), 8_000_000, 100_000_000, 42, None).unwrap();
8025                 node_b.handle_open_channel(&node_a.get_our_node_id(), channelmanager::provided_init_features(), &get_event_msg!(node_a_holder, MessageSendEvent::SendOpenChannel, node_b.get_our_node_id()));
8026                 node_a.handle_accept_channel(&node_b.get_our_node_id(), channelmanager::provided_init_features(), &get_event_msg!(node_b_holder, MessageSendEvent::SendAcceptChannel, node_a.get_our_node_id()));
8027
8028                 let tx;
8029                 if let Event::FundingGenerationReady { temporary_channel_id, output_script, .. } = get_event!(node_a_holder, Event::FundingGenerationReady) {
8030                         tx = Transaction { version: 2, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: vec![TxOut {
8031                                 value: 8_000_000, script_pubkey: output_script,
8032                         }]};
8033                         node_a.funding_transaction_generated(&temporary_channel_id, &node_b.get_our_node_id(), tx.clone()).unwrap();
8034                 } else { panic!(); }
8035
8036                 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()));
8037                 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()));
8038
8039                 assert_eq!(&tx_broadcaster.txn_broadcasted.lock().unwrap()[..], &[tx.clone()]);
8040
8041                 let block = Block {
8042                         header: BlockHeader { version: 0x20000000, prev_blockhash: genesis_hash, merkle_root: TxMerkleNode::all_zeros(), time: 42, bits: 42, nonce: 42 },
8043                         txdata: vec![tx],
8044                 };
8045                 Listen::block_connected(&node_a, &block, 1);
8046                 Listen::block_connected(&node_b, &block, 1);
8047
8048                 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()));
8049                 let msg_events = node_a.get_and_clear_pending_msg_events();
8050                 assert_eq!(msg_events.len(), 2);
8051                 match msg_events[0] {
8052                         MessageSendEvent::SendChannelReady { ref msg, .. } => {
8053                                 node_b.handle_channel_ready(&node_a.get_our_node_id(), msg);
8054                                 get_event_msg!(node_b_holder, MessageSendEvent::SendChannelUpdate, node_a.get_our_node_id());
8055                         },
8056                         _ => panic!(),
8057                 }
8058                 match msg_events[1] {
8059                         MessageSendEvent::SendChannelUpdate { .. } => {},
8060                         _ => panic!(),
8061                 }
8062
8063                 let dummy_graph = NetworkGraph::new(genesis_hash, &logger_a);
8064
8065                 let mut payment_count: u64 = 0;
8066                 macro_rules! send_payment {
8067                         ($node_a: expr, $node_b: expr) => {
8068                                 let usable_channels = $node_a.list_usable_channels();
8069                                 let payment_params = PaymentParameters::from_node_id($node_b.get_our_node_id())
8070                                         .with_features(channelmanager::provided_invoice_features());
8071                                 let scorer = test_utils::TestScorer::with_penalty(0);
8072                                 let seed = [3u8; 32];
8073                                 let keys_manager = KeysManager::new(&seed, 42, 42);
8074                                 let random_seed_bytes = keys_manager.get_secure_random_bytes();
8075                                 let route = get_route(&$node_a.get_our_node_id(), &payment_params, &dummy_graph.read_only(),
8076                                         Some(&usable_channels.iter().map(|r| r).collect::<Vec<_>>()), 10_000, TEST_FINAL_CLTV, &logger_a, &scorer, &random_seed_bytes).unwrap();
8077
8078                                 let mut payment_preimage = PaymentPreimage([0; 32]);
8079                                 payment_preimage.0[0..8].copy_from_slice(&payment_count.to_le_bytes());
8080                                 payment_count += 1;
8081                                 let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
8082                                 let payment_secret = $node_b.create_inbound_payment_for_hash(payment_hash, None, 7200).unwrap();
8083
8084                                 $node_a.send_payment(&route, payment_hash, &Some(payment_secret), PaymentId(payment_hash.0)).unwrap();
8085                                 let payment_event = SendEvent::from_event($node_a.get_and_clear_pending_msg_events().pop().unwrap());
8086                                 $node_b.handle_update_add_htlc(&$node_a.get_our_node_id(), &payment_event.msgs[0]);
8087                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &payment_event.commitment_msg);
8088                                 let (raa, cs) = get_revoke_commit_msgs!(NodeHolder { node: &$node_b }, $node_a.get_our_node_id());
8089                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &raa);
8090                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &cs);
8091                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &get_event_msg!(NodeHolder { node: &$node_a }, MessageSendEvent::SendRevokeAndACK, $node_b.get_our_node_id()));
8092
8093                                 expect_pending_htlcs_forwardable!(NodeHolder { node: &$node_b });
8094                                 expect_payment_received!(NodeHolder { node: &$node_b }, payment_hash, payment_secret, 10_000);
8095                                 $node_b.claim_funds(payment_preimage);
8096                                 expect_payment_claimed!(NodeHolder { node: &$node_b }, payment_hash, 10_000);
8097
8098                                 match $node_b.get_and_clear_pending_msg_events().pop().unwrap() {
8099                                         MessageSendEvent::UpdateHTLCs { node_id, updates } => {
8100                                                 assert_eq!(node_id, $node_a.get_our_node_id());
8101                                                 $node_a.handle_update_fulfill_htlc(&$node_b.get_our_node_id(), &updates.update_fulfill_htlcs[0]);
8102                                                 $node_a.handle_commitment_signed(&$node_b.get_our_node_id(), &updates.commitment_signed);
8103                                         },
8104                                         _ => panic!("Failed to generate claim event"),
8105                                 }
8106
8107                                 let (raa, cs) = get_revoke_commit_msgs!(NodeHolder { node: &$node_a }, $node_b.get_our_node_id());
8108                                 $node_b.handle_revoke_and_ack(&$node_a.get_our_node_id(), &raa);
8109                                 $node_b.handle_commitment_signed(&$node_a.get_our_node_id(), &cs);
8110                                 $node_a.handle_revoke_and_ack(&$node_b.get_our_node_id(), &get_event_msg!(NodeHolder { node: &$node_b }, MessageSendEvent::SendRevokeAndACK, $node_a.get_our_node_id()));
8111
8112                                 expect_payment_sent!(NodeHolder { node: &$node_a }, payment_preimage);
8113                         }
8114                 }
8115
8116                 bench.iter(|| {
8117                         send_payment!(node_a, node_b);
8118                         send_payment!(node_b, node_a);
8119                 });
8120         }
8121 }