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