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