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