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