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