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