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