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