Merge pull request #3126 from TheBlueMatt/2024-06-preimage-removal-blocked-by-claim...
[rust-lightning] / lightning / src / chain / channelmonitor.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 logic to monitor for on-chain transactions and create the relevant claim responses lives
11 //! here.
12 //!
13 //! ChannelMonitor objects are generated by ChannelManager in response to relevant
14 //! messages/actions, and MUST be persisted to disk (and, preferably, remotely) before progress can
15 //! be made in responding to certain messages, see [`chain::Watch`] for more.
16 //!
17 //! Note that ChannelMonitors are an important part of the lightning trust model and a copy of the
18 //! latest ChannelMonitor must always be actively monitoring for chain updates (and no out-of-date
19 //! ChannelMonitors should do so). Thus, if you're building rust-lightning into an HSM or other
20 //! security-domain-separated system design, you should consider having multiple paths for
21 //! ChannelMonitors to get out of the HSM and onto monitoring devices.
22
23 use bitcoin::amount::Amount;
24 use bitcoin::blockdata::block::Header;
25 use bitcoin::blockdata::transaction::{OutPoint as BitcoinOutPoint, TxOut, Transaction};
26 use bitcoin::blockdata::script::{Script, ScriptBuf};
27
28 use bitcoin::hashes::Hash;
29 use bitcoin::hashes::sha256::Hash as Sha256;
30 use bitcoin::hash_types::{Txid, BlockHash};
31
32 use bitcoin::ecdsa::Signature as BitcoinSignature;
33 use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature};
34 use bitcoin::secp256k1::{SecretKey, PublicKey};
35 use bitcoin::secp256k1;
36
37 use crate::ln::channel::INITIAL_COMMITMENT_NUMBER;
38 use crate::ln::types::{PaymentHash, PaymentPreimage, ChannelId};
39 use crate::ln::msgs::DecodeError;
40 use crate::ln::channel_keys::{DelayedPaymentKey, DelayedPaymentBasepoint, HtlcBasepoint, HtlcKey, RevocationKey, RevocationBasepoint};
41 use crate::ln::chan_utils::{self,CommitmentTransaction, CounterpartyCommitmentSecrets, HTLCOutputInCommitment, HTLCClaim, ChannelTransactionParameters, HolderCommitmentTransaction, TxCreationKeys};
42 use crate::ln::channelmanager::{HTLCSource, SentHTLCId};
43 use crate::chain;
44 use crate::chain::{BestBlock, WatchedOutput};
45 use crate::chain::chaininterface::{BroadcasterInterface, FeeEstimator, LowerBoundedFeeEstimator};
46 use crate::chain::transaction::{OutPoint, TransactionData};
47 use crate::sign::{ChannelDerivationParameters, HTLCDescriptor, SpendableOutputDescriptor, StaticPaymentOutputDescriptor, DelayedPaymentOutputDescriptor, ecdsa::EcdsaChannelSigner, SignerProvider, EntropySource};
48 use crate::chain::onchaintx::{ClaimEvent, FeerateStrategy, OnchainTxHandler};
49 use crate::chain::package::{CounterpartyOfferedHTLCOutput, CounterpartyReceivedHTLCOutput, HolderFundingOutput, HolderHTLCOutput, PackageSolvingData, PackageTemplate, RevokedOutput, RevokedHTLCOutput};
50 use crate::chain::Filter;
51 use crate::util::logger::{Logger, Record};
52 use crate::util::ser::{Readable, ReadableArgs, RequiredWrapper, MaybeReadable, UpgradableRequired, Writer, Writeable, U48};
53 use crate::util::byte_utils;
54 use crate::events::{ClosureReason, Event, EventHandler};
55 use crate::events::bump_transaction::{AnchorDescriptor, BumpTransactionEvent};
56
57 #[allow(unused_imports)]
58 use crate::prelude::*;
59
60 use core::{cmp, mem};
61 use crate::io::{self, Error};
62 use core::ops::Deref;
63 use crate::sync::{Mutex, LockTestExt};
64
65 /// An update generated by the underlying channel itself which contains some new information the
66 /// [`ChannelMonitor`] should be made aware of.
67 ///
68 /// Because this represents only a small number of updates to the underlying state, it is generally
69 /// much smaller than a full [`ChannelMonitor`]. However, for large single commitment transaction
70 /// updates (e.g. ones during which there are hundreds of HTLCs pending on the commitment
71 /// transaction), a single update may reach upwards of 1 MiB in serialized size.
72 #[derive(Clone, Debug, PartialEq, Eq)]
73 #[must_use]
74 pub struct ChannelMonitorUpdate {
75         pub(crate) updates: Vec<ChannelMonitorUpdateStep>,
76         /// Historically, [`ChannelMonitor`]s didn't know their counterparty node id. However,
77         /// `ChannelManager` really wants to know it so that it can easily look up the corresponding
78         /// channel. For now, this results in a temporary map in `ChannelManager` to look up channels
79         /// by only the funding outpoint.
80         ///
81         /// To eventually remove that, we repeat the counterparty node id here so that we can upgrade
82         /// `ChannelMonitor`s to become aware of the counterparty node id if they were generated prior
83         /// to when it was stored directly in them.
84         pub(crate) counterparty_node_id: Option<PublicKey>,
85         /// The sequence number of this update. Updates *must* be replayed in-order according to this
86         /// sequence number (and updates may panic if they are not). The update_id values are strictly
87         /// increasing and increase by one for each new update, with two exceptions specified below.
88         ///
89         /// This sequence number is also used to track up to which points updates which returned
90         /// [`ChannelMonitorUpdateStatus::InProgress`] have been applied to all copies of a given
91         /// ChannelMonitor when ChannelManager::channel_monitor_updated is called.
92         ///
93         /// The only instances we allow where update_id values are not strictly increasing have a
94         /// special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. This update ID is used for updates that
95         /// will force close the channel by broadcasting the latest commitment transaction or
96         /// special post-force-close updates, like providing preimages necessary to claim outputs on the
97         /// broadcast commitment transaction. See its docs for more details.
98         ///
99         /// [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
100         pub update_id: u64,
101         /// The channel ID associated with these updates.
102         ///
103         /// Will be `None` for `ChannelMonitorUpdate`s constructed on LDK versions prior to 0.0.121 and
104         /// always `Some` otherwise.
105         pub channel_id: Option<ChannelId>,
106 }
107
108 /// The update ID used for a [`ChannelMonitorUpdate`] that is either:
109 ///
110 ///     (1) attempting to force close the channel by broadcasting our latest commitment transaction or
111 ///     (2) providing a preimage (after the channel has been force closed) from a forward link that
112 ///             allows us to spend an HTLC output on this channel's (the backward link's) broadcasted
113 ///             commitment transaction.
114 ///
115 /// No other [`ChannelMonitorUpdate`]s are allowed after force-close.
116 pub const CLOSED_CHANNEL_UPDATE_ID: u64 = core::u64::MAX;
117
118 impl Writeable for ChannelMonitorUpdate {
119         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
120                 write_ver_prefix!(w, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
121                 self.update_id.write(w)?;
122                 (self.updates.len() as u64).write(w)?;
123                 for update_step in self.updates.iter() {
124                         update_step.write(w)?;
125                 }
126                 write_tlv_fields!(w, {
127                         (1, self.counterparty_node_id, option),
128                         (3, self.channel_id, option),
129                 });
130                 Ok(())
131         }
132 }
133 impl Readable for ChannelMonitorUpdate {
134         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
135                 let _ver = read_ver_prefix!(r, SERIALIZATION_VERSION);
136                 let update_id: u64 = Readable::read(r)?;
137                 let len: u64 = Readable::read(r)?;
138                 let mut updates = Vec::with_capacity(cmp::min(len as usize, MAX_ALLOC_SIZE / ::core::mem::size_of::<ChannelMonitorUpdateStep>()));
139                 for _ in 0..len {
140                         if let Some(upd) = MaybeReadable::read(r)? {
141                                 updates.push(upd);
142                         }
143                 }
144                 let mut counterparty_node_id = None;
145                 let mut channel_id = None;
146                 read_tlv_fields!(r, {
147                         (1, counterparty_node_id, option),
148                         (3, channel_id, option),
149                 });
150                 Ok(Self { update_id, counterparty_node_id, updates, channel_id })
151         }
152 }
153
154 /// An event to be processed by the ChannelManager.
155 #[derive(Clone, PartialEq, Eq)]
156 pub enum MonitorEvent {
157         /// A monitor event containing an HTLCUpdate.
158         HTLCEvent(HTLCUpdate),
159
160         /// Indicates we broadcasted the channel's latest commitment transaction and thus closed the
161         /// channel. Holds information about the channel and why it was closed.
162         HolderForceClosedWithInfo {
163                 /// The reason the channel was closed.
164                 reason: ClosureReason,
165                 /// The funding outpoint of the channel.
166                 outpoint: OutPoint,
167                 /// The channel ID of the channel.
168                 channel_id: ChannelId,
169         },
170
171         /// Indicates we broadcasted the channel's latest commitment transaction and thus closed the
172         /// channel.
173         HolderForceClosed(OutPoint),
174
175         /// Indicates a [`ChannelMonitor`] update has completed. See
176         /// [`ChannelMonitorUpdateStatus::InProgress`] for more information on how this is used.
177         ///
178         /// [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
179         Completed {
180                 /// The funding outpoint of the [`ChannelMonitor`] that was updated
181                 funding_txo: OutPoint,
182                 /// The channel ID of the channel associated with the [`ChannelMonitor`]
183                 channel_id: ChannelId,
184                 /// The Update ID from [`ChannelMonitorUpdate::update_id`] which was applied or
185                 /// [`ChannelMonitor::get_latest_update_id`].
186                 ///
187                 /// Note that this should only be set to a given update's ID if all previous updates for the
188                 /// same [`ChannelMonitor`] have been applied and persisted.
189                 monitor_update_id: u64,
190         },
191 }
192 impl_writeable_tlv_based_enum_upgradable!(MonitorEvent,
193         // Note that Completed is currently never serialized to disk as it is generated only in
194         // ChainMonitor.
195         (0, Completed) => {
196                 (0, funding_txo, required),
197                 (2, monitor_update_id, required),
198                 (4, channel_id, required),
199         },
200         (5, HolderForceClosedWithInfo) => {
201                 (0, reason, upgradable_required),
202                 (2, outpoint, required),
203                 (4, channel_id, required),
204         },
205 ;
206         (2, HTLCEvent),
207         (4, HolderForceClosed),
208         // 6 was `UpdateFailed` until LDK 0.0.117
209 );
210
211 /// Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
212 /// chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
213 /// preimage claim backward will lead to loss of funds.
214 #[derive(Clone, PartialEq, Eq)]
215 pub struct HTLCUpdate {
216         pub(crate) payment_hash: PaymentHash,
217         pub(crate) payment_preimage: Option<PaymentPreimage>,
218         pub(crate) source: HTLCSource,
219         pub(crate) htlc_value_satoshis: Option<u64>,
220 }
221 impl_writeable_tlv_based!(HTLCUpdate, {
222         (0, payment_hash, required),
223         (1, htlc_value_satoshis, option),
224         (2, source, required),
225         (4, payment_preimage, option),
226 });
227
228 /// If an HTLC expires within this many blocks, don't try to claim it in a shared transaction,
229 /// instead claiming it in its own individual transaction.
230 pub(crate) const CLTV_SHARED_CLAIM_BUFFER: u32 = 12;
231 /// If an HTLC expires within this many blocks, force-close the channel to broadcast the
232 /// HTLC-Success transaction.
233 /// In other words, this is an upper bound on how many blocks we think it can take us to get a
234 /// transaction confirmed (and we use it in a few more, equivalent, places).
235 pub(crate) const CLTV_CLAIM_BUFFER: u32 = 18;
236 /// Number of blocks by which point we expect our counterparty to have seen new blocks on the
237 /// network and done a full update_fail_htlc/commitment_signed dance (+ we've updated all our
238 /// copies of ChannelMonitors, including watchtowers). We could enforce the contract by failing
239 /// at CLTV expiration height but giving a grace period to our peer may be profitable for us if he
240 /// can provide an over-late preimage. Nevertheless, grace period has to be accounted in our
241 /// CLTV_EXPIRY_DELTA to be secure. Following this policy we may decrease the rate of channel failures
242 /// due to expiration but increase the cost of funds being locked longuer in case of failure.
243 /// This delay also cover a low-power peer being slow to process blocks and so being behind us on
244 /// accurate block height.
245 /// In case of onchain failure to be pass backward we may see the last block of ANTI_REORG_DELAY
246 /// with at worst this delay, so we are not only using this value as a mercy for them but also
247 /// us as a safeguard to delay with enough time.
248 pub(crate) const LATENCY_GRACE_PERIOD_BLOCKS: u32 = 3;
249 /// Number of blocks we wait on seeing a HTLC output being solved before we fail corresponding
250 /// inbound HTLCs. This prevents us from failing backwards and then getting a reorg resulting in us
251 /// losing money.
252 ///
253 /// Note that this is a library-wide security assumption. If a reorg deeper than this number of
254 /// blocks occurs, counterparties may be able to steal funds or claims made by and balances exposed
255 /// by a  [`ChannelMonitor`] may be incorrect.
256 // We also use this delay to be sure we can remove our in-flight claim txn from bump candidates buffer.
257 // It may cause spurious generation of bumped claim txn but that's alright given the outpoint is already
258 // solved by a previous claim tx. What we want to avoid is reorg evicting our claim tx and us not
259 // keep bumping another claim tx to solve the outpoint.
260 pub const ANTI_REORG_DELAY: u32 = 6;
261 /// Number of blocks before confirmation at which we fail back an un-relayed HTLC or at which we
262 /// refuse to accept a new HTLC.
263 ///
264 /// This is used for a few separate purposes:
265 /// 1) if we've received an MPP HTLC to us and it expires within this many blocks and we are
266 ///    waiting on additional parts (or waiting on the preimage for any HTLC from the user), we will
267 ///    fail this HTLC,
268 /// 2) if we receive an HTLC within this many blocks of its expiry (plus one to avoid a race
269 ///    condition with the above), we will fail this HTLC without telling the user we received it,
270 ///
271 /// (1) is all about protecting us - we need enough time to update the channel state before we hit
272 /// CLTV_CLAIM_BUFFER, at which point we'd go on chain to claim the HTLC with the preimage.
273 ///
274 /// (2) is the same, but with an additional buffer to avoid accepting an HTLC which is immediately
275 /// in a race condition between the user connecting a block (which would fail it) and the user
276 /// providing us the preimage (which would claim it).
277 pub(crate) const HTLC_FAIL_BACK_BUFFER: u32 = CLTV_CLAIM_BUFFER + LATENCY_GRACE_PERIOD_BLOCKS;
278
279 // TODO(devrandom) replace this with HolderCommitmentTransaction
280 #[derive(Clone, PartialEq, Eq)]
281 struct HolderSignedTx {
282         /// txid of the transaction in tx, just used to make comparison faster
283         txid: Txid,
284         revocation_key: RevocationKey,
285         a_htlc_key: HtlcKey,
286         b_htlc_key: HtlcKey,
287         delayed_payment_key: DelayedPaymentKey,
288         per_commitment_point: PublicKey,
289         htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
290         to_self_value_sat: u64,
291         feerate_per_kw: u32,
292 }
293 impl_writeable_tlv_based!(HolderSignedTx, {
294         (0, txid, required),
295         // Note that this is filled in with data from OnchainTxHandler if it's missing.
296         // For HolderSignedTx objects serialized with 0.0.100+, this should be filled in.
297         (1, to_self_value_sat, (default_value, u64::max_value())),
298         (2, revocation_key, required),
299         (4, a_htlc_key, required),
300         (6, b_htlc_key, required),
301         (8, delayed_payment_key, required),
302         (10, per_commitment_point, required),
303         (12, feerate_per_kw, required),
304         (14, htlc_outputs, required_vec)
305 });
306
307 impl HolderSignedTx {
308         fn non_dust_htlcs(&self) -> Vec<HTLCOutputInCommitment> {
309                 self.htlc_outputs.iter().filter_map(|(htlc, _, _)| {
310                         if let Some(_) = htlc.transaction_output_index {
311                                 Some(htlc.clone())
312                         } else {
313                                 None
314                         }
315                 })
316                 .collect()
317         }
318 }
319
320 /// We use this to track static counterparty commitment transaction data and to generate any
321 /// justice or 2nd-stage preimage/timeout transactions.
322 #[derive(Clone, PartialEq, Eq)]
323 struct CounterpartyCommitmentParameters {
324         counterparty_delayed_payment_base_key: DelayedPaymentBasepoint,
325         counterparty_htlc_base_key: HtlcBasepoint,
326         on_counterparty_tx_csv: u16,
327 }
328
329 impl Writeable for CounterpartyCommitmentParameters {
330         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
331                 w.write_all(&(0 as u64).to_be_bytes())?;
332                 write_tlv_fields!(w, {
333                         (0, self.counterparty_delayed_payment_base_key, required),
334                         (2, self.counterparty_htlc_base_key, required),
335                         (4, self.on_counterparty_tx_csv, required),
336                 });
337                 Ok(())
338         }
339 }
340 impl Readable for CounterpartyCommitmentParameters {
341         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
342                 let counterparty_commitment_transaction = {
343                         // Versions prior to 0.0.100 had some per-HTLC state stored here, which is no longer
344                         // used. Read it for compatibility.
345                         let per_htlc_len: u64 = Readable::read(r)?;
346                         for _  in 0..per_htlc_len {
347                                 let _txid: Txid = Readable::read(r)?;
348                                 let htlcs_count: u64 = Readable::read(r)?;
349                                 for _ in 0..htlcs_count {
350                                         let _htlc: HTLCOutputInCommitment = Readable::read(r)?;
351                                 }
352                         }
353
354                         let mut counterparty_delayed_payment_base_key = RequiredWrapper(None);
355                         let mut counterparty_htlc_base_key = RequiredWrapper(None);
356                         let mut on_counterparty_tx_csv: u16 = 0;
357                         read_tlv_fields!(r, {
358                                 (0, counterparty_delayed_payment_base_key, required),
359                                 (2, counterparty_htlc_base_key, required),
360                                 (4, on_counterparty_tx_csv, required),
361                         });
362                         CounterpartyCommitmentParameters {
363                                 counterparty_delayed_payment_base_key: counterparty_delayed_payment_base_key.0.unwrap(),
364                                 counterparty_htlc_base_key: counterparty_htlc_base_key.0.unwrap(),
365                                 on_counterparty_tx_csv,
366                         }
367                 };
368                 Ok(counterparty_commitment_transaction)
369         }
370 }
371
372 /// An entry for an [`OnchainEvent`], stating the block height and hash when the event was
373 /// observed, as well as the transaction causing it.
374 ///
375 /// Used to determine when the on-chain event can be considered safe from a chain reorganization.
376 #[derive(Clone, PartialEq, Eq)]
377 struct OnchainEventEntry {
378         txid: Txid,
379         height: u32,
380         block_hash: Option<BlockHash>, // Added as optional, will be filled in for any entry generated on 0.0.113 or after
381         event: OnchainEvent,
382         transaction: Option<Transaction>, // Added as optional, but always filled in, in LDK 0.0.110
383 }
384
385 impl OnchainEventEntry {
386         fn confirmation_threshold(&self) -> u32 {
387                 let mut conf_threshold = self.height + ANTI_REORG_DELAY - 1;
388                 match self.event {
389                         OnchainEvent::MaturingOutput {
390                                 descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor)
391                         } => {
392                                 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
393                                 // it's broadcastable when we see the previous block.
394                                 conf_threshold = cmp::max(conf_threshold, self.height + descriptor.to_self_delay as u32 - 1);
395                         },
396                         OnchainEvent::FundingSpendConfirmation { on_local_output_csv: Some(csv), .. } |
397                         OnchainEvent::HTLCSpendConfirmation { on_to_local_output_csv: Some(csv), .. } => {
398                                 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
399                                 // it's broadcastable when we see the previous block.
400                                 conf_threshold = cmp::max(conf_threshold, self.height + csv as u32 - 1);
401                         },
402                         _ => {},
403                 }
404                 conf_threshold
405         }
406
407         fn has_reached_confirmation_threshold(&self, best_block: &BestBlock) -> bool {
408                 best_block.height >= self.confirmation_threshold()
409         }
410 }
411
412 /// The (output index, sats value) for the counterparty's output in a commitment transaction.
413 ///
414 /// This was added as an `Option` in 0.0.110.
415 type CommitmentTxCounterpartyOutputInfo = Option<(u32, Amount)>;
416
417 /// Upon discovering of some classes of onchain tx by ChannelMonitor, we may have to take actions on it
418 /// once they mature to enough confirmations (ANTI_REORG_DELAY)
419 #[derive(Clone, PartialEq, Eq)]
420 enum OnchainEvent {
421         /// An outbound HTLC failing after a transaction is confirmed. Used
422         ///  * when an outbound HTLC output is spent by us after the HTLC timed out
423         ///  * an outbound HTLC which was not present in the commitment transaction which appeared
424         ///    on-chain (either because it was not fully committed to or it was dust).
425         /// Note that this is *not* used for preimage claims, as those are passed upstream immediately,
426         /// appearing only as an `HTLCSpendConfirmation`, below.
427         HTLCUpdate {
428                 source: HTLCSource,
429                 payment_hash: PaymentHash,
430                 htlc_value_satoshis: Option<u64>,
431                 /// None in the second case, above, ie when there is no relevant output in the commitment
432                 /// transaction which appeared on chain.
433                 commitment_tx_output_idx: Option<u32>,
434         },
435         /// An output waiting on [`ANTI_REORG_DELAY`] confirmations before we hand the user the
436         /// [`SpendableOutputDescriptor`].
437         MaturingOutput {
438                 descriptor: SpendableOutputDescriptor,
439         },
440         /// A spend of the funding output, either a commitment transaction or a cooperative closing
441         /// transaction.
442         FundingSpendConfirmation {
443                 /// The CSV delay for the output of the funding spend transaction (implying it is a local
444                 /// commitment transaction, and this is the delay on the to_self output).
445                 on_local_output_csv: Option<u16>,
446                 /// If the funding spend transaction was a known remote commitment transaction, we track
447                 /// the output index and amount of the counterparty's `to_self` output here.
448                 ///
449                 /// This allows us to generate a [`Balance::CounterpartyRevokedOutputClaimable`] for the
450                 /// counterparty output.
451                 commitment_tx_to_counterparty_output: CommitmentTxCounterpartyOutputInfo,
452         },
453         /// A spend of a commitment transaction HTLC output, set in the cases where *no* `HTLCUpdate`
454         /// is constructed. This is used when
455         ///  * an outbound HTLC is claimed by our counterparty with a preimage, causing us to
456         ///    immediately claim the HTLC on the inbound edge and track the resolution here,
457         ///  * an inbound HTLC is claimed by our counterparty (with a timeout),
458         ///  * an inbound HTLC is claimed by us (with a preimage).
459         ///  * a revoked-state HTLC transaction was broadcasted, which was claimed by the revocation
460         ///    signature.
461         ///  * a revoked-state HTLC transaction was broadcasted, which was claimed by an
462         ///    HTLC-Success/HTLC-Failure transaction (and is still claimable with a revocation
463         ///    signature).
464         HTLCSpendConfirmation {
465                 commitment_tx_output_idx: u32,
466                 /// If the claim was made by either party with a preimage, this is filled in
467                 preimage: Option<PaymentPreimage>,
468                 /// If the claim was made by us on an inbound HTLC against a local commitment transaction,
469                 /// we set this to the output CSV value which we will have to wait until to spend the
470                 /// output (and generate a SpendableOutput event).
471                 on_to_local_output_csv: Option<u16>,
472         },
473 }
474
475 impl Writeable for OnchainEventEntry {
476         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
477                 write_tlv_fields!(writer, {
478                         (0, self.txid, required),
479                         (1, self.transaction, option),
480                         (2, self.height, required),
481                         (3, self.block_hash, option),
482                         (4, self.event, required),
483                 });
484                 Ok(())
485         }
486 }
487
488 impl MaybeReadable for OnchainEventEntry {
489         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, DecodeError> {
490                 let mut txid = Txid::all_zeros();
491                 let mut transaction = None;
492                 let mut block_hash = None;
493                 let mut height = 0;
494                 let mut event = UpgradableRequired(None);
495                 read_tlv_fields!(reader, {
496                         (0, txid, required),
497                         (1, transaction, option),
498                         (2, height, required),
499                         (3, block_hash, option),
500                         (4, event, upgradable_required),
501                 });
502                 Ok(Some(Self { txid, transaction, height, block_hash, event: _init_tlv_based_struct_field!(event, upgradable_required) }))
503         }
504 }
505
506 impl_writeable_tlv_based_enum_upgradable!(OnchainEvent,
507         (0, HTLCUpdate) => {
508                 (0, source, required),
509                 (1, htlc_value_satoshis, option),
510                 (2, payment_hash, required),
511                 (3, commitment_tx_output_idx, option),
512         },
513         (1, MaturingOutput) => {
514                 (0, descriptor, required),
515         },
516         (3, FundingSpendConfirmation) => {
517                 (0, on_local_output_csv, option),
518                 (1, commitment_tx_to_counterparty_output, option),
519         },
520         (5, HTLCSpendConfirmation) => {
521                 (0, commitment_tx_output_idx, required),
522                 (2, preimage, option),
523                 (4, on_to_local_output_csv, option),
524         },
525
526 );
527
528 #[derive(Clone, Debug, PartialEq, Eq)]
529 pub(crate) enum ChannelMonitorUpdateStep {
530         LatestHolderCommitmentTXInfo {
531                 commitment_tx: HolderCommitmentTransaction,
532                 /// Note that LDK after 0.0.115 supports this only containing dust HTLCs (implying the
533                 /// `Signature` field is never filled in). At that point, non-dust HTLCs are implied by the
534                 /// HTLC fields in `commitment_tx` and the sources passed via `nondust_htlc_sources`.
535                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
536                 claimed_htlcs: Vec<(SentHTLCId, PaymentPreimage)>,
537                 nondust_htlc_sources: Vec<HTLCSource>,
538         },
539         LatestCounterpartyCommitmentTXInfo {
540                 commitment_txid: Txid,
541                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
542                 commitment_number: u64,
543                 their_per_commitment_point: PublicKey,
544                 feerate_per_kw: Option<u32>,
545                 to_broadcaster_value_sat: Option<u64>,
546                 to_countersignatory_value_sat: Option<u64>,
547         },
548         PaymentPreimage {
549                 payment_preimage: PaymentPreimage,
550         },
551         CommitmentSecret {
552                 idx: u64,
553                 secret: [u8; 32],
554         },
555         /// Used to indicate that the no future updates will occur, and likely that the latest holder
556         /// commitment transaction(s) should be broadcast, as the channel has been force-closed.
557         ChannelForceClosed {
558                 /// If set to false, we shouldn't broadcast the latest holder commitment transaction as we
559                 /// think we've fallen behind!
560                 should_broadcast: bool,
561         },
562         ShutdownScript {
563                 scriptpubkey: ScriptBuf,
564         },
565 }
566
567 impl ChannelMonitorUpdateStep {
568         fn variant_name(&self) -> &'static str {
569                 match self {
570                         ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { .. } => "LatestHolderCommitmentTXInfo",
571                         ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { .. } => "LatestCounterpartyCommitmentTXInfo",
572                         ChannelMonitorUpdateStep::PaymentPreimage { .. } => "PaymentPreimage",
573                         ChannelMonitorUpdateStep::CommitmentSecret { .. } => "CommitmentSecret",
574                         ChannelMonitorUpdateStep::ChannelForceClosed { .. } => "ChannelForceClosed",
575                         ChannelMonitorUpdateStep::ShutdownScript { .. } => "ShutdownScript",
576                 }
577         }
578 }
579
580 impl_writeable_tlv_based_enum_upgradable!(ChannelMonitorUpdateStep,
581         (0, LatestHolderCommitmentTXInfo) => {
582                 (0, commitment_tx, required),
583                 (1, claimed_htlcs, optional_vec),
584                 (2, htlc_outputs, required_vec),
585                 (4, nondust_htlc_sources, optional_vec),
586         },
587         (1, LatestCounterpartyCommitmentTXInfo) => {
588                 (0, commitment_txid, required),
589                 (1, feerate_per_kw, option),
590                 (2, commitment_number, required),
591                 (3, to_broadcaster_value_sat, option),
592                 (4, their_per_commitment_point, required),
593                 (5, to_countersignatory_value_sat, option),
594                 (6, htlc_outputs, required_vec),
595         },
596         (2, PaymentPreimage) => {
597                 (0, payment_preimage, required),
598         },
599         (3, CommitmentSecret) => {
600                 (0, idx, required),
601                 (2, secret, required),
602         },
603         (4, ChannelForceClosed) => {
604                 (0, should_broadcast, required),
605         },
606         (5, ShutdownScript) => {
607                 (0, scriptpubkey, required),
608         },
609 );
610
611 /// Details about the balance(s) available for spending once the channel appears on chain.
612 ///
613 /// See [`ChannelMonitor::get_claimable_balances`] for more details on when these will or will not
614 /// be provided.
615 #[derive(Clone, Debug, PartialEq, Eq)]
616 #[cfg_attr(test, derive(PartialOrd, Ord))]
617 pub enum Balance {
618         /// The channel is not yet closed (or the commitment or closing transaction has not yet
619         /// appeared in a block). The given balance is claimable (less on-chain fees) if the channel is
620         /// force-closed now.
621         ClaimableOnChannelClose {
622                 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
623                 /// required to do so.
624                 amount_satoshis: u64,
625         },
626         /// The channel has been closed, and the given balance is ours but awaiting confirmations until
627         /// we consider it spendable.
628         ClaimableAwaitingConfirmations {
629                 /// The amount available to claim, in satoshis, possibly excluding the on-chain fees which
630                 /// were spent in broadcasting the transaction.
631                 amount_satoshis: u64,
632                 /// The height at which an [`Event::SpendableOutputs`] event will be generated for this
633                 /// amount.
634                 confirmation_height: u32,
635         },
636         /// The channel has been closed, and the given balance should be ours but awaiting spending
637         /// transaction confirmation. If the spending transaction does not confirm in time, it is
638         /// possible our counterparty can take the funds by broadcasting an HTLC timeout on-chain.
639         ///
640         /// Once the spending transaction confirms, before it has reached enough confirmations to be
641         /// considered safe from chain reorganizations, the balance will instead be provided via
642         /// [`Balance::ClaimableAwaitingConfirmations`].
643         ContentiousClaimable {
644                 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
645                 /// required to do so.
646                 amount_satoshis: u64,
647                 /// The height at which the counterparty may be able to claim the balance if we have not
648                 /// done so.
649                 timeout_height: u32,
650                 /// The payment hash that locks this HTLC.
651                 payment_hash: PaymentHash,
652                 /// The preimage that can be used to claim this HTLC.
653                 payment_preimage: PaymentPreimage,
654         },
655         /// HTLCs which we sent to our counterparty which are claimable after a timeout (less on-chain
656         /// fees) if the counterparty does not know the preimage for the HTLCs. These are somewhat
657         /// likely to be claimed by our counterparty before we do.
658         MaybeTimeoutClaimableHTLC {
659                 /// The amount potentially available to claim, in satoshis, excluding the on-chain fees
660                 /// which will be required to do so.
661                 amount_satoshis: u64,
662                 /// The height at which we will be able to claim the balance if our counterparty has not
663                 /// done so.
664                 claimable_height: u32,
665                 /// The payment hash whose preimage our counterparty needs to claim this HTLC.
666                 payment_hash: PaymentHash,
667         },
668         /// HTLCs which we received from our counterparty which are claimable with a preimage which we
669         /// do not currently have. This will only be claimable if we receive the preimage from the node
670         /// to which we forwarded this HTLC before the timeout.
671         MaybePreimageClaimableHTLC {
672                 /// The amount potentially available to claim, in satoshis, excluding the on-chain fees
673                 /// which will be required to do so.
674                 amount_satoshis: u64,
675                 /// The height at which our counterparty will be able to claim the balance if we have not
676                 /// yet received the preimage and claimed it ourselves.
677                 expiry_height: u32,
678                 /// The payment hash whose preimage we need to claim this HTLC.
679                 payment_hash: PaymentHash,
680         },
681         /// The channel has been closed, and our counterparty broadcasted a revoked commitment
682         /// transaction.
683         ///
684         /// Thus, we're able to claim all outputs in the commitment transaction, one of which has the
685         /// following amount.
686         CounterpartyRevokedOutputClaimable {
687                 /// The amount, in satoshis, of the output which we can claim.
688                 ///
689                 /// Note that for outputs from HTLC balances this may be excluding some on-chain fees that
690                 /// were already spent.
691                 amount_satoshis: u64,
692         },
693 }
694
695 impl Balance {
696         /// The amount claimable, in satoshis. This excludes balances that we are unsure if we are able
697         /// to claim, this is because we are waiting for a preimage or for a timeout to expire. For more
698         /// information on these balances see [`Balance::MaybeTimeoutClaimableHTLC`] and
699         /// [`Balance::MaybePreimageClaimableHTLC`].
700         ///
701         /// On-chain fees required to claim the balance are not included in this amount.
702         pub fn claimable_amount_satoshis(&self) -> u64 {
703                 match self {
704                         Balance::ClaimableOnChannelClose { amount_satoshis, .. }|
705                         Balance::ClaimableAwaitingConfirmations { amount_satoshis, .. }|
706                         Balance::ContentiousClaimable { amount_satoshis, .. }|
707                         Balance::CounterpartyRevokedOutputClaimable { amount_satoshis, .. }
708                                 => *amount_satoshis,
709                         Balance::MaybeTimeoutClaimableHTLC { .. }|
710                         Balance::MaybePreimageClaimableHTLC { .. }
711                                 => 0,
712                 }
713         }
714 }
715
716 /// An HTLC which has been irrevocably resolved on-chain, and has reached ANTI_REORG_DELAY.
717 #[derive(Clone, PartialEq, Eq)]
718 struct IrrevocablyResolvedHTLC {
719         commitment_tx_output_idx: Option<u32>,
720         /// The txid of the transaction which resolved the HTLC, this may be a commitment (if the HTLC
721         /// was not present in the confirmed commitment transaction), HTLC-Success, or HTLC-Timeout
722         /// transaction.
723         resolving_txid: Option<Txid>, // Added as optional, but always filled in, in 0.0.110
724         resolving_tx: Option<Transaction>,
725         /// Only set if the HTLC claim was ours using a payment preimage
726         payment_preimage: Option<PaymentPreimage>,
727 }
728
729 // In LDK versions prior to 0.0.111 commitment_tx_output_idx was not Option-al and
730 // IrrevocablyResolvedHTLC objects only existed for non-dust HTLCs. This was a bug, but to maintain
731 // backwards compatibility we must ensure we always write out a commitment_tx_output_idx field,
732 // using `u32::max_value()` as a sentinal to indicate the HTLC was dust.
733 impl Writeable for IrrevocablyResolvedHTLC {
734         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
735                 let mapped_commitment_tx_output_idx = self.commitment_tx_output_idx.unwrap_or(u32::max_value());
736                 write_tlv_fields!(writer, {
737                         (0, mapped_commitment_tx_output_idx, required),
738                         (1, self.resolving_txid, option),
739                         (2, self.payment_preimage, option),
740                         (3, self.resolving_tx, option),
741                 });
742                 Ok(())
743         }
744 }
745
746 impl Readable for IrrevocablyResolvedHTLC {
747         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
748                 let mut mapped_commitment_tx_output_idx = 0;
749                 let mut resolving_txid = None;
750                 let mut payment_preimage = None;
751                 let mut resolving_tx = None;
752                 read_tlv_fields!(reader, {
753                         (0, mapped_commitment_tx_output_idx, required),
754                         (1, resolving_txid, option),
755                         (2, payment_preimage, option),
756                         (3, resolving_tx, option),
757                 });
758                 Ok(Self {
759                         commitment_tx_output_idx: if mapped_commitment_tx_output_idx == u32::max_value() { None } else { Some(mapped_commitment_tx_output_idx) },
760                         resolving_txid,
761                         payment_preimage,
762                         resolving_tx,
763                 })
764         }
765 }
766
767 /// A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
768 /// on-chain transactions to ensure no loss of funds occurs.
769 ///
770 /// You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
771 /// information and are actively monitoring the chain.
772 ///
773 /// Note that the deserializer is only implemented for (BlockHash, ChannelMonitor), which
774 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
775 /// the "reorg path" (ie disconnecting blocks until you find a common ancestor from both the
776 /// returned block hash and the the current chain and then reconnecting blocks to get to the
777 /// best chain) upon deserializing the object!
778 pub struct ChannelMonitor<Signer: EcdsaChannelSigner> {
779         #[cfg(test)]
780         pub(crate) inner: Mutex<ChannelMonitorImpl<Signer>>,
781         #[cfg(not(test))]
782         pub(super) inner: Mutex<ChannelMonitorImpl<Signer>>,
783 }
784
785 impl<Signer: EcdsaChannelSigner> Clone for ChannelMonitor<Signer> where Signer: Clone {
786         fn clone(&self) -> Self {
787                 let inner = self.inner.lock().unwrap().clone();
788                 ChannelMonitor::from_impl(inner)
789         }
790 }
791
792 #[derive(Clone, PartialEq)]
793 pub(crate) struct ChannelMonitorImpl<Signer: EcdsaChannelSigner> {
794         latest_update_id: u64,
795         commitment_transaction_number_obscure_factor: u64,
796
797         destination_script: ScriptBuf,
798         broadcasted_holder_revokable_script: Option<(ScriptBuf, PublicKey, RevocationKey)>,
799         counterparty_payment_script: ScriptBuf,
800         shutdown_script: Option<ScriptBuf>,
801
802         channel_keys_id: [u8; 32],
803         holder_revocation_basepoint: RevocationBasepoint,
804         channel_id: ChannelId,
805         funding_info: (OutPoint, ScriptBuf),
806         current_counterparty_commitment_txid: Option<Txid>,
807         prev_counterparty_commitment_txid: Option<Txid>,
808
809         counterparty_commitment_params: CounterpartyCommitmentParameters,
810         funding_redeemscript: ScriptBuf,
811         channel_value_satoshis: u64,
812         // first is the idx of the first of the two per-commitment points
813         their_cur_per_commitment_points: Option<(u64, PublicKey, Option<PublicKey>)>,
814
815         on_holder_tx_csv: u16,
816
817         commitment_secrets: CounterpartyCommitmentSecrets,
818         /// The set of outpoints in each counterparty commitment transaction. We always need at least
819         /// the payment hash from `HTLCOutputInCommitment` to claim even a revoked commitment
820         /// transaction broadcast as we need to be able to construct the witness script in all cases.
821         counterparty_claimable_outpoints: HashMap<Txid, Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>,
822         /// We cannot identify HTLC-Success or HTLC-Timeout transactions by themselves on the chain.
823         /// Nor can we figure out their commitment numbers without the commitment transaction they are
824         /// spending. Thus, in order to claim them via revocation key, we track all the counterparty
825         /// commitment transactions which we find on-chain, mapping them to the commitment number which
826         /// can be used to derive the revocation key and claim the transactions.
827         counterparty_commitment_txn_on_chain: HashMap<Txid, u64>,
828         /// Cache used to make pruning of payment_preimages faster.
829         /// Maps payment_hash values to commitment numbers for counterparty transactions for non-revoked
830         /// counterparty transactions (ie should remain pretty small).
831         /// Serialized to disk but should generally not be sent to Watchtowers.
832         counterparty_hash_commitment_number: HashMap<PaymentHash, u64>,
833
834         counterparty_fulfilled_htlcs: HashMap<SentHTLCId, PaymentPreimage>,
835
836         // We store two holder commitment transactions to avoid any race conditions where we may update
837         // some monitors (potentially on watchtowers) but then fail to update others, resulting in the
838         // various monitors for one channel being out of sync, and us broadcasting a holder
839         // transaction for which we have deleted claim information on some watchtowers.
840         prev_holder_signed_commitment_tx: Option<HolderSignedTx>,
841         current_holder_commitment_tx: HolderSignedTx,
842
843         // Used just for ChannelManager to make sure it has the latest channel data during
844         // deserialization
845         current_counterparty_commitment_number: u64,
846         // Used just for ChannelManager to make sure it has the latest channel data during
847         // deserialization
848         current_holder_commitment_number: u64,
849
850         /// The set of payment hashes from inbound payments for which we know the preimage. Payment
851         /// preimages that are not included in any unrevoked local commitment transaction or unrevoked
852         /// remote commitment transactions are automatically removed when commitment transactions are
853         /// revoked.
854         payment_preimages: HashMap<PaymentHash, PaymentPreimage>,
855
856         // Note that `MonitorEvent`s MUST NOT be generated during update processing, only generated
857         // during chain data processing. This prevents a race in `ChainMonitor::update_channel` (and
858         // presumably user implementations thereof as well) where we update the in-memory channel
859         // object, then before the persistence finishes (as it's all under a read-lock), we return
860         // pending events to the user or to the relevant `ChannelManager`. Then, on reload, we'll have
861         // the pre-event state here, but have processed the event in the `ChannelManager`.
862         // Note that because the `event_lock` in `ChainMonitor` is only taken in
863         // block/transaction-connected events and *not* during block/transaction-disconnected events,
864         // we further MUST NOT generate events during block/transaction-disconnection.
865         pending_monitor_events: Vec<MonitorEvent>,
866
867         pub(super) pending_events: Vec<Event>,
868         pub(super) is_processing_pending_events: bool,
869
870         // Used to track on-chain events (i.e., transactions part of channels confirmed on chain) on
871         // which to take actions once they reach enough confirmations. Each entry includes the
872         // transaction's id and the height when the transaction was confirmed on chain.
873         onchain_events_awaiting_threshold_conf: Vec<OnchainEventEntry>,
874
875         // If we get serialized out and re-read, we need to make sure that the chain monitoring
876         // interface knows about the TXOs that we want to be notified of spends of. We could probably
877         // be smart and derive them from the above storage fields, but its much simpler and more
878         // Obviously Correct (tm) if we just keep track of them explicitly.
879         outputs_to_watch: HashMap<Txid, Vec<(u32, ScriptBuf)>>,
880
881         #[cfg(test)]
882         pub onchain_tx_handler: OnchainTxHandler<Signer>,
883         #[cfg(not(test))]
884         onchain_tx_handler: OnchainTxHandler<Signer>,
885
886         // This is set when the Channel[Manager] generated a ChannelMonitorUpdate which indicated the
887         // channel has been force-closed. After this is set, no further holder commitment transaction
888         // updates may occur, and we panic!() if one is provided.
889         lockdown_from_offchain: bool,
890
891         // Set once we've signed a holder commitment transaction and handed it over to our
892         // OnchainTxHandler. After this is set, no future updates to our holder commitment transactions
893         // may occur, and we fail any such monitor updates.
894         //
895         // In case of update rejection due to a locally already signed commitment transaction, we
896         // nevertheless store update content to track in case of concurrent broadcast by another
897         // remote monitor out-of-order with regards to the block view.
898         holder_tx_signed: bool,
899
900         // If a spend of the funding output is seen, we set this to true and reject any further
901         // updates. This prevents any further changes in the offchain state no matter the order
902         // of block connection between ChannelMonitors and the ChannelManager.
903         funding_spend_seen: bool,
904
905         /// Set to `Some` of the confirmed transaction spending the funding input of the channel after
906         /// reaching `ANTI_REORG_DELAY` confirmations.
907         funding_spend_confirmed: Option<Txid>,
908
909         confirmed_commitment_tx_counterparty_output: CommitmentTxCounterpartyOutputInfo,
910         /// The set of HTLCs which have been either claimed or failed on chain and have reached
911         /// the requisite confirmations on the claim/fail transaction (either ANTI_REORG_DELAY or the
912         /// spending CSV for revocable outputs).
913         htlcs_resolved_on_chain: Vec<IrrevocablyResolvedHTLC>,
914
915         /// The set of `SpendableOutput` events which we have already passed upstream to be claimed.
916         /// These are tracked explicitly to ensure that we don't generate the same events redundantly
917         /// if users duplicatively confirm old transactions. Specifically for transactions claiming a
918         /// revoked remote outpoint we otherwise have no tracking at all once they've reached
919         /// [`ANTI_REORG_DELAY`], so we have to track them here.
920         spendable_txids_confirmed: Vec<Txid>,
921
922         // We simply modify best_block in Channel's block_connected so that serialization is
923         // consistent but hopefully the users' copy handles block_connected in a consistent way.
924         // (we do *not*, however, update them in update_monitor to ensure any local user copies keep
925         // their best_block from its state and not based on updated copies that didn't run through
926         // the full block_connected).
927         best_block: BestBlock,
928
929         /// The node_id of our counterparty
930         counterparty_node_id: Option<PublicKey>,
931
932         /// Initial counterparty commmitment data needed to recreate the commitment tx
933         /// in the persistence pipeline for third-party watchtowers. This will only be present on
934         /// monitors created after 0.0.117.
935         ///
936         /// Ordering of tuple data: (their_per_commitment_point, feerate_per_kw, to_broadcaster_sats,
937         /// to_countersignatory_sats)
938         initial_counterparty_commitment_info: Option<(PublicKey, u32, u64, u64)>,
939
940         /// The first block height at which we had no remaining claimable balances.
941         balances_empty_height: Option<u32>,
942 }
943
944 /// Transaction outputs to watch for on-chain spends.
945 pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
946
947 impl<Signer: EcdsaChannelSigner> PartialEq for ChannelMonitor<Signer> where Signer: PartialEq {
948         fn eq(&self, other: &Self) -> bool {
949                 // We need some kind of total lockorder. Absent a better idea, we sort by position in
950                 // memory and take locks in that order (assuming that we can't move within memory while a
951                 // lock is held).
952                 let ord = ((self as *const _) as usize) < ((other as *const _) as usize);
953                 let a = if ord { self.inner.unsafe_well_ordered_double_lock_self() } else { other.inner.unsafe_well_ordered_double_lock_self() };
954                 let b = if ord { other.inner.unsafe_well_ordered_double_lock_self() } else { self.inner.unsafe_well_ordered_double_lock_self() };
955                 a.eq(&b)
956         }
957 }
958
959 impl<Signer: EcdsaChannelSigner> Writeable for ChannelMonitor<Signer> {
960         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
961                 self.inner.lock().unwrap().write(writer)
962         }
963 }
964
965 // These are also used for ChannelMonitorUpdate, above.
966 const SERIALIZATION_VERSION: u8 = 1;
967 const MIN_SERIALIZATION_VERSION: u8 = 1;
968
969 impl<Signer: EcdsaChannelSigner> Writeable for ChannelMonitorImpl<Signer> {
970         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
971                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
972
973                 self.latest_update_id.write(writer)?;
974
975                 // Set in initial Channel-object creation, so should always be set by now:
976                 U48(self.commitment_transaction_number_obscure_factor).write(writer)?;
977
978                 self.destination_script.write(writer)?;
979                 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
980                         writer.write_all(&[0; 1])?;
981                         broadcasted_holder_revokable_script.0.write(writer)?;
982                         broadcasted_holder_revokable_script.1.write(writer)?;
983                         broadcasted_holder_revokable_script.2.write(writer)?;
984                 } else {
985                         writer.write_all(&[1; 1])?;
986                 }
987
988                 self.counterparty_payment_script.write(writer)?;
989                 match &self.shutdown_script {
990                         Some(script) => script.write(writer)?,
991                         None => ScriptBuf::new().write(writer)?,
992                 }
993
994                 self.channel_keys_id.write(writer)?;
995                 self.holder_revocation_basepoint.write(writer)?;
996                 writer.write_all(&self.funding_info.0.txid[..])?;
997                 writer.write_all(&self.funding_info.0.index.to_be_bytes())?;
998                 self.funding_info.1.write(writer)?;
999                 self.current_counterparty_commitment_txid.write(writer)?;
1000                 self.prev_counterparty_commitment_txid.write(writer)?;
1001
1002                 self.counterparty_commitment_params.write(writer)?;
1003                 self.funding_redeemscript.write(writer)?;
1004                 self.channel_value_satoshis.write(writer)?;
1005
1006                 match self.their_cur_per_commitment_points {
1007                         Some((idx, pubkey, second_option)) => {
1008                                 writer.write_all(&byte_utils::be48_to_array(idx))?;
1009                                 writer.write_all(&pubkey.serialize())?;
1010                                 match second_option {
1011                                         Some(second_pubkey) => {
1012                                                 writer.write_all(&second_pubkey.serialize())?;
1013                                         },
1014                                         None => {
1015                                                 writer.write_all(&[0; 33])?;
1016                                         },
1017                                 }
1018                         },
1019                         None => {
1020                                 writer.write_all(&byte_utils::be48_to_array(0))?;
1021                         },
1022                 }
1023
1024                 writer.write_all(&self.on_holder_tx_csv.to_be_bytes())?;
1025
1026                 self.commitment_secrets.write(writer)?;
1027
1028                 macro_rules! serialize_htlc_in_commitment {
1029                         ($htlc_output: expr) => {
1030                                 writer.write_all(&[$htlc_output.offered as u8; 1])?;
1031                                 writer.write_all(&$htlc_output.amount_msat.to_be_bytes())?;
1032                                 writer.write_all(&$htlc_output.cltv_expiry.to_be_bytes())?;
1033                                 writer.write_all(&$htlc_output.payment_hash.0[..])?;
1034                                 $htlc_output.transaction_output_index.write(writer)?;
1035                         }
1036                 }
1037
1038                 writer.write_all(&(self.counterparty_claimable_outpoints.len() as u64).to_be_bytes())?;
1039                 for (ref txid, ref htlc_infos) in self.counterparty_claimable_outpoints.iter() {
1040                         writer.write_all(&txid[..])?;
1041                         writer.write_all(&(htlc_infos.len() as u64).to_be_bytes())?;
1042                         for &(ref htlc_output, ref htlc_source) in htlc_infos.iter() {
1043                                 debug_assert!(htlc_source.is_none() || Some(**txid) == self.current_counterparty_commitment_txid
1044                                                 || Some(**txid) == self.prev_counterparty_commitment_txid,
1045                                         "HTLC Sources for all revoked commitment transactions should be none!");
1046                                 serialize_htlc_in_commitment!(htlc_output);
1047                                 htlc_source.as_ref().map(|b| b.as_ref()).write(writer)?;
1048                         }
1049                 }
1050
1051                 writer.write_all(&(self.counterparty_commitment_txn_on_chain.len() as u64).to_be_bytes())?;
1052                 for (ref txid, commitment_number) in self.counterparty_commitment_txn_on_chain.iter() {
1053                         writer.write_all(&txid[..])?;
1054                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
1055                 }
1056
1057                 writer.write_all(&(self.counterparty_hash_commitment_number.len() as u64).to_be_bytes())?;
1058                 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
1059                         writer.write_all(&payment_hash.0[..])?;
1060                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
1061                 }
1062
1063                 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
1064                         writer.write_all(&[1; 1])?;
1065                         prev_holder_tx.write(writer)?;
1066                 } else {
1067                         writer.write_all(&[0; 1])?;
1068                 }
1069
1070                 self.current_holder_commitment_tx.write(writer)?;
1071
1072                 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
1073                 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
1074
1075                 writer.write_all(&(self.payment_preimages.len() as u64).to_be_bytes())?;
1076                 for payment_preimage in self.payment_preimages.values() {
1077                         writer.write_all(&payment_preimage.0[..])?;
1078                 }
1079
1080                 writer.write_all(&(self.pending_monitor_events.iter().filter(|ev| match ev {
1081                         MonitorEvent::HTLCEvent(_) => true,
1082                         MonitorEvent::HolderForceClosed(_) => true,
1083                         MonitorEvent::HolderForceClosedWithInfo { .. } => true,
1084                         _ => false,
1085                 }).count() as u64).to_be_bytes())?;
1086                 for event in self.pending_monitor_events.iter() {
1087                         match event {
1088                                 MonitorEvent::HTLCEvent(upd) => {
1089                                         0u8.write(writer)?;
1090                                         upd.write(writer)?;
1091                                 },
1092                                 MonitorEvent::HolderForceClosed(_) => 1u8.write(writer)?,
1093                                 // `HolderForceClosedWithInfo` replaced `HolderForceClosed` in v0.0.122. To keep
1094                                 // backwards compatibility, we write a `HolderForceClosed` event along with the
1095                                 // `HolderForceClosedWithInfo` event. This is deduplicated in the reader.
1096                                 MonitorEvent::HolderForceClosedWithInfo { .. } => 1u8.write(writer)?,
1097                                 _ => {}, // Covered in the TLV writes below
1098                         }
1099                 }
1100
1101                 writer.write_all(&(self.pending_events.len() as u64).to_be_bytes())?;
1102                 for event in self.pending_events.iter() {
1103                         event.write(writer)?;
1104                 }
1105
1106                 self.best_block.block_hash.write(writer)?;
1107                 writer.write_all(&self.best_block.height.to_be_bytes())?;
1108
1109                 writer.write_all(&(self.onchain_events_awaiting_threshold_conf.len() as u64).to_be_bytes())?;
1110                 for ref entry in self.onchain_events_awaiting_threshold_conf.iter() {
1111                         entry.write(writer)?;
1112                 }
1113
1114                 (self.outputs_to_watch.len() as u64).write(writer)?;
1115                 for (txid, idx_scripts) in self.outputs_to_watch.iter() {
1116                         txid.write(writer)?;
1117                         (idx_scripts.len() as u64).write(writer)?;
1118                         for (idx, script) in idx_scripts.iter() {
1119                                 idx.write(writer)?;
1120                                 script.write(writer)?;
1121                         }
1122                 }
1123                 self.onchain_tx_handler.write(writer)?;
1124
1125                 self.lockdown_from_offchain.write(writer)?;
1126                 self.holder_tx_signed.write(writer)?;
1127
1128                 // If we have a `HolderForceClosedWithInfo` event, we need to write the `HolderForceClosed` for backwards compatibility.
1129                 let pending_monitor_events = match self.pending_monitor_events.iter().find(|ev| match ev {
1130                         MonitorEvent::HolderForceClosedWithInfo { .. } => true,
1131                         _ => false,
1132                 }) {
1133                         Some(MonitorEvent::HolderForceClosedWithInfo { outpoint, .. }) => {
1134                                 let mut pending_monitor_events = self.pending_monitor_events.clone();
1135                                 pending_monitor_events.push(MonitorEvent::HolderForceClosed(*outpoint));
1136                                 pending_monitor_events
1137                         }
1138                         _ => self.pending_monitor_events.clone(),
1139                 };
1140
1141                 write_tlv_fields!(writer, {
1142                         (1, self.funding_spend_confirmed, option),
1143                         (3, self.htlcs_resolved_on_chain, required_vec),
1144                         (5, pending_monitor_events, required_vec),
1145                         (7, self.funding_spend_seen, required),
1146                         (9, self.counterparty_node_id, option),
1147                         (11, self.confirmed_commitment_tx_counterparty_output, option),
1148                         (13, self.spendable_txids_confirmed, required_vec),
1149                         (15, self.counterparty_fulfilled_htlcs, required),
1150                         (17, self.initial_counterparty_commitment_info, option),
1151                         (19, self.channel_id, required),
1152                         (21, self.balances_empty_height, option),
1153                 });
1154
1155                 Ok(())
1156         }
1157 }
1158
1159 macro_rules! _process_events_body {
1160         ($self_opt: expr, $event_to_handle: expr, $handle_event: expr) => {
1161                 loop {
1162                         let (pending_events, repeated_events);
1163                         if let Some(us) = $self_opt {
1164                                 let mut inner = us.inner.lock().unwrap();
1165                                 if inner.is_processing_pending_events {
1166                                         break;
1167                                 }
1168                                 inner.is_processing_pending_events = true;
1169
1170                                 pending_events = inner.pending_events.clone();
1171                                 repeated_events = inner.get_repeated_events();
1172                         } else { break; }
1173                         let num_events = pending_events.len();
1174
1175                         for event in pending_events.into_iter().chain(repeated_events.into_iter()) {
1176                                 $event_to_handle = event;
1177                                 $handle_event;
1178                         }
1179
1180                         if let Some(us) = $self_opt {
1181                                 let mut inner = us.inner.lock().unwrap();
1182                                 inner.pending_events.drain(..num_events);
1183                                 inner.is_processing_pending_events = false;
1184                                 if !inner.pending_events.is_empty() {
1185                                         // If there's more events to process, go ahead and do so.
1186                                         continue;
1187                                 }
1188                         }
1189                         break;
1190                 }
1191         }
1192 }
1193 pub(super) use _process_events_body as process_events_body;
1194
1195 pub(crate) struct WithChannelMonitor<'a, L: Deref> where L::Target: Logger {
1196         logger: &'a L,
1197         peer_id: Option<PublicKey>,
1198         channel_id: Option<ChannelId>,
1199         payment_hash: Option<PaymentHash>,
1200 }
1201
1202 impl<'a, L: Deref> Logger for WithChannelMonitor<'a, L> where L::Target: Logger {
1203         fn log(&self, mut record: Record) {
1204                 record.peer_id = self.peer_id;
1205                 record.channel_id = self.channel_id;
1206                 record.payment_hash = self.payment_hash;
1207                 self.logger.log(record)
1208         }
1209 }
1210
1211 impl<'a, L: Deref> WithChannelMonitor<'a, L> where L::Target: Logger {
1212         pub(crate) fn from<S: EcdsaChannelSigner>(logger: &'a L, monitor: &ChannelMonitor<S>, payment_hash: Option<PaymentHash>) -> Self {
1213                 Self::from_impl(logger, &*monitor.inner.lock().unwrap(), payment_hash)
1214         }
1215
1216         pub(crate) fn from_impl<S: EcdsaChannelSigner>(logger: &'a L, monitor_impl: &ChannelMonitorImpl<S>, payment_hash: Option<PaymentHash>) -> Self {
1217                 let peer_id = monitor_impl.counterparty_node_id;
1218                 let channel_id = Some(monitor_impl.channel_id());
1219                 WithChannelMonitor {
1220                         logger, peer_id, channel_id, payment_hash,
1221                 }
1222         }
1223 }
1224
1225 impl<Signer: EcdsaChannelSigner> ChannelMonitor<Signer> {
1226         /// For lockorder enforcement purposes, we need to have a single site which constructs the
1227         /// `inner` mutex, otherwise cases where we lock two monitors at the same time (eg in our
1228         /// PartialEq implementation) we may decide a lockorder violation has occurred.
1229         fn from_impl(imp: ChannelMonitorImpl<Signer>) -> Self {
1230                 ChannelMonitor { inner: Mutex::new(imp) }
1231         }
1232
1233         pub(crate) fn new(secp_ctx: Secp256k1<secp256k1::All>, keys: Signer, shutdown_script: Option<ScriptBuf>,
1234                           on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, ScriptBuf),
1235                           channel_parameters: &ChannelTransactionParameters,
1236                           funding_redeemscript: ScriptBuf, channel_value_satoshis: u64,
1237                           commitment_transaction_number_obscure_factor: u64,
1238                           initial_holder_commitment_tx: HolderCommitmentTransaction,
1239                           best_block: BestBlock, counterparty_node_id: PublicKey, channel_id: ChannelId,
1240         ) -> ChannelMonitor<Signer> {
1241
1242                 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
1243                 let counterparty_payment_script = chan_utils::get_counterparty_payment_script(
1244                         &channel_parameters.channel_type_features, &keys.pubkeys().payment_point
1245                 );
1246
1247                 let counterparty_channel_parameters = channel_parameters.counterparty_parameters.as_ref().unwrap();
1248                 let counterparty_delayed_payment_base_key = counterparty_channel_parameters.pubkeys.delayed_payment_basepoint;
1249                 let counterparty_htlc_base_key = counterparty_channel_parameters.pubkeys.htlc_basepoint;
1250                 let counterparty_commitment_params = CounterpartyCommitmentParameters { counterparty_delayed_payment_base_key, counterparty_htlc_base_key, on_counterparty_tx_csv };
1251
1252                 let channel_keys_id = keys.channel_keys_id();
1253                 let holder_revocation_basepoint = keys.pubkeys().revocation_basepoint;
1254
1255                 // block for Rust 1.34 compat
1256                 let (holder_commitment_tx, current_holder_commitment_number) = {
1257                         let trusted_tx = initial_holder_commitment_tx.trust();
1258                         let txid = trusted_tx.txid();
1259
1260                         let tx_keys = trusted_tx.keys();
1261                         let holder_commitment_tx = HolderSignedTx {
1262                                 txid,
1263                                 revocation_key: tx_keys.revocation_key,
1264                                 a_htlc_key: tx_keys.broadcaster_htlc_key,
1265                                 b_htlc_key: tx_keys.countersignatory_htlc_key,
1266                                 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
1267                                 per_commitment_point: tx_keys.per_commitment_point,
1268                                 htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
1269                                 to_self_value_sat: initial_holder_commitment_tx.to_broadcaster_value_sat(),
1270                                 feerate_per_kw: trusted_tx.feerate_per_kw(),
1271                         };
1272                         (holder_commitment_tx, trusted_tx.commitment_number())
1273                 };
1274
1275                 let onchain_tx_handler = OnchainTxHandler::new(
1276                         channel_value_satoshis, channel_keys_id, destination_script.into(), keys,
1277                         channel_parameters.clone(), initial_holder_commitment_tx, secp_ctx
1278                 );
1279
1280                 let mut outputs_to_watch = new_hash_map();
1281                 outputs_to_watch.insert(funding_info.0.txid, vec![(funding_info.0.index as u32, funding_info.1.clone())]);
1282
1283                 Self::from_impl(ChannelMonitorImpl {
1284                         latest_update_id: 0,
1285                         commitment_transaction_number_obscure_factor,
1286
1287                         destination_script: destination_script.into(),
1288                         broadcasted_holder_revokable_script: None,
1289                         counterparty_payment_script,
1290                         shutdown_script,
1291
1292                         channel_keys_id,
1293                         holder_revocation_basepoint,
1294                         channel_id,
1295                         funding_info,
1296                         current_counterparty_commitment_txid: None,
1297                         prev_counterparty_commitment_txid: None,
1298
1299                         counterparty_commitment_params,
1300                         funding_redeemscript,
1301                         channel_value_satoshis,
1302                         their_cur_per_commitment_points: None,
1303
1304                         on_holder_tx_csv: counterparty_channel_parameters.selected_contest_delay,
1305
1306                         commitment_secrets: CounterpartyCommitmentSecrets::new(),
1307                         counterparty_claimable_outpoints: new_hash_map(),
1308                         counterparty_commitment_txn_on_chain: new_hash_map(),
1309                         counterparty_hash_commitment_number: new_hash_map(),
1310                         counterparty_fulfilled_htlcs: new_hash_map(),
1311
1312                         prev_holder_signed_commitment_tx: None,
1313                         current_holder_commitment_tx: holder_commitment_tx,
1314                         current_counterparty_commitment_number: 1 << 48,
1315                         current_holder_commitment_number,
1316
1317                         payment_preimages: new_hash_map(),
1318                         pending_monitor_events: Vec::new(),
1319                         pending_events: Vec::new(),
1320                         is_processing_pending_events: false,
1321
1322                         onchain_events_awaiting_threshold_conf: Vec::new(),
1323                         outputs_to_watch,
1324
1325                         onchain_tx_handler,
1326
1327                         lockdown_from_offchain: false,
1328                         holder_tx_signed: false,
1329                         funding_spend_seen: false,
1330                         funding_spend_confirmed: None,
1331                         confirmed_commitment_tx_counterparty_output: None,
1332                         htlcs_resolved_on_chain: Vec::new(),
1333                         spendable_txids_confirmed: Vec::new(),
1334
1335                         best_block,
1336                         counterparty_node_id: Some(counterparty_node_id),
1337                         initial_counterparty_commitment_info: None,
1338                         balances_empty_height: None,
1339                 })
1340         }
1341
1342         #[cfg(test)]
1343         fn provide_secret(&self, idx: u64, secret: [u8; 32]) -> Result<(), &'static str> {
1344                 self.inner.lock().unwrap().provide_secret(idx, secret)
1345         }
1346
1347         /// A variant of `Self::provide_latest_counterparty_commitment_tx` used to provide
1348         /// additional information to the monitor to store in order to recreate the initial
1349         /// counterparty commitment transaction during persistence (mainly for use in third-party
1350         /// watchtowers).
1351         ///
1352         /// This is used to provide the counterparty commitment information directly to the monitor
1353         /// before the initial persistence of a new channel.
1354         pub(crate) fn provide_initial_counterparty_commitment_tx<L: Deref>(
1355                 &self, txid: Txid, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
1356                 commitment_number: u64, their_cur_per_commitment_point: PublicKey, feerate_per_kw: u32,
1357                 to_broadcaster_value_sat: u64, to_countersignatory_value_sat: u64, logger: &L,
1358         )
1359         where L::Target: Logger
1360         {
1361                 let mut inner = self.inner.lock().unwrap();
1362                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1363                 inner.provide_initial_counterparty_commitment_tx(txid,
1364                         htlc_outputs, commitment_number, their_cur_per_commitment_point, feerate_per_kw,
1365                         to_broadcaster_value_sat, to_countersignatory_value_sat, &logger);
1366         }
1367
1368         /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
1369         /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
1370         /// possibly future revocation/preimage information) to claim outputs where possible.
1371         /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
1372         #[cfg(test)]
1373         fn provide_latest_counterparty_commitment_tx<L: Deref>(
1374                 &self,
1375                 txid: Txid,
1376                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
1377                 commitment_number: u64,
1378                 their_per_commitment_point: PublicKey,
1379                 logger: &L,
1380         ) where L::Target: Logger {
1381                 let mut inner = self.inner.lock().unwrap();
1382                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1383                 inner.provide_latest_counterparty_commitment_tx(
1384                         txid, htlc_outputs, commitment_number, their_per_commitment_point, &logger)
1385         }
1386
1387         #[cfg(test)]
1388         fn provide_latest_holder_commitment_tx(
1389                 &self, holder_commitment_tx: HolderCommitmentTransaction,
1390                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
1391         ) -> Result<(), ()> {
1392                 self.inner.lock().unwrap().provide_latest_holder_commitment_tx(holder_commitment_tx, htlc_outputs, &Vec::new(), Vec::new()).map_err(|_| ())
1393         }
1394
1395         /// This is used to provide payment preimage(s) out-of-band during startup without updating the
1396         /// off-chain state with a new commitment transaction.
1397         pub(crate) fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
1398                 &self,
1399                 payment_hash: &PaymentHash,
1400                 payment_preimage: &PaymentPreimage,
1401                 broadcaster: &B,
1402                 fee_estimator: &LowerBoundedFeeEstimator<F>,
1403                 logger: &L,
1404         ) where
1405                 B::Target: BroadcasterInterface,
1406                 F::Target: FeeEstimator,
1407                 L::Target: Logger,
1408         {
1409                 let mut inner = self.inner.lock().unwrap();
1410                 let logger = WithChannelMonitor::from_impl(logger, &*inner, Some(*payment_hash));
1411                 inner.provide_payment_preimage(
1412                         payment_hash, payment_preimage, broadcaster, fee_estimator, &logger)
1413         }
1414
1415         /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
1416         /// itself.
1417         ///
1418         /// panics if the given update is not the next update by update_id.
1419         pub fn update_monitor<B: Deref, F: Deref, L: Deref>(
1420                 &self,
1421                 updates: &ChannelMonitorUpdate,
1422                 broadcaster: &B,
1423                 fee_estimator: &F,
1424                 logger: &L,
1425         ) -> Result<(), ()>
1426         where
1427                 B::Target: BroadcasterInterface,
1428                 F::Target: FeeEstimator,
1429                 L::Target: Logger,
1430         {
1431                 let mut inner = self.inner.lock().unwrap();
1432                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1433                 inner.update_monitor(updates, broadcaster, fee_estimator, &logger)
1434         }
1435
1436         /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
1437         /// ChannelMonitor.
1438         pub fn get_latest_update_id(&self) -> u64 {
1439                 self.inner.lock().unwrap().get_latest_update_id()
1440         }
1441
1442         /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
1443         pub fn get_funding_txo(&self) -> (OutPoint, ScriptBuf) {
1444                 self.inner.lock().unwrap().get_funding_txo().clone()
1445         }
1446
1447         /// Gets the channel_id of the channel this ChannelMonitor is monitoring for.
1448         pub fn channel_id(&self) -> ChannelId {
1449                 self.inner.lock().unwrap().channel_id()
1450         }
1451
1452         /// Gets a list of txids, with their output scripts (in the order they appear in the
1453         /// transaction), which we must learn about spends of via block_connected().
1454         pub fn get_outputs_to_watch(&self) -> Vec<(Txid, Vec<(u32, ScriptBuf)>)> {
1455                 self.inner.lock().unwrap().get_outputs_to_watch()
1456                         .iter().map(|(txid, outputs)| (*txid, outputs.clone())).collect()
1457         }
1458
1459         /// Loads the funding txo and outputs to watch into the given `chain::Filter` by repeatedly
1460         /// calling `chain::Filter::register_output` and `chain::Filter::register_tx` until all outputs
1461         /// have been registered.
1462         pub fn load_outputs_to_watch<F: Deref, L: Deref>(&self, filter: &F, logger: &L)
1463         where
1464                 F::Target: chain::Filter, L::Target: Logger,
1465         {
1466                 let lock = self.inner.lock().unwrap();
1467                 let logger = WithChannelMonitor::from_impl(logger, &*lock, None);
1468                 log_trace!(&logger, "Registering funding outpoint {}", &lock.get_funding_txo().0);
1469                 filter.register_tx(&lock.get_funding_txo().0.txid, &lock.get_funding_txo().1);
1470                 for (txid, outputs) in lock.get_outputs_to_watch().iter() {
1471                         for (index, script_pubkey) in outputs.iter() {
1472                                 assert!(*index <= u16::max_value() as u32);
1473                                 let outpoint = OutPoint { txid: *txid, index: *index as u16 };
1474                                 log_trace!(logger, "Registering outpoint {} with the filter for monitoring spends", outpoint);
1475                                 filter.register_output(WatchedOutput {
1476                                         block_hash: None,
1477                                         outpoint,
1478                                         script_pubkey: script_pubkey.clone(),
1479                                 });
1480                         }
1481                 }
1482         }
1483
1484         /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1485         /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1486         pub fn get_and_clear_pending_monitor_events(&self) -> Vec<MonitorEvent> {
1487                 self.inner.lock().unwrap().get_and_clear_pending_monitor_events()
1488         }
1489
1490         /// Processes [`SpendableOutputs`] events produced from each [`ChannelMonitor`] upon maturity.
1491         ///
1492         /// For channels featuring anchor outputs, this method will also process [`BumpTransaction`]
1493         /// events produced from each [`ChannelMonitor`] while there is a balance to claim onchain
1494         /// within each channel. As the confirmation of a commitment transaction may be critical to the
1495         /// safety of funds, we recommend invoking this every 30 seconds, or lower if running in an
1496         /// environment with spotty connections, like on mobile.
1497         ///
1498         /// An [`EventHandler`] may safely call back to the provider, though this shouldn't be needed in
1499         /// order to handle these events.
1500         ///
1501         /// [`SpendableOutputs`]: crate::events::Event::SpendableOutputs
1502         /// [`BumpTransaction`]: crate::events::Event::BumpTransaction
1503         pub fn process_pending_events<H: Deref>(&self, handler: &H) where H::Target: EventHandler {
1504                 let mut ev;
1505                 process_events_body!(Some(self), ev, handler.handle_event(ev));
1506         }
1507
1508         /// Processes any events asynchronously.
1509         ///
1510         /// See [`Self::process_pending_events`] for more information.
1511         pub async fn process_pending_events_async<Future: core::future::Future, H: Fn(Event) -> Future>(
1512                 &self, handler: &H
1513         ) {
1514                 let mut ev;
1515                 process_events_body!(Some(self), ev, { handler(ev).await });
1516         }
1517
1518         #[cfg(test)]
1519         pub fn get_and_clear_pending_events(&self) -> Vec<Event> {
1520                 let mut ret = Vec::new();
1521                 let mut lck = self.inner.lock().unwrap();
1522                 mem::swap(&mut ret, &mut lck.pending_events);
1523                 ret.append(&mut lck.get_repeated_events());
1524                 ret
1525         }
1526
1527         /// Gets the counterparty's initial commitment transaction. The returned commitment
1528         /// transaction is unsigned. This is intended to be called during the initial persistence of
1529         /// the monitor (inside an implementation of [`Persist::persist_new_channel`]), to allow for
1530         /// watchtowers in the persistence pipeline to have enough data to form justice transactions.
1531         ///
1532         /// This is similar to [`Self::counterparty_commitment_txs_from_update`], except
1533         /// that for the initial commitment transaction, we don't have a corresponding update.
1534         ///
1535         /// This will only return `Some` for channel monitors that have been created after upgrading
1536         /// to LDK 0.0.117+.
1537         ///
1538         /// [`Persist::persist_new_channel`]: crate::chain::chainmonitor::Persist::persist_new_channel
1539         pub fn initial_counterparty_commitment_tx(&self) -> Option<CommitmentTransaction> {
1540                 self.inner.lock().unwrap().initial_counterparty_commitment_tx()
1541         }
1542
1543         /// Gets all of the counterparty commitment transactions provided by the given update. This
1544         /// may be empty if the update doesn't include any new counterparty commitments. Returned
1545         /// commitment transactions are unsigned.
1546         ///
1547         /// This is provided so that watchtower clients in the persistence pipeline are able to build
1548         /// justice transactions for each counterparty commitment upon each update. It's intended to be
1549         /// used within an implementation of [`Persist::update_persisted_channel`], which is provided
1550         /// with a monitor and an update. Once revoked, signing a justice transaction can be done using
1551         /// [`Self::sign_to_local_justice_tx`].
1552         ///
1553         /// It is expected that a watchtower client may use this method to retrieve the latest counterparty
1554         /// commitment transaction(s), and then hold the necessary data until a later update in which
1555         /// the monitor has been updated with the corresponding revocation data, at which point the
1556         /// monitor can sign the justice transaction.
1557         ///
1558         /// This will only return a non-empty list for monitor updates that have been created after
1559         /// upgrading to LDK 0.0.117+. Note that no restriction lies on the monitors themselves, which
1560         /// may have been created prior to upgrading.
1561         ///
1562         /// [`Persist::update_persisted_channel`]: crate::chain::chainmonitor::Persist::update_persisted_channel
1563         pub fn counterparty_commitment_txs_from_update(&self, update: &ChannelMonitorUpdate) -> Vec<CommitmentTransaction> {
1564                 self.inner.lock().unwrap().counterparty_commitment_txs_from_update(update)
1565         }
1566
1567         /// Wrapper around [`EcdsaChannelSigner::sign_justice_revoked_output`] to make
1568         /// signing the justice transaction easier for implementors of
1569         /// [`chain::chainmonitor::Persist`]. On success this method returns the provided transaction
1570         /// signing the input at `input_idx`. This method will only produce a valid signature for
1571         /// a transaction spending the `to_local` output of a commitment transaction, i.e. this cannot
1572         /// be used for revoked HTLC outputs.
1573         ///
1574         /// `Value` is the value of the output being spent by the input at `input_idx`, committed
1575         /// in the BIP 143 signature.
1576         ///
1577         /// This method will only succeed if this monitor has received the revocation secret for the
1578         /// provided `commitment_number`. If a commitment number is provided that does not correspond
1579         /// to the commitment transaction being revoked, this will return a signed transaction, but
1580         /// the signature will not be valid.
1581         ///
1582         /// [`EcdsaChannelSigner::sign_justice_revoked_output`]: crate::sign::ecdsa::EcdsaChannelSigner::sign_justice_revoked_output
1583         /// [`Persist`]: crate::chain::chainmonitor::Persist
1584         pub fn sign_to_local_justice_tx(&self, justice_tx: Transaction, input_idx: usize, value: u64, commitment_number: u64) -> Result<Transaction, ()> {
1585                 self.inner.lock().unwrap().sign_to_local_justice_tx(justice_tx, input_idx, value, commitment_number)
1586         }
1587
1588         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1589                 self.inner.lock().unwrap().get_min_seen_secret()
1590         }
1591
1592         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1593                 self.inner.lock().unwrap().get_cur_counterparty_commitment_number()
1594         }
1595
1596         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1597                 self.inner.lock().unwrap().get_cur_holder_commitment_number()
1598         }
1599
1600         /// Gets the `node_id` of the counterparty for this channel.
1601         ///
1602         /// Will be `None` for channels constructed on LDK versions prior to 0.0.110 and always `Some`
1603         /// otherwise.
1604         pub fn get_counterparty_node_id(&self) -> Option<PublicKey> {
1605                 self.inner.lock().unwrap().counterparty_node_id
1606         }
1607
1608         /// You may use this to broadcast the latest local commitment transaction, either because
1609         /// a monitor update failed or because we've fallen behind (i.e. we've received proof that our
1610         /// counterparty side knows a revocation secret we gave them that they shouldn't know).
1611         ///
1612         /// Broadcasting these transactions in this manner is UNSAFE, as they allow counterparty
1613         /// side to punish you. Nevertheless you may want to broadcast them if counterparty doesn't
1614         /// close channel with their commitment transaction after a substantial amount of time. Best
1615         /// may be to contact the other node operator out-of-band to coordinate other options available
1616         /// to you.
1617         pub fn broadcast_latest_holder_commitment_txn<B: Deref, F: Deref, L: Deref>(
1618                 &self, broadcaster: &B, fee_estimator: &F, logger: &L
1619         )
1620         where
1621                 B::Target: BroadcasterInterface,
1622                 F::Target: FeeEstimator,
1623                 L::Target: Logger
1624         {
1625                 let mut inner = self.inner.lock().unwrap();
1626                 let fee_estimator = LowerBoundedFeeEstimator::new(&**fee_estimator);
1627                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1628                 inner.queue_latest_holder_commitment_txn_for_broadcast(broadcaster, &fee_estimator, &logger);
1629         }
1630
1631         /// Unsafe test-only version of `broadcast_latest_holder_commitment_txn` used by our test framework
1632         /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1633         /// revoked commitment transaction.
1634         #[cfg(any(test, feature = "unsafe_revoked_tx_signing"))]
1635         pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1636         where L::Target: Logger {
1637                 let mut inner = self.inner.lock().unwrap();
1638                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1639                 inner.unsafe_get_latest_holder_commitment_txn(&logger)
1640         }
1641
1642         /// Processes transactions in a newly connected block, which may result in any of the following:
1643         /// - update the monitor's state against resolved HTLCs
1644         /// - punish the counterparty in the case of seeing a revoked commitment transaction
1645         /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1646         /// - detect settled outputs for later spending
1647         /// - schedule and bump any in-flight claims
1648         ///
1649         /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1650         /// [`get_outputs_to_watch`].
1651         ///
1652         /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1653         pub fn block_connected<B: Deref, F: Deref, L: Deref>(
1654                 &self,
1655                 header: &Header,
1656                 txdata: &TransactionData,
1657                 height: u32,
1658                 broadcaster: B,
1659                 fee_estimator: F,
1660                 logger: &L,
1661         ) -> Vec<TransactionOutputs>
1662         where
1663                 B::Target: BroadcasterInterface,
1664                 F::Target: FeeEstimator,
1665                 L::Target: Logger,
1666         {
1667                 let mut inner = self.inner.lock().unwrap();
1668                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1669                 inner.block_connected(
1670                         header, txdata, height, broadcaster, fee_estimator, &logger)
1671         }
1672
1673         /// Determines if the disconnected block contained any transactions of interest and updates
1674         /// appropriately.
1675         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(
1676                 &self,
1677                 header: &Header,
1678                 height: u32,
1679                 broadcaster: B,
1680                 fee_estimator: F,
1681                 logger: &L,
1682         ) where
1683                 B::Target: BroadcasterInterface,
1684                 F::Target: FeeEstimator,
1685                 L::Target: Logger,
1686         {
1687                 let mut inner = self.inner.lock().unwrap();
1688                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1689                 inner.block_disconnected(
1690                         header, height, broadcaster, fee_estimator, &logger)
1691         }
1692
1693         /// Processes transactions confirmed in a block with the given header and height, returning new
1694         /// outputs to watch. See [`block_connected`] for details.
1695         ///
1696         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1697         /// blocks. See [`chain::Confirm`] for calling expectations.
1698         ///
1699         /// [`block_connected`]: Self::block_connected
1700         pub fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
1701                 &self,
1702                 header: &Header,
1703                 txdata: &TransactionData,
1704                 height: u32,
1705                 broadcaster: B,
1706                 fee_estimator: F,
1707                 logger: &L,
1708         ) -> Vec<TransactionOutputs>
1709         where
1710                 B::Target: BroadcasterInterface,
1711                 F::Target: FeeEstimator,
1712                 L::Target: Logger,
1713         {
1714                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1715                 let mut inner = self.inner.lock().unwrap();
1716                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1717                 inner.transactions_confirmed(
1718                         header, txdata, height, broadcaster, &bounded_fee_estimator, &logger)
1719         }
1720
1721         /// Processes a transaction that was reorganized out of the chain.
1722         ///
1723         /// Used instead of [`block_disconnected`] by clients that are notified of transactions rather
1724         /// than blocks. See [`chain::Confirm`] for calling expectations.
1725         ///
1726         /// [`block_disconnected`]: Self::block_disconnected
1727         pub fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
1728                 &self,
1729                 txid: &Txid,
1730                 broadcaster: B,
1731                 fee_estimator: F,
1732                 logger: &L,
1733         ) where
1734                 B::Target: BroadcasterInterface,
1735                 F::Target: FeeEstimator,
1736                 L::Target: Logger,
1737         {
1738                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1739                 let mut inner = self.inner.lock().unwrap();
1740                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1741                 inner.transaction_unconfirmed(
1742                         txid, broadcaster, &bounded_fee_estimator, &logger
1743                 );
1744         }
1745
1746         /// Updates the monitor with the current best chain tip, returning new outputs to watch. See
1747         /// [`block_connected`] for details.
1748         ///
1749         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1750         /// blocks. See [`chain::Confirm`] for calling expectations.
1751         ///
1752         /// [`block_connected`]: Self::block_connected
1753         pub fn best_block_updated<B: Deref, F: Deref, L: Deref>(
1754                 &self,
1755                 header: &Header,
1756                 height: u32,
1757                 broadcaster: B,
1758                 fee_estimator: F,
1759                 logger: &L,
1760         ) -> Vec<TransactionOutputs>
1761         where
1762                 B::Target: BroadcasterInterface,
1763                 F::Target: FeeEstimator,
1764                 L::Target: Logger,
1765         {
1766                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1767                 let mut inner = self.inner.lock().unwrap();
1768                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1769                 inner.best_block_updated(
1770                         header, height, broadcaster, &bounded_fee_estimator, &logger
1771                 )
1772         }
1773
1774         /// Returns the set of txids that should be monitored for re-organization out of the chain.
1775         pub fn get_relevant_txids(&self) -> Vec<(Txid, u32, Option<BlockHash>)> {
1776                 let inner = self.inner.lock().unwrap();
1777                 let mut txids: Vec<(Txid, u32, Option<BlockHash>)> = inner.onchain_events_awaiting_threshold_conf
1778                         .iter()
1779                         .map(|entry| (entry.txid, entry.height, entry.block_hash))
1780                         .chain(inner.onchain_tx_handler.get_relevant_txids().into_iter())
1781                         .collect();
1782                 txids.sort_unstable_by(|a, b| a.0.cmp(&b.0).then(b.1.cmp(&a.1)));
1783                 txids.dedup_by_key(|(txid, _, _)| *txid);
1784                 txids
1785         }
1786
1787         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1788         /// [`chain::Confirm`] interfaces.
1789         pub fn current_best_block(&self) -> BestBlock {
1790                 self.inner.lock().unwrap().best_block.clone()
1791         }
1792
1793         /// Triggers rebroadcasts/fee-bumps of pending claims from a force-closed channel. This is
1794         /// crucial in preventing certain classes of pinning attacks, detecting substantial mempool
1795         /// feerate changes between blocks, and ensuring reliability if broadcasting fails. We recommend
1796         /// invoking this every 30 seconds, or lower if running in an environment with spotty
1797         /// connections, like on mobile.
1798         pub fn rebroadcast_pending_claims<B: Deref, F: Deref, L: Deref>(
1799                 &self, broadcaster: B, fee_estimator: F, logger: &L,
1800         )
1801         where
1802                 B::Target: BroadcasterInterface,
1803                 F::Target: FeeEstimator,
1804                 L::Target: Logger,
1805         {
1806                 let fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1807                 let mut inner = self.inner.lock().unwrap();
1808                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1809                 let current_height = inner.best_block.height;
1810                 inner.onchain_tx_handler.rebroadcast_pending_claims(
1811                         current_height, FeerateStrategy::HighestOfPreviousOrNew, &broadcaster, &fee_estimator, &logger,
1812                 );
1813         }
1814
1815         /// Triggers rebroadcasts of pending claims from a force-closed channel after a transaction
1816         /// signature generation failure.
1817         pub fn signer_unblocked<B: Deref, F: Deref, L: Deref>(
1818                 &self, broadcaster: B, fee_estimator: F, logger: &L,
1819         )
1820         where
1821                 B::Target: BroadcasterInterface,
1822                 F::Target: FeeEstimator,
1823                 L::Target: Logger,
1824         {
1825                 let fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1826                 let mut inner = self.inner.lock().unwrap();
1827                 let logger = WithChannelMonitor::from_impl(logger, &*inner, None);
1828                 let current_height = inner.best_block.height;
1829                 inner.onchain_tx_handler.rebroadcast_pending_claims(
1830                         current_height, FeerateStrategy::RetryPrevious, &broadcaster, &fee_estimator, &logger,
1831                 );
1832         }
1833
1834         /// Returns the descriptors for relevant outputs (i.e., those that we can spend) within the
1835         /// transaction if they exist and the transaction has at least [`ANTI_REORG_DELAY`]
1836         /// confirmations. For [`SpendableOutputDescriptor::DelayedPaymentOutput`] descriptors to be
1837         /// returned, the transaction must have at least `max(ANTI_REORG_DELAY, to_self_delay)`
1838         /// confirmations.
1839         ///
1840         /// Descriptors returned by this method are primarily exposed via [`Event::SpendableOutputs`]
1841         /// once they are no longer under reorg risk. This method serves as a way to retrieve these
1842         /// descriptors at a later time, either for historical purposes, or to replay any
1843         /// missed/unhandled descriptors. For the purpose of gathering historical records, if the
1844         /// channel close has fully resolved (i.e., [`ChannelMonitor::get_claimable_balances`] returns
1845         /// an empty set), you can retrieve all spendable outputs by providing all descendant spending
1846         /// transactions starting from the channel's funding transaction and going down three levels.
1847         ///
1848         /// `tx` is a transaction we'll scan the outputs of. Any transaction can be provided. If any
1849         /// outputs which can be spent by us are found, at least one descriptor is returned.
1850         ///
1851         /// `confirmation_height` must be the height of the block in which `tx` was included in.
1852         pub fn get_spendable_outputs(&self, tx: &Transaction, confirmation_height: u32) -> Vec<SpendableOutputDescriptor> {
1853                 let inner = self.inner.lock().unwrap();
1854                 let current_height = inner.best_block.height;
1855                 let mut spendable_outputs = inner.get_spendable_outputs(tx);
1856                 spendable_outputs.retain(|descriptor| {
1857                         let mut conf_threshold = current_height.saturating_sub(ANTI_REORG_DELAY) + 1;
1858                         if let SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) = descriptor {
1859                                 conf_threshold = cmp::min(conf_threshold,
1860                                         current_height.saturating_sub(descriptor.to_self_delay as u32) + 1);
1861                         }
1862                         conf_threshold >= confirmation_height
1863                 });
1864                 spendable_outputs
1865         }
1866
1867         /// Checks if the monitor is fully resolved. Resolved monitor is one that has claimed all of
1868         /// its outputs and balances (i.e. [`Self::get_claimable_balances`] returns an empty set).
1869         ///
1870         /// This function returns true only if [`Self::get_claimable_balances`] has been empty for at least
1871         /// 4032 blocks as an additional protection against any bugs resulting in spuriously empty balance sets.
1872         pub fn is_fully_resolved<L: Logger>(&self, logger: &L) -> bool {
1873                 let mut is_all_funds_claimed = self.get_claimable_balances().is_empty();
1874                 let current_height = self.current_best_block().height;
1875                 let mut inner = self.inner.lock().unwrap();
1876
1877                 if is_all_funds_claimed {
1878                         if !inner.funding_spend_seen {
1879                                 debug_assert!(false, "We should see funding spend by the time a monitor clears out");
1880                                 is_all_funds_claimed = false;
1881                         }
1882                 }
1883
1884                 const BLOCKS_THRESHOLD: u32 = 4032; // ~four weeks
1885                 match (inner.balances_empty_height, is_all_funds_claimed) {
1886                         (Some(balances_empty_height), true) => {
1887                                 // Claimed all funds, check if reached the blocks threshold.
1888                                 return current_height >= balances_empty_height + BLOCKS_THRESHOLD;
1889                         },
1890                         (Some(_), false) => {
1891                                 // previously assumed we claimed all funds, but we have new funds to claim.
1892                                 // Should not happen in practice.
1893                                 debug_assert!(false, "Thought we were done claiming funds, but claimable_balances now has entries");
1894                                 log_error!(logger,
1895                                         "WARNING: LDK thought it was done claiming all the available funds in the ChannelMonitor for channel {}, but later decided it had more to claim. This is potentially an important bug in LDK, please report it at https://github.com/lightningdevkit/rust-lightning/issues/new",
1896                                         inner.get_funding_txo().0);
1897                                 inner.balances_empty_height = None;
1898                                 false
1899                         },
1900                         (None, true) => {
1901                                 // Claimed all funds but `balances_empty_height` is None. It is set to the
1902                                 // current block height.
1903                                 log_debug!(logger,
1904                                         "ChannelMonitor funded at {} is now fully resolved. It will become archivable in {} blocks",
1905                                         inner.get_funding_txo().0, BLOCKS_THRESHOLD);
1906                                 inner.balances_empty_height = Some(current_height);
1907                                 false
1908                         },
1909                         (None, false) => {
1910                                 // Have funds to claim.
1911                                 false
1912                         },
1913                 }
1914         }
1915
1916         #[cfg(test)]
1917         pub fn get_counterparty_payment_script(&self) -> ScriptBuf {
1918                 self.inner.lock().unwrap().counterparty_payment_script.clone()
1919         }
1920
1921         #[cfg(test)]
1922         pub fn set_counterparty_payment_script(&self, script: ScriptBuf) {
1923                 self.inner.lock().unwrap().counterparty_payment_script = script;
1924         }
1925
1926         #[cfg(test)]
1927         pub fn do_mut_signer_call<F: FnMut(&mut Signer) -> ()>(&self, mut f: F) {
1928                 let mut inner = self.inner.lock().unwrap();
1929                 f(&mut inner.onchain_tx_handler.signer);
1930         }
1931 }
1932
1933 impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
1934         /// Helper for get_claimable_balances which does the work for an individual HTLC, generating up
1935         /// to one `Balance` for the HTLC.
1936         fn get_htlc_balance(&self, htlc: &HTLCOutputInCommitment, holder_commitment: bool,
1937                 counterparty_revoked_commitment: bool, confirmed_txid: Option<Txid>)
1938         -> Option<Balance> {
1939                 let htlc_commitment_tx_output_idx =
1940                         if let Some(v) = htlc.transaction_output_index { v } else { return None; };
1941
1942                 let mut htlc_spend_txid_opt = None;
1943                 let mut htlc_spend_tx_opt = None;
1944                 let mut holder_timeout_spend_pending = None;
1945                 let mut htlc_spend_pending = None;
1946                 let mut holder_delayed_output_pending = None;
1947                 for event in self.onchain_events_awaiting_threshold_conf.iter() {
1948                         match event.event {
1949                                 OnchainEvent::HTLCUpdate { commitment_tx_output_idx, htlc_value_satoshis, .. }
1950                                 if commitment_tx_output_idx == Some(htlc_commitment_tx_output_idx) => {
1951                                         debug_assert!(htlc_spend_txid_opt.is_none());
1952                                         htlc_spend_txid_opt = Some(&event.txid);
1953                                         debug_assert!(htlc_spend_tx_opt.is_none());
1954                                         htlc_spend_tx_opt = event.transaction.as_ref();
1955                                         debug_assert!(holder_timeout_spend_pending.is_none());
1956                                         debug_assert_eq!(htlc_value_satoshis.unwrap(), htlc.amount_msat / 1000);
1957                                         holder_timeout_spend_pending = Some(event.confirmation_threshold());
1958                                 },
1959                                 OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, preimage, .. }
1960                                 if commitment_tx_output_idx == htlc_commitment_tx_output_idx => {
1961                                         debug_assert!(htlc_spend_txid_opt.is_none());
1962                                         htlc_spend_txid_opt = Some(&event.txid);
1963                                         debug_assert!(htlc_spend_tx_opt.is_none());
1964                                         htlc_spend_tx_opt = event.transaction.as_ref();
1965                                         debug_assert!(htlc_spend_pending.is_none());
1966                                         htlc_spend_pending = Some((event.confirmation_threshold(), preimage.is_some()));
1967                                 },
1968                                 OnchainEvent::MaturingOutput {
1969                                         descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor) }
1970                                 if event.transaction.as_ref().map(|tx| tx.input.iter().enumerate()
1971                                         .any(|(input_idx, inp)|
1972                                                  Some(inp.previous_output.txid) == confirmed_txid &&
1973                                                         inp.previous_output.vout == htlc_commitment_tx_output_idx &&
1974                                                                 // A maturing output for an HTLC claim will always be at the same
1975                                                                 // index as the HTLC input. This is true pre-anchors, as there's
1976                                                                 // only 1 input and 1 output. This is also true post-anchors,
1977                                                                 // because we have a SIGHASH_SINGLE|ANYONECANPAY signature from our
1978                                                                 // channel counterparty.
1979                                                                 descriptor.outpoint.index as usize == input_idx
1980                                         ))
1981                                         .unwrap_or(false)
1982                                 => {
1983                                         debug_assert!(holder_delayed_output_pending.is_none());
1984                                         holder_delayed_output_pending = Some(event.confirmation_threshold());
1985                                 },
1986                                 _ => {},
1987                         }
1988                 }
1989                 let htlc_resolved = self.htlcs_resolved_on_chain.iter()
1990                         .find(|v| if v.commitment_tx_output_idx == Some(htlc_commitment_tx_output_idx) {
1991                                 debug_assert!(htlc_spend_txid_opt.is_none());
1992                                 htlc_spend_txid_opt = v.resolving_txid.as_ref();
1993                                 debug_assert!(htlc_spend_tx_opt.is_none());
1994                                 htlc_spend_tx_opt = v.resolving_tx.as_ref();
1995                                 true
1996                         } else { false });
1997                 debug_assert!(holder_timeout_spend_pending.is_some() as u8 + htlc_spend_pending.is_some() as u8 + htlc_resolved.is_some() as u8 <= 1);
1998
1999                 let htlc_commitment_outpoint = BitcoinOutPoint::new(confirmed_txid.unwrap(), htlc_commitment_tx_output_idx);
2000                 let htlc_output_to_spend =
2001                         if let Some(txid) = htlc_spend_txid_opt {
2002                                 // Because HTLC transactions either only have 1 input and 1 output (pre-anchors) or
2003                                 // are signed with SIGHASH_SINGLE|ANYONECANPAY under BIP-0143 (post-anchors), we can
2004                                 // locate the correct output by ensuring its adjacent input spends the HTLC output
2005                                 // in the commitment.
2006                                 if let Some(ref tx) = htlc_spend_tx_opt {
2007                                         let htlc_input_idx_opt = tx.input.iter().enumerate()
2008                                                 .find(|(_, input)| input.previous_output == htlc_commitment_outpoint)
2009                                                 .map(|(idx, _)| idx as u32);
2010                                         debug_assert!(htlc_input_idx_opt.is_some());
2011                                         BitcoinOutPoint::new(*txid, htlc_input_idx_opt.unwrap_or(0))
2012                                 } else {
2013                                         debug_assert!(!self.onchain_tx_handler.channel_type_features().supports_anchors_zero_fee_htlc_tx());
2014                                         BitcoinOutPoint::new(*txid, 0)
2015                                 }
2016                         } else {
2017                                 htlc_commitment_outpoint
2018                         };
2019                 let htlc_output_spend_pending = self.onchain_tx_handler.is_output_spend_pending(&htlc_output_to_spend);
2020
2021                 if let Some(conf_thresh) = holder_delayed_output_pending {
2022                         debug_assert!(holder_commitment);
2023                         return Some(Balance::ClaimableAwaitingConfirmations {
2024                                 amount_satoshis: htlc.amount_msat / 1000,
2025                                 confirmation_height: conf_thresh,
2026                         });
2027                 } else if htlc_resolved.is_some() && !htlc_output_spend_pending {
2028                         // Funding transaction spends should be fully confirmed by the time any
2029                         // HTLC transactions are resolved, unless we're talking about a holder
2030                         // commitment tx, whose resolution is delayed until the CSV timeout is
2031                         // reached, even though HTLCs may be resolved after only
2032                         // ANTI_REORG_DELAY confirmations.
2033                         debug_assert!(holder_commitment || self.funding_spend_confirmed.is_some());
2034                 } else if counterparty_revoked_commitment {
2035                         let htlc_output_claim_pending = self.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
2036                                 if let OnchainEvent::MaturingOutput {
2037                                         descriptor: SpendableOutputDescriptor::StaticOutput { .. }
2038                                 } = &event.event {
2039                                         if event.transaction.as_ref().map(|tx| tx.input.iter().any(|inp| {
2040                                                 if let Some(htlc_spend_txid) = htlc_spend_txid_opt {
2041                                                         tx.txid() == *htlc_spend_txid || inp.previous_output.txid == *htlc_spend_txid
2042                                                 } else {
2043                                                         Some(inp.previous_output.txid) == confirmed_txid &&
2044                                                                 inp.previous_output.vout == htlc_commitment_tx_output_idx
2045                                                 }
2046                                         })).unwrap_or(false) {
2047                                                 Some(())
2048                                         } else { None }
2049                                 } else { None }
2050                         });
2051                         if htlc_output_claim_pending.is_some() {
2052                                 // We already push `Balance`s onto the `res` list for every
2053                                 // `StaticOutput` in a `MaturingOutput` in the revoked
2054                                 // counterparty commitment transaction case generally, so don't
2055                                 // need to do so again here.
2056                         } else {
2057                                 debug_assert!(holder_timeout_spend_pending.is_none(),
2058                                         "HTLCUpdate OnchainEvents should never appear for preimage claims");
2059                                 debug_assert!(!htlc.offered || htlc_spend_pending.is_none() || !htlc_spend_pending.unwrap().1,
2060                                         "We don't (currently) generate preimage claims against revoked outputs, where did you get one?!");
2061                                 return Some(Balance::CounterpartyRevokedOutputClaimable {
2062                                         amount_satoshis: htlc.amount_msat / 1000,
2063                                 });
2064                         }
2065                 } else if htlc.offered == holder_commitment {
2066                         // If the payment was outbound, check if there's an HTLCUpdate
2067                         // indicating we have spent this HTLC with a timeout, claiming it back
2068                         // and awaiting confirmations on it.
2069                         if let Some(conf_thresh) = holder_timeout_spend_pending {
2070                                 return Some(Balance::ClaimableAwaitingConfirmations {
2071                                         amount_satoshis: htlc.amount_msat / 1000,
2072                                         confirmation_height: conf_thresh,
2073                                 });
2074                         } else {
2075                                 return Some(Balance::MaybeTimeoutClaimableHTLC {
2076                                         amount_satoshis: htlc.amount_msat / 1000,
2077                                         claimable_height: htlc.cltv_expiry,
2078                                         payment_hash: htlc.payment_hash,
2079                                 });
2080                         }
2081                 } else if let Some(payment_preimage) = self.payment_preimages.get(&htlc.payment_hash) {
2082                         // Otherwise (the payment was inbound), only expose it as claimable if
2083                         // we know the preimage.
2084                         // Note that if there is a pending claim, but it did not use the
2085                         // preimage, we lost funds to our counterparty! We will then continue
2086                         // to show it as ContentiousClaimable until ANTI_REORG_DELAY.
2087                         debug_assert!(holder_timeout_spend_pending.is_none());
2088                         if let Some((conf_thresh, true)) = htlc_spend_pending {
2089                                 return Some(Balance::ClaimableAwaitingConfirmations {
2090                                         amount_satoshis: htlc.amount_msat / 1000,
2091                                         confirmation_height: conf_thresh,
2092                                 });
2093                         } else {
2094                                 return Some(Balance::ContentiousClaimable {
2095                                         amount_satoshis: htlc.amount_msat / 1000,
2096                                         timeout_height: htlc.cltv_expiry,
2097                                         payment_hash: htlc.payment_hash,
2098                                         payment_preimage: *payment_preimage,
2099                                 });
2100                         }
2101                 } else if htlc_resolved.is_none() {
2102                         return Some(Balance::MaybePreimageClaimableHTLC {
2103                                 amount_satoshis: htlc.amount_msat / 1000,
2104                                 expiry_height: htlc.cltv_expiry,
2105                                 payment_hash: htlc.payment_hash,
2106                         });
2107                 }
2108                 None
2109         }
2110 }
2111
2112 impl<Signer: EcdsaChannelSigner> ChannelMonitor<Signer> {
2113         /// Gets the balances in this channel which are either claimable by us if we were to
2114         /// force-close the channel now or which are claimable on-chain (possibly awaiting
2115         /// confirmation).
2116         ///
2117         /// Any balances in the channel which are available on-chain (excluding on-chain fees) are
2118         /// included here until an [`Event::SpendableOutputs`] event has been generated for the
2119         /// balance, or until our counterparty has claimed the balance and accrued several
2120         /// confirmations on the claim transaction.
2121         ///
2122         /// Note that for `ChannelMonitors` which track a channel which went on-chain with versions of
2123         /// LDK prior to 0.0.111, not all or excess balances may be included.
2124         ///
2125         /// See [`Balance`] for additional details on the types of claimable balances which
2126         /// may be returned here and their meanings.
2127         pub fn get_claimable_balances(&self) -> Vec<Balance> {
2128                 let mut res = Vec::new();
2129                 let us = self.inner.lock().unwrap();
2130
2131                 let mut confirmed_txid = us.funding_spend_confirmed;
2132                 let mut confirmed_counterparty_output = us.confirmed_commitment_tx_counterparty_output;
2133                 let mut pending_commitment_tx_conf_thresh = None;
2134                 let funding_spend_pending = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
2135                         if let OnchainEvent::FundingSpendConfirmation { commitment_tx_to_counterparty_output, .. } =
2136                                 event.event
2137                         {
2138                                 confirmed_counterparty_output = commitment_tx_to_counterparty_output;
2139                                 Some((event.txid, event.confirmation_threshold()))
2140                         } else { None }
2141                 });
2142                 if let Some((txid, conf_thresh)) = funding_spend_pending {
2143                         debug_assert!(us.funding_spend_confirmed.is_none(),
2144                                 "We have a pending funding spend awaiting anti-reorg confirmation, we can't have confirmed it already!");
2145                         confirmed_txid = Some(txid);
2146                         pending_commitment_tx_conf_thresh = Some(conf_thresh);
2147                 }
2148
2149                 macro_rules! walk_htlcs {
2150                         ($holder_commitment: expr, $counterparty_revoked_commitment: expr, $htlc_iter: expr) => {
2151                                 for htlc in $htlc_iter {
2152                                         if htlc.transaction_output_index.is_some() {
2153
2154                                                 if let Some(bal) = us.get_htlc_balance(htlc, $holder_commitment, $counterparty_revoked_commitment, confirmed_txid) {
2155                                                         res.push(bal);
2156                                                 }
2157                                         }
2158                                 }
2159                         }
2160                 }
2161
2162                 if let Some(txid) = confirmed_txid {
2163                         let mut found_commitment_tx = false;
2164                         if let Some(counterparty_tx_htlcs) = us.counterparty_claimable_outpoints.get(&txid) {
2165                                 // First look for the to_remote output back to us.
2166                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
2167                                         if let Some(value) = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
2168                                                 if let OnchainEvent::MaturingOutput {
2169                                                         descriptor: SpendableOutputDescriptor::StaticPaymentOutput(descriptor)
2170                                                 } = &event.event {
2171                                                         Some(descriptor.output.value)
2172                                                 } else { None }
2173                                         }) {
2174                                                 res.push(Balance::ClaimableAwaitingConfirmations {
2175                                                         amount_satoshis: value.to_sat(),
2176                                                         confirmation_height: conf_thresh,
2177                                                 });
2178                                         } else {
2179                                                 // If a counterparty commitment transaction is awaiting confirmation, we
2180                                                 // should either have a StaticPaymentOutput MaturingOutput event awaiting
2181                                                 // confirmation with the same height or have never met our dust amount.
2182                                         }
2183                                 }
2184                                 if Some(txid) == us.current_counterparty_commitment_txid || Some(txid) == us.prev_counterparty_commitment_txid {
2185                                         walk_htlcs!(false, false, counterparty_tx_htlcs.iter().map(|(a, _)| a));
2186                                 } else {
2187                                         walk_htlcs!(false, true, counterparty_tx_htlcs.iter().map(|(a, _)| a));
2188                                         // The counterparty broadcasted a revoked state!
2189                                         // Look for any StaticOutputs first, generating claimable balances for those.
2190                                         // If any match the confirmed counterparty revoked to_self output, skip
2191                                         // generating a CounterpartyRevokedOutputClaimable.
2192                                         let mut spent_counterparty_output = false;
2193                                         for event in us.onchain_events_awaiting_threshold_conf.iter() {
2194                                                 if let OnchainEvent::MaturingOutput {
2195                                                         descriptor: SpendableOutputDescriptor::StaticOutput { output, .. }
2196                                                 } = &event.event {
2197                                                         res.push(Balance::ClaimableAwaitingConfirmations {
2198                                                                 amount_satoshis: output.value.to_sat(),
2199                                                                 confirmation_height: event.confirmation_threshold(),
2200                                                         });
2201                                                         if let Some(confirmed_to_self_idx) = confirmed_counterparty_output.map(|(idx, _)| idx) {
2202                                                                 if event.transaction.as_ref().map(|tx|
2203                                                                         tx.input.iter().any(|inp| inp.previous_output.vout == confirmed_to_self_idx)
2204                                                                 ).unwrap_or(false) {
2205                                                                         spent_counterparty_output = true;
2206                                                                 }
2207                                                         }
2208                                                 }
2209                                         }
2210
2211                                         if spent_counterparty_output {
2212                                         } else if let Some((confirmed_to_self_idx, amt)) = confirmed_counterparty_output {
2213                                                 let output_spendable = us.onchain_tx_handler
2214                                                         .is_output_spend_pending(&BitcoinOutPoint::new(txid, confirmed_to_self_idx));
2215                                                 if output_spendable {
2216                                                         res.push(Balance::CounterpartyRevokedOutputClaimable {
2217                                                                 amount_satoshis: amt.to_sat(),
2218                                                         });
2219                                                 }
2220                                         } else {
2221                                                 // Counterparty output is missing, either it was broadcasted on a
2222                                                 // previous version of LDK or the counterparty hadn't met dust.
2223                                         }
2224                                 }
2225                                 found_commitment_tx = true;
2226                         } else if txid == us.current_holder_commitment_tx.txid {
2227                                 walk_htlcs!(true, false, us.current_holder_commitment_tx.htlc_outputs.iter().map(|(a, _, _)| a));
2228                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
2229                                         res.push(Balance::ClaimableAwaitingConfirmations {
2230                                                 amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
2231                                                 confirmation_height: conf_thresh,
2232                                         });
2233                                 }
2234                                 found_commitment_tx = true;
2235                         } else if let Some(prev_commitment) = &us.prev_holder_signed_commitment_tx {
2236                                 if txid == prev_commitment.txid {
2237                                         walk_htlcs!(true, false, prev_commitment.htlc_outputs.iter().map(|(a, _, _)| a));
2238                                         if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
2239                                                 res.push(Balance::ClaimableAwaitingConfirmations {
2240                                                         amount_satoshis: prev_commitment.to_self_value_sat,
2241                                                         confirmation_height: conf_thresh,
2242                                                 });
2243                                         }
2244                                         found_commitment_tx = true;
2245                                 }
2246                         }
2247                         if !found_commitment_tx {
2248                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
2249                                         // We blindly assume this is a cooperative close transaction here, and that
2250                                         // neither us nor our counterparty misbehaved. At worst we've under-estimated
2251                                         // the amount we can claim as we'll punish a misbehaving counterparty.
2252                                         res.push(Balance::ClaimableAwaitingConfirmations {
2253                                                 amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
2254                                                 confirmation_height: conf_thresh,
2255                                         });
2256                                 }
2257                         }
2258                 } else {
2259                         let mut claimable_inbound_htlc_value_sat = 0;
2260                         for (htlc, _, _) in us.current_holder_commitment_tx.htlc_outputs.iter() {
2261                                 if htlc.transaction_output_index.is_none() { continue; }
2262                                 if htlc.offered {
2263                                         res.push(Balance::MaybeTimeoutClaimableHTLC {
2264                                                 amount_satoshis: htlc.amount_msat / 1000,
2265                                                 claimable_height: htlc.cltv_expiry,
2266                                                 payment_hash: htlc.payment_hash,
2267                                         });
2268                                 } else if us.payment_preimages.get(&htlc.payment_hash).is_some() {
2269                                         claimable_inbound_htlc_value_sat += htlc.amount_msat / 1000;
2270                                 } else {
2271                                         // As long as the HTLC is still in our latest commitment state, treat
2272                                         // it as potentially claimable, even if it has long-since expired.
2273                                         res.push(Balance::MaybePreimageClaimableHTLC {
2274                                                 amount_satoshis: htlc.amount_msat / 1000,
2275                                                 expiry_height: htlc.cltv_expiry,
2276                                                 payment_hash: htlc.payment_hash,
2277                                         });
2278                                 }
2279                         }
2280                         res.push(Balance::ClaimableOnChannelClose {
2281                                 amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat + claimable_inbound_htlc_value_sat,
2282                         });
2283                 }
2284
2285                 res
2286         }
2287
2288         /// Gets the set of outbound HTLCs which can be (or have been) resolved by this
2289         /// `ChannelMonitor`. This is used to determine if an HTLC was removed from the channel prior
2290         /// to the `ChannelManager` having been persisted.
2291         ///
2292         /// This is similar to [`Self::get_pending_or_resolved_outbound_htlcs`] except it includes
2293         /// HTLCs which were resolved on-chain (i.e. where the final HTLC resolution was done by an
2294         /// event from this `ChannelMonitor`).
2295         pub(crate) fn get_all_current_outbound_htlcs(&self) -> HashMap<HTLCSource, (HTLCOutputInCommitment, Option<PaymentPreimage>)> {
2296                 let mut res = new_hash_map();
2297                 // Just examine the available counterparty commitment transactions. See docs on
2298                 // `fail_unbroadcast_htlcs`, below, for justification.
2299                 let us = self.inner.lock().unwrap();
2300                 macro_rules! walk_counterparty_commitment {
2301                         ($txid: expr) => {
2302                                 if let Some(ref latest_outpoints) = us.counterparty_claimable_outpoints.get($txid) {
2303                                         for &(ref htlc, ref source_option) in latest_outpoints.iter() {
2304                                                 if let &Some(ref source) = source_option {
2305                                                         res.insert((**source).clone(), (htlc.clone(),
2306                                                                 us.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).cloned()));
2307                                                 }
2308                                         }
2309                                 }
2310                         }
2311                 }
2312                 if let Some(ref txid) = us.current_counterparty_commitment_txid {
2313                         walk_counterparty_commitment!(txid);
2314                 }
2315                 if let Some(ref txid) = us.prev_counterparty_commitment_txid {
2316                         walk_counterparty_commitment!(txid);
2317                 }
2318                 res
2319         }
2320
2321         /// Gets the set of outbound HTLCs which are pending resolution in this channel or which were
2322         /// resolved with a preimage from our counterparty.
2323         ///
2324         /// This is used to reconstruct pending outbound payments on restart in the ChannelManager.
2325         ///
2326         /// Currently, the preimage is unused, however if it is present in the relevant internal state
2327         /// an HTLC is always included even if it has been resolved.
2328         pub(crate) fn get_pending_or_resolved_outbound_htlcs(&self) -> HashMap<HTLCSource, (HTLCOutputInCommitment, Option<PaymentPreimage>)> {
2329                 let us = self.inner.lock().unwrap();
2330                 // We're only concerned with the confirmation count of HTLC transactions, and don't
2331                 // actually care how many confirmations a commitment transaction may or may not have. Thus,
2332                 // we look for either a FundingSpendConfirmation event or a funding_spend_confirmed.
2333                 let confirmed_txid = us.funding_spend_confirmed.or_else(|| {
2334                         us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
2335                                 if let OnchainEvent::FundingSpendConfirmation { .. } = event.event {
2336                                         Some(event.txid)
2337                                 } else { None }
2338                         })
2339                 });
2340
2341                 if confirmed_txid.is_none() {
2342                         // If we have not seen a commitment transaction on-chain (ie the channel is not yet
2343                         // closed), just get the full set.
2344                         mem::drop(us);
2345                         return self.get_all_current_outbound_htlcs();
2346                 }
2347
2348                 let mut res = new_hash_map();
2349                 macro_rules! walk_htlcs {
2350                         ($holder_commitment: expr, $htlc_iter: expr) => {
2351                                 for (htlc, source) in $htlc_iter {
2352                                         if us.htlcs_resolved_on_chain.iter().any(|v| v.commitment_tx_output_idx == htlc.transaction_output_index) {
2353                                                 // We should assert that funding_spend_confirmed is_some() here, but we
2354                                                 // have some unit tests which violate HTLC transaction CSVs entirely and
2355                                                 // would fail.
2356                                                 // TODO: Once tests all connect transactions at consensus-valid times, we
2357                                                 // should assert here like we do in `get_claimable_balances`.
2358                                         } else if htlc.offered == $holder_commitment {
2359                                                 // If the payment was outbound, check if there's an HTLCUpdate
2360                                                 // indicating we have spent this HTLC with a timeout, claiming it back
2361                                                 // and awaiting confirmations on it.
2362                                                 let htlc_update_confd = us.onchain_events_awaiting_threshold_conf.iter().any(|event| {
2363                                                         if let OnchainEvent::HTLCUpdate { commitment_tx_output_idx: Some(commitment_tx_output_idx), .. } = event.event {
2364                                                                 // If the HTLC was timed out, we wait for ANTI_REORG_DELAY blocks
2365                                                                 // before considering it "no longer pending" - this matches when we
2366                                                                 // provide the ChannelManager an HTLC failure event.
2367                                                                 Some(commitment_tx_output_idx) == htlc.transaction_output_index &&
2368                                                                         us.best_block.height >= event.height + ANTI_REORG_DELAY - 1
2369                                                         } else if let OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, .. } = event.event {
2370                                                                 // If the HTLC was fulfilled with a preimage, we consider the HTLC
2371                                                                 // immediately non-pending, matching when we provide ChannelManager
2372                                                                 // the preimage.
2373                                                                 Some(commitment_tx_output_idx) == htlc.transaction_output_index
2374                                                         } else { false }
2375                                                 });
2376                                                 let counterparty_resolved_preimage_opt =
2377                                                         us.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).cloned();
2378                                                 if !htlc_update_confd || counterparty_resolved_preimage_opt.is_some() {
2379                                                         res.insert(source.clone(), (htlc.clone(), counterparty_resolved_preimage_opt));
2380                                                 }
2381                                         }
2382                                 }
2383                         }
2384                 }
2385
2386                 let txid = confirmed_txid.unwrap();
2387                 if Some(txid) == us.current_counterparty_commitment_txid || Some(txid) == us.prev_counterparty_commitment_txid {
2388                         walk_htlcs!(false, us.counterparty_claimable_outpoints.get(&txid).unwrap().iter().filter_map(|(a, b)| {
2389                                 if let &Some(ref source) = b {
2390                                         Some((a, &**source))
2391                                 } else { None }
2392                         }));
2393                 } else if txid == us.current_holder_commitment_tx.txid {
2394                         walk_htlcs!(true, us.current_holder_commitment_tx.htlc_outputs.iter().filter_map(|(a, _, c)| {
2395                                 if let Some(source) = c { Some((a, source)) } else { None }
2396                         }));
2397                 } else if let Some(prev_commitment) = &us.prev_holder_signed_commitment_tx {
2398                         if txid == prev_commitment.txid {
2399                                 walk_htlcs!(true, prev_commitment.htlc_outputs.iter().filter_map(|(a, _, c)| {
2400                                         if let Some(source) = c { Some((a, source)) } else { None }
2401                                 }));
2402                         }
2403                 }
2404
2405                 res
2406         }
2407
2408         pub(crate) fn get_stored_preimages(&self) -> HashMap<PaymentHash, PaymentPreimage> {
2409                 self.inner.lock().unwrap().payment_preimages.clone()
2410         }
2411 }
2412
2413 /// Compares a broadcasted commitment transaction's HTLCs with those in the latest state,
2414 /// failing any HTLCs which didn't make it into the broadcasted commitment transaction back
2415 /// after ANTI_REORG_DELAY blocks.
2416 ///
2417 /// We always compare against the set of HTLCs in counterparty commitment transactions, as those
2418 /// are the commitment transactions which are generated by us. The off-chain state machine in
2419 /// `Channel` will automatically resolve any HTLCs which were never included in a commitment
2420 /// transaction when it detects channel closure, but it is up to us to ensure any HTLCs which were
2421 /// included in a remote commitment transaction are failed back if they are not present in the
2422 /// broadcasted commitment transaction.
2423 ///
2424 /// Specifically, the removal process for HTLCs in `Channel` is always based on the counterparty
2425 /// sending a `revoke_and_ack`, which causes us to clear `prev_counterparty_commitment_txid`. Thus,
2426 /// as long as we examine both the current counterparty commitment transaction and, if it hasn't
2427 /// been revoked yet, the previous one, we we will never "forget" to resolve an HTLC.
2428 macro_rules! fail_unbroadcast_htlcs {
2429         ($self: expr, $commitment_tx_type: expr, $commitment_txid_confirmed: expr, $commitment_tx_confirmed: expr,
2430          $commitment_tx_conf_height: expr, $commitment_tx_conf_hash: expr, $confirmed_htlcs_list: expr, $logger: expr) => { {
2431                 debug_assert_eq!($commitment_tx_confirmed.txid(), $commitment_txid_confirmed);
2432
2433                 macro_rules! check_htlc_fails {
2434                         ($txid: expr, $commitment_tx: expr, $per_commitment_outpoints: expr) => {
2435                                 if let Some(ref latest_outpoints) = $per_commitment_outpoints {
2436                                         for &(ref htlc, ref source_option) in latest_outpoints.iter() {
2437                                                 if let &Some(ref source) = source_option {
2438                                                         // Check if the HTLC is present in the commitment transaction that was
2439                                                         // broadcast, but not if it was below the dust limit, which we should
2440                                                         // fail backwards immediately as there is no way for us to learn the
2441                                                         // payment_preimage.
2442                                                         // Note that if the dust limit were allowed to change between
2443                                                         // commitment transactions we'd want to be check whether *any*
2444                                                         // broadcastable commitment transaction has the HTLC in it, but it
2445                                                         // cannot currently change after channel initialization, so we don't
2446                                                         // need to here.
2447                                                         let confirmed_htlcs_iter: &mut dyn Iterator<Item = (&HTLCOutputInCommitment, Option<&HTLCSource>)> = &mut $confirmed_htlcs_list;
2448
2449                                                         let mut matched_htlc = false;
2450                                                         for (ref broadcast_htlc, ref broadcast_source) in confirmed_htlcs_iter {
2451                                                                 if broadcast_htlc.transaction_output_index.is_some() &&
2452                                                                         (Some(&**source) == *broadcast_source ||
2453                                                                          (broadcast_source.is_none() &&
2454                                                                           broadcast_htlc.payment_hash == htlc.payment_hash &&
2455                                                                           broadcast_htlc.amount_msat == htlc.amount_msat)) {
2456                                                                         matched_htlc = true;
2457                                                                         break;
2458                                                                 }
2459                                                         }
2460                                                         if matched_htlc { continue; }
2461                                                         if $self.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).is_some() {
2462                                                                 continue;
2463                                                         }
2464                                                         $self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
2465                                                                 if entry.height != $commitment_tx_conf_height { return true; }
2466                                                                 match entry.event {
2467                                                                         OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
2468                                                                                 *update_source != **source
2469                                                                         },
2470                                                                         _ => true,
2471                                                                 }
2472                                                         });
2473                                                         let entry = OnchainEventEntry {
2474                                                                 txid: $commitment_txid_confirmed,
2475                                                                 transaction: Some($commitment_tx_confirmed.clone()),
2476                                                                 height: $commitment_tx_conf_height,
2477                                                                 block_hash: Some(*$commitment_tx_conf_hash),
2478                                                                 event: OnchainEvent::HTLCUpdate {
2479                                                                         source: (**source).clone(),
2480                                                                         payment_hash: htlc.payment_hash.clone(),
2481                                                                         htlc_value_satoshis: Some(htlc.amount_msat / 1000),
2482                                                                         commitment_tx_output_idx: None,
2483                                                                 },
2484                                                         };
2485                                                         log_trace!($logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of {} commitment transaction {}, waiting for confirmation (at height {})",
2486                                                                 &htlc.payment_hash, $commitment_tx, $commitment_tx_type,
2487                                                                 $commitment_txid_confirmed, entry.confirmation_threshold());
2488                                                         $self.onchain_events_awaiting_threshold_conf.push(entry);
2489                                                 }
2490                                         }
2491                                 }
2492                         }
2493                 }
2494                 if let Some(ref txid) = $self.current_counterparty_commitment_txid {
2495                         check_htlc_fails!(txid, "current", $self.counterparty_claimable_outpoints.get(txid));
2496                 }
2497                 if let Some(ref txid) = $self.prev_counterparty_commitment_txid {
2498                         check_htlc_fails!(txid, "previous", $self.counterparty_claimable_outpoints.get(txid));
2499                 }
2500         } }
2501 }
2502
2503 // In the `test_invalid_funding_tx` test, we need a bogus script which matches the HTLC-Accepted
2504 // witness length match (ie is 136 bytes long). We generate one here which we also use in some
2505 // in-line tests later.
2506
2507 #[cfg(test)]
2508 pub fn deliberately_bogus_accepted_htlc_witness_program() -> Vec<u8> {
2509         use bitcoin::blockdata::opcodes;
2510         let mut ret = [opcodes::all::OP_NOP.to_u8(); 136];
2511         ret[131] = opcodes::all::OP_DROP.to_u8();
2512         ret[132] = opcodes::all::OP_DROP.to_u8();
2513         ret[133] = opcodes::all::OP_DROP.to_u8();
2514         ret[134] = opcodes::all::OP_DROP.to_u8();
2515         ret[135] = opcodes::OP_TRUE.to_u8();
2516         Vec::from(&ret[..])
2517 }
2518
2519 #[cfg(test)]
2520 pub fn deliberately_bogus_accepted_htlc_witness() -> Vec<Vec<u8>> {
2521         vec![Vec::new(), Vec::new(), Vec::new(), Vec::new(), deliberately_bogus_accepted_htlc_witness_program().into()].into()
2522 }
2523
2524 impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
2525         /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
2526         /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
2527         /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
2528         fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), &'static str> {
2529                 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
2530                         return Err("Previous secret did not match new one");
2531                 }
2532
2533                 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
2534                 // events for now-revoked/fulfilled HTLCs.
2535                 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
2536                         if self.current_counterparty_commitment_txid.unwrap() != txid {
2537                                 let cur_claimables = self.counterparty_claimable_outpoints.get(
2538                                         &self.current_counterparty_commitment_txid.unwrap()).unwrap();
2539                                 for (_, ref source_opt) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
2540                                         if let Some(source) = source_opt {
2541                                                 if !cur_claimables.iter()
2542                                                         .any(|(_, cur_source_opt)| cur_source_opt == source_opt)
2543                                                 {
2544                                                         self.counterparty_fulfilled_htlcs.remove(&SentHTLCId::from_source(source));
2545                                                 }
2546                                         }
2547                                 }
2548                                 for &mut (_, ref mut source_opt) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
2549                                         *source_opt = None;
2550                                 }
2551                         } else {
2552                                 assert!(cfg!(fuzzing), "Commitment txids are unique outside of fuzzing, where hashes can collide");
2553                         }
2554                 }
2555
2556                 if !self.payment_preimages.is_empty() {
2557                         let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
2558                         let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
2559                         let min_idx = self.get_min_seen_secret();
2560                         let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
2561
2562                         self.payment_preimages.retain(|&k, _| {
2563                                 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
2564                                         if k == htlc.payment_hash {
2565                                                 return true
2566                                         }
2567                                 }
2568                                 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
2569                                         for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
2570                                                 if k == htlc.payment_hash {
2571                                                         return true
2572                                                 }
2573                                         }
2574                                 }
2575                                 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
2576                                         if *cn < min_idx {
2577                                                 return true
2578                                         }
2579                                         true
2580                                 } else { false };
2581                                 if contains {
2582                                         counterparty_hash_commitment_number.remove(&k);
2583                                 }
2584                                 false
2585                         });
2586                 }
2587
2588                 Ok(())
2589         }
2590
2591         fn provide_initial_counterparty_commitment_tx<L: Deref>(
2592                 &mut self, txid: Txid, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
2593                 commitment_number: u64, their_per_commitment_point: PublicKey, feerate_per_kw: u32,
2594                 to_broadcaster_value: u64, to_countersignatory_value: u64, logger: &WithChannelMonitor<L>,
2595         ) where L::Target: Logger {
2596                 self.initial_counterparty_commitment_info = Some((their_per_commitment_point.clone(),
2597                         feerate_per_kw, to_broadcaster_value, to_countersignatory_value));
2598
2599                 #[cfg(debug_assertions)] {
2600                         let rebuilt_commitment_tx = self.initial_counterparty_commitment_tx().unwrap();
2601                         debug_assert_eq!(rebuilt_commitment_tx.trust().txid(), txid);
2602                 }
2603
2604                 self.provide_latest_counterparty_commitment_tx(txid, htlc_outputs, commitment_number,
2605                                 their_per_commitment_point, logger);
2606         }
2607
2608         fn provide_latest_counterparty_commitment_tx<L: Deref>(
2609                 &mut self, txid: Txid,
2610                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
2611                 commitment_number: u64, their_per_commitment_point: PublicKey, logger: &WithChannelMonitor<L>,
2612         ) where L::Target: Logger {
2613                 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
2614                 // so that a remote monitor doesn't learn anything unless there is a malicious close.
2615                 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
2616                 // timeouts)
2617                 for &(ref htlc, _) in &htlc_outputs {
2618                         self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
2619                 }
2620
2621                 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", txid, commitment_number, htlc_outputs.len());
2622                 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
2623                 self.current_counterparty_commitment_txid = Some(txid);
2624                 self.counterparty_claimable_outpoints.insert(txid, htlc_outputs.clone());
2625                 self.current_counterparty_commitment_number = commitment_number;
2626                 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
2627                 match self.their_cur_per_commitment_points {
2628                         Some(old_points) => {
2629                                 if old_points.0 == commitment_number + 1 {
2630                                         self.their_cur_per_commitment_points = Some((old_points.0, old_points.1, Some(their_per_commitment_point)));
2631                                 } else if old_points.0 == commitment_number + 2 {
2632                                         if let Some(old_second_point) = old_points.2 {
2633                                                 self.their_cur_per_commitment_points = Some((old_points.0 - 1, old_second_point, Some(their_per_commitment_point)));
2634                                         } else {
2635                                                 self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2636                                         }
2637                                 } else {
2638                                         self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2639                                 }
2640                         },
2641                         None => {
2642                                 self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2643                         }
2644                 }
2645                 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
2646                 for htlc in htlc_outputs {
2647                         if htlc.0.transaction_output_index.is_some() {
2648                                 htlcs.push(htlc.0);
2649                         }
2650                 }
2651         }
2652
2653         /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
2654         /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
2655         /// is important that any clones of this channel monitor (including remote clones) by kept
2656         /// up-to-date as our holder commitment transaction is updated.
2657         /// Panics if set_on_holder_tx_csv has never been called.
2658         fn provide_latest_holder_commitment_tx(&mut self, holder_commitment_tx: HolderCommitmentTransaction, mut htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>, claimed_htlcs: &[(SentHTLCId, PaymentPreimage)], nondust_htlc_sources: Vec<HTLCSource>) -> Result<(), &'static str> {
2659                 if htlc_outputs.iter().any(|(_, s, _)| s.is_some()) {
2660                         // If we have non-dust HTLCs in htlc_outputs, ensure they match the HTLCs in the
2661                         // `holder_commitment_tx`. In the future, we'll no longer provide the redundant data
2662                         // and just pass in source data via `nondust_htlc_sources`.
2663                         debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.trust().htlcs().len());
2664                         for (a, b) in htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).map(|(h, _, _)| h).zip(holder_commitment_tx.trust().htlcs().iter()) {
2665                                 debug_assert_eq!(a, b);
2666                         }
2667                         debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.counterparty_htlc_sigs.len());
2668                         for (a, b) in htlc_outputs.iter().filter_map(|(_, s, _)| s.as_ref()).zip(holder_commitment_tx.counterparty_htlc_sigs.iter()) {
2669                                 debug_assert_eq!(a, b);
2670                         }
2671                         debug_assert!(nondust_htlc_sources.is_empty());
2672                 } else {
2673                         // If we don't have any non-dust HTLCs in htlc_outputs, assume they were all passed via
2674                         // `nondust_htlc_sources`, building up the final htlc_outputs by combining
2675                         // `nondust_htlc_sources` and the `holder_commitment_tx`
2676                         #[cfg(debug_assertions)] {
2677                                 let mut prev = -1;
2678                                 for htlc in holder_commitment_tx.trust().htlcs().iter() {
2679                                         assert!(htlc.transaction_output_index.unwrap() as i32 > prev);
2680                                         prev = htlc.transaction_output_index.unwrap() as i32;
2681                                 }
2682                         }
2683                         debug_assert!(htlc_outputs.iter().all(|(htlc, _, _)| htlc.transaction_output_index.is_none()));
2684                         debug_assert!(htlc_outputs.iter().all(|(_, sig_opt, _)| sig_opt.is_none()));
2685                         debug_assert_eq!(holder_commitment_tx.trust().htlcs().len(), holder_commitment_tx.counterparty_htlc_sigs.len());
2686
2687                         let mut sources_iter = nondust_htlc_sources.into_iter();
2688
2689                         for (htlc, counterparty_sig) in holder_commitment_tx.trust().htlcs().iter()
2690                                 .zip(holder_commitment_tx.counterparty_htlc_sigs.iter())
2691                         {
2692                                 if htlc.offered {
2693                                         let source = sources_iter.next().expect("Non-dust HTLC sources didn't match commitment tx");
2694                                         #[cfg(debug_assertions)] {
2695                                                 assert!(source.possibly_matches_output(htlc));
2696                                         }
2697                                         htlc_outputs.push((htlc.clone(), Some(counterparty_sig.clone()), Some(source)));
2698                                 } else {
2699                                         htlc_outputs.push((htlc.clone(), Some(counterparty_sig.clone()), None));
2700                                 }
2701                         }
2702                         debug_assert!(sources_iter.next().is_none());
2703                 }
2704
2705                 let trusted_tx = holder_commitment_tx.trust();
2706                 let txid = trusted_tx.txid();
2707                 let tx_keys = trusted_tx.keys();
2708                 self.current_holder_commitment_number = trusted_tx.commitment_number();
2709                 let mut new_holder_commitment_tx = HolderSignedTx {
2710                         txid,
2711                         revocation_key: tx_keys.revocation_key,
2712                         a_htlc_key: tx_keys.broadcaster_htlc_key,
2713                         b_htlc_key: tx_keys.countersignatory_htlc_key,
2714                         delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
2715                         per_commitment_point: tx_keys.per_commitment_point,
2716                         htlc_outputs,
2717                         to_self_value_sat: holder_commitment_tx.to_broadcaster_value_sat(),
2718                         feerate_per_kw: trusted_tx.feerate_per_kw(),
2719                 };
2720                 self.onchain_tx_handler.provide_latest_holder_tx(holder_commitment_tx);
2721                 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
2722                 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
2723                 for (claimed_htlc_id, claimed_preimage) in claimed_htlcs {
2724                         #[cfg(debug_assertions)] {
2725                                 let cur_counterparty_htlcs = self.counterparty_claimable_outpoints.get(
2726                                                 &self.current_counterparty_commitment_txid.unwrap()).unwrap();
2727                                 assert!(cur_counterparty_htlcs.iter().any(|(_, source_opt)| {
2728                                         if let Some(source) = source_opt {
2729                                                 SentHTLCId::from_source(source) == *claimed_htlc_id
2730                                         } else { false }
2731                                 }));
2732                         }
2733                         self.counterparty_fulfilled_htlcs.insert(*claimed_htlc_id, *claimed_preimage);
2734                 }
2735                 if self.holder_tx_signed {
2736                         return Err("Latest holder commitment signed has already been signed, update is rejected");
2737                 }
2738                 Ok(())
2739         }
2740
2741         /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
2742         /// commitment_tx_infos which contain the payment hash have been revoked.
2743         fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
2744                 &mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage, broadcaster: &B,
2745                 fee_estimator: &LowerBoundedFeeEstimator<F>, logger: &WithChannelMonitor<L>)
2746         where B::Target: BroadcasterInterface,
2747                     F::Target: FeeEstimator,
2748                     L::Target: Logger,
2749         {
2750                 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
2751
2752                 let confirmed_spend_txid = self.funding_spend_confirmed.or_else(|| {
2753                         self.onchain_events_awaiting_threshold_conf.iter().find_map(|event| match event.event {
2754                                 OnchainEvent::FundingSpendConfirmation { .. } => Some(event.txid),
2755                                 _ => None,
2756                         })
2757                 });
2758                 let confirmed_spend_txid = if let Some(txid) = confirmed_spend_txid {
2759                         txid
2760                 } else {
2761                         return;
2762                 };
2763
2764                 // If the channel is force closed, try to claim the output from this preimage.
2765                 // First check if a counterparty commitment transaction has been broadcasted:
2766                 macro_rules! claim_htlcs {
2767                         ($commitment_number: expr, $txid: expr, $htlcs: expr) => {
2768                                 let (htlc_claim_reqs, _) = self.get_counterparty_output_claim_info($commitment_number, $txid, None, $htlcs);
2769                                 self.onchain_tx_handler.update_claims_view_from_requests(htlc_claim_reqs, self.best_block.height, self.best_block.height, broadcaster, fee_estimator, logger);
2770                         }
2771                 }
2772                 if let Some(txid) = self.current_counterparty_commitment_txid {
2773                         if txid == confirmed_spend_txid {
2774                                 if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
2775                                         claim_htlcs!(*commitment_number, txid, self.counterparty_claimable_outpoints.get(&txid));
2776                                 } else {
2777                                         debug_assert!(false);
2778                                         log_error!(logger, "Detected counterparty commitment tx on-chain without tracking commitment number");
2779                                 }
2780                                 return;
2781                         }
2782                 }
2783                 if let Some(txid) = self.prev_counterparty_commitment_txid {
2784                         if txid == confirmed_spend_txid {
2785                                 if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
2786                                         claim_htlcs!(*commitment_number, txid, self.counterparty_claimable_outpoints.get(&txid));
2787                                 } else {
2788                                         debug_assert!(false);
2789                                         log_error!(logger, "Detected counterparty commitment tx on-chain without tracking commitment number");
2790                                 }
2791                                 return;
2792                         }
2793                 }
2794
2795                 // Then if a holder commitment transaction has been seen on-chain, broadcast transactions
2796                 // claiming the HTLC output from each of the holder commitment transactions.
2797                 // Note that we can't just use `self.holder_tx_signed`, because that only covers the case where
2798                 // *we* sign a holder commitment transaction, not when e.g. a watchtower broadcasts one of our
2799                 // holder commitment transactions.
2800                 if self.broadcasted_holder_revokable_script.is_some() {
2801                         let holder_commitment_tx = if self.current_holder_commitment_tx.txid == confirmed_spend_txid {
2802                                 Some(&self.current_holder_commitment_tx)
2803                         } else if let Some(prev_holder_commitment_tx) = &self.prev_holder_signed_commitment_tx {
2804                                 if prev_holder_commitment_tx.txid == confirmed_spend_txid {
2805                                         Some(prev_holder_commitment_tx)
2806                                 } else {
2807                                         None
2808                                 }
2809                         } else {
2810                                 None
2811                         };
2812                         if let Some(holder_commitment_tx) = holder_commitment_tx {
2813                                 // Assume that the broadcasted commitment transaction confirmed in the current best
2814                                 // block. Even if not, its a reasonable metric for the bump criteria on the HTLC
2815                                 // transactions.
2816                                 let (claim_reqs, _) = self.get_broadcasted_holder_claims(&holder_commitment_tx, self.best_block.height);
2817                                 self.onchain_tx_handler.update_claims_view_from_requests(claim_reqs, self.best_block.height, self.best_block.height, broadcaster, fee_estimator, logger);
2818                         }
2819                 }
2820         }
2821
2822         fn generate_claimable_outpoints_and_watch_outputs(&mut self, reason: ClosureReason) -> (Vec<PackageTemplate>, Vec<TransactionOutputs>) {
2823                 let funding_outp = HolderFundingOutput::build(
2824                         self.funding_redeemscript.clone(),
2825                         self.channel_value_satoshis,
2826                         self.onchain_tx_handler.channel_type_features().clone()
2827                 );
2828                 let commitment_package = PackageTemplate::build_package(
2829                         self.funding_info.0.txid.clone(), self.funding_info.0.index as u32,
2830                         PackageSolvingData::HolderFundingOutput(funding_outp),
2831                         self.best_block.height, self.best_block.height
2832                 );
2833                 let mut claimable_outpoints = vec![commitment_package];
2834                 let event = MonitorEvent::HolderForceClosedWithInfo {
2835                         reason,
2836                         outpoint: self.funding_info.0,
2837                         channel_id: self.channel_id,
2838                 };
2839                 self.pending_monitor_events.push(event);
2840
2841                 // Although we aren't signing the transaction directly here, the transaction will be signed
2842                 // in the claim that is queued to OnchainTxHandler. We set holder_tx_signed here to reject
2843                 // new channel updates.
2844                 self.holder_tx_signed = true;
2845                 let mut watch_outputs = Vec::new();
2846                 // We can't broadcast our HTLC transactions while the commitment transaction is
2847                 // unconfirmed. We'll delay doing so until we detect the confirmed commitment in
2848                 // `transactions_confirmed`.
2849                 if !self.onchain_tx_handler.channel_type_features().supports_anchors_zero_fee_htlc_tx() {
2850                         // Because we're broadcasting a commitment transaction, we should construct the package
2851                         // assuming it gets confirmed in the next block. Sadly, we have code which considers
2852                         // "not yet confirmed" things as discardable, so we cannot do that here.
2853                         let (mut new_outpoints, _) = self.get_broadcasted_holder_claims(
2854                                 &self.current_holder_commitment_tx, self.best_block.height
2855                         );
2856                         let unsigned_commitment_tx = self.onchain_tx_handler.get_unsigned_holder_commitment_tx();
2857                         let new_outputs = self.get_broadcasted_holder_watch_outputs(
2858                                 &self.current_holder_commitment_tx, &unsigned_commitment_tx
2859                         );
2860                         if !new_outputs.is_empty() {
2861                                 watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
2862                         }
2863                         claimable_outpoints.append(&mut new_outpoints);
2864                 }
2865                 (claimable_outpoints, watch_outputs)
2866         }
2867
2868         pub(crate) fn queue_latest_holder_commitment_txn_for_broadcast<B: Deref, F: Deref, L: Deref>(
2869                 &mut self, broadcaster: &B, fee_estimator: &LowerBoundedFeeEstimator<F>, logger: &WithChannelMonitor<L>
2870         )
2871         where
2872                 B::Target: BroadcasterInterface,
2873                 F::Target: FeeEstimator,
2874                 L::Target: Logger,
2875         {
2876                 let (claimable_outpoints, _) = self.generate_claimable_outpoints_and_watch_outputs(ClosureReason::HolderForceClosed { broadcasted_latest_txn: Some(true) });
2877                 self.onchain_tx_handler.update_claims_view_from_requests(
2878                         claimable_outpoints, self.best_block.height, self.best_block.height, broadcaster,
2879                         fee_estimator, logger
2880                 );
2881         }
2882
2883         fn update_monitor<B: Deref, F: Deref, L: Deref>(
2884                 &mut self, updates: &ChannelMonitorUpdate, broadcaster: &B, fee_estimator: &F, logger: &WithChannelMonitor<L>
2885         ) -> Result<(), ()>
2886         where B::Target: BroadcasterInterface,
2887                 F::Target: FeeEstimator,
2888                 L::Target: Logger,
2889         {
2890                 if self.latest_update_id == CLOSED_CHANNEL_UPDATE_ID && updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
2891                         log_info!(logger, "Applying post-force-closed update to monitor {} with {} change(s).",
2892                                 log_funding_info!(self), updates.updates.len());
2893                 } else if updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
2894                         log_info!(logger, "Applying force close update to monitor {} with {} change(s).",
2895                                 log_funding_info!(self), updates.updates.len());
2896                 } else {
2897                         log_info!(logger, "Applying update to monitor {}, bringing update_id from {} to {} with {} change(s).",
2898                                 log_funding_info!(self), self.latest_update_id, updates.update_id, updates.updates.len());
2899                 }
2900
2901                 if updates.counterparty_node_id.is_some() {
2902                         if self.counterparty_node_id.is_none() {
2903                                 self.counterparty_node_id = updates.counterparty_node_id;
2904                         } else {
2905                                 debug_assert_eq!(self.counterparty_node_id, updates.counterparty_node_id);
2906                         }
2907                 }
2908
2909                 // ChannelMonitor updates may be applied after force close if we receive a preimage for a
2910                 // broadcasted commitment transaction HTLC output that we'd like to claim on-chain. If this
2911                 // is the case, we no longer have guaranteed access to the monitor's update ID, so we use a
2912                 // sentinel value instead.
2913                 //
2914                 // The `ChannelManager` may also queue redundant `ChannelForceClosed` updates if it still
2915                 // thinks the channel needs to have its commitment transaction broadcast, so we'll allow
2916                 // them as well.
2917                 if updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
2918                         assert_eq!(updates.updates.len(), 1);
2919                         match updates.updates[0] {
2920                                 ChannelMonitorUpdateStep::ChannelForceClosed { .. } => {},
2921                                 // We should have already seen a `ChannelForceClosed` update if we're trying to
2922                                 // provide a preimage at this point.
2923                                 ChannelMonitorUpdateStep::PaymentPreimage { .. } =>
2924                                         debug_assert_eq!(self.latest_update_id, CLOSED_CHANNEL_UPDATE_ID),
2925                                 _ => {
2926                                         log_error!(logger, "Attempted to apply post-force-close ChannelMonitorUpdate of type {}", updates.updates[0].variant_name());
2927                                         panic!("Attempted to apply post-force-close ChannelMonitorUpdate that wasn't providing a payment preimage");
2928                                 },
2929                         }
2930                 } else if self.latest_update_id + 1 != updates.update_id {
2931                         panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
2932                 }
2933                 let mut ret = Ok(());
2934                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(&**fee_estimator);
2935                 for update in updates.updates.iter() {
2936                         match update {
2937                                 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs, claimed_htlcs, nondust_htlc_sources } => {
2938                                         log_trace!(logger, "Updating ChannelMonitor with latest holder commitment transaction info");
2939                                         if self.lockdown_from_offchain { panic!(); }
2940                                         if let Err(e) = self.provide_latest_holder_commitment_tx(commitment_tx.clone(), htlc_outputs.clone(), &claimed_htlcs, nondust_htlc_sources.clone()) {
2941                                                 log_error!(logger, "Providing latest holder commitment transaction failed/was refused:");
2942                                                 log_error!(logger, "    {}", e);
2943                                                 ret = Err(());
2944                                         }
2945                                 }
2946                                 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { commitment_txid, htlc_outputs, commitment_number, their_per_commitment_point, .. } => {
2947                                         log_trace!(logger, "Updating ChannelMonitor with latest counterparty commitment transaction info");
2948                                         self.provide_latest_counterparty_commitment_tx(*commitment_txid, htlc_outputs.clone(), *commitment_number, *their_per_commitment_point, logger)
2949                                 },
2950                                 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } => {
2951                                         log_trace!(logger, "Updating ChannelMonitor with payment preimage");
2952                                         self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).to_byte_array()), &payment_preimage, broadcaster, &bounded_fee_estimator, logger)
2953                                 },
2954                                 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } => {
2955                                         log_trace!(logger, "Updating ChannelMonitor with commitment secret");
2956                                         if let Err(e) = self.provide_secret(*idx, *secret) {
2957                                                 debug_assert!(false, "Latest counterparty commitment secret was invalid");
2958                                                 log_error!(logger, "Providing latest counterparty commitment secret failed/was refused:");
2959                                                 log_error!(logger, "    {}", e);
2960                                                 ret = Err(());
2961                                         }
2962                                 },
2963                                 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
2964                                         log_trace!(logger, "Updating ChannelMonitor: channel force closed, should broadcast: {}", should_broadcast);
2965                                         self.lockdown_from_offchain = true;
2966                                         if *should_broadcast {
2967                                                 // There's no need to broadcast our commitment transaction if we've seen one
2968                                                 // confirmed (even with 1 confirmation) as it'll be rejected as
2969                                                 // duplicate/conflicting.
2970                                                 let detected_funding_spend = self.funding_spend_confirmed.is_some() ||
2971                                                         self.onchain_events_awaiting_threshold_conf.iter().find(|event| match event.event {
2972                                                                 OnchainEvent::FundingSpendConfirmation { .. } => true,
2973                                                                 _ => false,
2974                                                         }).is_some();
2975                                                 if detected_funding_spend {
2976                                                         log_trace!(logger, "Avoiding commitment broadcast, already detected confirmed spend onchain");
2977                                                         continue;
2978                                                 }
2979                                                 self.queue_latest_holder_commitment_txn_for_broadcast(broadcaster, &bounded_fee_estimator, logger);
2980                                         } else if !self.holder_tx_signed {
2981                                                 log_error!(logger, "WARNING: You have a potentially-unsafe holder commitment transaction available to broadcast");
2982                                                 log_error!(logger, "    in channel monitor for channel {}!", &self.channel_id());
2983                                                 log_error!(logger, "    Read the docs for ChannelMonitor::broadcast_latest_holder_commitment_txn to take manual action!");
2984                                         } else {
2985                                                 // If we generated a MonitorEvent::HolderForceClosed, the ChannelManager
2986                                                 // will still give us a ChannelForceClosed event with !should_broadcast, but we
2987                                                 // shouldn't print the scary warning above.
2988                                                 log_info!(logger, "Channel off-chain state closed after we broadcasted our latest commitment transaction.");
2989                                         }
2990                                 },
2991                                 ChannelMonitorUpdateStep::ShutdownScript { scriptpubkey } => {
2992                                         log_trace!(logger, "Updating ChannelMonitor with shutdown script");
2993                                         if let Some(shutdown_script) = self.shutdown_script.replace(scriptpubkey.clone()) {
2994                                                 panic!("Attempted to replace shutdown script {} with {}", shutdown_script, scriptpubkey);
2995                                         }
2996                                 },
2997                         }
2998                 }
2999
3000                 #[cfg(debug_assertions)] {
3001                         self.counterparty_commitment_txs_from_update(updates);
3002                 }
3003
3004                 // If the updates succeeded and we were in an already closed channel state, then there's no
3005                 // need to refuse any updates we expect to receive afer seeing a confirmed commitment.
3006                 if ret.is_ok() && updates.update_id == CLOSED_CHANNEL_UPDATE_ID && self.latest_update_id == updates.update_id {
3007                         return Ok(());
3008                 }
3009
3010                 self.latest_update_id = updates.update_id;
3011
3012                 // Refuse updates after we've detected a spend onchain, but only if we haven't processed a
3013                 // force closed monitor update yet.
3014                 if ret.is_ok() && self.funding_spend_seen && self.latest_update_id != CLOSED_CHANNEL_UPDATE_ID {
3015                         log_error!(logger, "Refusing Channel Monitor Update as counterparty attempted to update commitment after funding was spent");
3016                         Err(())
3017                 } else { ret }
3018         }
3019
3020         fn get_latest_update_id(&self) -> u64 {
3021                 self.latest_update_id
3022         }
3023
3024         fn get_funding_txo(&self) -> &(OutPoint, ScriptBuf) {
3025                 &self.funding_info
3026         }
3027
3028         pub fn channel_id(&self) -> ChannelId {
3029                 self.channel_id
3030         }
3031
3032         fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, ScriptBuf)>> {
3033                 // If we've detected a counterparty commitment tx on chain, we must include it in the set
3034                 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
3035                 // its trivial to do, double-check that here.
3036                 for (txid, _) in self.counterparty_commitment_txn_on_chain.iter() {
3037                         self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
3038                 }
3039                 &self.outputs_to_watch
3040         }
3041
3042         fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
3043                 let mut ret = Vec::new();
3044                 mem::swap(&mut ret, &mut self.pending_monitor_events);
3045                 ret
3046         }
3047
3048         /// Gets the set of events that are repeated regularly (e.g. those which RBF bump
3049         /// transactions). We're okay if we lose these on restart as they'll be regenerated for us at
3050         /// some regular interval via [`ChannelMonitor::rebroadcast_pending_claims`].
3051         pub(super) fn get_repeated_events(&mut self) -> Vec<Event> {
3052                 let pending_claim_events = self.onchain_tx_handler.get_and_clear_pending_claim_events();
3053                 let mut ret = Vec::with_capacity(pending_claim_events.len());
3054                 for (claim_id, claim_event) in pending_claim_events {
3055                         match claim_event {
3056                                 ClaimEvent::BumpCommitment {
3057                                         package_target_feerate_sat_per_1000_weight, commitment_tx, anchor_output_idx,
3058                                 } => {
3059                                         let channel_id = self.channel_id;
3060                                         // unwrap safety: `ClaimEvent`s are only available for Anchor channels,
3061                                         // introduced with v0.0.116. counterparty_node_id is guaranteed to be `Some`
3062                                         // since v0.0.110.
3063                                         let counterparty_node_id = self.counterparty_node_id.unwrap();
3064                                         let commitment_txid = commitment_tx.txid();
3065                                         debug_assert_eq!(self.current_holder_commitment_tx.txid, commitment_txid);
3066                                         let pending_htlcs = self.current_holder_commitment_tx.non_dust_htlcs();
3067                                         let commitment_tx_fee_satoshis = self.channel_value_satoshis -
3068                                                 commitment_tx.output.iter().fold(0u64, |sum, output| sum + output.value.to_sat());
3069                                         ret.push(Event::BumpTransaction(BumpTransactionEvent::ChannelClose {
3070                                                 channel_id,
3071                                                 counterparty_node_id,
3072                                                 claim_id,
3073                                                 package_target_feerate_sat_per_1000_weight,
3074                                                 commitment_tx,
3075                                                 commitment_tx_fee_satoshis,
3076                                                 anchor_descriptor: AnchorDescriptor {
3077                                                         channel_derivation_parameters: ChannelDerivationParameters {
3078                                                                 keys_id: self.channel_keys_id,
3079                                                                 value_satoshis: self.channel_value_satoshis,
3080                                                                 transaction_parameters: self.onchain_tx_handler.channel_transaction_parameters.clone(),
3081                                                         },
3082                                                         outpoint: BitcoinOutPoint {
3083                                                                 txid: commitment_txid,
3084                                                                 vout: anchor_output_idx,
3085                                                         },
3086                                                 },
3087                                                 pending_htlcs,
3088                                         }));
3089                                 },
3090                                 ClaimEvent::BumpHTLC {
3091                                         target_feerate_sat_per_1000_weight, htlcs, tx_lock_time,
3092                                 } => {
3093                                         let channel_id = self.channel_id;
3094                                         // unwrap safety: `ClaimEvent`s are only available for Anchor channels,
3095                                         // introduced with v0.0.116. counterparty_node_id is guaranteed to be `Some`
3096                                         // since v0.0.110.
3097                                         let counterparty_node_id = self.counterparty_node_id.unwrap();
3098                                         let mut htlc_descriptors = Vec::with_capacity(htlcs.len());
3099                                         for htlc in htlcs {
3100                                                 htlc_descriptors.push(HTLCDescriptor {
3101                                                         channel_derivation_parameters: ChannelDerivationParameters {
3102                                                                 keys_id: self.channel_keys_id,
3103                                                                 value_satoshis: self.channel_value_satoshis,
3104                                                                 transaction_parameters: self.onchain_tx_handler.channel_transaction_parameters.clone(),
3105                                                         },
3106                                                         commitment_txid: htlc.commitment_txid,
3107                                                         per_commitment_number: htlc.per_commitment_number,
3108                                                         per_commitment_point: htlc.per_commitment_point,
3109                                                         feerate_per_kw: 0,
3110                                                         htlc: htlc.htlc,
3111                                                         preimage: htlc.preimage,
3112                                                         counterparty_sig: htlc.counterparty_sig,
3113                                                 });
3114                                         }
3115                                         ret.push(Event::BumpTransaction(BumpTransactionEvent::HTLCResolution {
3116                                                 channel_id,
3117                                                 counterparty_node_id,
3118                                                 claim_id,
3119                                                 target_feerate_sat_per_1000_weight,
3120                                                 htlc_descriptors,
3121                                                 tx_lock_time,
3122                                         }));
3123                                 }
3124                         }
3125                 }
3126                 ret
3127         }
3128
3129         fn initial_counterparty_commitment_tx(&mut self) -> Option<CommitmentTransaction> {
3130                 let (their_per_commitment_point, feerate_per_kw, to_broadcaster_value,
3131                         to_countersignatory_value) = self.initial_counterparty_commitment_info?;
3132                 let htlc_outputs = vec![];
3133
3134                 let commitment_tx = self.build_counterparty_commitment_tx(INITIAL_COMMITMENT_NUMBER,
3135                         &their_per_commitment_point, to_broadcaster_value, to_countersignatory_value,
3136                         feerate_per_kw, htlc_outputs);
3137                 Some(commitment_tx)
3138         }
3139
3140         fn build_counterparty_commitment_tx(
3141                 &self, commitment_number: u64, their_per_commitment_point: &PublicKey,
3142                 to_broadcaster_value: u64, to_countersignatory_value: u64, feerate_per_kw: u32,
3143                 mut nondust_htlcs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>
3144         ) -> CommitmentTransaction {
3145                 let broadcaster_keys = &self.onchain_tx_handler.channel_transaction_parameters
3146                         .counterparty_parameters.as_ref().unwrap().pubkeys;
3147                 let countersignatory_keys =
3148                         &self.onchain_tx_handler.channel_transaction_parameters.holder_pubkeys;
3149
3150                 let broadcaster_funding_key = broadcaster_keys.funding_pubkey;
3151                 let countersignatory_funding_key = countersignatory_keys.funding_pubkey;
3152                 let keys = TxCreationKeys::from_channel_static_keys(&their_per_commitment_point,
3153                         &broadcaster_keys, &countersignatory_keys, &self.onchain_tx_handler.secp_ctx);
3154                 let channel_parameters =
3155                         &self.onchain_tx_handler.channel_transaction_parameters.as_counterparty_broadcastable();
3156
3157                 CommitmentTransaction::new_with_auxiliary_htlc_data(commitment_number,
3158                         to_broadcaster_value, to_countersignatory_value, broadcaster_funding_key,
3159                         countersignatory_funding_key, keys, feerate_per_kw, &mut nondust_htlcs,
3160                         channel_parameters)
3161         }
3162
3163         fn counterparty_commitment_txs_from_update(&self, update: &ChannelMonitorUpdate) -> Vec<CommitmentTransaction> {
3164                 update.updates.iter().filter_map(|update| {
3165                         match update {
3166                                 &ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { commitment_txid,
3167                                         ref htlc_outputs, commitment_number, their_per_commitment_point,
3168                                         feerate_per_kw: Some(feerate_per_kw),
3169                                         to_broadcaster_value_sat: Some(to_broadcaster_value),
3170                                         to_countersignatory_value_sat: Some(to_countersignatory_value) } => {
3171
3172                                         let nondust_htlcs = htlc_outputs.iter().filter_map(|(htlc, _)| {
3173                                                 htlc.transaction_output_index.map(|_| (htlc.clone(), None))
3174                                         }).collect::<Vec<_>>();
3175
3176                                         let commitment_tx = self.build_counterparty_commitment_tx(commitment_number,
3177                                                         &their_per_commitment_point, to_broadcaster_value,
3178                                                         to_countersignatory_value, feerate_per_kw, nondust_htlcs);
3179
3180                                         debug_assert_eq!(commitment_tx.trust().txid(), commitment_txid);
3181
3182                                         Some(commitment_tx)
3183                                 },
3184                                 _ => None,
3185                         }
3186                 }).collect()
3187         }
3188
3189         fn sign_to_local_justice_tx(
3190                 &self, mut justice_tx: Transaction, input_idx: usize, value: u64, commitment_number: u64
3191         ) -> Result<Transaction, ()> {
3192                 let secret = self.get_secret(commitment_number).ok_or(())?;
3193                 let per_commitment_key = SecretKey::from_slice(&secret).map_err(|_| ())?;
3194                 let their_per_commitment_point = PublicKey::from_secret_key(
3195                         &self.onchain_tx_handler.secp_ctx, &per_commitment_key);
3196
3197                 let revocation_pubkey = RevocationKey::from_basepoint(&self.onchain_tx_handler.secp_ctx,
3198                         &self.holder_revocation_basepoint, &their_per_commitment_point);
3199                 let delayed_key = DelayedPaymentKey::from_basepoint(&self.onchain_tx_handler.secp_ctx,
3200                         &self.counterparty_commitment_params.counterparty_delayed_payment_base_key, &their_per_commitment_point);
3201                 let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey,
3202                         self.counterparty_commitment_params.on_counterparty_tx_csv, &delayed_key);
3203
3204                 let sig = self.onchain_tx_handler.signer.sign_justice_revoked_output(
3205                         &justice_tx, input_idx, value, &per_commitment_key, &self.onchain_tx_handler.secp_ctx)?;
3206                 justice_tx.input[input_idx].witness.push_ecdsa_signature(&BitcoinSignature::sighash_all(sig));
3207                 justice_tx.input[input_idx].witness.push(&[1u8]);
3208                 justice_tx.input[input_idx].witness.push(revokeable_redeemscript.as_bytes());
3209                 Ok(justice_tx)
3210         }
3211
3212         /// Can only fail if idx is < get_min_seen_secret
3213         fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
3214                 self.commitment_secrets.get_secret(idx)
3215         }
3216
3217         fn get_min_seen_secret(&self) -> u64 {
3218                 self.commitment_secrets.get_min_seen_secret()
3219         }
3220
3221         fn get_cur_counterparty_commitment_number(&self) -> u64 {
3222                 self.current_counterparty_commitment_number
3223         }
3224
3225         fn get_cur_holder_commitment_number(&self) -> u64 {
3226                 self.current_holder_commitment_number
3227         }
3228
3229         /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
3230         /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
3231         /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
3232         /// HTLC-Success/HTLC-Timeout transactions.
3233         ///
3234         /// Returns packages to claim the revoked output(s) and general information about the output that
3235         /// is to the counterparty in the commitment transaction.
3236         fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &L)
3237                 -> (Vec<PackageTemplate>, CommitmentTxCounterpartyOutputInfo)
3238         where L::Target: Logger {
3239                 // Most secp and related errors trying to create keys means we have no hope of constructing
3240                 // a spend transaction...so we return no transactions to broadcast
3241                 let mut claimable_outpoints = Vec::new();
3242                 let mut to_counterparty_output_info = None;
3243
3244                 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
3245                 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
3246
3247                 macro_rules! ignore_error {
3248                         ( $thing : expr ) => {
3249                                 match $thing {
3250                                         Ok(a) => a,
3251                                         Err(_) => return (claimable_outpoints, to_counterparty_output_info)
3252                                 }
3253                         };
3254                 }
3255
3256                 let commitment_number = 0xffffffffffff - ((((tx.input[0].sequence.0 as u64 & 0xffffff) << 3*8) | (tx.lock_time.to_consensus_u32() as u64 & 0xffffff)) ^ self.commitment_transaction_number_obscure_factor);
3257                 if commitment_number >= self.get_min_seen_secret() {
3258                         let secret = self.get_secret(commitment_number).unwrap();
3259                         let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
3260                         let per_commitment_point = PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key);
3261                         let revocation_pubkey = RevocationKey::from_basepoint(&self.onchain_tx_handler.secp_ctx,  &self.holder_revocation_basepoint, &per_commitment_point,);
3262                         let delayed_key = DelayedPaymentKey::from_basepoint(&self.onchain_tx_handler.secp_ctx, &self.counterparty_commitment_params.counterparty_delayed_payment_base_key, &PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key));
3263
3264                         let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_commitment_params.on_counterparty_tx_csv, &delayed_key);
3265                         let revokeable_p2wsh = revokeable_redeemscript.to_p2wsh();
3266
3267                         // First, process non-htlc outputs (to_holder & to_counterparty)
3268                         for (idx, outp) in tx.output.iter().enumerate() {
3269                                 if outp.script_pubkey == revokeable_p2wsh {
3270                                         let revk_outp = RevokedOutput::build(per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key, outp.value, self.counterparty_commitment_params.on_counterparty_tx_csv, self.onchain_tx_handler.channel_type_features().supports_anchors_zero_fee_htlc_tx());
3271                                         let justice_package = PackageTemplate::build_package(commitment_txid, idx as u32, PackageSolvingData::RevokedOutput(revk_outp), height + self.counterparty_commitment_params.on_counterparty_tx_csv as u32, height);
3272                                         claimable_outpoints.push(justice_package);
3273                                         to_counterparty_output_info =
3274                                                 Some((idx.try_into().expect("Txn can't have more than 2^32 outputs"), outp.value));
3275                                 }
3276                         }
3277
3278                         // Then, try to find revoked htlc outputs
3279                         if let Some(per_commitment_claimable_data) = per_commitment_option {
3280                                 for (htlc, _) in per_commitment_claimable_data {
3281                                         if let Some(transaction_output_index) = htlc.transaction_output_index {
3282                                                 if transaction_output_index as usize >= tx.output.len() ||
3283                                                                 tx.output[transaction_output_index as usize].value != htlc.to_bitcoin_amount() {
3284                                                         // per_commitment_data is corrupt or our commitment signing key leaked!
3285                                                         return (claimable_outpoints, to_counterparty_output_info);
3286                                                 }
3287                                                 let revk_htlc_outp = RevokedHTLCOutput::build(per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key, htlc.amount_msat / 1000, htlc.clone(), &self.onchain_tx_handler.channel_transaction_parameters.channel_type_features);
3288                                                 let justice_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, PackageSolvingData::RevokedHTLCOutput(revk_htlc_outp), htlc.cltv_expiry, height);
3289                                                 claimable_outpoints.push(justice_package);
3290                                         }
3291                                 }
3292                         }
3293
3294                         // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
3295                         if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
3296                                 // We're definitely a counterparty commitment transaction!
3297                                 log_error!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
3298                                 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
3299
3300                                 if let Some(per_commitment_claimable_data) = per_commitment_option {
3301                                         fail_unbroadcast_htlcs!(self, "revoked_counterparty", commitment_txid, tx, height,
3302                                                 block_hash, per_commitment_claimable_data.iter().map(|(htlc, htlc_source)|
3303                                                         (htlc, htlc_source.as_ref().map(|htlc_source| htlc_source.as_ref()))
3304                                                 ), logger);
3305                                 } else {
3306                                         // Our fuzzers aren't constrained by pesky things like valid signatures, so can
3307                                         // spend our funding output with a transaction which doesn't match our past
3308                                         // commitment transactions. Thus, we can only debug-assert here when not
3309                                         // fuzzing.
3310                                         debug_assert!(cfg!(fuzzing), "We should have per-commitment option for any recognized old commitment txn");
3311                                         fail_unbroadcast_htlcs!(self, "revoked counterparty", commitment_txid, tx, height,
3312                                                 block_hash, [].iter().map(|reference| *reference), logger);
3313                                 }
3314                         }
3315                 } else if let Some(per_commitment_claimable_data) = per_commitment_option {
3316                         // While this isn't useful yet, there is a potential race where if a counterparty
3317                         // revokes a state at the same time as the commitment transaction for that state is
3318                         // confirmed, and the watchtower receives the block before the user, the user could
3319                         // upload a new ChannelMonitor with the revocation secret but the watchtower has
3320                         // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
3321                         // not being generated by the above conditional. Thus, to be safe, we go ahead and
3322                         // insert it here.
3323                         self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
3324
3325                         log_info!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
3326                         fail_unbroadcast_htlcs!(self, "counterparty", commitment_txid, tx, height, block_hash,
3327                                 per_commitment_claimable_data.iter().map(|(htlc, htlc_source)|
3328                                         (htlc, htlc_source.as_ref().map(|htlc_source| htlc_source.as_ref()))
3329                                 ), logger);
3330                         let (htlc_claim_reqs, counterparty_output_info) =
3331                                 self.get_counterparty_output_claim_info(commitment_number, commitment_txid, Some(tx), per_commitment_option);
3332                         to_counterparty_output_info = counterparty_output_info;
3333                         for req in htlc_claim_reqs {
3334                                 claimable_outpoints.push(req);
3335                         }
3336
3337                 }
3338                 (claimable_outpoints, to_counterparty_output_info)
3339         }
3340
3341         /// Returns the HTLC claim package templates and the counterparty output info
3342         fn get_counterparty_output_claim_info(&self, commitment_number: u64, commitment_txid: Txid, tx: Option<&Transaction>, per_commitment_option: Option<&Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>)
3343         -> (Vec<PackageTemplate>, CommitmentTxCounterpartyOutputInfo) {
3344                 let mut claimable_outpoints = Vec::new();
3345                 let mut to_counterparty_output_info: CommitmentTxCounterpartyOutputInfo = None;
3346
3347                 let per_commitment_claimable_data = match per_commitment_option {
3348                         Some(outputs) => outputs,
3349                         None => return (claimable_outpoints, to_counterparty_output_info),
3350                 };
3351                 let per_commitment_points = match self.their_cur_per_commitment_points {
3352                         Some(points) => points,
3353                         None => return (claimable_outpoints, to_counterparty_output_info),
3354                 };
3355
3356                 let per_commitment_point =
3357                         // If the counterparty commitment tx is the latest valid state, use their latest
3358                         // per-commitment point
3359                         if per_commitment_points.0 == commitment_number { &per_commitment_points.1 }
3360                         else if let Some(point) = per_commitment_points.2.as_ref() {
3361                                 // If counterparty commitment tx is the state previous to the latest valid state, use
3362                                 // their previous per-commitment point (non-atomicity of revocation means it's valid for
3363                                 // them to temporarily have two valid commitment txns from our viewpoint)
3364                                 if per_commitment_points.0 == commitment_number + 1 {
3365                                         point
3366                                 } else { return (claimable_outpoints, to_counterparty_output_info); }
3367                         } else { return (claimable_outpoints, to_counterparty_output_info); };
3368
3369                 if let Some(transaction) = tx {
3370                         let revocation_pubkey = RevocationKey::from_basepoint(
3371                                 &self.onchain_tx_handler.secp_ctx,  &self.holder_revocation_basepoint, &per_commitment_point);
3372
3373                         let delayed_key = DelayedPaymentKey::from_basepoint(&self.onchain_tx_handler.secp_ctx, &self.counterparty_commitment_params.counterparty_delayed_payment_base_key, &per_commitment_point);
3374
3375                         let revokeable_p2wsh = chan_utils::get_revokeable_redeemscript(&revocation_pubkey,
3376                                 self.counterparty_commitment_params.on_counterparty_tx_csv,
3377                                 &delayed_key).to_p2wsh();
3378                         for (idx, outp) in transaction.output.iter().enumerate() {
3379                                 if outp.script_pubkey == revokeable_p2wsh {
3380                                         to_counterparty_output_info =
3381                                                 Some((idx.try_into().expect("Can't have > 2^32 outputs"), outp.value));
3382                                 }
3383                         }
3384                 }
3385
3386                 for  &(ref htlc, _) in per_commitment_claimable_data.iter() {
3387                         if let Some(transaction_output_index) = htlc.transaction_output_index {
3388                                 if let Some(transaction) = tx {
3389                                         if transaction_output_index as usize >= transaction.output.len() ||
3390                                                 transaction.output[transaction_output_index as usize].value != htlc.to_bitcoin_amount() {
3391                                                         // per_commitment_data is corrupt or our commitment signing key leaked!
3392                                                         return (claimable_outpoints, to_counterparty_output_info);
3393                                                 }
3394                                 }
3395                                 let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
3396                                 if preimage.is_some() || !htlc.offered {
3397                                         let counterparty_htlc_outp = if htlc.offered {
3398                                                 PackageSolvingData::CounterpartyOfferedHTLCOutput(
3399                                                         CounterpartyOfferedHTLCOutput::build(*per_commitment_point,
3400                                                                 self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
3401                                                                 self.counterparty_commitment_params.counterparty_htlc_base_key,
3402                                                                 preimage.unwrap(), htlc.clone(), self.onchain_tx_handler.channel_type_features().clone()))
3403                                         } else {
3404                                                 PackageSolvingData::CounterpartyReceivedHTLCOutput(
3405                                                         CounterpartyReceivedHTLCOutput::build(*per_commitment_point,
3406                                                                 self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
3407                                                                 self.counterparty_commitment_params.counterparty_htlc_base_key,
3408                                                                 htlc.clone(), self.onchain_tx_handler.channel_type_features().clone()))
3409                                         };
3410                                         let counterparty_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, counterparty_htlc_outp, htlc.cltv_expiry, 0);
3411                                         claimable_outpoints.push(counterparty_package);
3412                                 }
3413                         }
3414                 }
3415
3416                 (claimable_outpoints, to_counterparty_output_info)
3417         }
3418
3419         /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
3420         fn check_spend_counterparty_htlc<L: Deref>(
3421                 &mut self, tx: &Transaction, commitment_number: u64, commitment_txid: &Txid, height: u32, logger: &L
3422         ) -> (Vec<PackageTemplate>, Option<TransactionOutputs>) where L::Target: Logger {
3423                 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
3424                 let per_commitment_key = match SecretKey::from_slice(&secret) {
3425                         Ok(key) => key,
3426                         Err(_) => return (Vec::new(), None)
3427                 };
3428                 let per_commitment_point = PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key);
3429
3430                 let htlc_txid = tx.txid();
3431                 let mut claimable_outpoints = vec![];
3432                 let mut outputs_to_watch = None;
3433                 // Previously, we would only claim HTLCs from revoked HTLC transactions if they had 1 input
3434                 // with a witness of 5 elements and 1 output. This wasn't enough for anchor outputs, as the
3435                 // counterparty can now aggregate multiple HTLCs into a single transaction thanks to
3436                 // `SIGHASH_SINGLE` remote signatures, leading us to not claim any HTLCs upon seeing a
3437                 // confirmed revoked HTLC transaction (for more details, see
3438                 // https://lists.linuxfoundation.org/pipermail/lightning-dev/2022-April/003561.html).
3439                 //
3440                 // We make sure we're not vulnerable to this case by checking all inputs of the transaction,
3441                 // and claim those which spend the commitment transaction, have a witness of 5 elements, and
3442                 // have a corresponding output at the same index within the transaction.
3443                 for (idx, input) in tx.input.iter().enumerate() {
3444                         if input.previous_output.txid == *commitment_txid && input.witness.len() == 5 && tx.output.get(idx).is_some() {
3445                                 log_error!(logger, "Got broadcast of revoked counterparty HTLC transaction, spending {}:{}", htlc_txid, idx);
3446                                 let revk_outp = RevokedOutput::build(
3447                                         per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
3448                                         self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key,
3449                                         tx.output[idx].value, self.counterparty_commitment_params.on_counterparty_tx_csv,
3450                                         false
3451                                 );
3452                                 let justice_package = PackageTemplate::build_package(
3453                                         htlc_txid, idx as u32, PackageSolvingData::RevokedOutput(revk_outp),
3454                                         height + self.counterparty_commitment_params.on_counterparty_tx_csv as u32, height
3455                                 );
3456                                 claimable_outpoints.push(justice_package);
3457                                 if outputs_to_watch.is_none() {
3458                                         outputs_to_watch = Some((htlc_txid, vec![]));
3459                                 }
3460                                 outputs_to_watch.as_mut().unwrap().1.push((idx as u32, tx.output[idx].clone()));
3461                         }
3462                 }
3463                 (claimable_outpoints, outputs_to_watch)
3464         }
3465
3466         // Returns (1) `PackageTemplate`s that can be given to the OnchainTxHandler, so that the handler can
3467         // broadcast transactions claiming holder HTLC commitment outputs and (2) a holder revokable
3468         // script so we can detect whether a holder transaction has been seen on-chain.
3469         fn get_broadcasted_holder_claims(&self, holder_tx: &HolderSignedTx, conf_height: u32) -> (Vec<PackageTemplate>, Option<(ScriptBuf, PublicKey, RevocationKey)>) {
3470                 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
3471
3472                 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
3473                 let broadcasted_holder_revokable_script = Some((redeemscript.to_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
3474
3475                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
3476                         if let Some(transaction_output_index) = htlc.transaction_output_index {
3477                                 let htlc_output = if htlc.offered {
3478                                         let htlc_output = HolderHTLCOutput::build_offered(
3479                                                 htlc.amount_msat, htlc.cltv_expiry, self.onchain_tx_handler.channel_type_features().clone()
3480                                         );
3481                                         htlc_output
3482                                 } else {
3483                                         let payment_preimage = if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
3484                                                 preimage.clone()
3485                                         } else {
3486                                                 // We can't build an HTLC-Success transaction without the preimage
3487                                                 continue;
3488                                         };
3489                                         let htlc_output = HolderHTLCOutput::build_accepted(
3490                                                 payment_preimage, htlc.amount_msat, self.onchain_tx_handler.channel_type_features().clone()
3491                                         );
3492                                         htlc_output
3493                                 };
3494                                 let htlc_package = PackageTemplate::build_package(
3495                                         holder_tx.txid, transaction_output_index,
3496                                         PackageSolvingData::HolderHTLCOutput(htlc_output),
3497                                         htlc.cltv_expiry, conf_height
3498                                 );
3499                                 claim_requests.push(htlc_package);
3500                         }
3501                 }
3502
3503                 (claim_requests, broadcasted_holder_revokable_script)
3504         }
3505
3506         // Returns holder HTLC outputs to watch and react to in case of spending.
3507         fn get_broadcasted_holder_watch_outputs(&self, holder_tx: &HolderSignedTx, commitment_tx: &Transaction) -> Vec<(u32, TxOut)> {
3508                 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
3509                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
3510                         if let Some(transaction_output_index) = htlc.transaction_output_index {
3511                                 watch_outputs.push((transaction_output_index, commitment_tx.output[transaction_output_index as usize].clone()));
3512                         }
3513                 }
3514                 watch_outputs
3515         }
3516
3517         /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
3518         /// revoked using data in holder_claimable_outpoints.
3519         /// Should not be used if check_spend_revoked_transaction succeeds.
3520         /// Returns None unless the transaction is definitely one of our commitment transactions.
3521         fn check_spend_holder_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &L) -> Option<(Vec<PackageTemplate>, TransactionOutputs)> where L::Target: Logger {
3522                 let commitment_txid = tx.txid();
3523                 let mut claim_requests = Vec::new();
3524                 let mut watch_outputs = Vec::new();
3525
3526                 macro_rules! append_onchain_update {
3527                         ($updates: expr, $to_watch: expr) => {
3528                                 claim_requests = $updates.0;
3529                                 self.broadcasted_holder_revokable_script = $updates.1;
3530                                 watch_outputs.append(&mut $to_watch);
3531                         }
3532                 }
3533
3534                 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
3535                 let mut is_holder_tx = false;
3536
3537                 if self.current_holder_commitment_tx.txid == commitment_txid {
3538                         is_holder_tx = true;
3539                         log_info!(logger, "Got broadcast of latest holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
3540                         let res = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, height);
3541                         let mut to_watch = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, tx);
3542                         append_onchain_update!(res, to_watch);
3543                         fail_unbroadcast_htlcs!(self, "latest holder", commitment_txid, tx, height,
3544                                 block_hash, self.current_holder_commitment_tx.htlc_outputs.iter()
3545                                 .map(|(htlc, _, htlc_source)| (htlc, htlc_source.as_ref())), logger);
3546                 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
3547                         if holder_tx.txid == commitment_txid {
3548                                 is_holder_tx = true;
3549                                 log_info!(logger, "Got broadcast of previous holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
3550                                 let res = self.get_broadcasted_holder_claims(holder_tx, height);
3551                                 let mut to_watch = self.get_broadcasted_holder_watch_outputs(holder_tx, tx);
3552                                 append_onchain_update!(res, to_watch);
3553                                 fail_unbroadcast_htlcs!(self, "previous holder", commitment_txid, tx, height, block_hash,
3554                                         holder_tx.htlc_outputs.iter().map(|(htlc, _, htlc_source)| (htlc, htlc_source.as_ref())),
3555                                         logger);
3556                         }
3557                 }
3558
3559                 if is_holder_tx {
3560                         Some((claim_requests, (commitment_txid, watch_outputs)))
3561                 } else {
3562                         None
3563                 }
3564         }
3565
3566         /// Cancels any existing pending claims for a commitment that previously confirmed and has now
3567         /// been replaced by another.
3568         pub fn cancel_prev_commitment_claims<L: Deref>(
3569                 &mut self, logger: &L, confirmed_commitment_txid: &Txid
3570         ) where L::Target: Logger {
3571                 for (counterparty_commitment_txid, _) in &self.counterparty_commitment_txn_on_chain {
3572                         // Cancel any pending claims for counterparty commitments we've seen confirm.
3573                         if counterparty_commitment_txid == confirmed_commitment_txid {
3574                                 continue;
3575                         }
3576                         // If we have generated claims for counterparty_commitment_txid earlier, we can rely on always
3577                         // having claim related htlcs for counterparty_commitment_txid in counterparty_claimable_outpoints.
3578                         for (htlc, _) in self.counterparty_claimable_outpoints.get(counterparty_commitment_txid).unwrap_or(&vec![]) {
3579                                 log_trace!(logger, "Canceling claims for previously confirmed counterparty commitment {}",
3580                                         counterparty_commitment_txid);
3581                                 let mut outpoint = BitcoinOutPoint { txid: *counterparty_commitment_txid, vout: 0 };
3582                                 if let Some(vout) = htlc.transaction_output_index {
3583                                         outpoint.vout = vout;
3584                                         self.onchain_tx_handler.abandon_claim(&outpoint);
3585                                 }
3586                         }
3587                 }
3588                 if self.holder_tx_signed {
3589                         // If we've signed, we may have broadcast either commitment (prev or current), and
3590                         // attempted to claim from it immediately without waiting for a confirmation.
3591                         if self.current_holder_commitment_tx.txid != *confirmed_commitment_txid {
3592                                 log_trace!(logger, "Canceling claims for previously broadcast holder commitment {}",
3593                                         self.current_holder_commitment_tx.txid);
3594                                 let mut outpoint = BitcoinOutPoint { txid: self.current_holder_commitment_tx.txid, vout: 0 };
3595                                 for (htlc, _, _) in &self.current_holder_commitment_tx.htlc_outputs {
3596                                         if let Some(vout) = htlc.transaction_output_index {
3597                                                 outpoint.vout = vout;
3598                                                 self.onchain_tx_handler.abandon_claim(&outpoint);
3599                                         }
3600                                 }
3601                         }
3602                         if let Some(prev_holder_commitment_tx) = &self.prev_holder_signed_commitment_tx {
3603                                 if prev_holder_commitment_tx.txid != *confirmed_commitment_txid {
3604                                         log_trace!(logger, "Canceling claims for previously broadcast holder commitment {}",
3605                                                 prev_holder_commitment_tx.txid);
3606                                         let mut outpoint = BitcoinOutPoint { txid: prev_holder_commitment_tx.txid, vout: 0 };
3607                                         for (htlc, _, _) in &prev_holder_commitment_tx.htlc_outputs {
3608                                                 if let Some(vout) = htlc.transaction_output_index {
3609                                                         outpoint.vout = vout;
3610                                                         self.onchain_tx_handler.abandon_claim(&outpoint);
3611                                                 }
3612                                         }
3613                                 }
3614                         }
3615                 } else {
3616                         // No previous claim.
3617                 }
3618         }
3619
3620         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
3621         /// Note that this includes possibly-locktimed-in-the-future transactions!
3622         fn unsafe_get_latest_holder_commitment_txn<L: Deref>(
3623                 &mut self, logger: &WithChannelMonitor<L>
3624         ) -> Vec<Transaction> where L::Target: Logger {
3625                 log_debug!(logger, "Getting signed copy of latest holder commitment transaction!");
3626                 let commitment_tx = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript);
3627                 let txid = commitment_tx.txid();
3628                 let mut holder_transactions = vec![commitment_tx];
3629                 // When anchor outputs are present, the HTLC transactions are only final once the commitment
3630                 // transaction confirms due to the CSV 1 encumberance.
3631                 if self.onchain_tx_handler.channel_type_features().supports_anchors_zero_fee_htlc_tx() {
3632                         return holder_transactions;
3633                 }
3634                 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
3635                         if let Some(vout) = htlc.0.transaction_output_index {
3636                                 let preimage = if !htlc.0.offered {
3637                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
3638                                                 // We can't build an HTLC-Success transaction without the preimage
3639                                                 continue;
3640                                         }
3641                                 } else { None };
3642                                 if let Some(htlc_tx) = self.onchain_tx_handler.get_maybe_signed_htlc_tx(
3643                                         &::bitcoin::OutPoint { txid, vout }, &preimage
3644                                 ) {
3645                                         if htlc_tx.is_fully_signed() {
3646                                                 holder_transactions.push(htlc_tx.0);
3647                                         }
3648                                 }
3649                         }
3650                 }
3651                 holder_transactions
3652         }
3653
3654         fn block_connected<B: Deref, F: Deref, L: Deref>(
3655                 &mut self, header: &Header, txdata: &TransactionData, height: u32, broadcaster: B,
3656                 fee_estimator: F, logger: &WithChannelMonitor<L>,
3657         ) -> Vec<TransactionOutputs>
3658                 where B::Target: BroadcasterInterface,
3659                         F::Target: FeeEstimator,
3660                         L::Target: Logger,
3661         {
3662                 let block_hash = header.block_hash();
3663                 self.best_block = BestBlock::new(block_hash, height);
3664
3665                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
3666                 self.transactions_confirmed(header, txdata, height, broadcaster, &bounded_fee_estimator, logger)
3667         }
3668
3669         fn best_block_updated<B: Deref, F: Deref, L: Deref>(
3670                 &mut self,
3671                 header: &Header,
3672                 height: u32,
3673                 broadcaster: B,
3674                 fee_estimator: &LowerBoundedFeeEstimator<F>,
3675                 logger: &WithChannelMonitor<L>,
3676         ) -> Vec<TransactionOutputs>
3677         where
3678                 B::Target: BroadcasterInterface,
3679                 F::Target: FeeEstimator,
3680                 L::Target: Logger,
3681         {
3682                 let block_hash = header.block_hash();
3683
3684                 if height > self.best_block.height {
3685                         self.best_block = BestBlock::new(block_hash, height);
3686                         log_trace!(logger, "Connecting new block {} at height {}", block_hash, height);
3687                         self.block_confirmed(height, block_hash, vec![], vec![], vec![], &broadcaster, &fee_estimator, logger)
3688                 } else if block_hash != self.best_block.block_hash {
3689                         self.best_block = BestBlock::new(block_hash, height);
3690                         log_trace!(logger, "Best block re-orged, replaced with new block {} at height {}", block_hash, height);
3691                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height <= height);
3692                         self.onchain_tx_handler.block_disconnected(height + 1, broadcaster, fee_estimator, logger);
3693                         Vec::new()
3694                 } else { Vec::new() }
3695         }
3696
3697         fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
3698                 &mut self,
3699                 header: &Header,
3700                 txdata: &TransactionData,
3701                 height: u32,
3702                 broadcaster: B,
3703                 fee_estimator: &LowerBoundedFeeEstimator<F>,
3704                 logger: &WithChannelMonitor<L>,
3705         ) -> Vec<TransactionOutputs>
3706         where
3707                 B::Target: BroadcasterInterface,
3708                 F::Target: FeeEstimator,
3709                 L::Target: Logger,
3710         {
3711                 let txn_matched = self.filter_block(txdata);
3712                 for tx in &txn_matched {
3713                         let mut output_val = Amount::ZERO;
3714                         for out in tx.output.iter() {
3715                                 if out.value > Amount::MAX_MONEY { panic!("Value-overflowing transaction provided to block connected"); }
3716                                 output_val += out.value;
3717                                 if output_val > Amount::MAX_MONEY { panic!("Value-overflowing transaction provided to block connected"); }
3718                         }
3719                 }
3720
3721                 let block_hash = header.block_hash();
3722
3723                 let mut watch_outputs = Vec::new();
3724                 let mut claimable_outpoints = Vec::new();
3725                 'tx_iter: for tx in &txn_matched {
3726                         let txid = tx.txid();
3727                         log_trace!(logger, "Transaction {} confirmed in block {}", txid , block_hash);
3728                         // If a transaction has already been confirmed, ensure we don't bother processing it duplicatively.
3729                         if Some(txid) == self.funding_spend_confirmed {
3730                                 log_debug!(logger, "Skipping redundant processing of funding-spend tx {} as it was previously confirmed", txid);
3731                                 continue 'tx_iter;
3732                         }
3733                         for ev in self.onchain_events_awaiting_threshold_conf.iter() {
3734                                 if ev.txid == txid {
3735                                         if let Some(conf_hash) = ev.block_hash {
3736                                                 assert_eq!(header.block_hash(), conf_hash,
3737                                                         "Transaction {} was already confirmed and is being re-confirmed in a different block.\n\
3738                                                         This indicates a severe bug in the transaction connection logic - a reorg should have been processed first!", ev.txid);
3739                                         }
3740                                         log_debug!(logger, "Skipping redundant processing of confirming tx {} as it was previously confirmed", txid);
3741                                         continue 'tx_iter;
3742                                 }
3743                         }
3744                         for htlc in self.htlcs_resolved_on_chain.iter() {
3745                                 if Some(txid) == htlc.resolving_txid {
3746                                         log_debug!(logger, "Skipping redundant processing of HTLC resolution tx {} as it was previously confirmed", txid);
3747                                         continue 'tx_iter;
3748                                 }
3749                         }
3750                         for spendable_txid in self.spendable_txids_confirmed.iter() {
3751                                 if txid == *spendable_txid {
3752                                         log_debug!(logger, "Skipping redundant processing of spendable tx {} as it was previously confirmed", txid);
3753                                         continue 'tx_iter;
3754                                 }
3755                         }
3756
3757                         if tx.input.len() == 1 {
3758                                 // Assuming our keys were not leaked (in which case we're screwed no matter what),
3759                                 // commitment transactions and HTLC transactions will all only ever have one input
3760                                 // (except for HTLC transactions for channels with anchor outputs), which is an easy
3761                                 // way to filter out any potential non-matching txn for lazy filters.
3762                                 let prevout = &tx.input[0].previous_output;
3763                                 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
3764                                         let mut balance_spendable_csv = None;
3765                                         log_info!(logger, "Channel {} closed by funding output spend in txid {}.",
3766                                                 &self.channel_id(), txid);
3767                                         self.funding_spend_seen = true;
3768                                         let mut commitment_tx_to_counterparty_output = None;
3769                                         if (tx.input[0].sequence.0 >> 8*3) as u8 == 0x80 && (tx.lock_time.to_consensus_u32() >> 8*3) as u8 == 0x20 {
3770                                                 if let Some((mut new_outpoints, new_outputs)) = self.check_spend_holder_transaction(&tx, height, &block_hash, &logger) {
3771                                                         if !new_outputs.1.is_empty() {
3772                                                                 watch_outputs.push(new_outputs);
3773                                                         }
3774
3775                                                         claimable_outpoints.append(&mut new_outpoints);
3776                                                         balance_spendable_csv = Some(self.on_holder_tx_csv);
3777                                                 } else {
3778                                                         let mut new_watch_outputs = Vec::new();
3779                                                         for (idx, outp) in tx.output.iter().enumerate() {
3780                                                                 new_watch_outputs.push((idx as u32, outp.clone()));
3781                                                         }
3782                                                         watch_outputs.push((txid, new_watch_outputs));
3783
3784                                                         let (mut new_outpoints, counterparty_output_idx_sats) =
3785                                                                 self.check_spend_counterparty_transaction(&tx, height, &block_hash, &logger);
3786                                                         commitment_tx_to_counterparty_output = counterparty_output_idx_sats;
3787
3788                                                         claimable_outpoints.append(&mut new_outpoints);
3789                                                 }
3790                                         }
3791                                         self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
3792                                                 txid,
3793                                                 transaction: Some((*tx).clone()),
3794                                                 height,
3795                                                 block_hash: Some(block_hash),
3796                                                 event: OnchainEvent::FundingSpendConfirmation {
3797                                                         on_local_output_csv: balance_spendable_csv,
3798                                                         commitment_tx_to_counterparty_output,
3799                                                 },
3800                                         });
3801                                         // Now that we've detected a confirmed commitment transaction, attempt to cancel
3802                                         // pending claims for any commitments that were previously confirmed such that
3803                                         // we don't continue claiming inputs that no longer exist.
3804                                         self.cancel_prev_commitment_claims(&logger, &txid);
3805                                 }
3806                         }
3807                         if tx.input.len() >= 1 {
3808                                 // While all commitment transactions have one input, HTLC transactions may have more
3809                                 // if the HTLC was present in an anchor channel. HTLCs can also be resolved in a few
3810                                 // other ways which can have more than one output.
3811                                 for tx_input in &tx.input {
3812                                         let commitment_txid = tx_input.previous_output.txid;
3813                                         if let Some(&commitment_number) = self.counterparty_commitment_txn_on_chain.get(&commitment_txid) {
3814                                                 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(
3815                                                         &tx, commitment_number, &commitment_txid, height, &logger
3816                                                 );
3817                                                 claimable_outpoints.append(&mut new_outpoints);
3818                                                 if let Some(new_outputs) = new_outputs_option {
3819                                                         watch_outputs.push(new_outputs);
3820                                                 }
3821                                                 // Since there may be multiple HTLCs for this channel (all spending the
3822                                                 // same commitment tx) being claimed by the counterparty within the same
3823                                                 // transaction, and `check_spend_counterparty_htlc` already checks all the
3824                                                 // ones relevant to this channel, we can safely break from our loop.
3825                                                 break;
3826                                         }
3827                                 }
3828                                 self.is_resolving_htlc_output(&tx, height, &block_hash, logger);
3829
3830                                 self.check_tx_and_push_spendable_outputs(&tx, height, &block_hash, logger);
3831                         }
3832                 }
3833
3834                 if height > self.best_block.height {
3835                         self.best_block = BestBlock::new(block_hash, height);
3836                 }
3837
3838                 self.block_confirmed(height, block_hash, txn_matched, watch_outputs, claimable_outpoints, &broadcaster, &fee_estimator, logger)
3839         }
3840
3841         /// Update state for new block(s)/transaction(s) confirmed. Note that the caller must update
3842         /// `self.best_block` before calling if a new best blockchain tip is available. More
3843         /// concretely, `self.best_block` must never be at a lower height than `conf_height`, avoiding
3844         /// complexity especially in
3845         /// `OnchainTx::update_claims_view_from_requests`/`OnchainTx::update_claims_view_from_matched_txn`.
3846         ///
3847         /// `conf_height` should be set to the height at which any new transaction(s)/block(s) were
3848         /// confirmed at, even if it is not the current best height.
3849         fn block_confirmed<B: Deref, F: Deref, L: Deref>(
3850                 &mut self,
3851                 conf_height: u32,
3852                 conf_hash: BlockHash,
3853                 txn_matched: Vec<&Transaction>,
3854                 mut watch_outputs: Vec<TransactionOutputs>,
3855                 mut claimable_outpoints: Vec<PackageTemplate>,
3856                 broadcaster: &B,
3857                 fee_estimator: &LowerBoundedFeeEstimator<F>,
3858                 logger: &WithChannelMonitor<L>,
3859         ) -> Vec<TransactionOutputs>
3860         where
3861                 B::Target: BroadcasterInterface,
3862                 F::Target: FeeEstimator,
3863                 L::Target: Logger,
3864         {
3865                 log_trace!(logger, "Processing {} matched transactions for block at height {}.", txn_matched.len(), conf_height);
3866                 debug_assert!(self.best_block.height >= conf_height);
3867
3868                 let should_broadcast = self.should_broadcast_holder_commitment_txn(logger);
3869                 if should_broadcast {
3870                         let (mut new_outpoints, mut new_outputs) = self.generate_claimable_outpoints_and_watch_outputs(ClosureReason::HTLCsTimedOut);
3871                         claimable_outpoints.append(&mut new_outpoints);
3872                         watch_outputs.append(&mut new_outputs);
3873                 }
3874
3875                 // Find which on-chain events have reached their confirmation threshold.
3876                 let onchain_events_awaiting_threshold_conf =
3877                         self.onchain_events_awaiting_threshold_conf.drain(..).collect::<Vec<_>>();
3878                 let mut onchain_events_reaching_threshold_conf = Vec::new();
3879                 for entry in onchain_events_awaiting_threshold_conf {
3880                         if entry.has_reached_confirmation_threshold(&self.best_block) {
3881                                 onchain_events_reaching_threshold_conf.push(entry);
3882                         } else {
3883                                 self.onchain_events_awaiting_threshold_conf.push(entry);
3884                         }
3885                 }
3886
3887                 // Used to check for duplicate HTLC resolutions.
3888                 #[cfg(debug_assertions)]
3889                 let unmatured_htlcs: Vec<_> = self.onchain_events_awaiting_threshold_conf
3890                         .iter()
3891                         .filter_map(|entry| match &entry.event {
3892                                 OnchainEvent::HTLCUpdate { source, .. } => Some(source),
3893                                 _ => None,
3894                         })
3895                         .collect();
3896                 #[cfg(debug_assertions)]
3897                 let mut matured_htlcs = Vec::new();
3898
3899                 // Produce actionable events from on-chain events having reached their threshold.
3900                 for entry in onchain_events_reaching_threshold_conf.drain(..) {
3901                         match entry.event {
3902                                 OnchainEvent::HTLCUpdate { ref source, payment_hash, htlc_value_satoshis, commitment_tx_output_idx } => {
3903                                         // Check for duplicate HTLC resolutions.
3904                                         #[cfg(debug_assertions)]
3905                                         {
3906                                                 debug_assert!(
3907                                                         unmatured_htlcs.iter().find(|&htlc| htlc == &source).is_none(),
3908                                                         "An unmature HTLC transaction conflicts with a maturing one; failed to \
3909                                                          call either transaction_unconfirmed for the conflicting transaction \
3910                                                          or block_disconnected for a block containing it.");
3911                                                 debug_assert!(
3912                                                         matured_htlcs.iter().find(|&htlc| htlc == source).is_none(),
3913                                                         "A matured HTLC transaction conflicts with a maturing one; failed to \
3914                                                          call either transaction_unconfirmed for the conflicting transaction \
3915                                                          or block_disconnected for a block containing it.");
3916                                                 matured_htlcs.push(source.clone());
3917                                         }
3918
3919                                         log_debug!(logger, "HTLC {} failure update in {} has got enough confirmations to be passed upstream",
3920                                                 &payment_hash, entry.txid);
3921                                         self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
3922                                                 payment_hash,
3923                                                 payment_preimage: None,
3924                                                 source: source.clone(),
3925                                                 htlc_value_satoshis,
3926                                         }));
3927                                         self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC {
3928                                                 commitment_tx_output_idx,
3929                                                 resolving_txid: Some(entry.txid),
3930                                                 resolving_tx: entry.transaction,
3931                                                 payment_preimage: None,
3932                                         });
3933                                 },
3934                                 OnchainEvent::MaturingOutput { descriptor } => {
3935                                         log_debug!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
3936                                         self.pending_events.push(Event::SpendableOutputs {
3937                                                 outputs: vec![descriptor],
3938                                                 channel_id: Some(self.channel_id()),
3939                                         });
3940                                         self.spendable_txids_confirmed.push(entry.txid);
3941                                 },
3942                                 OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, preimage, .. } => {
3943                                         self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC {
3944                                                 commitment_tx_output_idx: Some(commitment_tx_output_idx),
3945                                                 resolving_txid: Some(entry.txid),
3946                                                 resolving_tx: entry.transaction,
3947                                                 payment_preimage: preimage,
3948                                         });
3949                                 },
3950                                 OnchainEvent::FundingSpendConfirmation { commitment_tx_to_counterparty_output, .. } => {
3951                                         self.funding_spend_confirmed = Some(entry.txid);
3952                                         self.confirmed_commitment_tx_counterparty_output = commitment_tx_to_counterparty_output;
3953                                 },
3954                         }
3955                 }
3956
3957                 self.onchain_tx_handler.update_claims_view_from_requests(claimable_outpoints, conf_height, self.best_block.height, broadcaster, fee_estimator, logger);
3958                 self.onchain_tx_handler.update_claims_view_from_matched_txn(&txn_matched, conf_height, conf_hash, self.best_block.height, broadcaster, fee_estimator, logger);
3959
3960                 // Determine new outputs to watch by comparing against previously known outputs to watch,
3961                 // updating the latter in the process.
3962                 watch_outputs.retain(|&(ref txid, ref txouts)| {
3963                         let idx_and_scripts = txouts.iter().map(|o| (o.0, o.1.script_pubkey.clone())).collect();
3964                         self.outputs_to_watch.insert(txid.clone(), idx_and_scripts).is_none()
3965                 });
3966                 #[cfg(test)]
3967                 {
3968                         // If we see a transaction for which we registered outputs previously,
3969                         // make sure the registered scriptpubkey at the expected index match
3970                         // the actual transaction output one. We failed this case before #653.
3971                         for tx in &txn_matched {
3972                                 if let Some(outputs) = self.get_outputs_to_watch().get(&tx.txid()) {
3973                                         for idx_and_script in outputs.iter() {
3974                                                 assert!((idx_and_script.0 as usize) < tx.output.len());
3975                                                 assert_eq!(tx.output[idx_and_script.0 as usize].script_pubkey, idx_and_script.1);
3976                                         }
3977                                 }
3978                         }
3979                 }
3980                 watch_outputs
3981         }
3982
3983         fn block_disconnected<B: Deref, F: Deref, L: Deref>(
3984                 &mut self, header: &Header, height: u32, broadcaster: B, fee_estimator: F, logger: &WithChannelMonitor<L>
3985         ) where B::Target: BroadcasterInterface,
3986                 F::Target: FeeEstimator,
3987                 L::Target: Logger,
3988         {
3989                 log_trace!(logger, "Block {} at height {} disconnected", header.block_hash(), height);
3990
3991                 //We may discard:
3992                 //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
3993                 //- maturing spendable output has transaction paying us has been disconnected
3994                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height < height);
3995
3996                 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
3997                 self.onchain_tx_handler.block_disconnected(height, broadcaster, &bounded_fee_estimator, logger);
3998
3999                 self.best_block = BestBlock::new(header.prev_blockhash, height - 1);
4000         }
4001
4002         fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
4003                 &mut self,
4004                 txid: &Txid,
4005                 broadcaster: B,
4006                 fee_estimator: &LowerBoundedFeeEstimator<F>,
4007                 logger: &WithChannelMonitor<L>,
4008         ) where
4009                 B::Target: BroadcasterInterface,
4010                 F::Target: FeeEstimator,
4011                 L::Target: Logger,
4012         {
4013                 let mut removed_height = None;
4014                 for entry in self.onchain_events_awaiting_threshold_conf.iter() {
4015                         if entry.txid == *txid {
4016                                 removed_height = Some(entry.height);
4017                                 break;
4018                         }
4019                 }
4020
4021                 if let Some(removed_height) = removed_height {
4022                         log_info!(logger, "transaction_unconfirmed of txid {} implies height {} was reorg'd out", txid, removed_height);
4023                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| if entry.height >= removed_height {
4024                                 log_info!(logger, "Transaction {} reorg'd out", entry.txid);
4025                                 false
4026                         } else { true });
4027                 }
4028
4029                 debug_assert!(!self.onchain_events_awaiting_threshold_conf.iter().any(|ref entry| entry.txid == *txid));
4030
4031                 self.onchain_tx_handler.transaction_unconfirmed(txid, broadcaster, fee_estimator, logger);
4032         }
4033
4034         /// Filters a block's `txdata` for transactions spending watched outputs or for any child
4035         /// transactions thereof.
4036         fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
4037                 let mut matched_txn = new_hash_set();
4038                 txdata.iter().filter(|&&(_, tx)| {
4039                         let mut matches = self.spends_watched_output(tx);
4040                         for input in tx.input.iter() {
4041                                 if matches { break; }
4042                                 if matched_txn.contains(&input.previous_output.txid) {
4043                                         matches = true;
4044                                 }
4045                         }
4046                         if matches {
4047                                 matched_txn.insert(tx.txid());
4048                         }
4049                         matches
4050                 }).map(|(_, tx)| *tx).collect()
4051         }
4052
4053         /// Checks if a given transaction spends any watched outputs.
4054         fn spends_watched_output(&self, tx: &Transaction) -> bool {
4055                 for input in tx.input.iter() {
4056                         if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
4057                                 for (idx, _script_pubkey) in outputs.iter() {
4058                                         if *idx == input.previous_output.vout {
4059                                                 #[cfg(test)]
4060                                                 {
4061                                                         // If the expected script is a known type, check that the witness
4062                                                         // appears to be spending the correct type (ie that the match would
4063                                                         // actually succeed in BIP 158/159-style filters).
4064                                                         if _script_pubkey.is_p2wsh() {
4065                                                                 if input.witness.last().unwrap().to_vec() == deliberately_bogus_accepted_htlc_witness_program() {
4066                                                                         // In at least one test we use a deliberately bogus witness
4067                                                                         // script which hit an old panic. Thus, we check for that here
4068                                                                         // and avoid the assert if its the expected bogus script.
4069                                                                         return true;
4070                                                                 }
4071
4072                                                                 assert_eq!(&bitcoin::Address::p2wsh(&ScriptBuf::from(input.witness.last().unwrap().to_vec()), bitcoin::Network::Bitcoin).script_pubkey(), _script_pubkey);
4073                                                         } else if _script_pubkey.is_p2wpkh() {
4074                                                                 assert_eq!(&bitcoin::Address::p2wpkh(&bitcoin::PublicKey::from_slice(&input.witness.last().unwrap()).unwrap(), bitcoin::Network::Bitcoin).unwrap().script_pubkey(), _script_pubkey);
4075                                                         } else { panic!(); }
4076                                                 }
4077                                                 return true;
4078                                         }
4079                                 }
4080                         }
4081                 }
4082
4083                 false
4084         }
4085
4086         fn should_broadcast_holder_commitment_txn<L: Deref>(
4087                 &self, logger: &WithChannelMonitor<L>
4088         ) -> bool where L::Target: Logger {
4089                 // There's no need to broadcast our commitment transaction if we've seen one confirmed (even
4090                 // with 1 confirmation) as it'll be rejected as duplicate/conflicting.
4091                 if self.funding_spend_confirmed.is_some() ||
4092                         self.onchain_events_awaiting_threshold_conf.iter().find(|event| match event.event {
4093                                 OnchainEvent::FundingSpendConfirmation { .. } => true,
4094                                 _ => false,
4095                         }).is_some()
4096                 {
4097                         return false;
4098                 }
4099                 // We need to consider all HTLCs which are:
4100                 //  * in any unrevoked counterparty commitment transaction, as they could broadcast said
4101                 //    transactions and we'd end up in a race, or
4102                 //  * are in our latest holder commitment transaction, as this is the thing we will
4103                 //    broadcast if we go on-chain.
4104                 // Note that we consider HTLCs which were below dust threshold here - while they don't
4105                 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
4106                 // to the source, and if we don't fail the channel we will have to ensure that the next
4107                 // updates that peer sends us are update_fails, failing the channel if not. It's probably
4108                 // easier to just fail the channel as this case should be rare enough anyway.
4109                 let height = self.best_block.height;
4110                 macro_rules! scan_commitment {
4111                         ($htlcs: expr, $holder_tx: expr) => {
4112                                 for ref htlc in $htlcs {
4113                                         // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
4114                                         // chain with enough room to claim the HTLC without our counterparty being able to
4115                                         // time out the HTLC first.
4116                                         // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
4117                                         // concern is being able to claim the corresponding inbound HTLC (on another
4118                                         // channel) before it expires. In fact, we don't even really care if our
4119                                         // counterparty here claims such an outbound HTLC after it expired as long as we
4120                                         // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
4121                                         // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
4122                                         // we give ourselves a few blocks of headroom after expiration before going
4123                                         // on-chain for an expired HTLC.
4124                                         // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
4125                                         // from us until we've reached the point where we go on-chain with the
4126                                         // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
4127                                         // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
4128                                         //  aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
4129                                         //      inbound_cltv == height + CLTV_CLAIM_BUFFER
4130                                         //      outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
4131                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
4132                                         //      CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
4133                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
4134                                         //  The final, above, condition is checked for statically in channelmanager
4135                                         //  with CHECK_CLTV_EXPIRY_SANITY_2.
4136                                         let htlc_outbound = $holder_tx == htlc.offered;
4137                                         if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
4138                                            (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
4139                                                 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
4140                                                 return true;
4141                                         }
4142                                 }
4143                         }
4144                 }
4145
4146                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
4147
4148                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
4149                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
4150                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
4151                         }
4152                 }
4153                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
4154                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
4155                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
4156                         }
4157                 }
4158
4159                 false
4160         }
4161
4162         /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
4163         /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
4164         fn is_resolving_htlc_output<L: Deref>(
4165                 &mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &WithChannelMonitor<L>,
4166         ) where L::Target: Logger {
4167                 'outer_loop: for input in &tx.input {
4168                         let mut payment_data = None;
4169                         let htlc_claim = HTLCClaim::from_witness(&input.witness);
4170                         let revocation_sig_claim = htlc_claim == Some(HTLCClaim::Revocation);
4171                         let accepted_preimage_claim = htlc_claim == Some(HTLCClaim::AcceptedPreimage);
4172                         #[cfg(not(fuzzing))]
4173                         let accepted_timeout_claim = htlc_claim == Some(HTLCClaim::AcceptedTimeout);
4174                         let offered_preimage_claim = htlc_claim == Some(HTLCClaim::OfferedPreimage);
4175                         #[cfg(not(fuzzing))]
4176                         let offered_timeout_claim = htlc_claim == Some(HTLCClaim::OfferedTimeout);
4177
4178                         let mut payment_preimage = PaymentPreimage([0; 32]);
4179                         if offered_preimage_claim || accepted_preimage_claim {
4180                                 payment_preimage.0.copy_from_slice(input.witness.second_to_last().unwrap());
4181                         }
4182
4183                         macro_rules! log_claim {
4184                                 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
4185                                         let outbound_htlc = $holder_tx == $htlc.offered;
4186                                         // HTLCs must either be claimed by a matching script type or through the
4187                                         // revocation path:
4188                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
4189                                         debug_assert!(!$htlc.offered || offered_preimage_claim || offered_timeout_claim || revocation_sig_claim);
4190                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
4191                                         debug_assert!($htlc.offered || accepted_preimage_claim || accepted_timeout_claim || revocation_sig_claim);
4192                                         // Further, only exactly one of the possible spend paths should have been
4193                                         // matched by any HTLC spend:
4194                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
4195                                         debug_assert_eq!(accepted_preimage_claim as u8 + accepted_timeout_claim as u8 +
4196                                                          offered_preimage_claim as u8 + offered_timeout_claim as u8 +
4197                                                          revocation_sig_claim as u8, 1);
4198                                         if ($holder_tx && revocation_sig_claim) ||
4199                                                         (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
4200                                                 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
4201                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
4202                                                         if outbound_htlc { "outbound" } else { "inbound" }, &$htlc.payment_hash,
4203                                                         if revocation_sig_claim { "revocation sig" } else { "preimage claim after we'd passed the HTLC resolution back. We can likely claim the HTLC output with a revocation claim" });
4204                                         } else {
4205                                                 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
4206                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
4207                                                         if outbound_htlc { "outbound" } else { "inbound" }, &$htlc.payment_hash,
4208                                                         if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
4209                                         }
4210                                 }
4211                         }
4212
4213                         macro_rules! check_htlc_valid_counterparty {
4214                                 ($htlc_output: expr, $per_commitment_data: expr) => {
4215                                                 for &(ref pending_htlc, ref pending_source) in $per_commitment_data {
4216                                                         if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
4217                                                                 if let &Some(ref source) = pending_source {
4218                                                                         log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
4219                                                                         payment_data = Some(((**source).clone(), $htlc_output.payment_hash, $htlc_output.amount_msat));
4220                                                                         break;
4221                                                                 }
4222                                                         }
4223                                                 }
4224                                 }
4225                         }
4226
4227                         macro_rules! scan_commitment {
4228                                 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
4229                                         for (ref htlc_output, source_option) in $htlcs {
4230                                                 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
4231                                                         if let Some(ref source) = source_option {
4232                                                                 log_claim!($tx_info, $holder_tx, htlc_output, true);
4233                                                                 // We have a resolution of an HTLC either from one of our latest
4234                                                                 // holder commitment transactions or an unrevoked counterparty commitment
4235                                                                 // transaction. This implies we either learned a preimage, the HTLC
4236                                                                 // has timed out, or we screwed up. In any case, we should now
4237                                                                 // resolve the source HTLC with the original sender.
4238                                                                 payment_data = Some(((*source).clone(), htlc_output.payment_hash, htlc_output.amount_msat));
4239                                                         } else if !$holder_tx {
4240                                                                 if let Some(current_counterparty_commitment_txid) = &self.current_counterparty_commitment_txid {
4241                                                                         check_htlc_valid_counterparty!(htlc_output, self.counterparty_claimable_outpoints.get(current_counterparty_commitment_txid).unwrap());
4242                                                                 }
4243                                                                 if payment_data.is_none() {
4244                                                                         if let Some(prev_counterparty_commitment_txid) = &self.prev_counterparty_commitment_txid {
4245                                                                                 check_htlc_valid_counterparty!(htlc_output, self.counterparty_claimable_outpoints.get(prev_counterparty_commitment_txid).unwrap());
4246                                                                         }
4247                                                                 }
4248                                                         }
4249                                                         if payment_data.is_none() {
4250                                                                 log_claim!($tx_info, $holder_tx, htlc_output, false);
4251                                                                 let outbound_htlc = $holder_tx == htlc_output.offered;
4252                                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
4253                                                                         txid: tx.txid(), height, block_hash: Some(*block_hash), transaction: Some(tx.clone()),
4254                                                                         event: OnchainEvent::HTLCSpendConfirmation {
4255                                                                                 commitment_tx_output_idx: input.previous_output.vout,
4256                                                                                 preimage: if accepted_preimage_claim || offered_preimage_claim {
4257                                                                                         Some(payment_preimage) } else { None },
4258                                                                                 // If this is a payment to us (ie !outbound_htlc), wait for
4259                                                                                 // the CSV delay before dropping the HTLC from claimable
4260                                                                                 // balance if the claim was an HTLC-Success transaction (ie
4261                                                                                 // accepted_preimage_claim).
4262                                                                                 on_to_local_output_csv: if accepted_preimage_claim && !outbound_htlc {
4263                                                                                         Some(self.on_holder_tx_csv) } else { None },
4264                                                                         },
4265                                                                 });
4266                                                                 continue 'outer_loop;
4267                                                         }
4268                                                 }
4269                                         }
4270                                 }
4271                         }
4272
4273                         if input.previous_output.txid == self.current_holder_commitment_tx.txid {
4274                                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
4275                                         "our latest holder commitment tx", true);
4276                         }
4277                         if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
4278                                 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
4279                                         scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
4280                                                 "our previous holder commitment tx", true);
4281                                 }
4282                         }
4283                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
4284                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, b.as_ref().map(|boxed| &**boxed))),
4285                                         "counterparty commitment tx", false);
4286                         }
4287
4288                         // Check that scan_commitment, above, decided there is some source worth relaying an
4289                         // HTLC resolution backwards to and figure out whether we learned a preimage from it.
4290                         if let Some((source, payment_hash, amount_msat)) = payment_data {
4291                                 if accepted_preimage_claim {
4292                                         if !self.pending_monitor_events.iter().any(
4293                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
4294                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
4295                                                         txid: tx.txid(),
4296                                                         height,
4297                                                         block_hash: Some(*block_hash),
4298                                                         transaction: Some(tx.clone()),
4299                                                         event: OnchainEvent::HTLCSpendConfirmation {
4300                                                                 commitment_tx_output_idx: input.previous_output.vout,
4301                                                                 preimage: Some(payment_preimage),
4302                                                                 on_to_local_output_csv: None,
4303                                                         },
4304                                                 });
4305                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
4306                                                         source,
4307                                                         payment_preimage: Some(payment_preimage),
4308                                                         payment_hash,
4309                                                         htlc_value_satoshis: Some(amount_msat / 1000),
4310                                                 }));
4311                                         }
4312                                 } else if offered_preimage_claim {
4313                                         if !self.pending_monitor_events.iter().any(
4314                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
4315                                                         upd.source == source
4316                                                 } else { false }) {
4317                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
4318                                                         txid: tx.txid(),
4319                                                         transaction: Some(tx.clone()),
4320                                                         height,
4321                                                         block_hash: Some(*block_hash),
4322                                                         event: OnchainEvent::HTLCSpendConfirmation {
4323                                                                 commitment_tx_output_idx: input.previous_output.vout,
4324                                                                 preimage: Some(payment_preimage),
4325                                                                 on_to_local_output_csv: None,
4326                                                         },
4327                                                 });
4328                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
4329                                                         source,
4330                                                         payment_preimage: Some(payment_preimage),
4331                                                         payment_hash,
4332                                                         htlc_value_satoshis: Some(amount_msat / 1000),
4333                                                 }));
4334                                         }
4335                                 } else {
4336                                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
4337                                                 if entry.height != height { return true; }
4338                                                 match entry.event {
4339                                                         OnchainEvent::HTLCUpdate { source: ref htlc_source, .. } => {
4340                                                                 *htlc_source != source
4341                                                         },
4342                                                         _ => true,
4343                                                 }
4344                                         });
4345                                         let entry = OnchainEventEntry {
4346                                                 txid: tx.txid(),
4347                                                 transaction: Some(tx.clone()),
4348                                                 height,
4349                                                 block_hash: Some(*block_hash),
4350                                                 event: OnchainEvent::HTLCUpdate {
4351                                                         source, payment_hash,
4352                                                         htlc_value_satoshis: Some(amount_msat / 1000),
4353                                                         commitment_tx_output_idx: Some(input.previous_output.vout),
4354                                                 },
4355                                         };
4356                                         log_info!(logger, "Failing HTLC with payment_hash {} timeout by a spend tx, waiting for confirmation (at height {})", &payment_hash, entry.confirmation_threshold());
4357                                         self.onchain_events_awaiting_threshold_conf.push(entry);
4358                                 }
4359                         }
4360                 }
4361         }
4362
4363         fn get_spendable_outputs(&self, tx: &Transaction) -> Vec<SpendableOutputDescriptor> {
4364                 let mut spendable_outputs = Vec::new();
4365                 for (i, outp) in tx.output.iter().enumerate() {
4366                         if outp.script_pubkey == self.destination_script {
4367                                 spendable_outputs.push(SpendableOutputDescriptor::StaticOutput {
4368                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
4369                                         output: outp.clone(),
4370                                         channel_keys_id: Some(self.channel_keys_id),
4371                                 });
4372                         }
4373                         if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
4374                                 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
4375                                         spendable_outputs.push(SpendableOutputDescriptor::DelayedPaymentOutput(DelayedPaymentOutputDescriptor {
4376                                                 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
4377                                                 per_commitment_point: broadcasted_holder_revokable_script.1,
4378                                                 to_self_delay: self.on_holder_tx_csv,
4379                                                 output: outp.clone(),
4380                                                 revocation_pubkey: broadcasted_holder_revokable_script.2,
4381                                                 channel_keys_id: self.channel_keys_id,
4382                                                 channel_value_satoshis: self.channel_value_satoshis,
4383                                                 channel_transaction_parameters: Some(self.onchain_tx_handler.channel_transaction_parameters.clone()),
4384                                         }));
4385                                 }
4386                         }
4387                         if self.counterparty_payment_script == outp.script_pubkey {
4388                                 spendable_outputs.push(SpendableOutputDescriptor::StaticPaymentOutput(StaticPaymentOutputDescriptor {
4389                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
4390                                         output: outp.clone(),
4391                                         channel_keys_id: self.channel_keys_id,
4392                                         channel_value_satoshis: self.channel_value_satoshis,
4393                                         channel_transaction_parameters: Some(self.onchain_tx_handler.channel_transaction_parameters.clone()),
4394                                 }));
4395                         }
4396                         if self.shutdown_script.as_ref() == Some(&outp.script_pubkey) {
4397                                 spendable_outputs.push(SpendableOutputDescriptor::StaticOutput {
4398                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
4399                                         output: outp.clone(),
4400                                         channel_keys_id: Some(self.channel_keys_id),
4401                                 });
4402                         }
4403                 }
4404                 spendable_outputs
4405         }
4406
4407         /// Checks if the confirmed transaction is paying funds back to some address we can assume to
4408         /// own.
4409         fn check_tx_and_push_spendable_outputs<L: Deref>(
4410                 &mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &WithChannelMonitor<L>,
4411         ) where L::Target: Logger {
4412                 for spendable_output in self.get_spendable_outputs(tx) {
4413                         let entry = OnchainEventEntry {
4414                                 txid: tx.txid(),
4415                                 transaction: Some(tx.clone()),
4416                                 height,
4417                                 block_hash: Some(*block_hash),
4418                                 event: OnchainEvent::MaturingOutput { descriptor: spendable_output.clone() },
4419                         };
4420                         log_info!(logger, "Received spendable output {}, spendable at height {}", log_spendable!(spendable_output), entry.confirmation_threshold());
4421                         self.onchain_events_awaiting_threshold_conf.push(entry);
4422                 }
4423         }
4424 }
4425
4426 impl<Signer: EcdsaChannelSigner, T: Deref, F: Deref, L: Deref> chain::Listen for (ChannelMonitor<Signer>, T, F, L)
4427 where
4428         T::Target: BroadcasterInterface,
4429         F::Target: FeeEstimator,
4430         L::Target: Logger,
4431 {
4432         fn filtered_block_connected(&self, header: &Header, txdata: &TransactionData, height: u32) {
4433                 self.0.block_connected(header, txdata, height, &*self.1, &*self.2, &self.3);
4434         }
4435
4436         fn block_disconnected(&self, header: &Header, height: u32) {
4437                 self.0.block_disconnected(header, height, &*self.1, &*self.2, &self.3);
4438         }
4439 }
4440
4441 impl<Signer: EcdsaChannelSigner, M, T: Deref, F: Deref, L: Deref> chain::Confirm for (M, T, F, L)
4442 where
4443         M: Deref<Target = ChannelMonitor<Signer>>,
4444         T::Target: BroadcasterInterface,
4445         F::Target: FeeEstimator,
4446         L::Target: Logger,
4447 {
4448         fn transactions_confirmed(&self, header: &Header, txdata: &TransactionData, height: u32) {
4449                 self.0.transactions_confirmed(header, txdata, height, &*self.1, &*self.2, &self.3);
4450         }
4451
4452         fn transaction_unconfirmed(&self, txid: &Txid) {
4453                 self.0.transaction_unconfirmed(txid, &*self.1, &*self.2, &self.3);
4454         }
4455
4456         fn best_block_updated(&self, header: &Header, height: u32) {
4457                 self.0.best_block_updated(header, height, &*self.1, &*self.2, &self.3);
4458         }
4459
4460         fn get_relevant_txids(&self) -> Vec<(Txid, u32, Option<BlockHash>)> {
4461                 self.0.get_relevant_txids()
4462         }
4463 }
4464
4465 const MAX_ALLOC_SIZE: usize = 64*1024;
4466
4467 impl<'a, 'b, ES: EntropySource, SP: SignerProvider> ReadableArgs<(&'a ES, &'b SP)>
4468                 for (BlockHash, ChannelMonitor<SP::EcdsaSigner>) {
4469         fn read<R: io::Read>(reader: &mut R, args: (&'a ES, &'b SP)) -> Result<Self, DecodeError> {
4470                 macro_rules! unwrap_obj {
4471                         ($key: expr) => {
4472                                 match $key {
4473                                         Ok(res) => res,
4474                                         Err(_) => return Err(DecodeError::InvalidValue),
4475                                 }
4476                         }
4477                 }
4478
4479                 let (entropy_source, signer_provider) = args;
4480
4481                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
4482
4483                 let latest_update_id: u64 = Readable::read(reader)?;
4484                 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
4485
4486                 let destination_script = Readable::read(reader)?;
4487                 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
4488                         0 => {
4489                                 let revokable_address = Readable::read(reader)?;
4490                                 let per_commitment_point = Readable::read(reader)?;
4491                                 let revokable_script = Readable::read(reader)?;
4492                                 Some((revokable_address, per_commitment_point, revokable_script))
4493                         },
4494                         1 => { None },
4495                         _ => return Err(DecodeError::InvalidValue),
4496                 };
4497                 let mut counterparty_payment_script: ScriptBuf = Readable::read(reader)?;
4498                 let shutdown_script = {
4499                         let script = <ScriptBuf as Readable>::read(reader)?;
4500                         if script.is_empty() { None } else { Some(script) }
4501                 };
4502
4503                 let channel_keys_id = Readable::read(reader)?;
4504                 let holder_revocation_basepoint = Readable::read(reader)?;
4505                 // Technically this can fail and serialize fail a round-trip, but only for serialization of
4506                 // barely-init'd ChannelMonitors that we can't do anything with.
4507                 let outpoint = OutPoint {
4508                         txid: Readable::read(reader)?,
4509                         index: Readable::read(reader)?,
4510                 };
4511                 let funding_info = (outpoint, Readable::read(reader)?);
4512                 let current_counterparty_commitment_txid = Readable::read(reader)?;
4513                 let prev_counterparty_commitment_txid = Readable::read(reader)?;
4514
4515                 let counterparty_commitment_params = Readable::read(reader)?;
4516                 let funding_redeemscript = Readable::read(reader)?;
4517                 let channel_value_satoshis = Readable::read(reader)?;
4518
4519                 let their_cur_per_commitment_points = {
4520                         let first_idx = <U48 as Readable>::read(reader)?.0;
4521                         if first_idx == 0 {
4522                                 None
4523                         } else {
4524                                 let first_point = Readable::read(reader)?;
4525                                 let second_point_slice: [u8; 33] = Readable::read(reader)?;
4526                                 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
4527                                         Some((first_idx, first_point, None))
4528                                 } else {
4529                                         Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
4530                                 }
4531                         }
4532                 };
4533
4534                 let on_holder_tx_csv: u16 = Readable::read(reader)?;
4535
4536                 let commitment_secrets = Readable::read(reader)?;
4537
4538                 macro_rules! read_htlc_in_commitment {
4539                         () => {
4540                                 {
4541                                         let offered: bool = Readable::read(reader)?;
4542                                         let amount_msat: u64 = Readable::read(reader)?;
4543                                         let cltv_expiry: u32 = Readable::read(reader)?;
4544                                         let payment_hash: PaymentHash = Readable::read(reader)?;
4545                                         let transaction_output_index: Option<u32> = Readable::read(reader)?;
4546
4547                                         HTLCOutputInCommitment {
4548                                                 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
4549                                         }
4550                                 }
4551                         }
4552                 }
4553
4554                 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
4555                 let mut counterparty_claimable_outpoints = hash_map_with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
4556                 for _ in 0..counterparty_claimable_outpoints_len {
4557                         let txid: Txid = Readable::read(reader)?;
4558                         let htlcs_count: u64 = Readable::read(reader)?;
4559                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
4560                         for _ in 0..htlcs_count {
4561                                 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
4562                         }
4563                         if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
4564                                 return Err(DecodeError::InvalidValue);
4565                         }
4566                 }
4567
4568                 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
4569                 let mut counterparty_commitment_txn_on_chain = hash_map_with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
4570                 for _ in 0..counterparty_commitment_txn_on_chain_len {
4571                         let txid: Txid = Readable::read(reader)?;
4572                         let commitment_number = <U48 as Readable>::read(reader)?.0;
4573                         if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, commitment_number) {
4574                                 return Err(DecodeError::InvalidValue);
4575                         }
4576                 }
4577
4578                 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
4579                 let mut counterparty_hash_commitment_number = hash_map_with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
4580                 for _ in 0..counterparty_hash_commitment_number_len {
4581                         let payment_hash: PaymentHash = Readable::read(reader)?;
4582                         let commitment_number = <U48 as Readable>::read(reader)?.0;
4583                         if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
4584                                 return Err(DecodeError::InvalidValue);
4585                         }
4586                 }
4587
4588                 let mut prev_holder_signed_commitment_tx: Option<HolderSignedTx> =
4589                         match <u8 as Readable>::read(reader)? {
4590                                 0 => None,
4591                                 1 => {
4592                                         Some(Readable::read(reader)?)
4593                                 },
4594                                 _ => return Err(DecodeError::InvalidValue),
4595                         };
4596                 let mut current_holder_commitment_tx: HolderSignedTx = Readable::read(reader)?;
4597
4598                 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
4599                 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
4600
4601                 let payment_preimages_len: u64 = Readable::read(reader)?;
4602                 let mut payment_preimages = hash_map_with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
4603                 for _ in 0..payment_preimages_len {
4604                         let preimage: PaymentPreimage = Readable::read(reader)?;
4605                         let hash = PaymentHash(Sha256::hash(&preimage.0[..]).to_byte_array());
4606                         if let Some(_) = payment_preimages.insert(hash, preimage) {
4607                                 return Err(DecodeError::InvalidValue);
4608                         }
4609                 }
4610
4611                 let pending_monitor_events_len: u64 = Readable::read(reader)?;
4612                 let mut pending_monitor_events = Some(
4613                         Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3))));
4614                 for _ in 0..pending_monitor_events_len {
4615                         let ev = match <u8 as Readable>::read(reader)? {
4616                                 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
4617                                 1 => MonitorEvent::HolderForceClosed(funding_info.0),
4618                                 _ => return Err(DecodeError::InvalidValue)
4619                         };
4620                         pending_monitor_events.as_mut().unwrap().push(ev);
4621                 }
4622
4623                 let pending_events_len: u64 = Readable::read(reader)?;
4624                 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
4625                 for _ in 0..pending_events_len {
4626                         if let Some(event) = MaybeReadable::read(reader)? {
4627                                 pending_events.push(event);
4628                         }
4629                 }
4630
4631                 let best_block = BestBlock::new(Readable::read(reader)?, Readable::read(reader)?);
4632
4633                 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
4634                 let mut onchain_events_awaiting_threshold_conf = Vec::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
4635                 for _ in 0..waiting_threshold_conf_len {
4636                         if let Some(val) = MaybeReadable::read(reader)? {
4637                                 onchain_events_awaiting_threshold_conf.push(val);
4638                         }
4639                 }
4640
4641                 let outputs_to_watch_len: u64 = Readable::read(reader)?;
4642                 let mut outputs_to_watch = hash_map_with_capacity(cmp::min(outputs_to_watch_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<Txid>() + mem::size_of::<u32>() + mem::size_of::<Vec<ScriptBuf>>())));
4643                 for _ in 0..outputs_to_watch_len {
4644                         let txid = Readable::read(reader)?;
4645                         let outputs_len: u64 = Readable::read(reader)?;
4646                         let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<u32>() + mem::size_of::<ScriptBuf>())));
4647                         for _ in 0..outputs_len {
4648                                 outputs.push((Readable::read(reader)?, Readable::read(reader)?));
4649                         }
4650                         if let Some(_) = outputs_to_watch.insert(txid, outputs) {
4651                                 return Err(DecodeError::InvalidValue);
4652                         }
4653                 }
4654                 let onchain_tx_handler: OnchainTxHandler<SP::EcdsaSigner> = ReadableArgs::read(
4655                         reader, (entropy_source, signer_provider, channel_value_satoshis, channel_keys_id)
4656                 )?;
4657
4658                 let lockdown_from_offchain = Readable::read(reader)?;
4659                 let holder_tx_signed = Readable::read(reader)?;
4660
4661                 if let Some(prev_commitment_tx) = prev_holder_signed_commitment_tx.as_mut() {
4662                         let prev_holder_value = onchain_tx_handler.get_prev_holder_commitment_to_self_value();
4663                         if prev_holder_value.is_none() { return Err(DecodeError::InvalidValue); }
4664                         if prev_commitment_tx.to_self_value_sat == u64::max_value() {
4665                                 prev_commitment_tx.to_self_value_sat = prev_holder_value.unwrap();
4666                         } else if prev_commitment_tx.to_self_value_sat != prev_holder_value.unwrap() {
4667                                 return Err(DecodeError::InvalidValue);
4668                         }
4669                 }
4670
4671                 let cur_holder_value = onchain_tx_handler.get_cur_holder_commitment_to_self_value();
4672                 if current_holder_commitment_tx.to_self_value_sat == u64::max_value() {
4673                         current_holder_commitment_tx.to_self_value_sat = cur_holder_value;
4674                 } else if current_holder_commitment_tx.to_self_value_sat != cur_holder_value {
4675                         return Err(DecodeError::InvalidValue);
4676                 }
4677
4678                 let mut funding_spend_confirmed = None;
4679                 let mut htlcs_resolved_on_chain = Some(Vec::new());
4680                 let mut funding_spend_seen = Some(false);
4681                 let mut counterparty_node_id = None;
4682                 let mut confirmed_commitment_tx_counterparty_output = None;
4683                 let mut spendable_txids_confirmed = Some(Vec::new());
4684                 let mut counterparty_fulfilled_htlcs = Some(new_hash_map());
4685                 let mut initial_counterparty_commitment_info = None;
4686                 let mut balances_empty_height = None;
4687                 let mut channel_id = None;
4688                 read_tlv_fields!(reader, {
4689                         (1, funding_spend_confirmed, option),
4690                         (3, htlcs_resolved_on_chain, optional_vec),
4691                         (5, pending_monitor_events, optional_vec),
4692                         (7, funding_spend_seen, option),
4693                         (9, counterparty_node_id, option),
4694                         (11, confirmed_commitment_tx_counterparty_output, option),
4695                         (13, spendable_txids_confirmed, optional_vec),
4696                         (15, counterparty_fulfilled_htlcs, option),
4697                         (17, initial_counterparty_commitment_info, option),
4698                         (19, channel_id, option),
4699                         (21, balances_empty_height, option),
4700                 });
4701
4702                 // `HolderForceClosedWithInfo` replaced `HolderForceClosed` in v0.0.122. If we have both
4703                 // events, we can remove the `HolderForceClosed` event and just keep the `HolderForceClosedWithInfo`.
4704                 if let Some(ref mut pending_monitor_events) = pending_monitor_events {
4705                         if pending_monitor_events.iter().any(|e| matches!(e, MonitorEvent::HolderForceClosed(_))) &&
4706                                 pending_monitor_events.iter().any(|e| matches!(e, MonitorEvent::HolderForceClosedWithInfo { .. }))
4707                         {
4708                                 pending_monitor_events.retain(|e| !matches!(e, MonitorEvent::HolderForceClosed(_)));
4709                         }
4710                 }
4711
4712                 // Monitors for anchor outputs channels opened in v0.0.116 suffered from a bug in which the
4713                 // wrong `counterparty_payment_script` was being tracked. Fix it now on deserialization to
4714                 // give them a chance to recognize the spendable output.
4715                 if onchain_tx_handler.channel_type_features().supports_anchors_zero_fee_htlc_tx() &&
4716                         counterparty_payment_script.is_p2wpkh()
4717                 {
4718                         let payment_point = onchain_tx_handler.channel_transaction_parameters.holder_pubkeys.payment_point;
4719                         counterparty_payment_script =
4720                                 chan_utils::get_to_countersignatory_with_anchors_redeemscript(&payment_point).to_p2wsh();
4721                 }
4722
4723                 Ok((best_block.block_hash, ChannelMonitor::from_impl(ChannelMonitorImpl {
4724                         latest_update_id,
4725                         commitment_transaction_number_obscure_factor,
4726
4727                         destination_script,
4728                         broadcasted_holder_revokable_script,
4729                         counterparty_payment_script,
4730                         shutdown_script,
4731
4732                         channel_keys_id,
4733                         holder_revocation_basepoint,
4734                         channel_id: channel_id.unwrap_or(ChannelId::v1_from_funding_outpoint(outpoint)),
4735                         funding_info,
4736                         current_counterparty_commitment_txid,
4737                         prev_counterparty_commitment_txid,
4738
4739                         counterparty_commitment_params,
4740                         funding_redeemscript,
4741                         channel_value_satoshis,
4742                         their_cur_per_commitment_points,
4743
4744                         on_holder_tx_csv,
4745
4746                         commitment_secrets,
4747                         counterparty_claimable_outpoints,
4748                         counterparty_commitment_txn_on_chain,
4749                         counterparty_hash_commitment_number,
4750                         counterparty_fulfilled_htlcs: counterparty_fulfilled_htlcs.unwrap(),
4751
4752                         prev_holder_signed_commitment_tx,
4753                         current_holder_commitment_tx,
4754                         current_counterparty_commitment_number,
4755                         current_holder_commitment_number,
4756
4757                         payment_preimages,
4758                         pending_monitor_events: pending_monitor_events.unwrap(),
4759                         pending_events,
4760                         is_processing_pending_events: false,
4761
4762                         onchain_events_awaiting_threshold_conf,
4763                         outputs_to_watch,
4764
4765                         onchain_tx_handler,
4766
4767                         lockdown_from_offchain,
4768                         holder_tx_signed,
4769                         funding_spend_seen: funding_spend_seen.unwrap(),
4770                         funding_spend_confirmed,
4771                         confirmed_commitment_tx_counterparty_output,
4772                         htlcs_resolved_on_chain: htlcs_resolved_on_chain.unwrap(),
4773                         spendable_txids_confirmed: spendable_txids_confirmed.unwrap(),
4774
4775                         best_block,
4776                         counterparty_node_id,
4777                         initial_counterparty_commitment_info,
4778                         balances_empty_height,
4779                 })))
4780         }
4781 }
4782
4783 #[cfg(test)]
4784 mod tests {
4785         use bitcoin::amount::Amount;
4786         use bitcoin::blockdata::locktime::absolute::LockTime;
4787         use bitcoin::blockdata::script::{ScriptBuf, Builder};
4788         use bitcoin::blockdata::opcodes;
4789         use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, Version};
4790         use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
4791         use bitcoin::sighash;
4792         use bitcoin::sighash::EcdsaSighashType;
4793         use bitcoin::hashes::Hash;
4794         use bitcoin::hashes::sha256::Hash as Sha256;
4795         use bitcoin::hashes::hex::FromHex;
4796         use bitcoin::hash_types::{BlockHash, Txid};
4797         use bitcoin::network::Network;
4798         use bitcoin::secp256k1::{SecretKey,PublicKey};
4799         use bitcoin::secp256k1::Secp256k1;
4800         use bitcoin::{Sequence, Witness};
4801
4802         use crate::chain::chaininterface::LowerBoundedFeeEstimator;
4803
4804         use super::ChannelMonitorUpdateStep;
4805         use crate::{check_added_monitors, check_spends, get_local_commitment_txn, get_monitor, get_route_and_payment_hash, unwrap_send_err};
4806         use crate::chain::{BestBlock, Confirm};
4807         use crate::chain::channelmonitor::{ChannelMonitor, WithChannelMonitor};
4808         use crate::chain::package::{weight_offered_htlc, weight_received_htlc, weight_revoked_offered_htlc, weight_revoked_received_htlc, WEIGHT_REVOKED_OUTPUT};
4809         use crate::chain::transaction::OutPoint;
4810         use crate::sign::InMemorySigner;
4811         use crate::ln::types::{PaymentPreimage, PaymentHash, ChannelId};
4812         use crate::ln::channel_keys::{DelayedPaymentBasepoint, DelayedPaymentKey, HtlcBasepoint, RevocationBasepoint, RevocationKey};
4813         use crate::ln::chan_utils::{self,HTLCOutputInCommitment, ChannelPublicKeys, ChannelTransactionParameters, HolderCommitmentTransaction, CounterpartyChannelTransactionParameters};
4814         use crate::ln::channelmanager::{PaymentSendFailure, PaymentId, RecipientOnionFields};
4815         use crate::ln::functional_test_utils::*;
4816         use crate::ln::script::ShutdownScript;
4817         use crate::util::errors::APIError;
4818         use crate::util::test_utils::{TestLogger, TestBroadcaster, TestFeeEstimator};
4819         use crate::util::ser::{ReadableArgs, Writeable};
4820         use crate::util::logger::Logger;
4821         use crate::sync::{Arc, Mutex};
4822         use crate::io;
4823         use crate::ln::features::ChannelTypeFeatures;
4824
4825         #[allow(unused_imports)]
4826         use crate::prelude::*;
4827
4828         use std::str::FromStr;
4829
4830         fn do_test_funding_spend_refuses_updates(use_local_txn: bool) {
4831                 // Previously, monitor updates were allowed freely even after a funding-spend transaction
4832                 // confirmed. This would allow a race condition where we could receive a payment (including
4833                 // the counterparty revoking their broadcasted state!) and accept it without recourse as
4834                 // long as the ChannelMonitor receives the block first, the full commitment update dance
4835                 // occurs after the block is connected, and before the ChannelManager receives the block.
4836                 // Obviously this is an incredibly contrived race given the counterparty would be risking
4837                 // their full channel balance for it, but its worth fixing nonetheless as it makes the
4838                 // potential ChannelMonitor states simpler to reason about.
4839                 //
4840                 // This test checks said behavior, as well as ensuring a ChannelMonitorUpdate with multiple
4841                 // updates is handled correctly in such conditions.
4842                 let chanmon_cfgs = create_chanmon_cfgs(3);
4843                 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
4844                 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
4845                 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
4846                 let channel = create_announced_chan_between_nodes(&nodes, 0, 1);
4847                 create_announced_chan_between_nodes(&nodes, 1, 2);
4848
4849                 // Rebalance somewhat
4850                 send_payment(&nodes[0], &[&nodes[1]], 10_000_000);
4851
4852                 // First route two payments for testing at the end
4853                 let payment_preimage_1 = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000).0;
4854                 let payment_preimage_2 = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000).0;
4855
4856                 let local_txn = get_local_commitment_txn!(nodes[1], channel.2);
4857                 assert_eq!(local_txn.len(), 1);
4858                 let remote_txn = get_local_commitment_txn!(nodes[0], channel.2);
4859                 assert_eq!(remote_txn.len(), 3); // Commitment and two HTLC-Timeouts
4860                 check_spends!(remote_txn[1], remote_txn[0]);
4861                 check_spends!(remote_txn[2], remote_txn[0]);
4862                 let broadcast_tx = if use_local_txn { &local_txn[0] } else { &remote_txn[0] };
4863
4864                 // Connect a commitment transaction, but only to the ChainMonitor/ChannelMonitor. The
4865                 // channel is now closed, but the ChannelManager doesn't know that yet.
4866                 let new_header = create_dummy_header(nodes[0].best_block_info().0, 0);
4867                 let conf_height = nodes[0].best_block_info().1 + 1;
4868                 nodes[1].chain_monitor.chain_monitor.transactions_confirmed(&new_header,
4869                         &[(0, broadcast_tx)], conf_height);
4870
4871                 let (_, pre_update_monitor) = <(BlockHash, ChannelMonitor<InMemorySigner>)>::read(
4872                                                 &mut io::Cursor::new(&get_monitor!(nodes[1], channel.2).encode()),
4873                                                 (&nodes[1].keys_manager.backing, &nodes[1].keys_manager.backing)).unwrap();
4874
4875                 // If the ChannelManager tries to update the channel, however, the ChainMonitor will pass
4876                 // the update through to the ChannelMonitor which will refuse it (as the channel is closed).
4877                 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 100_000);
4878                 unwrap_send_err!(nodes[1].node.send_payment_with_route(&route, payment_hash,
4879                                 RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)
4880                         ), false, APIError::MonitorUpdateInProgress, {});
4881                 check_added_monitors!(nodes[1], 1);
4882
4883                 // Build a new ChannelMonitorUpdate which contains both the failing commitment tx update
4884                 // and provides the claim preimages for the two pending HTLCs. The first update generates
4885                 // an error, but the point of this test is to ensure the later updates are still applied.
4886                 let monitor_updates = nodes[1].chain_monitor.monitor_updates.lock().unwrap();
4887                 let mut replay_update = monitor_updates.get(&channel.2).unwrap().iter().rev().next().unwrap().clone();
4888                 assert_eq!(replay_update.updates.len(), 1);
4889                 if let ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { .. } = replay_update.updates[0] {
4890                 } else { panic!(); }
4891                 replay_update.updates.push(ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage: payment_preimage_1 });
4892                 replay_update.updates.push(ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage: payment_preimage_2 });
4893
4894                 let broadcaster = TestBroadcaster::with_blocks(Arc::clone(&nodes[1].blocks));
4895                 assert!(
4896                         pre_update_monitor.update_monitor(&replay_update, &&broadcaster, &&chanmon_cfgs[1].fee_estimator, &nodes[1].logger)
4897                         .is_err());
4898                 // Even though we error'd on the first update, we should still have generated an HTLC claim
4899                 // transaction
4900                 let txn_broadcasted = broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
4901                 assert!(txn_broadcasted.len() >= 2);
4902                 let htlc_txn = txn_broadcasted.iter().filter(|tx| {
4903                         assert_eq!(tx.input.len(), 1);
4904                         tx.input[0].previous_output.txid == broadcast_tx.txid()
4905                 }).collect::<Vec<_>>();
4906                 assert_eq!(htlc_txn.len(), 2);
4907                 check_spends!(htlc_txn[0], broadcast_tx);
4908                 check_spends!(htlc_txn[1], broadcast_tx);
4909         }
4910         #[test]
4911         fn test_funding_spend_refuses_updates() {
4912                 do_test_funding_spend_refuses_updates(true);
4913                 do_test_funding_spend_refuses_updates(false);
4914         }
4915
4916         #[test]
4917         fn test_prune_preimages() {
4918                 let secp_ctx = Secp256k1::new();
4919                 let logger = Arc::new(TestLogger::new());
4920                 let broadcaster = Arc::new(TestBroadcaster::new(Network::Testnet));
4921                 let fee_estimator = TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4922
4923                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
4924
4925                 let mut preimages = Vec::new();
4926                 {
4927                         for i in 0..20 {
4928                                 let preimage = PaymentPreimage([i; 32]);
4929                                 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).to_byte_array());
4930                                 preimages.push((preimage, hash));
4931                         }
4932                 }
4933
4934                 macro_rules! preimages_slice_to_htlcs {
4935                         ($preimages_slice: expr) => {
4936                                 {
4937                                         let mut res = Vec::new();
4938                                         for (idx, preimage) in $preimages_slice.iter().enumerate() {
4939                                                 res.push((HTLCOutputInCommitment {
4940                                                         offered: true,
4941                                                         amount_msat: 0,
4942                                                         cltv_expiry: 0,
4943                                                         payment_hash: preimage.1.clone(),
4944                                                         transaction_output_index: Some(idx as u32),
4945                                                 }, ()));
4946                                         }
4947                                         res
4948                                 }
4949                         }
4950                 }
4951                 macro_rules! preimages_slice_to_htlc_outputs {
4952                         ($preimages_slice: expr) => {
4953                                 preimages_slice_to_htlcs!($preimages_slice).into_iter().map(|(htlc, _)| (htlc, None)).collect()
4954                         }
4955                 }
4956                 let dummy_sig = crate::crypto::utils::sign(&secp_ctx,
4957                         &bitcoin::secp256k1::Message::from_digest([42; 32]),
4958                         &SecretKey::from_slice(&[42; 32]).unwrap());
4959
4960                 macro_rules! test_preimages_exist {
4961                         ($preimages_slice: expr, $monitor: expr) => {
4962                                 for preimage in $preimages_slice {
4963                                         assert!($monitor.inner.lock().unwrap().payment_preimages.contains_key(&preimage.1));
4964                                 }
4965                         }
4966                 }
4967
4968                 let keys = InMemorySigner::new(
4969                         &secp_ctx,
4970                         SecretKey::from_slice(&[41; 32]).unwrap(),
4971                         SecretKey::from_slice(&[41; 32]).unwrap(),
4972                         SecretKey::from_slice(&[41; 32]).unwrap(),
4973                         SecretKey::from_slice(&[41; 32]).unwrap(),
4974                         SecretKey::from_slice(&[41; 32]).unwrap(),
4975                         [41; 32],
4976                         0,
4977                         [0; 32],
4978                         [0; 32],
4979                 );
4980
4981                 let counterparty_pubkeys = ChannelPublicKeys {
4982                         funding_pubkey: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
4983                         revocation_basepoint: RevocationBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap())),
4984                         payment_point: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[46; 32]).unwrap()),
4985                         delayed_payment_basepoint: DelayedPaymentBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[47; 32]).unwrap())),
4986                         htlc_basepoint: HtlcBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[48; 32]).unwrap()))
4987                 };
4988                 let funding_outpoint = OutPoint { txid: Txid::all_zeros(), index: u16::max_value() };
4989                 let channel_id = ChannelId::v1_from_funding_outpoint(funding_outpoint);
4990                 let channel_parameters = ChannelTransactionParameters {
4991                         holder_pubkeys: keys.holder_channel_pubkeys.clone(),
4992                         holder_selected_contest_delay: 66,
4993                         is_outbound_from_holder: true,
4994                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters {
4995                                 pubkeys: counterparty_pubkeys,
4996                                 selected_contest_delay: 67,
4997                         }),
4998                         funding_outpoint: Some(funding_outpoint),
4999                         channel_type_features: ChannelTypeFeatures::only_static_remote_key()
5000                 };
5001                 // Prune with one old state and a holder commitment tx holding a few overlaps with the
5002                 // old state.
5003                 let shutdown_pubkey = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
5004                 let best_block = BestBlock::from_network(Network::Testnet);
5005                 let monitor = ChannelMonitor::new(Secp256k1::new(), keys,
5006                         Some(ShutdownScript::new_p2wpkh_from_pubkey(shutdown_pubkey).into_inner()), 0, &ScriptBuf::new(),
5007                         (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, ScriptBuf::new()),
5008                         &channel_parameters, ScriptBuf::new(), 46, 0, HolderCommitmentTransaction::dummy(&mut Vec::new()),
5009                         best_block, dummy_key, channel_id);
5010
5011                 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..10]);
5012                 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
5013
5014                 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx.clone(),
5015                         htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
5016                 monitor.provide_latest_counterparty_commitment_tx(Txid::from_byte_array(Sha256::hash(b"1").to_byte_array()),
5017                         preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
5018                 monitor.provide_latest_counterparty_commitment_tx(Txid::from_byte_array(Sha256::hash(b"2").to_byte_array()),
5019                         preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
5020                 for &(ref preimage, ref hash) in preimages.iter() {
5021                         let bounded_fee_estimator = LowerBoundedFeeEstimator::new(&fee_estimator);
5022                         monitor.provide_payment_preimage(hash, preimage, &broadcaster, &bounded_fee_estimator, &logger);
5023                 }
5024
5025                 // Now provide a secret, pruning preimages 10-15
5026                 let mut secret = [0; 32];
5027                 secret[0..32].clone_from_slice(&<Vec<u8>>::from_hex("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
5028                 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
5029                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 15);
5030                 test_preimages_exist!(&preimages[0..10], monitor);
5031                 test_preimages_exist!(&preimages[15..20], monitor);
5032
5033                 monitor.provide_latest_counterparty_commitment_tx(Txid::from_byte_array(Sha256::hash(b"3").to_byte_array()),
5034                         preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
5035
5036                 // Now provide a further secret, pruning preimages 15-17
5037                 secret[0..32].clone_from_slice(&<Vec<u8>>::from_hex("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
5038                 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
5039                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 13);
5040                 test_preimages_exist!(&preimages[0..10], monitor);
5041                 test_preimages_exist!(&preimages[17..20], monitor);
5042
5043                 monitor.provide_latest_counterparty_commitment_tx(Txid::from_byte_array(Sha256::hash(b"4").to_byte_array()),
5044                         preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
5045
5046                 // Now update holder commitment tx info, pruning only element 18 as we still care about the
5047                 // previous commitment tx's preimages too
5048                 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..5]);
5049                 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
5050                 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx.clone(),
5051                         htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
5052                 secret[0..32].clone_from_slice(&<Vec<u8>>::from_hex("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
5053                 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
5054                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 12);
5055                 test_preimages_exist!(&preimages[0..10], monitor);
5056                 test_preimages_exist!(&preimages[18..20], monitor);
5057
5058                 // But if we do it again, we'll prune 5-10
5059                 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..3]);
5060                 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
5061                 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx,
5062                         htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
5063                 secret[0..32].clone_from_slice(&<Vec<u8>>::from_hex("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
5064                 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
5065                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 5);
5066                 test_preimages_exist!(&preimages[0..5], monitor);
5067         }
5068
5069         #[test]
5070         fn test_claim_txn_weight_computation() {
5071                 // We test Claim txn weight, knowing that we want expected weigth and
5072                 // not actual case to avoid sigs and time-lock delays hell variances.
5073
5074                 let secp_ctx = Secp256k1::new();
5075                 let privkey = SecretKey::from_slice(&<Vec<u8>>::from_hex("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
5076                 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
5077
5078                 use crate::ln::channel_keys::{HtlcKey, HtlcBasepoint};
5079                 macro_rules! sign_input {
5080                         ($sighash_parts: expr, $idx: expr, $amount: expr, $weight: expr, $sum_actual_sigs: expr, $opt_anchors: expr) => {
5081                                 let htlc = HTLCOutputInCommitment {
5082                                         offered: if *$weight == weight_revoked_offered_htlc($opt_anchors) || *$weight == weight_offered_htlc($opt_anchors) { true } else { false },
5083                                         amount_msat: 0,
5084                                         cltv_expiry: 2 << 16,
5085                                         payment_hash: PaymentHash([1; 32]),
5086                                         transaction_output_index: Some($idx as u32),
5087                                 };
5088                                 let redeem_script = if *$weight == WEIGHT_REVOKED_OUTPUT { chan_utils::get_revokeable_redeemscript(&RevocationKey::from_basepoint(&secp_ctx, &RevocationBasepoint::from(pubkey), &pubkey), 256, &DelayedPaymentKey::from_basepoint(&secp_ctx, &DelayedPaymentBasepoint::from(pubkey), &pubkey)) } else { chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, $opt_anchors, &HtlcKey::from_basepoint(&secp_ctx, &HtlcBasepoint::from(pubkey), &pubkey), &HtlcKey::from_basepoint(&secp_ctx, &HtlcBasepoint::from(pubkey), &pubkey), &RevocationKey::from_basepoint(&secp_ctx, &RevocationBasepoint::from(pubkey), &pubkey)) };
5089                                 let sighash = hash_to_message!(&$sighash_parts.p2wsh_signature_hash($idx, &redeem_script, $amount, EcdsaSighashType::All).unwrap()[..]);
5090                                 let sig = secp_ctx.sign_ecdsa(&sighash, &privkey);
5091                                 let mut ser_sig = sig.serialize_der().to_vec();
5092                                 ser_sig.push(EcdsaSighashType::All as u8);
5093                                 $sum_actual_sigs += ser_sig.len() as u64;
5094                                 let witness = $sighash_parts.witness_mut($idx).unwrap();
5095                                 witness.push(ser_sig);
5096                                 if *$weight == WEIGHT_REVOKED_OUTPUT {
5097                                         witness.push(vec!(1));
5098                                 } else if *$weight == weight_revoked_offered_htlc($opt_anchors) || *$weight == weight_revoked_received_htlc($opt_anchors) {
5099                                         witness.push(pubkey.clone().serialize().to_vec());
5100                                 } else if *$weight == weight_received_htlc($opt_anchors) {
5101                                         witness.push(vec![0]);
5102                                 } else {
5103                                         witness.push(PaymentPreimage([1; 32]).0.to_vec());
5104                                 }
5105                                 witness.push(redeem_script.into_bytes());
5106                                 let witness = witness.to_vec();
5107                                 println!("witness[0] {}", witness[0].len());
5108                                 println!("witness[1] {}", witness[1].len());
5109                                 println!("witness[2] {}", witness[2].len());
5110                         }
5111                 }
5112
5113                 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
5114                 let txid = Txid::from_str("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
5115
5116                 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
5117                 for channel_type_features in [ChannelTypeFeatures::only_static_remote_key(), ChannelTypeFeatures::anchors_zero_htlc_fee_and_dependencies()].iter() {
5118                         let mut claim_tx = Transaction { version: Version(0), lock_time: LockTime::ZERO, input: Vec::new(), output: Vec::new() };
5119                         let mut sum_actual_sigs = 0;
5120                         for i in 0..4 {
5121                                 claim_tx.input.push(TxIn {
5122                                         previous_output: BitcoinOutPoint {
5123                                                 txid,
5124                                                 vout: i,
5125                                         },
5126                                         script_sig: ScriptBuf::new(),
5127                                         sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
5128                                         witness: Witness::new(),
5129                                 });
5130                         }
5131                         claim_tx.output.push(TxOut {
5132                                 script_pubkey: script_pubkey.clone(),
5133                                 value: Amount::ZERO,
5134                         });
5135                         let base_weight = claim_tx.weight().to_wu();
5136                         let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT, weight_revoked_offered_htlc(channel_type_features), weight_revoked_offered_htlc(channel_type_features), weight_revoked_received_htlc(channel_type_features)];
5137                         let mut inputs_total_weight = 2; // count segwit flags
5138                         {
5139                                 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
5140                                 for (idx, inp) in inputs_weight.iter().enumerate() {
5141                                         sign_input!(sighash_parts, idx, Amount::ZERO, inp, sum_actual_sigs, channel_type_features);
5142                                         inputs_total_weight += inp;
5143                                 }
5144                         }
5145                         assert_eq!(base_weight + inputs_total_weight, claim_tx.weight().to_wu() + /* max_length_sig */ (73 * inputs_weight.len() as u64 - sum_actual_sigs));
5146                 }
5147
5148                 // Claim tx with 1 offered HTLCs, 3 received HTLCs
5149                 for channel_type_features in [ChannelTypeFeatures::only_static_remote_key(), ChannelTypeFeatures::anchors_zero_htlc_fee_and_dependencies()].iter() {
5150                         let mut claim_tx = Transaction { version: Version(0), lock_time: LockTime::ZERO, input: Vec::new(), output: Vec::new() };
5151                         let mut sum_actual_sigs = 0;
5152                         for i in 0..4 {
5153                                 claim_tx.input.push(TxIn {
5154                                         previous_output: BitcoinOutPoint {
5155                                                 txid,
5156                                                 vout: i,
5157                                         },
5158                                         script_sig: ScriptBuf::new(),
5159                                         sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
5160                                         witness: Witness::new(),
5161                                 });
5162                         }
5163                         claim_tx.output.push(TxOut {
5164                                 script_pubkey: script_pubkey.clone(),
5165                                 value: Amount::ZERO,
5166                         });
5167                         let base_weight = claim_tx.weight().to_wu();
5168                         let inputs_weight = vec![weight_offered_htlc(channel_type_features), weight_received_htlc(channel_type_features), weight_received_htlc(channel_type_features), weight_received_htlc(channel_type_features)];
5169                         let mut inputs_total_weight = 2; // count segwit flags
5170                         {
5171                                 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
5172                                 for (idx, inp) in inputs_weight.iter().enumerate() {
5173                                         sign_input!(sighash_parts, idx, Amount::ZERO, inp, sum_actual_sigs, channel_type_features);
5174                                         inputs_total_weight += inp;
5175                                 }
5176                         }
5177                         assert_eq!(base_weight + inputs_total_weight, claim_tx.weight().to_wu() + /* max_length_sig */ (73 * inputs_weight.len() as u64 - sum_actual_sigs));
5178                 }
5179
5180                 // Justice tx with 1 revoked HTLC-Success tx output
5181                 for channel_type_features in [ChannelTypeFeatures::only_static_remote_key(), ChannelTypeFeatures::anchors_zero_htlc_fee_and_dependencies()].iter() {
5182                         let mut claim_tx = Transaction { version: Version(0), lock_time: LockTime::ZERO, input: Vec::new(), output: Vec::new() };
5183                         let mut sum_actual_sigs = 0;
5184                         claim_tx.input.push(TxIn {
5185                                 previous_output: BitcoinOutPoint {
5186                                         txid,
5187                                         vout: 0,
5188                                 },
5189                                 script_sig: ScriptBuf::new(),
5190                                 sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
5191                                 witness: Witness::new(),
5192                         });
5193                         claim_tx.output.push(TxOut {
5194                                 script_pubkey: script_pubkey.clone(),
5195                                 value: Amount::ZERO,
5196                         });
5197                         let base_weight = claim_tx.weight().to_wu();
5198                         let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT];
5199                         let mut inputs_total_weight = 2; // count segwit flags
5200                         {
5201                                 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
5202                                 for (idx, inp) in inputs_weight.iter().enumerate() {
5203                                         sign_input!(sighash_parts, idx, Amount::ZERO, inp, sum_actual_sigs, channel_type_features);
5204                                         inputs_total_weight += inp;
5205                                 }
5206                         }
5207                         assert_eq!(base_weight + inputs_total_weight, claim_tx.weight().to_wu() + /* max_length_isg */ (73 * inputs_weight.len() as u64 - sum_actual_sigs));
5208                 }
5209         }
5210
5211         #[test]
5212         fn test_with_channel_monitor_impl_logger() {
5213                 let secp_ctx = Secp256k1::new();
5214                 let logger = Arc::new(TestLogger::new());
5215
5216                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
5217
5218                 let keys = InMemorySigner::new(
5219                         &secp_ctx,
5220                         SecretKey::from_slice(&[41; 32]).unwrap(),
5221                         SecretKey::from_slice(&[41; 32]).unwrap(),
5222                         SecretKey::from_slice(&[41; 32]).unwrap(),
5223                         SecretKey::from_slice(&[41; 32]).unwrap(),
5224                         SecretKey::from_slice(&[41; 32]).unwrap(),
5225                         [41; 32],
5226                         0,
5227                         [0; 32],
5228                         [0; 32],
5229                 );
5230
5231                 let counterparty_pubkeys = ChannelPublicKeys {
5232                         funding_pubkey: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
5233                         revocation_basepoint: RevocationBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap())),
5234                         payment_point: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[46; 32]).unwrap()),
5235                         delayed_payment_basepoint: DelayedPaymentBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[47; 32]).unwrap())),
5236                         htlc_basepoint: HtlcBasepoint::from(PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[48; 32]).unwrap())),
5237                 };
5238                 let funding_outpoint = OutPoint { txid: Txid::all_zeros(), index: u16::max_value() };
5239                 let channel_id = ChannelId::v1_from_funding_outpoint(funding_outpoint);
5240                 let channel_parameters = ChannelTransactionParameters {
5241                         holder_pubkeys: keys.holder_channel_pubkeys.clone(),
5242                         holder_selected_contest_delay: 66,
5243                         is_outbound_from_holder: true,
5244                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters {
5245                                 pubkeys: counterparty_pubkeys,
5246                                 selected_contest_delay: 67,
5247                         }),
5248                         funding_outpoint: Some(funding_outpoint),
5249                         channel_type_features: ChannelTypeFeatures::only_static_remote_key()
5250                 };
5251                 let shutdown_pubkey = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
5252                 let best_block = BestBlock::from_network(Network::Testnet);
5253                 let monitor = ChannelMonitor::new(Secp256k1::new(), keys,
5254                         Some(ShutdownScript::new_p2wpkh_from_pubkey(shutdown_pubkey).into_inner()), 0, &ScriptBuf::new(),
5255                         (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, ScriptBuf::new()),
5256                         &channel_parameters, ScriptBuf::new(), 46, 0, HolderCommitmentTransaction::dummy(&mut Vec::new()),
5257                         best_block, dummy_key, channel_id);
5258
5259                 let chan_id = monitor.inner.lock().unwrap().channel_id();
5260                 let payment_hash = PaymentHash([1; 32]);
5261                 let context_logger = WithChannelMonitor::from(&logger, &monitor, Some(payment_hash));
5262                 log_error!(context_logger, "This is an error");
5263                 log_warn!(context_logger, "This is an error");
5264                 log_debug!(context_logger, "This is an error");
5265                 log_trace!(context_logger, "This is an error");
5266                 log_gossip!(context_logger, "This is an error");
5267                 log_info!(context_logger, "This is an error");
5268                 logger.assert_log_context_contains("lightning::chain::channelmonitor::tests", Some(dummy_key), Some(chan_id), 6);
5269         }
5270         // Further testing is done in the ChannelManager integration tests.
5271 }