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