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