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