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