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