1 // This file is Copyright its original authors, visible in version control
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
10 //! The logic to monitor for on-chain transactions and create the relevant claim responses lives
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.
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.
23 use bitcoin::blockdata::block::BlockHeader;
24 use bitcoin::blockdata::transaction::{OutPoint as BitcoinOutPoint, TxOut, Transaction};
25 use bitcoin::blockdata::script::{Script, Builder};
26 use bitcoin::blockdata::opcodes;
28 use bitcoin::hashes::Hash;
29 use bitcoin::hashes::sha256::Hash as Sha256;
30 use bitcoin::hash_types::{Txid, BlockHash, WPubkeyHash};
32 use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature};
33 use bitcoin::secp256k1::{SecretKey, PublicKey};
34 use bitcoin::secp256k1;
36 use crate::ln::{PaymentHash, PaymentPreimage};
37 use crate::ln::msgs::DecodeError;
38 use crate::ln::chan_utils;
39 use crate::ln::chan_utils::{CounterpartyCommitmentSecrets, HTLCOutputInCommitment, HTLCClaim, ChannelTransactionParameters, HolderCommitmentTransaction};
40 use crate::ln::channelmanager::{HTLCSource, SentHTLCId};
42 use crate::chain::{BestBlock, WatchedOutput};
43 use crate::chain::chaininterface::{BroadcasterInterface, FeeEstimator, LowerBoundedFeeEstimator};
44 use crate::chain::transaction::{OutPoint, TransactionData};
45 use crate::chain::keysinterface::{SpendableOutputDescriptor, StaticPaymentOutputDescriptor, DelayedPaymentOutputDescriptor, WriteableEcdsaChannelSigner, SignerProvider, EntropySource};
47 use crate::chain::onchaintx::ClaimEvent;
48 use crate::chain::onchaintx::OnchainTxHandler;
49 use crate::chain::package::{CounterpartyOfferedHTLCOutput, CounterpartyReceivedHTLCOutput, HolderFundingOutput, HolderHTLCOutput, PackageSolvingData, PackageTemplate, RevokedOutput, RevokedHTLCOutput};
50 use crate::chain::Filter;
51 use crate::util::logger::Logger;
52 use crate::util::ser::{Readable, ReadableArgs, RequiredWrapper, MaybeReadable, UpgradableRequired, Writer, Writeable, U48};
53 use crate::util::byte_utils;
54 use crate::events::Event;
56 use crate::events::bump_transaction::{AnchorDescriptor, HTLCDescriptor, BumpTransactionEvent};
58 use crate::prelude::*;
60 use crate::io::{self, Error};
61 use core::convert::TryInto;
63 use crate::sync::{Mutex, LockTestExt};
65 /// An update generated by the underlying channel itself which contains some new information the
66 /// [`ChannelMonitor`] should be made aware of.
68 /// Because this represents only a small number of updates to the underlying state, it is generally
69 /// much smaller than a full [`ChannelMonitor`]. However, for large single commitment transaction
70 /// updates (e.g. ones during which there are hundreds of HTLCs pending on the commitment
71 /// transaction), a single update may reach upwards of 1 MiB in serialized size.
72 #[derive(Clone, PartialEq, Eq)]
74 pub struct ChannelMonitorUpdate {
75 pub(crate) updates: Vec<ChannelMonitorUpdateStep>,
76 /// The sequence number of this update. Updates *must* be replayed in-order according to this
77 /// sequence number (and updates may panic if they are not). The update_id values are strictly
78 /// increasing and increase by one for each new update, with two exceptions specified below.
80 /// This sequence number is also used to track up to which points updates which returned
81 /// [`ChannelMonitorUpdateStatus::InProgress`] have been applied to all copies of a given
82 /// ChannelMonitor when ChannelManager::channel_monitor_updated is called.
84 /// The only instances we allow where update_id values are not strictly increasing have a
85 /// special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. This update ID is used for updates that
86 /// will force close the channel by broadcasting the latest commitment transaction or
87 /// special post-force-close updates, like providing preimages necessary to claim outputs on the
88 /// broadcast commitment transaction. See its docs for more details.
90 /// [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
94 /// The update ID used for a [`ChannelMonitorUpdate`] that is either:
96 /// (1) attempting to force close the channel by broadcasting our latest commitment transaction or
97 /// (2) providing a preimage (after the channel has been force closed) from a forward link that
98 /// allows us to spend an HTLC output on this channel's (the backward link's) broadcasted
99 /// commitment transaction.
101 /// No other [`ChannelMonitorUpdate`]s are allowed after force-close.
102 pub const CLOSED_CHANNEL_UPDATE_ID: u64 = core::u64::MAX;
104 impl Writeable for ChannelMonitorUpdate {
105 fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
106 write_ver_prefix!(w, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
107 self.update_id.write(w)?;
108 (self.updates.len() as u64).write(w)?;
109 for update_step in self.updates.iter() {
110 update_step.write(w)?;
112 write_tlv_fields!(w, {});
116 impl Readable for ChannelMonitorUpdate {
117 fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
118 let _ver = read_ver_prefix!(r, SERIALIZATION_VERSION);
119 let update_id: u64 = Readable::read(r)?;
120 let len: u64 = Readable::read(r)?;
121 let mut updates = Vec::with_capacity(cmp::min(len as usize, MAX_ALLOC_SIZE / ::core::mem::size_of::<ChannelMonitorUpdateStep>()));
123 if let Some(upd) = MaybeReadable::read(r)? {
127 read_tlv_fields!(r, {});
128 Ok(Self { update_id, updates })
132 /// An event to be processed by the ChannelManager.
133 #[derive(Clone, PartialEq, Eq)]
134 pub enum MonitorEvent {
135 /// A monitor event containing an HTLCUpdate.
136 HTLCEvent(HTLCUpdate),
138 /// A monitor event that the Channel's commitment transaction was confirmed.
139 CommitmentTxConfirmed(OutPoint),
141 /// Indicates a [`ChannelMonitor`] update has completed. See
142 /// [`ChannelMonitorUpdateStatus::InProgress`] for more information on how this is used.
144 /// [`ChannelMonitorUpdateStatus::InProgress`]: super::ChannelMonitorUpdateStatus::InProgress
146 /// The funding outpoint of the [`ChannelMonitor`] that was updated
147 funding_txo: OutPoint,
148 /// The Update ID from [`ChannelMonitorUpdate::update_id`] which was applied or
149 /// [`ChannelMonitor::get_latest_update_id`].
151 /// Note that this should only be set to a given update's ID if all previous updates for the
152 /// same [`ChannelMonitor`] have been applied and persisted.
153 monitor_update_id: u64,
156 /// Indicates a [`ChannelMonitor`] update has failed. See
157 /// [`ChannelMonitorUpdateStatus::PermanentFailure`] for more information on how this is used.
159 /// [`ChannelMonitorUpdateStatus::PermanentFailure`]: super::ChannelMonitorUpdateStatus::PermanentFailure
160 UpdateFailed(OutPoint),
162 impl_writeable_tlv_based_enum_upgradable!(MonitorEvent,
163 // Note that Completed and UpdateFailed are currently never serialized to disk as they are
164 // generated only in ChainMonitor
166 (0, funding_txo, required),
167 (2, monitor_update_id, required),
171 (4, CommitmentTxConfirmed),
175 /// Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
176 /// chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
177 /// preimage claim backward will lead to loss of funds.
178 #[derive(Clone, PartialEq, Eq)]
179 pub struct HTLCUpdate {
180 pub(crate) payment_hash: PaymentHash,
181 pub(crate) payment_preimage: Option<PaymentPreimage>,
182 pub(crate) source: HTLCSource,
183 pub(crate) htlc_value_satoshis: Option<u64>,
185 impl_writeable_tlv_based!(HTLCUpdate, {
186 (0, payment_hash, required),
187 (1, htlc_value_satoshis, option),
188 (2, source, required),
189 (4, payment_preimage, option),
192 /// If an HTLC expires within this many blocks, don't try to claim it in a shared transaction,
193 /// instead claiming it in its own individual transaction.
194 pub(crate) const CLTV_SHARED_CLAIM_BUFFER: u32 = 12;
195 /// If an HTLC expires within this many blocks, force-close the channel to broadcast the
196 /// HTLC-Success transaction.
197 /// In other words, this is an upper bound on how many blocks we think it can take us to get a
198 /// transaction confirmed (and we use it in a few more, equivalent, places).
199 pub(crate) const CLTV_CLAIM_BUFFER: u32 = 18;
200 /// Number of blocks by which point we expect our counterparty to have seen new blocks on the
201 /// network and done a full update_fail_htlc/commitment_signed dance (+ we've updated all our
202 /// copies of ChannelMonitors, including watchtowers). We could enforce the contract by failing
203 /// at CLTV expiration height but giving a grace period to our peer may be profitable for us if he
204 /// can provide an over-late preimage. Nevertheless, grace period has to be accounted in our
205 /// CLTV_EXPIRY_DELTA to be secure. Following this policy we may decrease the rate of channel failures
206 /// due to expiration but increase the cost of funds being locked longuer in case of failure.
207 /// This delay also cover a low-power peer being slow to process blocks and so being behind us on
208 /// accurate block height.
209 /// In case of onchain failure to be pass backward we may see the last block of ANTI_REORG_DELAY
210 /// with at worst this delay, so we are not only using this value as a mercy for them but also
211 /// us as a safeguard to delay with enough time.
212 pub(crate) const LATENCY_GRACE_PERIOD_BLOCKS: u32 = 3;
213 /// Number of blocks we wait on seeing a HTLC output being solved before we fail corresponding
214 /// inbound HTLCs. This prevents us from failing backwards and then getting a reorg resulting in us
217 /// Note that this is a library-wide security assumption. If a reorg deeper than this number of
218 /// blocks occurs, counterparties may be able to steal funds or claims made by and balances exposed
219 /// by a [`ChannelMonitor`] may be incorrect.
220 // We also use this delay to be sure we can remove our in-flight claim txn from bump candidates buffer.
221 // It may cause spurious generation of bumped claim txn but that's alright given the outpoint is already
222 // solved by a previous claim tx. What we want to avoid is reorg evicting our claim tx and us not
223 // keep bumping another claim tx to solve the outpoint.
224 pub const ANTI_REORG_DELAY: u32 = 6;
225 /// Number of blocks before confirmation at which we fail back an un-relayed HTLC or at which we
226 /// refuse to accept a new HTLC.
228 /// This is used for a few separate purposes:
229 /// 1) if we've received an MPP HTLC to us and it expires within this many blocks and we are
230 /// waiting on additional parts (or waiting on the preimage for any HTLC from the user), we will
232 /// 2) if we receive an HTLC within this many blocks of its expiry (plus one to avoid a race
233 /// condition with the above), we will fail this HTLC without telling the user we received it,
235 /// (1) is all about protecting us - we need enough time to update the channel state before we hit
236 /// CLTV_CLAIM_BUFFER, at which point we'd go on chain to claim the HTLC with the preimage.
238 /// (2) is the same, but with an additional buffer to avoid accepting an HTLC which is immediately
239 /// in a race condition between the user connecting a block (which would fail it) and the user
240 /// providing us the preimage (which would claim it).
241 pub(crate) const HTLC_FAIL_BACK_BUFFER: u32 = CLTV_CLAIM_BUFFER + LATENCY_GRACE_PERIOD_BLOCKS;
243 // TODO(devrandom) replace this with HolderCommitmentTransaction
244 #[derive(Clone, PartialEq, Eq)]
245 struct HolderSignedTx {
246 /// txid of the transaction in tx, just used to make comparison faster
248 revocation_key: PublicKey,
249 a_htlc_key: PublicKey,
250 b_htlc_key: PublicKey,
251 delayed_payment_key: PublicKey,
252 per_commitment_point: PublicKey,
253 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
254 to_self_value_sat: u64,
257 impl_writeable_tlv_based!(HolderSignedTx, {
259 // Note that this is filled in with data from OnchainTxHandler if it's missing.
260 // For HolderSignedTx objects serialized with 0.0.100+, this should be filled in.
261 (1, to_self_value_sat, (default_value, u64::max_value())),
262 (2, revocation_key, required),
263 (4, a_htlc_key, required),
264 (6, b_htlc_key, required),
265 (8, delayed_payment_key, required),
266 (10, per_commitment_point, required),
267 (12, feerate_per_kw, required),
268 (14, htlc_outputs, vec_type)
272 impl HolderSignedTx {
273 fn non_dust_htlcs(&self) -> Vec<HTLCOutputInCommitment> {
274 self.htlc_outputs.iter().filter_map(|(htlc, _, _)| {
275 if let Some(_) = htlc.transaction_output_index {
285 /// We use this to track static counterparty commitment transaction data and to generate any
286 /// justice or 2nd-stage preimage/timeout transactions.
287 #[derive(PartialEq, Eq)]
288 struct CounterpartyCommitmentParameters {
289 counterparty_delayed_payment_base_key: PublicKey,
290 counterparty_htlc_base_key: PublicKey,
291 on_counterparty_tx_csv: u16,
294 impl Writeable for CounterpartyCommitmentParameters {
295 fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
296 w.write_all(&(0 as u64).to_be_bytes())?;
297 write_tlv_fields!(w, {
298 (0, self.counterparty_delayed_payment_base_key, required),
299 (2, self.counterparty_htlc_base_key, required),
300 (4, self.on_counterparty_tx_csv, required),
305 impl Readable for CounterpartyCommitmentParameters {
306 fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
307 let counterparty_commitment_transaction = {
308 // Versions prior to 0.0.100 had some per-HTLC state stored here, which is no longer
309 // used. Read it for compatibility.
310 let per_htlc_len: u64 = Readable::read(r)?;
311 for _ in 0..per_htlc_len {
312 let _txid: Txid = Readable::read(r)?;
313 let htlcs_count: u64 = Readable::read(r)?;
314 for _ in 0..htlcs_count {
315 let _htlc: HTLCOutputInCommitment = Readable::read(r)?;
319 let mut counterparty_delayed_payment_base_key = RequiredWrapper(None);
320 let mut counterparty_htlc_base_key = RequiredWrapper(None);
321 let mut on_counterparty_tx_csv: u16 = 0;
322 read_tlv_fields!(r, {
323 (0, counterparty_delayed_payment_base_key, required),
324 (2, counterparty_htlc_base_key, required),
325 (4, on_counterparty_tx_csv, required),
327 CounterpartyCommitmentParameters {
328 counterparty_delayed_payment_base_key: counterparty_delayed_payment_base_key.0.unwrap(),
329 counterparty_htlc_base_key: counterparty_htlc_base_key.0.unwrap(),
330 on_counterparty_tx_csv,
333 Ok(counterparty_commitment_transaction)
337 /// An entry for an [`OnchainEvent`], stating the block height and hash when the event was
338 /// observed, as well as the transaction causing it.
340 /// Used to determine when the on-chain event can be considered safe from a chain reorganization.
341 #[derive(PartialEq, Eq)]
342 struct OnchainEventEntry {
345 block_hash: Option<BlockHash>, // Added as optional, will be filled in for any entry generated on 0.0.113 or after
347 transaction: Option<Transaction>, // Added as optional, but always filled in, in LDK 0.0.110
350 impl OnchainEventEntry {
351 fn confirmation_threshold(&self) -> u32 {
352 let mut conf_threshold = self.height + ANTI_REORG_DELAY - 1;
354 OnchainEvent::MaturingOutput {
355 descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor)
357 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
358 // it's broadcastable when we see the previous block.
359 conf_threshold = cmp::max(conf_threshold, self.height + descriptor.to_self_delay as u32 - 1);
361 OnchainEvent::FundingSpendConfirmation { on_local_output_csv: Some(csv), .. } |
362 OnchainEvent::HTLCSpendConfirmation { on_to_local_output_csv: Some(csv), .. } => {
363 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
364 // it's broadcastable when we see the previous block.
365 conf_threshold = cmp::max(conf_threshold, self.height + csv as u32 - 1);
372 fn has_reached_confirmation_threshold(&self, best_block: &BestBlock) -> bool {
373 best_block.height() >= self.confirmation_threshold()
377 /// The (output index, sats value) for the counterparty's output in a commitment transaction.
379 /// This was added as an `Option` in 0.0.110.
380 type CommitmentTxCounterpartyOutputInfo = Option<(u32, u64)>;
382 /// Upon discovering of some classes of onchain tx by ChannelMonitor, we may have to take actions on it
383 /// once they mature to enough confirmations (ANTI_REORG_DELAY)
384 #[derive(PartialEq, Eq)]
386 /// An outbound HTLC failing after a transaction is confirmed. Used
387 /// * when an outbound HTLC output is spent by us after the HTLC timed out
388 /// * an outbound HTLC which was not present in the commitment transaction which appeared
389 /// on-chain (either because it was not fully committed to or it was dust).
390 /// Note that this is *not* used for preimage claims, as those are passed upstream immediately,
391 /// appearing only as an `HTLCSpendConfirmation`, below.
394 payment_hash: PaymentHash,
395 htlc_value_satoshis: Option<u64>,
396 /// None in the second case, above, ie when there is no relevant output in the commitment
397 /// transaction which appeared on chain.
398 commitment_tx_output_idx: Option<u32>,
400 /// An output waiting on [`ANTI_REORG_DELAY`] confirmations before we hand the user the
401 /// [`SpendableOutputDescriptor`].
403 descriptor: SpendableOutputDescriptor,
405 /// A spend of the funding output, either a commitment transaction or a cooperative closing
407 FundingSpendConfirmation {
408 /// The CSV delay for the output of the funding spend transaction (implying it is a local
409 /// commitment transaction, and this is the delay on the to_self output).
410 on_local_output_csv: Option<u16>,
411 /// If the funding spend transaction was a known remote commitment transaction, we track
412 /// the output index and amount of the counterparty's `to_self` output here.
414 /// This allows us to generate a [`Balance::CounterpartyRevokedOutputClaimable`] for the
415 /// counterparty output.
416 commitment_tx_to_counterparty_output: CommitmentTxCounterpartyOutputInfo,
418 /// A spend of a commitment transaction HTLC output, set in the cases where *no* `HTLCUpdate`
419 /// is constructed. This is used when
420 /// * an outbound HTLC is claimed by our counterparty with a preimage, causing us to
421 /// immediately claim the HTLC on the inbound edge and track the resolution here,
422 /// * an inbound HTLC is claimed by our counterparty (with a timeout),
423 /// * an inbound HTLC is claimed by us (with a preimage).
424 /// * a revoked-state HTLC transaction was broadcasted, which was claimed by the revocation
426 /// * a revoked-state HTLC transaction was broadcasted, which was claimed by an
427 /// HTLC-Success/HTLC-Failure transaction (and is still claimable with a revocation
429 HTLCSpendConfirmation {
430 commitment_tx_output_idx: u32,
431 /// If the claim was made by either party with a preimage, this is filled in
432 preimage: Option<PaymentPreimage>,
433 /// If the claim was made by us on an inbound HTLC against a local commitment transaction,
434 /// we set this to the output CSV value which we will have to wait until to spend the
435 /// output (and generate a SpendableOutput event).
436 on_to_local_output_csv: Option<u16>,
440 impl Writeable for OnchainEventEntry {
441 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
442 write_tlv_fields!(writer, {
443 (0, self.txid, required),
444 (1, self.transaction, option),
445 (2, self.height, required),
446 (3, self.block_hash, option),
447 (4, self.event, required),
453 impl MaybeReadable for OnchainEventEntry {
454 fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, DecodeError> {
455 let mut txid = Txid::all_zeros();
456 let mut transaction = None;
457 let mut block_hash = None;
459 let mut event = UpgradableRequired(None);
460 read_tlv_fields!(reader, {
462 (1, transaction, option),
463 (2, height, required),
464 (3, block_hash, option),
465 (4, event, upgradable_required),
467 Ok(Some(Self { txid, transaction, height, block_hash, event: _init_tlv_based_struct_field!(event, upgradable_required) }))
471 impl_writeable_tlv_based_enum_upgradable!(OnchainEvent,
473 (0, source, required),
474 (1, htlc_value_satoshis, option),
475 (2, payment_hash, required),
476 (3, commitment_tx_output_idx, option),
478 (1, MaturingOutput) => {
479 (0, descriptor, required),
481 (3, FundingSpendConfirmation) => {
482 (0, on_local_output_csv, option),
483 (1, commitment_tx_to_counterparty_output, option),
485 (5, HTLCSpendConfirmation) => {
486 (0, commitment_tx_output_idx, required),
487 (2, preimage, option),
488 (4, on_to_local_output_csv, option),
493 #[derive(Clone, PartialEq, Eq)]
494 pub(crate) enum ChannelMonitorUpdateStep {
495 LatestHolderCommitmentTXInfo {
496 commitment_tx: HolderCommitmentTransaction,
497 /// Note that LDK after 0.0.115 supports this only containing dust HTLCs (implying the
498 /// `Signature` field is never filled in). At that point, non-dust HTLCs are implied by the
499 /// HTLC fields in `commitment_tx` and the sources passed via `nondust_htlc_sources`.
500 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
501 claimed_htlcs: Vec<(SentHTLCId, PaymentPreimage)>,
502 nondust_htlc_sources: Vec<HTLCSource>,
504 LatestCounterpartyCommitmentTXInfo {
505 commitment_txid: Txid,
506 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
507 commitment_number: u64,
508 their_per_commitment_point: PublicKey,
511 payment_preimage: PaymentPreimage,
517 /// Used to indicate that the no future updates will occur, and likely that the latest holder
518 /// commitment transaction(s) should be broadcast, as the channel has been force-closed.
520 /// If set to false, we shouldn't broadcast the latest holder commitment transaction as we
521 /// think we've fallen behind!
522 should_broadcast: bool,
525 scriptpubkey: Script,
529 impl ChannelMonitorUpdateStep {
530 fn variant_name(&self) -> &'static str {
532 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { .. } => "LatestHolderCommitmentTXInfo",
533 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { .. } => "LatestCounterpartyCommitmentTXInfo",
534 ChannelMonitorUpdateStep::PaymentPreimage { .. } => "PaymentPreimage",
535 ChannelMonitorUpdateStep::CommitmentSecret { .. } => "CommitmentSecret",
536 ChannelMonitorUpdateStep::ChannelForceClosed { .. } => "ChannelForceClosed",
537 ChannelMonitorUpdateStep::ShutdownScript { .. } => "ShutdownScript",
542 impl_writeable_tlv_based_enum_upgradable!(ChannelMonitorUpdateStep,
543 (0, LatestHolderCommitmentTXInfo) => {
544 (0, commitment_tx, required),
545 (1, claimed_htlcs, vec_type),
546 (2, htlc_outputs, vec_type),
547 (4, nondust_htlc_sources, optional_vec),
549 (1, LatestCounterpartyCommitmentTXInfo) => {
550 (0, commitment_txid, required),
551 (2, commitment_number, required),
552 (4, their_per_commitment_point, required),
553 (6, htlc_outputs, vec_type),
555 (2, PaymentPreimage) => {
556 (0, payment_preimage, required),
558 (3, CommitmentSecret) => {
560 (2, secret, required),
562 (4, ChannelForceClosed) => {
563 (0, should_broadcast, required),
565 (5, ShutdownScript) => {
566 (0, scriptpubkey, required),
570 /// Details about the balance(s) available for spending once the channel appears on chain.
572 /// See [`ChannelMonitor::get_claimable_balances`] for more details on when these will or will not
574 #[derive(Clone, Debug, PartialEq, Eq)]
575 #[cfg_attr(test, derive(PartialOrd, Ord))]
577 /// The channel is not yet closed (or the commitment or closing transaction has not yet
578 /// appeared in a block). The given balance is claimable (less on-chain fees) if the channel is
579 /// force-closed now.
580 ClaimableOnChannelClose {
581 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
582 /// required to do so.
583 claimable_amount_satoshis: u64,
585 /// The channel has been closed, and the given balance is ours but awaiting confirmations until
586 /// we consider it spendable.
587 ClaimableAwaitingConfirmations {
588 /// The amount available to claim, in satoshis, possibly excluding the on-chain fees which
589 /// were spent in broadcasting the transaction.
590 claimable_amount_satoshis: u64,
591 /// The height at which an [`Event::SpendableOutputs`] event will be generated for this
593 confirmation_height: u32,
595 /// The channel has been closed, and the given balance should be ours but awaiting spending
596 /// transaction confirmation. If the spending transaction does not confirm in time, it is
597 /// possible our counterparty can take the funds by broadcasting an HTLC timeout on-chain.
599 /// Once the spending transaction confirms, before it has reached enough confirmations to be
600 /// considered safe from chain reorganizations, the balance will instead be provided via
601 /// [`Balance::ClaimableAwaitingConfirmations`].
602 ContentiousClaimable {
603 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
604 /// required to do so.
605 claimable_amount_satoshis: u64,
606 /// The height at which the counterparty may be able to claim the balance if we have not
610 /// HTLCs which we sent to our counterparty which are claimable after a timeout (less on-chain
611 /// fees) if the counterparty does not know the preimage for the HTLCs. These are somewhat
612 /// likely to be claimed by our counterparty before we do.
613 MaybeTimeoutClaimableHTLC {
614 /// The amount potentially available to claim, in satoshis, excluding the on-chain fees
615 /// which will be required to do so.
616 claimable_amount_satoshis: u64,
617 /// The height at which we will be able to claim the balance if our counterparty has not
619 claimable_height: u32,
621 /// HTLCs which we received from our counterparty which are claimable with a preimage which we
622 /// do not currently have. This will only be claimable if we receive the preimage from the node
623 /// to which we forwarded this HTLC before the timeout.
624 MaybePreimageClaimableHTLC {
625 /// The amount potentially available to claim, in satoshis, excluding the on-chain fees
626 /// which will be required to do so.
627 claimable_amount_satoshis: u64,
628 /// The height at which our counterparty will be able to claim the balance if we have not
629 /// yet received the preimage and claimed it ourselves.
632 /// The channel has been closed, and our counterparty broadcasted a revoked commitment
635 /// Thus, we're able to claim all outputs in the commitment transaction, one of which has the
636 /// following amount.
637 CounterpartyRevokedOutputClaimable {
638 /// The amount, in satoshis, of the output which we can claim.
640 /// Note that for outputs from HTLC balances this may be excluding some on-chain fees that
641 /// were already spent.
642 claimable_amount_satoshis: u64,
646 /// An HTLC which has been irrevocably resolved on-chain, and has reached ANTI_REORG_DELAY.
647 #[derive(PartialEq, Eq)]
648 struct IrrevocablyResolvedHTLC {
649 commitment_tx_output_idx: Option<u32>,
650 /// The txid of the transaction which resolved the HTLC, this may be a commitment (if the HTLC
651 /// was not present in the confirmed commitment transaction), HTLC-Success, or HTLC-Timeout
653 resolving_txid: Option<Txid>, // Added as optional, but always filled in, in 0.0.110
654 resolving_tx: Option<Transaction>,
655 /// Only set if the HTLC claim was ours using a payment preimage
656 payment_preimage: Option<PaymentPreimage>,
659 // In LDK versions prior to 0.0.111 commitment_tx_output_idx was not Option-al and
660 // IrrevocablyResolvedHTLC objects only existed for non-dust HTLCs. This was a bug, but to maintain
661 // backwards compatibility we must ensure we always write out a commitment_tx_output_idx field,
662 // using `u32::max_value()` as a sentinal to indicate the HTLC was dust.
663 impl Writeable for IrrevocablyResolvedHTLC {
664 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
665 let mapped_commitment_tx_output_idx = self.commitment_tx_output_idx.unwrap_or(u32::max_value());
666 write_tlv_fields!(writer, {
667 (0, mapped_commitment_tx_output_idx, required),
668 (1, self.resolving_txid, option),
669 (2, self.payment_preimage, option),
670 (3, self.resolving_tx, option),
676 impl Readable for IrrevocablyResolvedHTLC {
677 fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
678 let mut mapped_commitment_tx_output_idx = 0;
679 let mut resolving_txid = None;
680 let mut payment_preimage = None;
681 let mut resolving_tx = None;
682 read_tlv_fields!(reader, {
683 (0, mapped_commitment_tx_output_idx, required),
684 (1, resolving_txid, option),
685 (2, payment_preimage, option),
686 (3, resolving_tx, option),
689 commitment_tx_output_idx: if mapped_commitment_tx_output_idx == u32::max_value() { None } else { Some(mapped_commitment_tx_output_idx) },
697 /// A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
698 /// on-chain transactions to ensure no loss of funds occurs.
700 /// You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
701 /// information and are actively monitoring the chain.
703 /// Pending Events or updated HTLCs which have not yet been read out by
704 /// get_and_clear_pending_monitor_events or get_and_clear_pending_events are serialized to disk and
705 /// reloaded at deserialize-time. Thus, you must ensure that, when handling events, all events
706 /// gotten are fully handled before re-serializing the new state.
708 /// Note that the deserializer is only implemented for (BlockHash, ChannelMonitor), which
709 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
710 /// the "reorg path" (ie disconnecting blocks until you find a common ancestor from both the
711 /// returned block hash and the the current chain and then reconnecting blocks to get to the
712 /// best chain) upon deserializing the object!
713 pub struct ChannelMonitor<Signer: WriteableEcdsaChannelSigner> {
715 pub(crate) inner: Mutex<ChannelMonitorImpl<Signer>>,
717 inner: Mutex<ChannelMonitorImpl<Signer>>,
721 pub(crate) struct ChannelMonitorImpl<Signer: WriteableEcdsaChannelSigner> {
722 latest_update_id: u64,
723 commitment_transaction_number_obscure_factor: u64,
725 destination_script: Script,
726 broadcasted_holder_revokable_script: Option<(Script, PublicKey, PublicKey)>,
727 counterparty_payment_script: Script,
728 shutdown_script: Option<Script>,
730 channel_keys_id: [u8; 32],
731 holder_revocation_basepoint: PublicKey,
732 funding_info: (OutPoint, Script),
733 current_counterparty_commitment_txid: Option<Txid>,
734 prev_counterparty_commitment_txid: Option<Txid>,
736 counterparty_commitment_params: CounterpartyCommitmentParameters,
737 funding_redeemscript: Script,
738 channel_value_satoshis: u64,
739 // first is the idx of the first of the two per-commitment points
740 their_cur_per_commitment_points: Option<(u64, PublicKey, Option<PublicKey>)>,
742 on_holder_tx_csv: u16,
744 commitment_secrets: CounterpartyCommitmentSecrets,
745 /// The set of outpoints in each counterparty commitment transaction. We always need at least
746 /// the payment hash from `HTLCOutputInCommitment` to claim even a revoked commitment
747 /// transaction broadcast as we need to be able to construct the witness script in all cases.
748 counterparty_claimable_outpoints: HashMap<Txid, Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>,
749 /// We cannot identify HTLC-Success or HTLC-Timeout transactions by themselves on the chain.
750 /// Nor can we figure out their commitment numbers without the commitment transaction they are
751 /// spending. Thus, in order to claim them via revocation key, we track all the counterparty
752 /// commitment transactions which we find on-chain, mapping them to the commitment number which
753 /// can be used to derive the revocation key and claim the transactions.
754 counterparty_commitment_txn_on_chain: HashMap<Txid, u64>,
755 /// Cache used to make pruning of payment_preimages faster.
756 /// Maps payment_hash values to commitment numbers for counterparty transactions for non-revoked
757 /// counterparty transactions (ie should remain pretty small).
758 /// Serialized to disk but should generally not be sent to Watchtowers.
759 counterparty_hash_commitment_number: HashMap<PaymentHash, u64>,
761 counterparty_fulfilled_htlcs: HashMap<SentHTLCId, PaymentPreimage>,
763 // We store two holder commitment transactions to avoid any race conditions where we may update
764 // some monitors (potentially on watchtowers) but then fail to update others, resulting in the
765 // various monitors for one channel being out of sync, and us broadcasting a holder
766 // transaction for which we have deleted claim information on some watchtowers.
767 prev_holder_signed_commitment_tx: Option<HolderSignedTx>,
768 current_holder_commitment_tx: HolderSignedTx,
770 // Used just for ChannelManager to make sure it has the latest channel data during
772 current_counterparty_commitment_number: u64,
773 // Used just for ChannelManager to make sure it has the latest channel data during
775 current_holder_commitment_number: u64,
777 /// The set of payment hashes from inbound payments for which we know the preimage. Payment
778 /// preimages that are not included in any unrevoked local commitment transaction or unrevoked
779 /// remote commitment transactions are automatically removed when commitment transactions are
781 payment_preimages: HashMap<PaymentHash, PaymentPreimage>,
783 // Note that `MonitorEvent`s MUST NOT be generated during update processing, only generated
784 // during chain data processing. This prevents a race in `ChainMonitor::update_channel` (and
785 // presumably user implementations thereof as well) where we update the in-memory channel
786 // object, then before the persistence finishes (as it's all under a read-lock), we return
787 // pending events to the user or to the relevant `ChannelManager`. Then, on reload, we'll have
788 // the pre-event state here, but have processed the event in the `ChannelManager`.
789 // Note that because the `event_lock` in `ChainMonitor` is only taken in
790 // block/transaction-connected events and *not* during block/transaction-disconnected events,
791 // we further MUST NOT generate events during block/transaction-disconnection.
792 pending_monitor_events: Vec<MonitorEvent>,
794 pending_events: Vec<Event>,
796 // Used to track on-chain events (i.e., transactions part of channels confirmed on chain) on
797 // which to take actions once they reach enough confirmations. Each entry includes the
798 // transaction's id and the height when the transaction was confirmed on chain.
799 onchain_events_awaiting_threshold_conf: Vec<OnchainEventEntry>,
801 // If we get serialized out and re-read, we need to make sure that the chain monitoring
802 // interface knows about the TXOs that we want to be notified of spends of. We could probably
803 // be smart and derive them from the above storage fields, but its much simpler and more
804 // Obviously Correct (tm) if we just keep track of them explicitly.
805 outputs_to_watch: HashMap<Txid, Vec<(u32, Script)>>,
808 pub onchain_tx_handler: OnchainTxHandler<Signer>,
810 onchain_tx_handler: OnchainTxHandler<Signer>,
812 // This is set when the Channel[Manager] generated a ChannelMonitorUpdate which indicated the
813 // channel has been force-closed. After this is set, no further holder commitment transaction
814 // updates may occur, and we panic!() if one is provided.
815 lockdown_from_offchain: bool,
817 // Set once we've signed a holder commitment transaction and handed it over to our
818 // OnchainTxHandler. After this is set, no future updates to our holder commitment transactions
819 // may occur, and we fail any such monitor updates.
821 // In case of update rejection due to a locally already signed commitment transaction, we
822 // nevertheless store update content to track in case of concurrent broadcast by another
823 // remote monitor out-of-order with regards to the block view.
824 holder_tx_signed: bool,
826 // If a spend of the funding output is seen, we set this to true and reject any further
827 // updates. This prevents any further changes in the offchain state no matter the order
828 // of block connection between ChannelMonitors and the ChannelManager.
829 funding_spend_seen: bool,
831 /// Set to `Some` of the confirmed transaction spending the funding input of the channel after
832 /// reaching `ANTI_REORG_DELAY` confirmations.
833 funding_spend_confirmed: Option<Txid>,
835 confirmed_commitment_tx_counterparty_output: CommitmentTxCounterpartyOutputInfo,
836 /// The set of HTLCs which have been either claimed or failed on chain and have reached
837 /// the requisite confirmations on the claim/fail transaction (either ANTI_REORG_DELAY or the
838 /// spending CSV for revocable outputs).
839 htlcs_resolved_on_chain: Vec<IrrevocablyResolvedHTLC>,
841 /// The set of `SpendableOutput` events which we have already passed upstream to be claimed.
842 /// These are tracked explicitly to ensure that we don't generate the same events redundantly
843 /// if users duplicatively confirm old transactions. Specifically for transactions claiming a
844 /// revoked remote outpoint we otherwise have no tracking at all once they've reached
845 /// [`ANTI_REORG_DELAY`], so we have to track them here.
846 spendable_txids_confirmed: Vec<Txid>,
848 // We simply modify best_block in Channel's block_connected so that serialization is
849 // consistent but hopefully the users' copy handles block_connected in a consistent way.
850 // (we do *not*, however, update them in update_monitor to ensure any local user copies keep
851 // their best_block from its state and not based on updated copies that didn't run through
852 // the full block_connected).
853 best_block: BestBlock,
855 /// The node_id of our counterparty
856 counterparty_node_id: Option<PublicKey>,
859 /// Transaction outputs to watch for on-chain spends.
860 pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
862 impl<Signer: WriteableEcdsaChannelSigner> PartialEq for ChannelMonitor<Signer> where Signer: PartialEq {
863 fn eq(&self, other: &Self) -> bool {
864 // We need some kind of total lockorder. Absent a better idea, we sort by position in
865 // memory and take locks in that order (assuming that we can't move within memory while a
867 let ord = ((self as *const _) as usize) < ((other as *const _) as usize);
868 let a = if ord { self.inner.unsafe_well_ordered_double_lock_self() } else { other.inner.unsafe_well_ordered_double_lock_self() };
869 let b = if ord { other.inner.unsafe_well_ordered_double_lock_self() } else { self.inner.unsafe_well_ordered_double_lock_self() };
874 impl<Signer: WriteableEcdsaChannelSigner> Writeable for ChannelMonitor<Signer> {
875 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
876 self.inner.lock().unwrap().write(writer)
880 // These are also used for ChannelMonitorUpdate, above.
881 const SERIALIZATION_VERSION: u8 = 1;
882 const MIN_SERIALIZATION_VERSION: u8 = 1;
884 impl<Signer: WriteableEcdsaChannelSigner> Writeable for ChannelMonitorImpl<Signer> {
885 fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
886 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
888 self.latest_update_id.write(writer)?;
890 // Set in initial Channel-object creation, so should always be set by now:
891 U48(self.commitment_transaction_number_obscure_factor).write(writer)?;
893 self.destination_script.write(writer)?;
894 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
895 writer.write_all(&[0; 1])?;
896 broadcasted_holder_revokable_script.0.write(writer)?;
897 broadcasted_holder_revokable_script.1.write(writer)?;
898 broadcasted_holder_revokable_script.2.write(writer)?;
900 writer.write_all(&[1; 1])?;
903 self.counterparty_payment_script.write(writer)?;
904 match &self.shutdown_script {
905 Some(script) => script.write(writer)?,
906 None => Script::new().write(writer)?,
909 self.channel_keys_id.write(writer)?;
910 self.holder_revocation_basepoint.write(writer)?;
911 writer.write_all(&self.funding_info.0.txid[..])?;
912 writer.write_all(&self.funding_info.0.index.to_be_bytes())?;
913 self.funding_info.1.write(writer)?;
914 self.current_counterparty_commitment_txid.write(writer)?;
915 self.prev_counterparty_commitment_txid.write(writer)?;
917 self.counterparty_commitment_params.write(writer)?;
918 self.funding_redeemscript.write(writer)?;
919 self.channel_value_satoshis.write(writer)?;
921 match self.their_cur_per_commitment_points {
922 Some((idx, pubkey, second_option)) => {
923 writer.write_all(&byte_utils::be48_to_array(idx))?;
924 writer.write_all(&pubkey.serialize())?;
925 match second_option {
926 Some(second_pubkey) => {
927 writer.write_all(&second_pubkey.serialize())?;
930 writer.write_all(&[0; 33])?;
935 writer.write_all(&byte_utils::be48_to_array(0))?;
939 writer.write_all(&self.on_holder_tx_csv.to_be_bytes())?;
941 self.commitment_secrets.write(writer)?;
943 macro_rules! serialize_htlc_in_commitment {
944 ($htlc_output: expr) => {
945 writer.write_all(&[$htlc_output.offered as u8; 1])?;
946 writer.write_all(&$htlc_output.amount_msat.to_be_bytes())?;
947 writer.write_all(&$htlc_output.cltv_expiry.to_be_bytes())?;
948 writer.write_all(&$htlc_output.payment_hash.0[..])?;
949 $htlc_output.transaction_output_index.write(writer)?;
953 writer.write_all(&(self.counterparty_claimable_outpoints.len() as u64).to_be_bytes())?;
954 for (ref txid, ref htlc_infos) in self.counterparty_claimable_outpoints.iter() {
955 writer.write_all(&txid[..])?;
956 writer.write_all(&(htlc_infos.len() as u64).to_be_bytes())?;
957 for &(ref htlc_output, ref htlc_source) in htlc_infos.iter() {
958 debug_assert!(htlc_source.is_none() || Some(**txid) == self.current_counterparty_commitment_txid
959 || Some(**txid) == self.prev_counterparty_commitment_txid,
960 "HTLC Sources for all revoked commitment transactions should be none!");
961 serialize_htlc_in_commitment!(htlc_output);
962 htlc_source.as_ref().map(|b| b.as_ref()).write(writer)?;
966 writer.write_all(&(self.counterparty_commitment_txn_on_chain.len() as u64).to_be_bytes())?;
967 for (ref txid, commitment_number) in self.counterparty_commitment_txn_on_chain.iter() {
968 writer.write_all(&txid[..])?;
969 writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
972 writer.write_all(&(self.counterparty_hash_commitment_number.len() as u64).to_be_bytes())?;
973 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
974 writer.write_all(&payment_hash.0[..])?;
975 writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
978 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
979 writer.write_all(&[1; 1])?;
980 prev_holder_tx.write(writer)?;
982 writer.write_all(&[0; 1])?;
985 self.current_holder_commitment_tx.write(writer)?;
987 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
988 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
990 writer.write_all(&(self.payment_preimages.len() as u64).to_be_bytes())?;
991 for payment_preimage in self.payment_preimages.values() {
992 writer.write_all(&payment_preimage.0[..])?;
995 writer.write_all(&(self.pending_monitor_events.iter().filter(|ev| match ev {
996 MonitorEvent::HTLCEvent(_) => true,
997 MonitorEvent::CommitmentTxConfirmed(_) => true,
999 }).count() as u64).to_be_bytes())?;
1000 for event in self.pending_monitor_events.iter() {
1002 MonitorEvent::HTLCEvent(upd) => {
1006 MonitorEvent::CommitmentTxConfirmed(_) => 1u8.write(writer)?,
1007 _ => {}, // Covered in the TLV writes below
1011 writer.write_all(&(self.pending_events.len() as u64).to_be_bytes())?;
1012 for event in self.pending_events.iter() {
1013 event.write(writer)?;
1016 self.best_block.block_hash().write(writer)?;
1017 writer.write_all(&self.best_block.height().to_be_bytes())?;
1019 writer.write_all(&(self.onchain_events_awaiting_threshold_conf.len() as u64).to_be_bytes())?;
1020 for ref entry in self.onchain_events_awaiting_threshold_conf.iter() {
1021 entry.write(writer)?;
1024 (self.outputs_to_watch.len() as u64).write(writer)?;
1025 for (txid, idx_scripts) in self.outputs_to_watch.iter() {
1026 txid.write(writer)?;
1027 (idx_scripts.len() as u64).write(writer)?;
1028 for (idx, script) in idx_scripts.iter() {
1030 script.write(writer)?;
1033 self.onchain_tx_handler.write(writer)?;
1035 self.lockdown_from_offchain.write(writer)?;
1036 self.holder_tx_signed.write(writer)?;
1038 write_tlv_fields!(writer, {
1039 (1, self.funding_spend_confirmed, option),
1040 (3, self.htlcs_resolved_on_chain, vec_type),
1041 (5, self.pending_monitor_events, vec_type),
1042 (7, self.funding_spend_seen, required),
1043 (9, self.counterparty_node_id, option),
1044 (11, self.confirmed_commitment_tx_counterparty_output, option),
1045 (13, self.spendable_txids_confirmed, vec_type),
1046 (15, self.counterparty_fulfilled_htlcs, required),
1053 impl<Signer: WriteableEcdsaChannelSigner> ChannelMonitor<Signer> {
1054 /// For lockorder enforcement purposes, we need to have a single site which constructs the
1055 /// `inner` mutex, otherwise cases where we lock two monitors at the same time (eg in our
1056 /// PartialEq implementation) we may decide a lockorder violation has occurred.
1057 fn from_impl(imp: ChannelMonitorImpl<Signer>) -> Self {
1058 ChannelMonitor { inner: Mutex::new(imp) }
1061 pub(crate) fn new(secp_ctx: Secp256k1<secp256k1::All>, keys: Signer, shutdown_script: Option<Script>,
1062 on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, Script),
1063 channel_parameters: &ChannelTransactionParameters,
1064 funding_redeemscript: Script, channel_value_satoshis: u64,
1065 commitment_transaction_number_obscure_factor: u64,
1066 initial_holder_commitment_tx: HolderCommitmentTransaction,
1067 best_block: BestBlock, counterparty_node_id: PublicKey) -> ChannelMonitor<Signer> {
1069 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
1070 let payment_key_hash = WPubkeyHash::hash(&keys.pubkeys().payment_point.serialize());
1071 let counterparty_payment_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_key_hash[..]).into_script();
1073 let counterparty_channel_parameters = channel_parameters.counterparty_parameters.as_ref().unwrap();
1074 let counterparty_delayed_payment_base_key = counterparty_channel_parameters.pubkeys.delayed_payment_basepoint;
1075 let counterparty_htlc_base_key = counterparty_channel_parameters.pubkeys.htlc_basepoint;
1076 let counterparty_commitment_params = CounterpartyCommitmentParameters { counterparty_delayed_payment_base_key, counterparty_htlc_base_key, on_counterparty_tx_csv };
1078 let channel_keys_id = keys.channel_keys_id();
1079 let holder_revocation_basepoint = keys.pubkeys().revocation_basepoint;
1081 // block for Rust 1.34 compat
1082 let (holder_commitment_tx, current_holder_commitment_number) = {
1083 let trusted_tx = initial_holder_commitment_tx.trust();
1084 let txid = trusted_tx.txid();
1086 let tx_keys = trusted_tx.keys();
1087 let holder_commitment_tx = HolderSignedTx {
1089 revocation_key: tx_keys.revocation_key,
1090 a_htlc_key: tx_keys.broadcaster_htlc_key,
1091 b_htlc_key: tx_keys.countersignatory_htlc_key,
1092 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
1093 per_commitment_point: tx_keys.per_commitment_point,
1094 htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
1095 to_self_value_sat: initial_holder_commitment_tx.to_broadcaster_value_sat(),
1096 feerate_per_kw: trusted_tx.feerate_per_kw(),
1098 (holder_commitment_tx, trusted_tx.commitment_number())
1101 let onchain_tx_handler =
1102 OnchainTxHandler::new(destination_script.clone(), keys,
1103 channel_parameters.clone(), initial_holder_commitment_tx, secp_ctx);
1105 let mut outputs_to_watch = HashMap::new();
1106 outputs_to_watch.insert(funding_info.0.txid, vec![(funding_info.0.index as u32, funding_info.1.clone())]);
1108 Self::from_impl(ChannelMonitorImpl {
1109 latest_update_id: 0,
1110 commitment_transaction_number_obscure_factor,
1112 destination_script: destination_script.clone(),
1113 broadcasted_holder_revokable_script: None,
1114 counterparty_payment_script,
1118 holder_revocation_basepoint,
1120 current_counterparty_commitment_txid: None,
1121 prev_counterparty_commitment_txid: None,
1123 counterparty_commitment_params,
1124 funding_redeemscript,
1125 channel_value_satoshis,
1126 their_cur_per_commitment_points: None,
1128 on_holder_tx_csv: counterparty_channel_parameters.selected_contest_delay,
1130 commitment_secrets: CounterpartyCommitmentSecrets::new(),
1131 counterparty_claimable_outpoints: HashMap::new(),
1132 counterparty_commitment_txn_on_chain: HashMap::new(),
1133 counterparty_hash_commitment_number: HashMap::new(),
1134 counterparty_fulfilled_htlcs: HashMap::new(),
1136 prev_holder_signed_commitment_tx: None,
1137 current_holder_commitment_tx: holder_commitment_tx,
1138 current_counterparty_commitment_number: 1 << 48,
1139 current_holder_commitment_number,
1141 payment_preimages: HashMap::new(),
1142 pending_monitor_events: Vec::new(),
1143 pending_events: Vec::new(),
1145 onchain_events_awaiting_threshold_conf: Vec::new(),
1150 lockdown_from_offchain: false,
1151 holder_tx_signed: false,
1152 funding_spend_seen: false,
1153 funding_spend_confirmed: None,
1154 confirmed_commitment_tx_counterparty_output: None,
1155 htlcs_resolved_on_chain: Vec::new(),
1156 spendable_txids_confirmed: Vec::new(),
1159 counterparty_node_id: Some(counterparty_node_id),
1164 fn provide_secret(&self, idx: u64, secret: [u8; 32]) -> Result<(), &'static str> {
1165 self.inner.lock().unwrap().provide_secret(idx, secret)
1168 /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
1169 /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
1170 /// possibly future revocation/preimage information) to claim outputs where possible.
1171 /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
1172 pub(crate) fn provide_latest_counterparty_commitment_tx<L: Deref>(
1175 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
1176 commitment_number: u64,
1177 their_per_commitment_point: PublicKey,
1179 ) where L::Target: Logger {
1180 self.inner.lock().unwrap().provide_latest_counterparty_commitment_tx(
1181 txid, htlc_outputs, commitment_number, their_per_commitment_point, logger)
1185 fn provide_latest_holder_commitment_tx(
1186 &self, holder_commitment_tx: HolderCommitmentTransaction,
1187 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
1188 ) -> Result<(), ()> {
1189 self.inner.lock().unwrap().provide_latest_holder_commitment_tx(holder_commitment_tx, htlc_outputs, &Vec::new(), Vec::new()).map_err(|_| ())
1192 /// This is used to provide payment preimage(s) out-of-band during startup without updating the
1193 /// off-chain state with a new commitment transaction.
1194 pub(crate) fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
1196 payment_hash: &PaymentHash,
1197 payment_preimage: &PaymentPreimage,
1199 fee_estimator: &LowerBoundedFeeEstimator<F>,
1202 B::Target: BroadcasterInterface,
1203 F::Target: FeeEstimator,
1206 self.inner.lock().unwrap().provide_payment_preimage(
1207 payment_hash, payment_preimage, broadcaster, fee_estimator, logger)
1210 /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
1213 /// panics if the given update is not the next update by update_id.
1214 pub fn update_monitor<B: Deref, F: Deref, L: Deref>(
1216 updates: &ChannelMonitorUpdate,
1222 B::Target: BroadcasterInterface,
1223 F::Target: FeeEstimator,
1226 self.inner.lock().unwrap().update_monitor(updates, broadcaster, fee_estimator, logger)
1229 /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
1231 pub fn get_latest_update_id(&self) -> u64 {
1232 self.inner.lock().unwrap().get_latest_update_id()
1235 /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
1236 pub fn get_funding_txo(&self) -> (OutPoint, Script) {
1237 self.inner.lock().unwrap().get_funding_txo().clone()
1240 /// Gets a list of txids, with their output scripts (in the order they appear in the
1241 /// transaction), which we must learn about spends of via block_connected().
1242 pub fn get_outputs_to_watch(&self) -> Vec<(Txid, Vec<(u32, Script)>)> {
1243 self.inner.lock().unwrap().get_outputs_to_watch()
1244 .iter().map(|(txid, outputs)| (*txid, outputs.clone())).collect()
1247 /// Loads the funding txo and outputs to watch into the given `chain::Filter` by repeatedly
1248 /// calling `chain::Filter::register_output` and `chain::Filter::register_tx` until all outputs
1249 /// have been registered.
1250 pub fn load_outputs_to_watch<F: Deref>(&self, filter: &F) where F::Target: chain::Filter {
1251 let lock = self.inner.lock().unwrap();
1252 filter.register_tx(&lock.get_funding_txo().0.txid, &lock.get_funding_txo().1);
1253 for (txid, outputs) in lock.get_outputs_to_watch().iter() {
1254 for (index, script_pubkey) in outputs.iter() {
1255 assert!(*index <= u16::max_value() as u32);
1256 filter.register_output(WatchedOutput {
1258 outpoint: OutPoint { txid: *txid, index: *index as u16 },
1259 script_pubkey: script_pubkey.clone(),
1265 /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1266 /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1267 pub fn get_and_clear_pending_monitor_events(&self) -> Vec<MonitorEvent> {
1268 self.inner.lock().unwrap().get_and_clear_pending_monitor_events()
1271 /// Gets the list of pending events which were generated by previous actions, clearing the list
1274 /// This is called by the [`EventsProvider::process_pending_events`] implementation for
1275 /// [`ChainMonitor`].
1277 /// [`EventsProvider::process_pending_events`]: crate::events::EventsProvider::process_pending_events
1278 /// [`ChainMonitor`]: crate::chain::chainmonitor::ChainMonitor
1279 pub fn get_and_clear_pending_events(&self) -> Vec<Event> {
1280 self.inner.lock().unwrap().get_and_clear_pending_events()
1283 pub(crate) fn get_min_seen_secret(&self) -> u64 {
1284 self.inner.lock().unwrap().get_min_seen_secret()
1287 pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1288 self.inner.lock().unwrap().get_cur_counterparty_commitment_number()
1291 pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1292 self.inner.lock().unwrap().get_cur_holder_commitment_number()
1295 /// Gets the `node_id` of the counterparty for this channel.
1297 /// Will be `None` for channels constructed on LDK versions prior to 0.0.110 and always `Some`
1299 pub fn get_counterparty_node_id(&self) -> Option<PublicKey> {
1300 self.inner.lock().unwrap().counterparty_node_id
1303 /// Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
1304 /// the Channel was out-of-date.
1306 /// You may also use this to broadcast the latest local commitment transaction, either because
1307 /// a monitor update failed with [`ChannelMonitorUpdateStatus::PermanentFailure`] or because we've
1308 /// fallen behind (i.e. we've received proof that our counterparty side knows a revocation
1309 /// secret we gave them that they shouldn't know).
1311 /// Broadcasting these transactions in the second case is UNSAFE, as they allow counterparty
1312 /// side to punish you. Nevertheless you may want to broadcast them if counterparty doesn't
1313 /// close channel with their commitment transaction after a substantial amount of time. Best
1314 /// may be to contact the other node operator out-of-band to coordinate other options available
1315 /// to you. In any-case, the choice is up to you.
1317 /// [`ChannelMonitorUpdateStatus::PermanentFailure`]: super::ChannelMonitorUpdateStatus::PermanentFailure
1318 pub fn get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1319 where L::Target: Logger {
1320 self.inner.lock().unwrap().get_latest_holder_commitment_txn(logger)
1323 /// Unsafe test-only version of get_latest_holder_commitment_txn used by our test framework
1324 /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1325 /// revoked commitment transaction.
1326 #[cfg(any(test, feature = "unsafe_revoked_tx_signing"))]
1327 pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1328 where L::Target: Logger {
1329 self.inner.lock().unwrap().unsafe_get_latest_holder_commitment_txn(logger)
1332 /// Processes transactions in a newly connected block, which may result in any of the following:
1333 /// - update the monitor's state against resolved HTLCs
1334 /// - punish the counterparty in the case of seeing a revoked commitment transaction
1335 /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1336 /// - detect settled outputs for later spending
1337 /// - schedule and bump any in-flight claims
1339 /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1340 /// [`get_outputs_to_watch`].
1342 /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1343 pub fn block_connected<B: Deref, F: Deref, L: Deref>(
1345 header: &BlockHeader,
1346 txdata: &TransactionData,
1351 ) -> Vec<TransactionOutputs>
1353 B::Target: BroadcasterInterface,
1354 F::Target: FeeEstimator,
1357 self.inner.lock().unwrap().block_connected(
1358 header, txdata, height, broadcaster, fee_estimator, logger)
1361 /// Determines if the disconnected block contained any transactions of interest and updates
1363 pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(
1365 header: &BlockHeader,
1371 B::Target: BroadcasterInterface,
1372 F::Target: FeeEstimator,
1375 self.inner.lock().unwrap().block_disconnected(
1376 header, height, broadcaster, fee_estimator, logger)
1379 /// Processes transactions confirmed in a block with the given header and height, returning new
1380 /// outputs to watch. See [`block_connected`] for details.
1382 /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1383 /// blocks. See [`chain::Confirm`] for calling expectations.
1385 /// [`block_connected`]: Self::block_connected
1386 pub fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
1388 header: &BlockHeader,
1389 txdata: &TransactionData,
1394 ) -> Vec<TransactionOutputs>
1396 B::Target: BroadcasterInterface,
1397 F::Target: FeeEstimator,
1400 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1401 self.inner.lock().unwrap().transactions_confirmed(
1402 header, txdata, height, broadcaster, &bounded_fee_estimator, logger)
1405 /// Processes a transaction that was reorganized out of the chain.
1407 /// Used instead of [`block_disconnected`] by clients that are notified of transactions rather
1408 /// than blocks. See [`chain::Confirm`] for calling expectations.
1410 /// [`block_disconnected`]: Self::block_disconnected
1411 pub fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
1418 B::Target: BroadcasterInterface,
1419 F::Target: FeeEstimator,
1422 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1423 self.inner.lock().unwrap().transaction_unconfirmed(
1424 txid, broadcaster, &bounded_fee_estimator, logger);
1427 /// Updates the monitor with the current best chain tip, returning new outputs to watch. See
1428 /// [`block_connected`] for details.
1430 /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1431 /// blocks. See [`chain::Confirm`] for calling expectations.
1433 /// [`block_connected`]: Self::block_connected
1434 pub fn best_block_updated<B: Deref, F: Deref, L: Deref>(
1436 header: &BlockHeader,
1441 ) -> Vec<TransactionOutputs>
1443 B::Target: BroadcasterInterface,
1444 F::Target: FeeEstimator,
1447 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1448 self.inner.lock().unwrap().best_block_updated(
1449 header, height, broadcaster, &bounded_fee_estimator, logger)
1452 /// Returns the set of txids that should be monitored for re-organization out of the chain.
1453 pub fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
1454 let inner = self.inner.lock().unwrap();
1455 let mut txids: Vec<(Txid, Option<BlockHash>)> = inner.onchain_events_awaiting_threshold_conf
1457 .map(|entry| (entry.txid, entry.block_hash))
1458 .chain(inner.onchain_tx_handler.get_relevant_txids().into_iter())
1460 txids.sort_unstable();
1465 /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1466 /// [`chain::Confirm`] interfaces.
1467 pub fn current_best_block(&self) -> BestBlock {
1468 self.inner.lock().unwrap().best_block.clone()
1471 /// Triggers rebroadcasts/fee-bumps of pending claims from a force-closed channel. This is
1472 /// crucial in preventing certain classes of pinning attacks, detecting substantial mempool
1473 /// feerate changes between blocks, and ensuring reliability if broadcasting fails. We recommend
1474 /// invoking this every 30 seconds, or lower if running in an environment with spotty
1475 /// connections, like on mobile.
1476 pub fn rebroadcast_pending_claims<B: Deref, F: Deref, L: Deref>(
1477 &self, broadcaster: B, fee_estimator: F, logger: L,
1480 B::Target: BroadcasterInterface,
1481 F::Target: FeeEstimator,
1484 let fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
1485 let mut inner = self.inner.lock().unwrap();
1486 let current_height = inner.best_block.height;
1487 inner.onchain_tx_handler.rebroadcast_pending_claims(
1488 current_height, &broadcaster, &fee_estimator, &logger,
1493 impl<Signer: WriteableEcdsaChannelSigner> ChannelMonitorImpl<Signer> {
1494 /// Helper for get_claimable_balances which does the work for an individual HTLC, generating up
1495 /// to one `Balance` for the HTLC.
1496 fn get_htlc_balance(&self, htlc: &HTLCOutputInCommitment, holder_commitment: bool,
1497 counterparty_revoked_commitment: bool, confirmed_txid: Option<Txid>)
1498 -> Option<Balance> {
1499 let htlc_commitment_tx_output_idx =
1500 if let Some(v) = htlc.transaction_output_index { v } else { return None; };
1502 let mut htlc_spend_txid_opt = None;
1503 let mut htlc_spend_tx_opt = None;
1504 let mut holder_timeout_spend_pending = None;
1505 let mut htlc_spend_pending = None;
1506 let mut holder_delayed_output_pending = None;
1507 for event in self.onchain_events_awaiting_threshold_conf.iter() {
1509 OnchainEvent::HTLCUpdate { commitment_tx_output_idx, htlc_value_satoshis, .. }
1510 if commitment_tx_output_idx == Some(htlc_commitment_tx_output_idx) => {
1511 debug_assert!(htlc_spend_txid_opt.is_none());
1512 htlc_spend_txid_opt = Some(&event.txid);
1513 debug_assert!(htlc_spend_tx_opt.is_none());
1514 htlc_spend_tx_opt = event.transaction.as_ref();
1515 debug_assert!(holder_timeout_spend_pending.is_none());
1516 debug_assert_eq!(htlc_value_satoshis.unwrap(), htlc.amount_msat / 1000);
1517 holder_timeout_spend_pending = Some(event.confirmation_threshold());
1519 OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, preimage, .. }
1520 if commitment_tx_output_idx == htlc_commitment_tx_output_idx => {
1521 debug_assert!(htlc_spend_txid_opt.is_none());
1522 htlc_spend_txid_opt = Some(&event.txid);
1523 debug_assert!(htlc_spend_tx_opt.is_none());
1524 htlc_spend_tx_opt = event.transaction.as_ref();
1525 debug_assert!(htlc_spend_pending.is_none());
1526 htlc_spend_pending = Some((event.confirmation_threshold(), preimage.is_some()));
1528 OnchainEvent::MaturingOutput {
1529 descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor) }
1530 if descriptor.outpoint.index as u32 == htlc_commitment_tx_output_idx => {
1531 debug_assert!(holder_delayed_output_pending.is_none());
1532 holder_delayed_output_pending = Some(event.confirmation_threshold());
1537 let htlc_resolved = self.htlcs_resolved_on_chain.iter()
1538 .find(|v| if v.commitment_tx_output_idx == Some(htlc_commitment_tx_output_idx) {
1539 debug_assert!(htlc_spend_txid_opt.is_none());
1540 htlc_spend_txid_opt = v.resolving_txid.as_ref();
1541 debug_assert!(htlc_spend_tx_opt.is_none());
1542 htlc_spend_tx_opt = v.resolving_tx.as_ref();
1545 debug_assert!(holder_timeout_spend_pending.is_some() as u8 + htlc_spend_pending.is_some() as u8 + htlc_resolved.is_some() as u8 <= 1);
1547 let htlc_commitment_outpoint = BitcoinOutPoint::new(confirmed_txid.unwrap(), htlc_commitment_tx_output_idx);
1548 let htlc_output_to_spend =
1549 if let Some(txid) = htlc_spend_txid_opt {
1550 // Because HTLC transactions either only have 1 input and 1 output (pre-anchors) or
1551 // are signed with SIGHASH_SINGLE|ANYONECANPAY under BIP-0143 (post-anchors), we can
1552 // locate the correct output by ensuring its adjacent input spends the HTLC output
1553 // in the commitment.
1554 if let Some(ref tx) = htlc_spend_tx_opt {
1555 let htlc_input_idx_opt = tx.input.iter().enumerate()
1556 .find(|(_, input)| input.previous_output == htlc_commitment_outpoint)
1557 .map(|(idx, _)| idx as u32);
1558 debug_assert!(htlc_input_idx_opt.is_some());
1559 BitcoinOutPoint::new(*txid, htlc_input_idx_opt.unwrap_or(0))
1561 debug_assert!(!self.onchain_tx_handler.opt_anchors());
1562 BitcoinOutPoint::new(*txid, 0)
1565 htlc_commitment_outpoint
1567 let htlc_output_spend_pending = self.onchain_tx_handler.is_output_spend_pending(&htlc_output_to_spend);
1569 if let Some(conf_thresh) = holder_delayed_output_pending {
1570 debug_assert!(holder_commitment);
1571 return Some(Balance::ClaimableAwaitingConfirmations {
1572 claimable_amount_satoshis: htlc.amount_msat / 1000,
1573 confirmation_height: conf_thresh,
1575 } else if htlc_resolved.is_some() && !htlc_output_spend_pending {
1576 // Funding transaction spends should be fully confirmed by the time any
1577 // HTLC transactions are resolved, unless we're talking about a holder
1578 // commitment tx, whose resolution is delayed until the CSV timeout is
1579 // reached, even though HTLCs may be resolved after only
1580 // ANTI_REORG_DELAY confirmations.
1581 debug_assert!(holder_commitment || self.funding_spend_confirmed.is_some());
1582 } else if counterparty_revoked_commitment {
1583 let htlc_output_claim_pending = self.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1584 if let OnchainEvent::MaturingOutput {
1585 descriptor: SpendableOutputDescriptor::StaticOutput { .. }
1587 if event.transaction.as_ref().map(|tx| tx.input.iter().any(|inp| {
1588 if let Some(htlc_spend_txid) = htlc_spend_txid_opt {
1589 tx.txid() == *htlc_spend_txid || inp.previous_output.txid == *htlc_spend_txid
1591 Some(inp.previous_output.txid) == confirmed_txid &&
1592 inp.previous_output.vout == htlc_commitment_tx_output_idx
1594 })).unwrap_or(false) {
1599 if htlc_output_claim_pending.is_some() {
1600 // We already push `Balance`s onto the `res` list for every
1601 // `StaticOutput` in a `MaturingOutput` in the revoked
1602 // counterparty commitment transaction case generally, so don't
1603 // need to do so again here.
1605 debug_assert!(holder_timeout_spend_pending.is_none(),
1606 "HTLCUpdate OnchainEvents should never appear for preimage claims");
1607 debug_assert!(!htlc.offered || htlc_spend_pending.is_none() || !htlc_spend_pending.unwrap().1,
1608 "We don't (currently) generate preimage claims against revoked outputs, where did you get one?!");
1609 return Some(Balance::CounterpartyRevokedOutputClaimable {
1610 claimable_amount_satoshis: htlc.amount_msat / 1000,
1613 } else if htlc.offered == holder_commitment {
1614 // If the payment was outbound, check if there's an HTLCUpdate
1615 // indicating we have spent this HTLC with a timeout, claiming it back
1616 // and awaiting confirmations on it.
1617 if let Some(conf_thresh) = holder_timeout_spend_pending {
1618 return Some(Balance::ClaimableAwaitingConfirmations {
1619 claimable_amount_satoshis: htlc.amount_msat / 1000,
1620 confirmation_height: conf_thresh,
1623 return Some(Balance::MaybeTimeoutClaimableHTLC {
1624 claimable_amount_satoshis: htlc.amount_msat / 1000,
1625 claimable_height: htlc.cltv_expiry,
1628 } else if self.payment_preimages.get(&htlc.payment_hash).is_some() {
1629 // Otherwise (the payment was inbound), only expose it as claimable if
1630 // we know the preimage.
1631 // Note that if there is a pending claim, but it did not use the
1632 // preimage, we lost funds to our counterparty! We will then continue
1633 // to show it as ContentiousClaimable until ANTI_REORG_DELAY.
1634 debug_assert!(holder_timeout_spend_pending.is_none());
1635 if let Some((conf_thresh, true)) = htlc_spend_pending {
1636 return Some(Balance::ClaimableAwaitingConfirmations {
1637 claimable_amount_satoshis: htlc.amount_msat / 1000,
1638 confirmation_height: conf_thresh,
1641 return Some(Balance::ContentiousClaimable {
1642 claimable_amount_satoshis: htlc.amount_msat / 1000,
1643 timeout_height: htlc.cltv_expiry,
1646 } else if htlc_resolved.is_none() {
1647 return Some(Balance::MaybePreimageClaimableHTLC {
1648 claimable_amount_satoshis: htlc.amount_msat / 1000,
1649 expiry_height: htlc.cltv_expiry,
1656 impl<Signer: WriteableEcdsaChannelSigner> ChannelMonitor<Signer> {
1657 /// Gets the balances in this channel which are either claimable by us if we were to
1658 /// force-close the channel now or which are claimable on-chain (possibly awaiting
1661 /// Any balances in the channel which are available on-chain (excluding on-chain fees) are
1662 /// included here until an [`Event::SpendableOutputs`] event has been generated for the
1663 /// balance, or until our counterparty has claimed the balance and accrued several
1664 /// confirmations on the claim transaction.
1666 /// Note that for `ChannelMonitors` which track a channel which went on-chain with versions of
1667 /// LDK prior to 0.0.111, balances may not be fully captured if our counterparty broadcasted
1668 /// a revoked state.
1670 /// See [`Balance`] for additional details on the types of claimable balances which
1671 /// may be returned here and their meanings.
1672 pub fn get_claimable_balances(&self) -> Vec<Balance> {
1673 let mut res = Vec::new();
1674 let us = self.inner.lock().unwrap();
1676 let mut confirmed_txid = us.funding_spend_confirmed;
1677 let mut confirmed_counterparty_output = us.confirmed_commitment_tx_counterparty_output;
1678 let mut pending_commitment_tx_conf_thresh = None;
1679 let funding_spend_pending = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1680 if let OnchainEvent::FundingSpendConfirmation { commitment_tx_to_counterparty_output, .. } =
1683 confirmed_counterparty_output = commitment_tx_to_counterparty_output;
1684 Some((event.txid, event.confirmation_threshold()))
1687 if let Some((txid, conf_thresh)) = funding_spend_pending {
1688 debug_assert!(us.funding_spend_confirmed.is_none(),
1689 "We have a pending funding spend awaiting anti-reorg confirmation, we can't have confirmed it already!");
1690 confirmed_txid = Some(txid);
1691 pending_commitment_tx_conf_thresh = Some(conf_thresh);
1694 macro_rules! walk_htlcs {
1695 ($holder_commitment: expr, $counterparty_revoked_commitment: expr, $htlc_iter: expr) => {
1696 for htlc in $htlc_iter {
1697 if htlc.transaction_output_index.is_some() {
1699 if let Some(bal) = us.get_htlc_balance(htlc, $holder_commitment, $counterparty_revoked_commitment, confirmed_txid) {
1707 if let Some(txid) = confirmed_txid {
1708 let mut found_commitment_tx = false;
1709 if let Some(counterparty_tx_htlcs) = us.counterparty_claimable_outpoints.get(&txid) {
1710 // First look for the to_remote output back to us.
1711 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1712 if let Some(value) = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1713 if let OnchainEvent::MaturingOutput {
1714 descriptor: SpendableOutputDescriptor::StaticPaymentOutput(descriptor)
1716 Some(descriptor.output.value)
1719 res.push(Balance::ClaimableAwaitingConfirmations {
1720 claimable_amount_satoshis: value,
1721 confirmation_height: conf_thresh,
1724 // If a counterparty commitment transaction is awaiting confirmation, we
1725 // should either have a StaticPaymentOutput MaturingOutput event awaiting
1726 // confirmation with the same height or have never met our dust amount.
1729 if Some(txid) == us.current_counterparty_commitment_txid || Some(txid) == us.prev_counterparty_commitment_txid {
1730 walk_htlcs!(false, false, counterparty_tx_htlcs.iter().map(|(a, _)| a));
1732 walk_htlcs!(false, true, counterparty_tx_htlcs.iter().map(|(a, _)| a));
1733 // The counterparty broadcasted a revoked state!
1734 // Look for any StaticOutputs first, generating claimable balances for those.
1735 // If any match the confirmed counterparty revoked to_self output, skip
1736 // generating a CounterpartyRevokedOutputClaimable.
1737 let mut spent_counterparty_output = false;
1738 for event in us.onchain_events_awaiting_threshold_conf.iter() {
1739 if let OnchainEvent::MaturingOutput {
1740 descriptor: SpendableOutputDescriptor::StaticOutput { output, .. }
1742 res.push(Balance::ClaimableAwaitingConfirmations {
1743 claimable_amount_satoshis: output.value,
1744 confirmation_height: event.confirmation_threshold(),
1746 if let Some(confirmed_to_self_idx) = confirmed_counterparty_output.map(|(idx, _)| idx) {
1747 if event.transaction.as_ref().map(|tx|
1748 tx.input.iter().any(|inp| inp.previous_output.vout == confirmed_to_self_idx)
1749 ).unwrap_or(false) {
1750 spent_counterparty_output = true;
1756 if spent_counterparty_output {
1757 } else if let Some((confirmed_to_self_idx, amt)) = confirmed_counterparty_output {
1758 let output_spendable = us.onchain_tx_handler
1759 .is_output_spend_pending(&BitcoinOutPoint::new(txid, confirmed_to_self_idx));
1760 if output_spendable {
1761 res.push(Balance::CounterpartyRevokedOutputClaimable {
1762 claimable_amount_satoshis: amt,
1766 // Counterparty output is missing, either it was broadcasted on a
1767 // previous version of LDK or the counterparty hadn't met dust.
1770 found_commitment_tx = true;
1771 } else if txid == us.current_holder_commitment_tx.txid {
1772 walk_htlcs!(true, false, us.current_holder_commitment_tx.htlc_outputs.iter().map(|(a, _, _)| a));
1773 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1774 res.push(Balance::ClaimableAwaitingConfirmations {
1775 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
1776 confirmation_height: conf_thresh,
1779 found_commitment_tx = true;
1780 } else if let Some(prev_commitment) = &us.prev_holder_signed_commitment_tx {
1781 if txid == prev_commitment.txid {
1782 walk_htlcs!(true, false, prev_commitment.htlc_outputs.iter().map(|(a, _, _)| a));
1783 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1784 res.push(Balance::ClaimableAwaitingConfirmations {
1785 claimable_amount_satoshis: prev_commitment.to_self_value_sat,
1786 confirmation_height: conf_thresh,
1789 found_commitment_tx = true;
1792 if !found_commitment_tx {
1793 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1794 // We blindly assume this is a cooperative close transaction here, and that
1795 // neither us nor our counterparty misbehaved. At worst we've under-estimated
1796 // the amount we can claim as we'll punish a misbehaving counterparty.
1797 res.push(Balance::ClaimableAwaitingConfirmations {
1798 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
1799 confirmation_height: conf_thresh,
1804 let mut claimable_inbound_htlc_value_sat = 0;
1805 for (htlc, _, _) in us.current_holder_commitment_tx.htlc_outputs.iter() {
1806 if htlc.transaction_output_index.is_none() { continue; }
1808 res.push(Balance::MaybeTimeoutClaimableHTLC {
1809 claimable_amount_satoshis: htlc.amount_msat / 1000,
1810 claimable_height: htlc.cltv_expiry,
1812 } else if us.payment_preimages.get(&htlc.payment_hash).is_some() {
1813 claimable_inbound_htlc_value_sat += htlc.amount_msat / 1000;
1815 // As long as the HTLC is still in our latest commitment state, treat
1816 // it as potentially claimable, even if it has long-since expired.
1817 res.push(Balance::MaybePreimageClaimableHTLC {
1818 claimable_amount_satoshis: htlc.amount_msat / 1000,
1819 expiry_height: htlc.cltv_expiry,
1823 res.push(Balance::ClaimableOnChannelClose {
1824 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat + claimable_inbound_htlc_value_sat,
1831 /// Gets the set of outbound HTLCs which can be (or have been) resolved by this
1832 /// `ChannelMonitor`. This is used to determine if an HTLC was removed from the channel prior
1833 /// to the `ChannelManager` having been persisted.
1835 /// This is similar to [`Self::get_pending_or_resolved_outbound_htlcs`] except it includes
1836 /// HTLCs which were resolved on-chain (i.e. where the final HTLC resolution was done by an
1837 /// event from this `ChannelMonitor`).
1838 pub(crate) fn get_all_current_outbound_htlcs(&self) -> HashMap<HTLCSource, (HTLCOutputInCommitment, Option<PaymentPreimage>)> {
1839 let mut res = HashMap::new();
1840 // Just examine the available counterparty commitment transactions. See docs on
1841 // `fail_unbroadcast_htlcs`, below, for justification.
1842 let us = self.inner.lock().unwrap();
1843 macro_rules! walk_counterparty_commitment {
1845 if let Some(ref latest_outpoints) = us.counterparty_claimable_outpoints.get($txid) {
1846 for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1847 if let &Some(ref source) = source_option {
1848 res.insert((**source).clone(), (htlc.clone(),
1849 us.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).cloned()));
1855 if let Some(ref txid) = us.current_counterparty_commitment_txid {
1856 walk_counterparty_commitment!(txid);
1858 if let Some(ref txid) = us.prev_counterparty_commitment_txid {
1859 walk_counterparty_commitment!(txid);
1864 /// Gets the set of outbound HTLCs which are pending resolution in this channel or which were
1865 /// resolved with a preimage from our counterparty.
1867 /// This is used to reconstruct pending outbound payments on restart in the ChannelManager.
1869 /// Currently, the preimage is unused, however if it is present in the relevant internal state
1870 /// an HTLC is always included even if it has been resolved.
1871 pub(crate) fn get_pending_or_resolved_outbound_htlcs(&self) -> HashMap<HTLCSource, (HTLCOutputInCommitment, Option<PaymentPreimage>)> {
1872 let us = self.inner.lock().unwrap();
1873 // We're only concerned with the confirmation count of HTLC transactions, and don't
1874 // actually care how many confirmations a commitment transaction may or may not have. Thus,
1875 // we look for either a FundingSpendConfirmation event or a funding_spend_confirmed.
1876 let confirmed_txid = us.funding_spend_confirmed.or_else(|| {
1877 us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1878 if let OnchainEvent::FundingSpendConfirmation { .. } = event.event {
1884 if confirmed_txid.is_none() {
1885 // If we have not seen a commitment transaction on-chain (ie the channel is not yet
1886 // closed), just get the full set.
1888 return self.get_all_current_outbound_htlcs();
1891 let mut res = HashMap::new();
1892 macro_rules! walk_htlcs {
1893 ($holder_commitment: expr, $htlc_iter: expr) => {
1894 for (htlc, source) in $htlc_iter {
1895 if us.htlcs_resolved_on_chain.iter().any(|v| v.commitment_tx_output_idx == htlc.transaction_output_index) {
1896 // We should assert that funding_spend_confirmed is_some() here, but we
1897 // have some unit tests which violate HTLC transaction CSVs entirely and
1899 // TODO: Once tests all connect transactions at consensus-valid times, we
1900 // should assert here like we do in `get_claimable_balances`.
1901 } else if htlc.offered == $holder_commitment {
1902 // If the payment was outbound, check if there's an HTLCUpdate
1903 // indicating we have spent this HTLC with a timeout, claiming it back
1904 // and awaiting confirmations on it.
1905 let htlc_update_confd = us.onchain_events_awaiting_threshold_conf.iter().any(|event| {
1906 if let OnchainEvent::HTLCUpdate { commitment_tx_output_idx: Some(commitment_tx_output_idx), .. } = event.event {
1907 // If the HTLC was timed out, we wait for ANTI_REORG_DELAY blocks
1908 // before considering it "no longer pending" - this matches when we
1909 // provide the ChannelManager an HTLC failure event.
1910 Some(commitment_tx_output_idx) == htlc.transaction_output_index &&
1911 us.best_block.height() >= event.height + ANTI_REORG_DELAY - 1
1912 } else if let OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, .. } = event.event {
1913 // If the HTLC was fulfilled with a preimage, we consider the HTLC
1914 // immediately non-pending, matching when we provide ChannelManager
1916 Some(commitment_tx_output_idx) == htlc.transaction_output_index
1919 let counterparty_resolved_preimage_opt =
1920 us.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).cloned();
1921 if !htlc_update_confd || counterparty_resolved_preimage_opt.is_some() {
1922 res.insert(source.clone(), (htlc.clone(), counterparty_resolved_preimage_opt));
1929 let txid = confirmed_txid.unwrap();
1930 if Some(txid) == us.current_counterparty_commitment_txid || Some(txid) == us.prev_counterparty_commitment_txid {
1931 walk_htlcs!(false, us.counterparty_claimable_outpoints.get(&txid).unwrap().iter().filter_map(|(a, b)| {
1932 if let &Some(ref source) = b {
1933 Some((a, &**source))
1936 } else if txid == us.current_holder_commitment_tx.txid {
1937 walk_htlcs!(true, us.current_holder_commitment_tx.htlc_outputs.iter().filter_map(|(a, _, c)| {
1938 if let Some(source) = c { Some((a, source)) } else { None }
1940 } else if let Some(prev_commitment) = &us.prev_holder_signed_commitment_tx {
1941 if txid == prev_commitment.txid {
1942 walk_htlcs!(true, prev_commitment.htlc_outputs.iter().filter_map(|(a, _, c)| {
1943 if let Some(source) = c { Some((a, source)) } else { None }
1951 pub(crate) fn get_stored_preimages(&self) -> HashMap<PaymentHash, PaymentPreimage> {
1952 self.inner.lock().unwrap().payment_preimages.clone()
1956 /// Compares a broadcasted commitment transaction's HTLCs with those in the latest state,
1957 /// failing any HTLCs which didn't make it into the broadcasted commitment transaction back
1958 /// after ANTI_REORG_DELAY blocks.
1960 /// We always compare against the set of HTLCs in counterparty commitment transactions, as those
1961 /// are the commitment transactions which are generated by us. The off-chain state machine in
1962 /// `Channel` will automatically resolve any HTLCs which were never included in a commitment
1963 /// transaction when it detects channel closure, but it is up to us to ensure any HTLCs which were
1964 /// included in a remote commitment transaction are failed back if they are not present in the
1965 /// broadcasted commitment transaction.
1967 /// Specifically, the removal process for HTLCs in `Channel` is always based on the counterparty
1968 /// sending a `revoke_and_ack`, which causes us to clear `prev_counterparty_commitment_txid`. Thus,
1969 /// as long as we examine both the current counterparty commitment transaction and, if it hasn't
1970 /// been revoked yet, the previous one, we we will never "forget" to resolve an HTLC.
1971 macro_rules! fail_unbroadcast_htlcs {
1972 ($self: expr, $commitment_tx_type: expr, $commitment_txid_confirmed: expr, $commitment_tx_confirmed: expr,
1973 $commitment_tx_conf_height: expr, $commitment_tx_conf_hash: expr, $confirmed_htlcs_list: expr, $logger: expr) => { {
1974 debug_assert_eq!($commitment_tx_confirmed.txid(), $commitment_txid_confirmed);
1976 macro_rules! check_htlc_fails {
1977 ($txid: expr, $commitment_tx: expr) => {
1978 if let Some(ref latest_outpoints) = $self.counterparty_claimable_outpoints.get($txid) {
1979 for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1980 if let &Some(ref source) = source_option {
1981 // Check if the HTLC is present in the commitment transaction that was
1982 // broadcast, but not if it was below the dust limit, which we should
1983 // fail backwards immediately as there is no way for us to learn the
1984 // payment_preimage.
1985 // Note that if the dust limit were allowed to change between
1986 // commitment transactions we'd want to be check whether *any*
1987 // broadcastable commitment transaction has the HTLC in it, but it
1988 // cannot currently change after channel initialization, so we don't
1990 let confirmed_htlcs_iter: &mut Iterator<Item = (&HTLCOutputInCommitment, Option<&HTLCSource>)> = &mut $confirmed_htlcs_list;
1992 let mut matched_htlc = false;
1993 for (ref broadcast_htlc, ref broadcast_source) in confirmed_htlcs_iter {
1994 if broadcast_htlc.transaction_output_index.is_some() &&
1995 (Some(&**source) == *broadcast_source ||
1996 (broadcast_source.is_none() &&
1997 broadcast_htlc.payment_hash == htlc.payment_hash &&
1998 broadcast_htlc.amount_msat == htlc.amount_msat)) {
1999 matched_htlc = true;
2003 if matched_htlc { continue; }
2004 if $self.counterparty_fulfilled_htlcs.get(&SentHTLCId::from_source(source)).is_some() {
2007 $self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
2008 if entry.height != $commitment_tx_conf_height { return true; }
2010 OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
2011 *update_source != **source
2016 let entry = OnchainEventEntry {
2017 txid: $commitment_txid_confirmed,
2018 transaction: Some($commitment_tx_confirmed.clone()),
2019 height: $commitment_tx_conf_height,
2020 block_hash: Some(*$commitment_tx_conf_hash),
2021 event: OnchainEvent::HTLCUpdate {
2022 source: (**source).clone(),
2023 payment_hash: htlc.payment_hash.clone(),
2024 htlc_value_satoshis: Some(htlc.amount_msat / 1000),
2025 commitment_tx_output_idx: None,
2028 log_trace!($logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of {} commitment transaction {}, waiting for confirmation (at height {})",
2029 log_bytes!(htlc.payment_hash.0), $commitment_tx, $commitment_tx_type,
2030 $commitment_txid_confirmed, entry.confirmation_threshold());
2031 $self.onchain_events_awaiting_threshold_conf.push(entry);
2037 if let Some(ref txid) = $self.current_counterparty_commitment_txid {
2038 check_htlc_fails!(txid, "current");
2040 if let Some(ref txid) = $self.prev_counterparty_commitment_txid {
2041 check_htlc_fails!(txid, "previous");
2046 // In the `test_invalid_funding_tx` test, we need a bogus script which matches the HTLC-Accepted
2047 // witness length match (ie is 136 bytes long). We generate one here which we also use in some
2048 // in-line tests later.
2051 pub fn deliberately_bogus_accepted_htlc_witness_program() -> Vec<u8> {
2052 let mut ret = [opcodes::all::OP_NOP.to_u8(); 136];
2053 ret[131] = opcodes::all::OP_DROP.to_u8();
2054 ret[132] = opcodes::all::OP_DROP.to_u8();
2055 ret[133] = opcodes::all::OP_DROP.to_u8();
2056 ret[134] = opcodes::all::OP_DROP.to_u8();
2057 ret[135] = opcodes::OP_TRUE.to_u8();
2062 pub fn deliberately_bogus_accepted_htlc_witness() -> Vec<Vec<u8>> {
2063 vec![Vec::new(), Vec::new(), Vec::new(), Vec::new(), deliberately_bogus_accepted_htlc_witness_program().into()].into()
2066 impl<Signer: WriteableEcdsaChannelSigner> ChannelMonitorImpl<Signer> {
2067 /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
2068 /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
2069 /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
2070 fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), &'static str> {
2071 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
2072 return Err("Previous secret did not match new one");
2075 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
2076 // events for now-revoked/fulfilled HTLCs.
2077 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
2078 if self.current_counterparty_commitment_txid.unwrap() != txid {
2079 let cur_claimables = self.counterparty_claimable_outpoints.get(
2080 &self.current_counterparty_commitment_txid.unwrap()).unwrap();
2081 for (_, ref source_opt) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
2082 if let Some(source) = source_opt {
2083 if !cur_claimables.iter()
2084 .any(|(_, cur_source_opt)| cur_source_opt == source_opt)
2086 self.counterparty_fulfilled_htlcs.remove(&SentHTLCId::from_source(source));
2090 for &mut (_, ref mut source_opt) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
2094 assert!(cfg!(fuzzing), "Commitment txids are unique outside of fuzzing, where hashes can collide");
2098 if !self.payment_preimages.is_empty() {
2099 let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
2100 let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
2101 let min_idx = self.get_min_seen_secret();
2102 let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
2104 self.payment_preimages.retain(|&k, _| {
2105 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
2106 if k == htlc.payment_hash {
2110 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
2111 for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
2112 if k == htlc.payment_hash {
2117 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
2124 counterparty_hash_commitment_number.remove(&k);
2133 pub(crate) fn provide_latest_counterparty_commitment_tx<L: Deref>(&mut self, txid: Txid, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>, commitment_number: u64, their_per_commitment_point: PublicKey, logger: &L) where L::Target: Logger {
2134 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
2135 // so that a remote monitor doesn't learn anything unless there is a malicious close.
2136 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
2138 for &(ref htlc, _) in &htlc_outputs {
2139 self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
2142 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", txid, commitment_number, htlc_outputs.len());
2143 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
2144 self.current_counterparty_commitment_txid = Some(txid);
2145 self.counterparty_claimable_outpoints.insert(txid, htlc_outputs.clone());
2146 self.current_counterparty_commitment_number = commitment_number;
2147 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
2148 match self.their_cur_per_commitment_points {
2149 Some(old_points) => {
2150 if old_points.0 == commitment_number + 1 {
2151 self.their_cur_per_commitment_points = Some((old_points.0, old_points.1, Some(their_per_commitment_point)));
2152 } else if old_points.0 == commitment_number + 2 {
2153 if let Some(old_second_point) = old_points.2 {
2154 self.their_cur_per_commitment_points = Some((old_points.0 - 1, old_second_point, Some(their_per_commitment_point)));
2156 self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2159 self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2163 self.their_cur_per_commitment_points = Some((commitment_number, their_per_commitment_point, None));
2166 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
2167 for htlc in htlc_outputs {
2168 if htlc.0.transaction_output_index.is_some() {
2174 /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
2175 /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
2176 /// is important that any clones of this channel monitor (including remote clones) by kept
2177 /// up-to-date as our holder commitment transaction is updated.
2178 /// Panics if set_on_holder_tx_csv has never been called.
2179 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> {
2180 if htlc_outputs.iter().any(|(_, s, _)| s.is_some()) {
2181 // If we have non-dust HTLCs in htlc_outputs, ensure they match the HTLCs in the
2182 // `holder_commitment_tx`. In the future, we'll no longer provide the redundant data
2183 // and just pass in source data via `nondust_htlc_sources`.
2184 debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.trust().htlcs().len());
2185 for (a, b) in htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).map(|(h, _, _)| h).zip(holder_commitment_tx.trust().htlcs().iter()) {
2186 debug_assert_eq!(a, b);
2188 debug_assert_eq!(htlc_outputs.iter().filter(|(_, s, _)| s.is_some()).count(), holder_commitment_tx.counterparty_htlc_sigs.len());
2189 for (a, b) in htlc_outputs.iter().filter_map(|(_, s, _)| s.as_ref()).zip(holder_commitment_tx.counterparty_htlc_sigs.iter()) {
2190 debug_assert_eq!(a, b);
2192 debug_assert!(nondust_htlc_sources.is_empty());
2194 // If we don't have any non-dust HTLCs in htlc_outputs, assume they were all passed via
2195 // `nondust_htlc_sources`, building up the final htlc_outputs by combining
2196 // `nondust_htlc_sources` and the `holder_commitment_tx`
2197 #[cfg(debug_assertions)] {
2199 for htlc in holder_commitment_tx.trust().htlcs().iter() {
2200 assert!(htlc.transaction_output_index.unwrap() as i32 > prev);
2201 prev = htlc.transaction_output_index.unwrap() as i32;
2204 debug_assert!(htlc_outputs.iter().all(|(htlc, _, _)| htlc.transaction_output_index.is_none()));
2205 debug_assert!(htlc_outputs.iter().all(|(_, sig_opt, _)| sig_opt.is_none()));
2206 debug_assert_eq!(holder_commitment_tx.trust().htlcs().len(), holder_commitment_tx.counterparty_htlc_sigs.len());
2208 let mut sources_iter = nondust_htlc_sources.into_iter();
2210 for (htlc, counterparty_sig) in holder_commitment_tx.trust().htlcs().iter()
2211 .zip(holder_commitment_tx.counterparty_htlc_sigs.iter())
2214 let source = sources_iter.next().expect("Non-dust HTLC sources didn't match commitment tx");
2215 #[cfg(debug_assertions)] {
2216 assert!(source.possibly_matches_output(htlc));
2218 htlc_outputs.push((htlc.clone(), Some(counterparty_sig.clone()), Some(source)));
2220 htlc_outputs.push((htlc.clone(), Some(counterparty_sig.clone()), None));
2223 debug_assert!(sources_iter.next().is_none());
2226 let trusted_tx = holder_commitment_tx.trust();
2227 let txid = trusted_tx.txid();
2228 let tx_keys = trusted_tx.keys();
2229 self.current_holder_commitment_number = trusted_tx.commitment_number();
2230 let mut new_holder_commitment_tx = HolderSignedTx {
2232 revocation_key: tx_keys.revocation_key,
2233 a_htlc_key: tx_keys.broadcaster_htlc_key,
2234 b_htlc_key: tx_keys.countersignatory_htlc_key,
2235 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
2236 per_commitment_point: tx_keys.per_commitment_point,
2238 to_self_value_sat: holder_commitment_tx.to_broadcaster_value_sat(),
2239 feerate_per_kw: trusted_tx.feerate_per_kw(),
2241 self.onchain_tx_handler.provide_latest_holder_tx(holder_commitment_tx);
2242 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
2243 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
2244 for (claimed_htlc_id, claimed_preimage) in claimed_htlcs {
2245 #[cfg(debug_assertions)] {
2246 let cur_counterparty_htlcs = self.counterparty_claimable_outpoints.get(
2247 &self.current_counterparty_commitment_txid.unwrap()).unwrap();
2248 assert!(cur_counterparty_htlcs.iter().any(|(_, source_opt)| {
2249 if let Some(source) = source_opt {
2250 SentHTLCId::from_source(source) == *claimed_htlc_id
2254 self.counterparty_fulfilled_htlcs.insert(*claimed_htlc_id, *claimed_preimage);
2256 if self.holder_tx_signed {
2257 return Err("Latest holder commitment signed has already been signed, update is rejected");
2262 /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
2263 /// commitment_tx_infos which contain the payment hash have been revoked.
2264 fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
2265 &mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage, broadcaster: &B,
2266 fee_estimator: &LowerBoundedFeeEstimator<F>, logger: &L)
2267 where B::Target: BroadcasterInterface,
2268 F::Target: FeeEstimator,
2271 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
2273 // If the channel is force closed, try to claim the output from this preimage.
2274 // First check if a counterparty commitment transaction has been broadcasted:
2275 macro_rules! claim_htlcs {
2276 ($commitment_number: expr, $txid: expr) => {
2277 let (htlc_claim_reqs, _) = self.get_counterparty_output_claim_info($commitment_number, $txid, None);
2278 self.onchain_tx_handler.update_claims_view_from_requests(htlc_claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
2281 if let Some(txid) = self.current_counterparty_commitment_txid {
2282 if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
2283 claim_htlcs!(*commitment_number, txid);
2287 if let Some(txid) = self.prev_counterparty_commitment_txid {
2288 if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
2289 claim_htlcs!(*commitment_number, txid);
2294 // Then if a holder commitment transaction has been seen on-chain, broadcast transactions
2295 // claiming the HTLC output from each of the holder commitment transactions.
2296 // Note that we can't just use `self.holder_tx_signed`, because that only covers the case where
2297 // *we* sign a holder commitment transaction, not when e.g. a watchtower broadcasts one of our
2298 // holder commitment transactions.
2299 if self.broadcasted_holder_revokable_script.is_some() {
2300 // Assume that the broadcasted commitment transaction confirmed in the current best
2301 // block. Even if not, its a reasonable metric for the bump criteria on the HTLC
2303 let (claim_reqs, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
2304 self.onchain_tx_handler.update_claims_view_from_requests(claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
2305 if let Some(ref tx) = self.prev_holder_signed_commitment_tx {
2306 let (claim_reqs, _) = self.get_broadcasted_holder_claims(&tx, self.best_block.height());
2307 self.onchain_tx_handler.update_claims_view_from_requests(claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
2312 pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(&mut self, broadcaster: &B, logger: &L)
2313 where B::Target: BroadcasterInterface,
2316 for tx in self.get_latest_holder_commitment_txn(logger).iter() {
2317 log_info!(logger, "Broadcasting local {}", log_tx!(tx));
2318 broadcaster.broadcast_transaction(tx);
2320 self.pending_monitor_events.push(MonitorEvent::CommitmentTxConfirmed(self.funding_info.0));
2323 pub fn update_monitor<B: Deref, F: Deref, L: Deref>(&mut self, updates: &ChannelMonitorUpdate, broadcaster: &B, fee_estimator: F, logger: &L) -> Result<(), ()>
2324 where B::Target: BroadcasterInterface,
2325 F::Target: FeeEstimator,
2328 log_info!(logger, "Applying update to monitor {}, bringing update_id from {} to {} with {} changes.",
2329 log_funding_info!(self), self.latest_update_id, updates.update_id, updates.updates.len());
2330 // ChannelMonitor updates may be applied after force close if we receive a preimage for a
2331 // broadcasted commitment transaction HTLC output that we'd like to claim on-chain. If this
2332 // is the case, we no longer have guaranteed access to the monitor's update ID, so we use a
2333 // sentinel value instead.
2335 // The `ChannelManager` may also queue redundant `ChannelForceClosed` updates if it still
2336 // thinks the channel needs to have its commitment transaction broadcast, so we'll allow
2338 if updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
2339 assert_eq!(updates.updates.len(), 1);
2340 match updates.updates[0] {
2341 ChannelMonitorUpdateStep::ChannelForceClosed { .. } => {},
2342 // We should have already seen a `ChannelForceClosed` update if we're trying to
2343 // provide a preimage at this point.
2344 ChannelMonitorUpdateStep::PaymentPreimage { .. } =>
2345 debug_assert_eq!(self.latest_update_id, CLOSED_CHANNEL_UPDATE_ID),
2347 log_error!(logger, "Attempted to apply post-force-close ChannelMonitorUpdate of type {}", updates.updates[0].variant_name());
2348 panic!("Attempted to apply post-force-close ChannelMonitorUpdate that wasn't providing a payment preimage");
2351 } else if self.latest_update_id + 1 != updates.update_id {
2352 panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
2354 let mut ret = Ok(());
2355 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(&*fee_estimator);
2356 for update in updates.updates.iter() {
2358 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs, claimed_htlcs, nondust_htlc_sources } => {
2359 log_trace!(logger, "Updating ChannelMonitor with latest holder commitment transaction info");
2360 if self.lockdown_from_offchain { panic!(); }
2361 if let Err(e) = self.provide_latest_holder_commitment_tx(commitment_tx.clone(), htlc_outputs.clone(), &claimed_htlcs, nondust_htlc_sources.clone()) {
2362 log_error!(logger, "Providing latest holder commitment transaction failed/was refused:");
2363 log_error!(logger, " {}", e);
2367 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { commitment_txid, htlc_outputs, commitment_number, their_per_commitment_point } => {
2368 log_trace!(logger, "Updating ChannelMonitor with latest counterparty commitment transaction info");
2369 self.provide_latest_counterparty_commitment_tx(*commitment_txid, htlc_outputs.clone(), *commitment_number, *their_per_commitment_point, logger)
2371 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } => {
2372 log_trace!(logger, "Updating ChannelMonitor with payment preimage");
2373 self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()), &payment_preimage, broadcaster, &bounded_fee_estimator, logger)
2375 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } => {
2376 log_trace!(logger, "Updating ChannelMonitor with commitment secret");
2377 if let Err(e) = self.provide_secret(*idx, *secret) {
2378 log_error!(logger, "Providing latest counterparty commitment secret failed/was refused:");
2379 log_error!(logger, " {}", e);
2383 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
2384 log_trace!(logger, "Updating ChannelMonitor: channel force closed, should broadcast: {}", should_broadcast);
2385 self.lockdown_from_offchain = true;
2386 if *should_broadcast {
2387 // There's no need to broadcast our commitment transaction if we've seen one
2388 // confirmed (even with 1 confirmation) as it'll be rejected as
2389 // duplicate/conflicting.
2390 let detected_funding_spend = self.funding_spend_confirmed.is_some() ||
2391 self.onchain_events_awaiting_threshold_conf.iter().find(|event| match event.event {
2392 OnchainEvent::FundingSpendConfirmation { .. } => true,
2395 if detected_funding_spend {
2398 self.broadcast_latest_holder_commitment_txn(broadcaster, logger);
2399 // If the channel supports anchor outputs, we'll need to emit an external
2400 // event to be consumed such that a child transaction is broadcast with a
2401 // high enough feerate for the parent commitment transaction to confirm.
2402 if self.onchain_tx_handler.opt_anchors() {
2403 let funding_output = HolderFundingOutput::build(
2404 self.funding_redeemscript.clone(), self.channel_value_satoshis,
2405 self.onchain_tx_handler.opt_anchors(),
2407 let best_block_height = self.best_block.height();
2408 let commitment_package = PackageTemplate::build_package(
2409 self.funding_info.0.txid.clone(), self.funding_info.0.index as u32,
2410 PackageSolvingData::HolderFundingOutput(funding_output),
2411 best_block_height, false, best_block_height,
2413 self.onchain_tx_handler.update_claims_view_from_requests(
2414 vec![commitment_package], best_block_height, best_block_height,
2415 broadcaster, &bounded_fee_estimator, logger,
2418 } else if !self.holder_tx_signed {
2419 log_error!(logger, "WARNING: You have a potentially-unsafe holder commitment transaction available to broadcast");
2420 log_error!(logger, " in channel monitor for channel {}!", log_bytes!(self.funding_info.0.to_channel_id()));
2421 log_error!(logger, " Read the docs for ChannelMonitor::get_latest_holder_commitment_txn and take manual action!");
2423 // If we generated a MonitorEvent::CommitmentTxConfirmed, the ChannelManager
2424 // will still give us a ChannelForceClosed event with !should_broadcast, but we
2425 // shouldn't print the scary warning above.
2426 log_info!(logger, "Channel off-chain state closed after we broadcasted our latest commitment transaction.");
2429 ChannelMonitorUpdateStep::ShutdownScript { scriptpubkey } => {
2430 log_trace!(logger, "Updating ChannelMonitor with shutdown script");
2431 if let Some(shutdown_script) = self.shutdown_script.replace(scriptpubkey.clone()) {
2432 panic!("Attempted to replace shutdown script {} with {}", shutdown_script, scriptpubkey);
2438 // If the updates succeeded and we were in an already closed channel state, then there's no
2439 // need to refuse any updates we expect to receive afer seeing a confirmed commitment.
2440 if ret.is_ok() && updates.update_id == CLOSED_CHANNEL_UPDATE_ID && self.latest_update_id == updates.update_id {
2444 self.latest_update_id = updates.update_id;
2446 if ret.is_ok() && self.funding_spend_seen {
2447 log_error!(logger, "Refusing Channel Monitor Update as counterparty attempted to update commitment after funding was spent");
2452 pub fn get_latest_update_id(&self) -> u64 {
2453 self.latest_update_id
2456 pub fn get_funding_txo(&self) -> &(OutPoint, Script) {
2460 pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, Script)>> {
2461 // If we've detected a counterparty commitment tx on chain, we must include it in the set
2462 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
2463 // its trivial to do, double-check that here.
2464 for (txid, _) in self.counterparty_commitment_txn_on_chain.iter() {
2465 self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
2467 &self.outputs_to_watch
2470 pub fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
2471 let mut ret = Vec::new();
2472 mem::swap(&mut ret, &mut self.pending_monitor_events);
2476 pub fn get_and_clear_pending_events(&mut self) -> Vec<Event> {
2477 let mut ret = Vec::new();
2478 mem::swap(&mut ret, &mut self.pending_events);
2480 for claim_event in self.onchain_tx_handler.get_and_clear_pending_claim_events().drain(..) {
2482 ClaimEvent::BumpCommitment {
2483 package_target_feerate_sat_per_1000_weight, commitment_tx, anchor_output_idx,
2485 let commitment_txid = commitment_tx.txid();
2486 debug_assert_eq!(self.current_holder_commitment_tx.txid, commitment_txid);
2487 let pending_htlcs = self.current_holder_commitment_tx.non_dust_htlcs();
2488 let commitment_tx_fee_satoshis = self.channel_value_satoshis -
2489 commitment_tx.output.iter().fold(0u64, |sum, output| sum + output.value);
2490 ret.push(Event::BumpTransaction(BumpTransactionEvent::ChannelClose {
2491 package_target_feerate_sat_per_1000_weight,
2493 commitment_tx_fee_satoshis,
2494 anchor_descriptor: AnchorDescriptor {
2495 channel_keys_id: self.channel_keys_id,
2496 channel_value_satoshis: self.channel_value_satoshis,
2497 outpoint: BitcoinOutPoint {
2498 txid: commitment_txid,
2499 vout: anchor_output_idx,
2505 ClaimEvent::BumpHTLC {
2506 target_feerate_sat_per_1000_weight, htlcs, tx_lock_time,
2508 let mut htlc_descriptors = Vec::with_capacity(htlcs.len());
2510 htlc_descriptors.push(HTLCDescriptor {
2511 channel_keys_id: self.channel_keys_id,
2512 channel_value_satoshis: self.channel_value_satoshis,
2513 channel_parameters: self.onchain_tx_handler.channel_transaction_parameters.clone(),
2514 commitment_txid: htlc.commitment_txid,
2515 per_commitment_number: htlc.per_commitment_number,
2517 preimage: htlc.preimage,
2518 counterparty_sig: htlc.counterparty_sig,
2521 ret.push(Event::BumpTransaction(BumpTransactionEvent::HTLCResolution {
2522 target_feerate_sat_per_1000_weight,
2532 /// Can only fail if idx is < get_min_seen_secret
2533 fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
2534 self.commitment_secrets.get_secret(idx)
2537 pub(crate) fn get_min_seen_secret(&self) -> u64 {
2538 self.commitment_secrets.get_min_seen_secret()
2541 pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
2542 self.current_counterparty_commitment_number
2545 pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
2546 self.current_holder_commitment_number
2549 /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
2550 /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
2551 /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
2552 /// HTLC-Success/HTLC-Timeout transactions.
2554 /// Returns packages to claim the revoked output(s), as well as additional outputs to watch and
2555 /// general information about the output that is to the counterparty in the commitment
2557 fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &L)
2558 -> (Vec<PackageTemplate>, TransactionOutputs, CommitmentTxCounterpartyOutputInfo)
2559 where L::Target: Logger {
2560 // Most secp and related errors trying to create keys means we have no hope of constructing
2561 // a spend transaction...so we return no transactions to broadcast
2562 let mut claimable_outpoints = Vec::new();
2563 let mut watch_outputs = Vec::new();
2564 let mut to_counterparty_output_info = None;
2566 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
2567 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
2569 macro_rules! ignore_error {
2570 ( $thing : expr ) => {
2573 Err(_) => return (claimable_outpoints, (commitment_txid, watch_outputs), to_counterparty_output_info)
2578 let commitment_number = 0xffffffffffff - ((((tx.input[0].sequence.0 as u64 & 0xffffff) << 3*8) | (tx.lock_time.0 as u64 & 0xffffff)) ^ self.commitment_transaction_number_obscure_factor);
2579 if commitment_number >= self.get_min_seen_secret() {
2580 let secret = self.get_secret(commitment_number).unwrap();
2581 let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
2582 let per_commitment_point = PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key);
2583 let revocation_pubkey = chan_utils::derive_public_revocation_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_point, &self.holder_revocation_basepoint);
2584 let delayed_key = chan_utils::derive_public_key(&self.onchain_tx_handler.secp_ctx, &PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key), &self.counterparty_commitment_params.counterparty_delayed_payment_base_key);
2586 let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_commitment_params.on_counterparty_tx_csv, &delayed_key);
2587 let revokeable_p2wsh = revokeable_redeemscript.to_v0_p2wsh();
2589 // First, process non-htlc outputs (to_holder & to_counterparty)
2590 for (idx, outp) in tx.output.iter().enumerate() {
2591 if outp.script_pubkey == revokeable_p2wsh {
2592 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);
2593 let justice_package = PackageTemplate::build_package(commitment_txid, idx as u32, PackageSolvingData::RevokedOutput(revk_outp), height + self.counterparty_commitment_params.on_counterparty_tx_csv as u32, true, height);
2594 claimable_outpoints.push(justice_package);
2595 to_counterparty_output_info =
2596 Some((idx.try_into().expect("Txn can't have more than 2^32 outputs"), outp.value));
2600 // Then, try to find revoked htlc outputs
2601 if let Some(ref per_commitment_data) = per_commitment_option {
2602 for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
2603 if let Some(transaction_output_index) = htlc.transaction_output_index {
2604 if transaction_output_index as usize >= tx.output.len() ||
2605 tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
2606 // per_commitment_data is corrupt or our commitment signing key leaked!
2607 return (claimable_outpoints, (commitment_txid, watch_outputs),
2608 to_counterparty_output_info);
2610 let revk_htlc_outp = RevokedHTLCOutput::build(per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key, htlc.amount_msat / 1000, htlc.clone(), self.onchain_tx_handler.channel_transaction_parameters.opt_anchors.is_some());
2611 let justice_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, PackageSolvingData::RevokedHTLCOutput(revk_htlc_outp), htlc.cltv_expiry, true, height);
2612 claimable_outpoints.push(justice_package);
2617 // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
2618 if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
2619 // We're definitely a counterparty commitment transaction!
2620 log_error!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
2621 for (idx, outp) in tx.output.iter().enumerate() {
2622 watch_outputs.push((idx as u32, outp.clone()));
2624 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
2626 if let Some(per_commitment_data) = per_commitment_option {
2627 fail_unbroadcast_htlcs!(self, "revoked_counterparty", commitment_txid, tx, height,
2628 block_hash, per_commitment_data.iter().map(|(htlc, htlc_source)|
2629 (htlc, htlc_source.as_ref().map(|htlc_source| htlc_source.as_ref()))
2632 debug_assert!(false, "We should have per-commitment option for any recognized old commitment txn");
2633 fail_unbroadcast_htlcs!(self, "revoked counterparty", commitment_txid, tx, height,
2634 block_hash, [].iter().map(|reference| *reference), logger);
2637 } else if let Some(per_commitment_data) = per_commitment_option {
2638 // While this isn't useful yet, there is a potential race where if a counterparty
2639 // revokes a state at the same time as the commitment transaction for that state is
2640 // confirmed, and the watchtower receives the block before the user, the user could
2641 // upload a new ChannelMonitor with the revocation secret but the watchtower has
2642 // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
2643 // not being generated by the above conditional. Thus, to be safe, we go ahead and
2645 for (idx, outp) in tx.output.iter().enumerate() {
2646 watch_outputs.push((idx as u32, outp.clone()));
2648 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
2650 log_info!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
2651 fail_unbroadcast_htlcs!(self, "counterparty", commitment_txid, tx, height, block_hash,
2652 per_commitment_data.iter().map(|(htlc, htlc_source)|
2653 (htlc, htlc_source.as_ref().map(|htlc_source| htlc_source.as_ref()))
2656 let (htlc_claim_reqs, counterparty_output_info) =
2657 self.get_counterparty_output_claim_info(commitment_number, commitment_txid, Some(tx));
2658 to_counterparty_output_info = counterparty_output_info;
2659 for req in htlc_claim_reqs {
2660 claimable_outpoints.push(req);
2664 (claimable_outpoints, (commitment_txid, watch_outputs), to_counterparty_output_info)
2667 /// Returns the HTLC claim package templates and the counterparty output info
2668 fn get_counterparty_output_claim_info(&self, commitment_number: u64, commitment_txid: Txid, tx: Option<&Transaction>)
2669 -> (Vec<PackageTemplate>, CommitmentTxCounterpartyOutputInfo) {
2670 let mut claimable_outpoints = Vec::new();
2671 let mut to_counterparty_output_info: CommitmentTxCounterpartyOutputInfo = None;
2673 let htlc_outputs = match self.counterparty_claimable_outpoints.get(&commitment_txid) {
2674 Some(outputs) => outputs,
2675 None => return (claimable_outpoints, to_counterparty_output_info),
2677 let per_commitment_points = match self.their_cur_per_commitment_points {
2678 Some(points) => points,
2679 None => return (claimable_outpoints, to_counterparty_output_info),
2682 let per_commitment_point =
2683 // If the counterparty commitment tx is the latest valid state, use their latest
2684 // per-commitment point
2685 if per_commitment_points.0 == commitment_number { &per_commitment_points.1 }
2686 else if let Some(point) = per_commitment_points.2.as_ref() {
2687 // If counterparty commitment tx is the state previous to the latest valid state, use
2688 // their previous per-commitment point (non-atomicity of revocation means it's valid for
2689 // them to temporarily have two valid commitment txns from our viewpoint)
2690 if per_commitment_points.0 == commitment_number + 1 {
2692 } else { return (claimable_outpoints, to_counterparty_output_info); }
2693 } else { return (claimable_outpoints, to_counterparty_output_info); };
2695 if let Some(transaction) = tx {
2696 let revocation_pubkey = chan_utils::derive_public_revocation_key(
2697 &self.onchain_tx_handler.secp_ctx, &per_commitment_point, &self.holder_revocation_basepoint);
2698 let delayed_key = chan_utils::derive_public_key(&self.onchain_tx_handler.secp_ctx,
2699 &per_commitment_point,
2700 &self.counterparty_commitment_params.counterparty_delayed_payment_base_key);
2701 let revokeable_p2wsh = chan_utils::get_revokeable_redeemscript(&revocation_pubkey,
2702 self.counterparty_commitment_params.on_counterparty_tx_csv,
2703 &delayed_key).to_v0_p2wsh();
2704 for (idx, outp) in transaction.output.iter().enumerate() {
2705 if outp.script_pubkey == revokeable_p2wsh {
2706 to_counterparty_output_info =
2707 Some((idx.try_into().expect("Can't have > 2^32 outputs"), outp.value));
2712 for (_, &(ref htlc, _)) in htlc_outputs.iter().enumerate() {
2713 if let Some(transaction_output_index) = htlc.transaction_output_index {
2714 if let Some(transaction) = tx {
2715 if transaction_output_index as usize >= transaction.output.len() ||
2716 transaction.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
2717 // per_commitment_data is corrupt or our commitment signing key leaked!
2718 return (claimable_outpoints, to_counterparty_output_info);
2721 let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
2722 if preimage.is_some() || !htlc.offered {
2723 let counterparty_htlc_outp = if htlc.offered {
2724 PackageSolvingData::CounterpartyOfferedHTLCOutput(
2725 CounterpartyOfferedHTLCOutput::build(*per_commitment_point,
2726 self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
2727 self.counterparty_commitment_params.counterparty_htlc_base_key,
2728 preimage.unwrap(), htlc.clone(), self.onchain_tx_handler.opt_anchors()))
2730 PackageSolvingData::CounterpartyReceivedHTLCOutput(
2731 CounterpartyReceivedHTLCOutput::build(*per_commitment_point,
2732 self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
2733 self.counterparty_commitment_params.counterparty_htlc_base_key,
2734 htlc.clone(), self.onchain_tx_handler.opt_anchors()))
2736 let aggregation = if !htlc.offered { false } else { true };
2737 let counterparty_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, counterparty_htlc_outp, htlc.cltv_expiry,aggregation, 0);
2738 claimable_outpoints.push(counterparty_package);
2743 (claimable_outpoints, to_counterparty_output_info)
2746 /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
2747 fn check_spend_counterparty_htlc<L: Deref>(
2748 &mut self, tx: &Transaction, commitment_number: u64, commitment_txid: &Txid, height: u32, logger: &L
2749 ) -> (Vec<PackageTemplate>, Option<TransactionOutputs>) where L::Target: Logger {
2750 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
2751 let per_commitment_key = match SecretKey::from_slice(&secret) {
2753 Err(_) => return (Vec::new(), None)
2755 let per_commitment_point = PublicKey::from_secret_key(&self.onchain_tx_handler.secp_ctx, &per_commitment_key);
2757 let htlc_txid = tx.txid();
2758 let mut claimable_outpoints = vec![];
2759 let mut outputs_to_watch = None;
2760 // Previously, we would only claim HTLCs from revoked HTLC transactions if they had 1 input
2761 // with a witness of 5 elements and 1 output. This wasn't enough for anchor outputs, as the
2762 // counterparty can now aggregate multiple HTLCs into a single transaction thanks to
2763 // `SIGHASH_SINGLE` remote signatures, leading us to not claim any HTLCs upon seeing a
2764 // confirmed revoked HTLC transaction (for more details, see
2765 // https://lists.linuxfoundation.org/pipermail/lightning-dev/2022-April/003561.html).
2767 // We make sure we're not vulnerable to this case by checking all inputs of the transaction,
2768 // and claim those which spend the commitment transaction, have a witness of 5 elements, and
2769 // have a corresponding output at the same index within the transaction.
2770 for (idx, input) in tx.input.iter().enumerate() {
2771 if input.previous_output.txid == *commitment_txid && input.witness.len() == 5 && tx.output.get(idx).is_some() {
2772 log_error!(logger, "Got broadcast of revoked counterparty HTLC transaction, spending {}:{}", htlc_txid, idx);
2773 let revk_outp = RevokedOutput::build(
2774 per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key,
2775 self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key,
2776 tx.output[idx].value, self.counterparty_commitment_params.on_counterparty_tx_csv
2778 let justice_package = PackageTemplate::build_package(
2779 htlc_txid, idx as u32, PackageSolvingData::RevokedOutput(revk_outp),
2780 height + self.counterparty_commitment_params.on_counterparty_tx_csv as u32, true, height
2782 claimable_outpoints.push(justice_package);
2783 if outputs_to_watch.is_none() {
2784 outputs_to_watch = Some((htlc_txid, vec![]));
2786 outputs_to_watch.as_mut().unwrap().1.push((idx as u32, tx.output[idx].clone()));
2789 (claimable_outpoints, outputs_to_watch)
2792 // Returns (1) `PackageTemplate`s that can be given to the OnchainTxHandler, so that the handler can
2793 // broadcast transactions claiming holder HTLC commitment outputs and (2) a holder revokable
2794 // script so we can detect whether a holder transaction has been seen on-chain.
2795 fn get_broadcasted_holder_claims(&self, holder_tx: &HolderSignedTx, conf_height: u32) -> (Vec<PackageTemplate>, Option<(Script, PublicKey, PublicKey)>) {
2796 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
2798 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
2799 let broadcasted_holder_revokable_script = Some((redeemscript.to_v0_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
2801 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
2802 if let Some(transaction_output_index) = htlc.transaction_output_index {
2803 let (htlc_output, aggregable) = if htlc.offered {
2804 let htlc_output = HolderHTLCOutput::build_offered(
2805 htlc.amount_msat, htlc.cltv_expiry, self.onchain_tx_handler.opt_anchors()
2807 (htlc_output, false)
2809 let payment_preimage = if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
2812 // We can't build an HTLC-Success transaction without the preimage
2815 let htlc_output = HolderHTLCOutput::build_accepted(
2816 payment_preimage, htlc.amount_msat, self.onchain_tx_handler.opt_anchors()
2818 (htlc_output, self.onchain_tx_handler.opt_anchors())
2820 let htlc_package = PackageTemplate::build_package(
2821 holder_tx.txid, transaction_output_index,
2822 PackageSolvingData::HolderHTLCOutput(htlc_output),
2823 htlc.cltv_expiry, aggregable, conf_height
2825 claim_requests.push(htlc_package);
2829 (claim_requests, broadcasted_holder_revokable_script)
2832 // Returns holder HTLC outputs to watch and react to in case of spending.
2833 fn get_broadcasted_holder_watch_outputs(&self, holder_tx: &HolderSignedTx, commitment_tx: &Transaction) -> Vec<(u32, TxOut)> {
2834 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
2835 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
2836 if let Some(transaction_output_index) = htlc.transaction_output_index {
2837 watch_outputs.push((transaction_output_index, commitment_tx.output[transaction_output_index as usize].clone()));
2843 /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
2844 /// revoked using data in holder_claimable_outpoints.
2845 /// Should not be used if check_spend_revoked_transaction succeeds.
2846 /// Returns None unless the transaction is definitely one of our commitment transactions.
2847 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 {
2848 let commitment_txid = tx.txid();
2849 let mut claim_requests = Vec::new();
2850 let mut watch_outputs = Vec::new();
2852 macro_rules! append_onchain_update {
2853 ($updates: expr, $to_watch: expr) => {
2854 claim_requests = $updates.0;
2855 self.broadcasted_holder_revokable_script = $updates.1;
2856 watch_outputs.append(&mut $to_watch);
2860 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
2861 let mut is_holder_tx = false;
2863 if self.current_holder_commitment_tx.txid == commitment_txid {
2864 is_holder_tx = true;
2865 log_info!(logger, "Got broadcast of latest holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
2866 let res = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, height);
2867 let mut to_watch = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, tx);
2868 append_onchain_update!(res, to_watch);
2869 fail_unbroadcast_htlcs!(self, "latest holder", commitment_txid, tx, height,
2870 block_hash, self.current_holder_commitment_tx.htlc_outputs.iter()
2871 .map(|(htlc, _, htlc_source)| (htlc, htlc_source.as_ref())), logger);
2872 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
2873 if holder_tx.txid == commitment_txid {
2874 is_holder_tx = true;
2875 log_info!(logger, "Got broadcast of previous holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
2876 let res = self.get_broadcasted_holder_claims(holder_tx, height);
2877 let mut to_watch = self.get_broadcasted_holder_watch_outputs(holder_tx, tx);
2878 append_onchain_update!(res, to_watch);
2879 fail_unbroadcast_htlcs!(self, "previous holder", commitment_txid, tx, height, block_hash,
2880 holder_tx.htlc_outputs.iter().map(|(htlc, _, htlc_source)| (htlc, htlc_source.as_ref())),
2886 Some((claim_requests, (commitment_txid, watch_outputs)))
2892 pub fn get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
2893 log_debug!(logger, "Getting signed latest holder commitment transaction!");
2894 self.holder_tx_signed = true;
2895 let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
2896 let txid = commitment_tx.txid();
2897 let mut holder_transactions = vec![commitment_tx];
2898 // When anchor outputs are present, the HTLC transactions are only valid once the commitment
2899 // transaction confirms.
2900 if self.onchain_tx_handler.opt_anchors() {
2901 return holder_transactions;
2903 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
2904 if let Some(vout) = htlc.0.transaction_output_index {
2905 let preimage = if !htlc.0.offered {
2906 if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
2907 // We can't build an HTLC-Success transaction without the preimage
2910 } else if htlc.0.cltv_expiry > self.best_block.height() + 1 {
2911 // Don't broadcast HTLC-Timeout transactions immediately as they don't meet the
2912 // current locktime requirements on-chain. We will broadcast them in
2913 // `block_confirmed` when `should_broadcast_holder_commitment_txn` returns true.
2914 // Note that we add + 1 as transactions are broadcastable when they can be
2915 // confirmed in the next block.
2918 if let Some(htlc_tx) = self.onchain_tx_handler.get_fully_signed_htlc_tx(
2919 &::bitcoin::OutPoint { txid, vout }, &preimage) {
2920 holder_transactions.push(htlc_tx);
2924 // 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.
2925 // The data will be re-generated and tracked in check_spend_holder_transaction if we get a confirmation.
2929 #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
2930 /// Note that this includes possibly-locktimed-in-the-future transactions!
2931 fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
2932 log_debug!(logger, "Getting signed copy of latest holder commitment transaction!");
2933 let commitment_tx = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript);
2934 let txid = commitment_tx.txid();
2935 let mut holder_transactions = vec![commitment_tx];
2936 // When anchor outputs are present, the HTLC transactions are only final once the commitment
2937 // transaction confirms due to the CSV 1 encumberance.
2938 if self.onchain_tx_handler.opt_anchors() {
2939 return holder_transactions;
2941 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
2942 if let Some(vout) = htlc.0.transaction_output_index {
2943 let preimage = if !htlc.0.offered {
2944 if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
2945 // We can't build an HTLC-Success transaction without the preimage
2949 if let Some(htlc_tx) = self.onchain_tx_handler.unsafe_get_fully_signed_htlc_tx(
2950 &::bitcoin::OutPoint { txid, vout }, &preimage) {
2951 holder_transactions.push(htlc_tx);
2958 pub fn block_connected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, txdata: &TransactionData, height: u32, broadcaster: B, fee_estimator: F, logger: L) -> Vec<TransactionOutputs>
2959 where B::Target: BroadcasterInterface,
2960 F::Target: FeeEstimator,
2963 let block_hash = header.block_hash();
2964 self.best_block = BestBlock::new(block_hash, height);
2966 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
2967 self.transactions_confirmed(header, txdata, height, broadcaster, &bounded_fee_estimator, logger)
2970 fn best_block_updated<B: Deref, F: Deref, L: Deref>(
2972 header: &BlockHeader,
2975 fee_estimator: &LowerBoundedFeeEstimator<F>,
2977 ) -> Vec<TransactionOutputs>
2979 B::Target: BroadcasterInterface,
2980 F::Target: FeeEstimator,
2983 let block_hash = header.block_hash();
2985 if height > self.best_block.height() {
2986 self.best_block = BestBlock::new(block_hash, height);
2987 self.block_confirmed(height, block_hash, vec![], vec![], vec![], &broadcaster, &fee_estimator, &logger)
2988 } else if block_hash != self.best_block.block_hash() {
2989 self.best_block = BestBlock::new(block_hash, height);
2990 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height <= height);
2991 self.onchain_tx_handler.block_disconnected(height + 1, broadcaster, fee_estimator, logger);
2993 } else { Vec::new() }
2996 fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
2998 header: &BlockHeader,
2999 txdata: &TransactionData,
3002 fee_estimator: &LowerBoundedFeeEstimator<F>,
3004 ) -> Vec<TransactionOutputs>
3006 B::Target: BroadcasterInterface,
3007 F::Target: FeeEstimator,
3010 let txn_matched = self.filter_block(txdata);
3011 for tx in &txn_matched {
3012 let mut output_val = 0;
3013 for out in tx.output.iter() {
3014 if out.value > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
3015 output_val += out.value;
3016 if output_val > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
3020 let block_hash = header.block_hash();
3022 let mut watch_outputs = Vec::new();
3023 let mut claimable_outpoints = Vec::new();
3024 'tx_iter: for tx in &txn_matched {
3025 let txid = tx.txid();
3026 // If a transaction has already been confirmed, ensure we don't bother processing it duplicatively.
3027 if Some(txid) == self.funding_spend_confirmed {
3028 log_debug!(logger, "Skipping redundant processing of funding-spend tx {} as it was previously confirmed", txid);
3031 for ev in self.onchain_events_awaiting_threshold_conf.iter() {
3032 if ev.txid == txid {
3033 if let Some(conf_hash) = ev.block_hash {
3034 assert_eq!(header.block_hash(), conf_hash,
3035 "Transaction {} was already confirmed and is being re-confirmed in a different block.\n\
3036 This indicates a severe bug in the transaction connection logic - a reorg should have been processed first!", ev.txid);
3038 log_debug!(logger, "Skipping redundant processing of confirming tx {} as it was previously confirmed", txid);
3042 for htlc in self.htlcs_resolved_on_chain.iter() {
3043 if Some(txid) == htlc.resolving_txid {
3044 log_debug!(logger, "Skipping redundant processing of HTLC resolution tx {} as it was previously confirmed", txid);
3048 for spendable_txid in self.spendable_txids_confirmed.iter() {
3049 if txid == *spendable_txid {
3050 log_debug!(logger, "Skipping redundant processing of spendable tx {} as it was previously confirmed", txid);
3055 if tx.input.len() == 1 {
3056 // Assuming our keys were not leaked (in which case we're screwed no matter what),
3057 // commitment transactions and HTLC transactions will all only ever have one input
3058 // (except for HTLC transactions for channels with anchor outputs), which is an easy
3059 // way to filter out any potential non-matching txn for lazy filters.
3060 let prevout = &tx.input[0].previous_output;
3061 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
3062 let mut balance_spendable_csv = None;
3063 log_info!(logger, "Channel {} closed by funding output spend in txid {}.",
3064 log_bytes!(self.funding_info.0.to_channel_id()), txid);
3065 self.funding_spend_seen = true;
3066 let mut commitment_tx_to_counterparty_output = None;
3067 if (tx.input[0].sequence.0 >> 8*3) as u8 == 0x80 && (tx.lock_time.0 >> 8*3) as u8 == 0x20 {
3068 let (mut new_outpoints, new_outputs, counterparty_output_idx_sats) =
3069 self.check_spend_counterparty_transaction(&tx, height, &block_hash, &logger);
3070 commitment_tx_to_counterparty_output = counterparty_output_idx_sats;
3071 if !new_outputs.1.is_empty() {
3072 watch_outputs.push(new_outputs);
3074 claimable_outpoints.append(&mut new_outpoints);
3075 if new_outpoints.is_empty() {
3076 if let Some((mut new_outpoints, new_outputs)) = self.check_spend_holder_transaction(&tx, height, &block_hash, &logger) {
3077 debug_assert!(commitment_tx_to_counterparty_output.is_none(),
3078 "A commitment transaction matched as both a counterparty and local commitment tx?");
3079 if !new_outputs.1.is_empty() {
3080 watch_outputs.push(new_outputs);
3082 claimable_outpoints.append(&mut new_outpoints);
3083 balance_spendable_csv = Some(self.on_holder_tx_csv);
3087 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
3089 transaction: Some((*tx).clone()),
3091 block_hash: Some(block_hash),
3092 event: OnchainEvent::FundingSpendConfirmation {
3093 on_local_output_csv: balance_spendable_csv,
3094 commitment_tx_to_counterparty_output,
3099 if tx.input.len() >= 1 {
3100 // While all commitment transactions have one input, HTLC transactions may have more
3101 // if the HTLC was present in an anchor channel. HTLCs can also be resolved in a few
3102 // other ways which can have more than one output.
3103 for tx_input in &tx.input {
3104 let commitment_txid = tx_input.previous_output.txid;
3105 if let Some(&commitment_number) = self.counterparty_commitment_txn_on_chain.get(&commitment_txid) {
3106 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(
3107 &tx, commitment_number, &commitment_txid, height, &logger
3109 claimable_outpoints.append(&mut new_outpoints);
3110 if let Some(new_outputs) = new_outputs_option {
3111 watch_outputs.push(new_outputs);
3113 // Since there may be multiple HTLCs for this channel (all spending the
3114 // same commitment tx) being claimed by the counterparty within the same
3115 // transaction, and `check_spend_counterparty_htlc` already checks all the
3116 // ones relevant to this channel, we can safely break from our loop.
3120 self.is_resolving_htlc_output(&tx, height, &block_hash, &logger);
3122 self.is_paying_spendable_output(&tx, height, &block_hash, &logger);
3126 if height > self.best_block.height() {
3127 self.best_block = BestBlock::new(block_hash, height);
3130 self.block_confirmed(height, block_hash, txn_matched, watch_outputs, claimable_outpoints, &broadcaster, &fee_estimator, &logger)
3133 /// Update state for new block(s)/transaction(s) confirmed. Note that the caller must update
3134 /// `self.best_block` before calling if a new best blockchain tip is available. More
3135 /// concretely, `self.best_block` must never be at a lower height than `conf_height`, avoiding
3136 /// complexity especially in
3137 /// `OnchainTx::update_claims_view_from_requests`/`OnchainTx::update_claims_view_from_matched_txn`.
3139 /// `conf_height` should be set to the height at which any new transaction(s)/block(s) were
3140 /// confirmed at, even if it is not the current best height.
3141 fn block_confirmed<B: Deref, F: Deref, L: Deref>(
3144 conf_hash: BlockHash,
3145 txn_matched: Vec<&Transaction>,
3146 mut watch_outputs: Vec<TransactionOutputs>,
3147 mut claimable_outpoints: Vec<PackageTemplate>,
3149 fee_estimator: &LowerBoundedFeeEstimator<F>,
3151 ) -> Vec<TransactionOutputs>
3153 B::Target: BroadcasterInterface,
3154 F::Target: FeeEstimator,
3157 log_trace!(logger, "Processing {} matched transactions for block at height {}.", txn_matched.len(), conf_height);
3158 debug_assert!(self.best_block.height() >= conf_height);
3160 let should_broadcast = self.should_broadcast_holder_commitment_txn(logger);
3161 if should_broadcast {
3162 let funding_outp = HolderFundingOutput::build(self.funding_redeemscript.clone(), self.channel_value_satoshis, self.onchain_tx_handler.opt_anchors());
3163 let commitment_package = PackageTemplate::build_package(self.funding_info.0.txid.clone(), self.funding_info.0.index as u32, PackageSolvingData::HolderFundingOutput(funding_outp), self.best_block.height(), false, self.best_block.height());
3164 claimable_outpoints.push(commitment_package);
3165 self.pending_monitor_events.push(MonitorEvent::CommitmentTxConfirmed(self.funding_info.0));
3166 let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
3167 self.holder_tx_signed = true;
3168 // We can't broadcast our HTLC transactions while the commitment transaction is
3169 // unconfirmed. We'll delay doing so until we detect the confirmed commitment in
3170 // `transactions_confirmed`.
3171 if !self.onchain_tx_handler.opt_anchors() {
3172 // Because we're broadcasting a commitment transaction, we should construct the package
3173 // assuming it gets confirmed in the next block. Sadly, we have code which considers
3174 // "not yet confirmed" things as discardable, so we cannot do that here.
3175 let (mut new_outpoints, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
3176 let new_outputs = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, &commitment_tx);
3177 if !new_outputs.is_empty() {
3178 watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
3180 claimable_outpoints.append(&mut new_outpoints);
3184 // Find which on-chain events have reached their confirmation threshold.
3185 let onchain_events_awaiting_threshold_conf =
3186 self.onchain_events_awaiting_threshold_conf.drain(..).collect::<Vec<_>>();
3187 let mut onchain_events_reaching_threshold_conf = Vec::new();
3188 for entry in onchain_events_awaiting_threshold_conf {
3189 if entry.has_reached_confirmation_threshold(&self.best_block) {
3190 onchain_events_reaching_threshold_conf.push(entry);
3192 self.onchain_events_awaiting_threshold_conf.push(entry);
3196 // Used to check for duplicate HTLC resolutions.
3197 #[cfg(debug_assertions)]
3198 let unmatured_htlcs: Vec<_> = self.onchain_events_awaiting_threshold_conf
3200 .filter_map(|entry| match &entry.event {
3201 OnchainEvent::HTLCUpdate { source, .. } => Some(source),
3205 #[cfg(debug_assertions)]
3206 let mut matured_htlcs = Vec::new();
3208 // Produce actionable events from on-chain events having reached their threshold.
3209 for entry in onchain_events_reaching_threshold_conf.drain(..) {
3211 OnchainEvent::HTLCUpdate { ref source, payment_hash, htlc_value_satoshis, commitment_tx_output_idx } => {
3212 // Check for duplicate HTLC resolutions.
3213 #[cfg(debug_assertions)]
3216 unmatured_htlcs.iter().find(|&htlc| htlc == &source).is_none(),
3217 "An unmature HTLC transaction conflicts with a maturing one; failed to \
3218 call either transaction_unconfirmed for the conflicting transaction \
3219 or block_disconnected for a block containing it.");
3221 matured_htlcs.iter().find(|&htlc| htlc == source).is_none(),
3222 "A matured HTLC transaction conflicts with a maturing one; failed to \
3223 call either transaction_unconfirmed for the conflicting transaction \
3224 or block_disconnected for a block containing it.");
3225 matured_htlcs.push(source.clone());
3228 log_debug!(logger, "HTLC {} failure update in {} has got enough confirmations to be passed upstream",
3229 log_bytes!(payment_hash.0), entry.txid);
3230 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
3232 payment_preimage: None,
3233 source: source.clone(),
3234 htlc_value_satoshis,
3236 self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC {
3237 commitment_tx_output_idx,
3238 resolving_txid: Some(entry.txid),
3239 resolving_tx: entry.transaction,
3240 payment_preimage: None,
3243 OnchainEvent::MaturingOutput { descriptor } => {
3244 log_debug!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
3245 self.pending_events.push(Event::SpendableOutputs {
3246 outputs: vec![descriptor]
3248 self.spendable_txids_confirmed.push(entry.txid);
3250 OnchainEvent::HTLCSpendConfirmation { commitment_tx_output_idx, preimage, .. } => {
3251 self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC {
3252 commitment_tx_output_idx: Some(commitment_tx_output_idx),
3253 resolving_txid: Some(entry.txid),
3254 resolving_tx: entry.transaction,
3255 payment_preimage: preimage,
3258 OnchainEvent::FundingSpendConfirmation { commitment_tx_to_counterparty_output, .. } => {
3259 self.funding_spend_confirmed = Some(entry.txid);
3260 self.confirmed_commitment_tx_counterparty_output = commitment_tx_to_counterparty_output;
3265 self.onchain_tx_handler.update_claims_view_from_requests(claimable_outpoints, conf_height, self.best_block.height(), broadcaster, fee_estimator, logger);
3266 self.onchain_tx_handler.update_claims_view_from_matched_txn(&txn_matched, conf_height, conf_hash, self.best_block.height(), broadcaster, fee_estimator, logger);
3268 // Determine new outputs to watch by comparing against previously known outputs to watch,
3269 // updating the latter in the process.
3270 watch_outputs.retain(|&(ref txid, ref txouts)| {
3271 let idx_and_scripts = txouts.iter().map(|o| (o.0, o.1.script_pubkey.clone())).collect();
3272 self.outputs_to_watch.insert(txid.clone(), idx_and_scripts).is_none()
3276 // If we see a transaction for which we registered outputs previously,
3277 // make sure the registered scriptpubkey at the expected index match
3278 // the actual transaction output one. We failed this case before #653.
3279 for tx in &txn_matched {
3280 if let Some(outputs) = self.get_outputs_to_watch().get(&tx.txid()) {
3281 for idx_and_script in outputs.iter() {
3282 assert!((idx_and_script.0 as usize) < tx.output.len());
3283 assert_eq!(tx.output[idx_and_script.0 as usize].script_pubkey, idx_and_script.1);
3291 pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, height: u32, broadcaster: B, fee_estimator: F, logger: L)
3292 where B::Target: BroadcasterInterface,
3293 F::Target: FeeEstimator,
3296 log_trace!(logger, "Block {} at height {} disconnected", header.block_hash(), height);
3299 //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
3300 //- maturing spendable output has transaction paying us has been disconnected
3301 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height < height);
3303 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(fee_estimator);
3304 self.onchain_tx_handler.block_disconnected(height, broadcaster, &bounded_fee_estimator, logger);
3306 self.best_block = BestBlock::new(header.prev_blockhash, height - 1);
3309 fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
3313 fee_estimator: &LowerBoundedFeeEstimator<F>,
3316 B::Target: BroadcasterInterface,
3317 F::Target: FeeEstimator,
3320 let mut removed_height = None;
3321 for entry in self.onchain_events_awaiting_threshold_conf.iter() {
3322 if entry.txid == *txid {
3323 removed_height = Some(entry.height);
3328 if let Some(removed_height) = removed_height {
3329 log_info!(logger, "transaction_unconfirmed of txid {} implies height {} was reorg'd out", txid, removed_height);
3330 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| if entry.height >= removed_height {
3331 log_info!(logger, "Transaction {} reorg'd out", entry.txid);
3336 debug_assert!(!self.onchain_events_awaiting_threshold_conf.iter().any(|ref entry| entry.txid == *txid));
3338 self.onchain_tx_handler.transaction_unconfirmed(txid, broadcaster, fee_estimator, logger);
3341 /// Filters a block's `txdata` for transactions spending watched outputs or for any child
3342 /// transactions thereof.
3343 fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
3344 let mut matched_txn = HashSet::new();
3345 txdata.iter().filter(|&&(_, tx)| {
3346 let mut matches = self.spends_watched_output(tx);
3347 for input in tx.input.iter() {
3348 if matches { break; }
3349 if matched_txn.contains(&input.previous_output.txid) {
3354 matched_txn.insert(tx.txid());
3357 }).map(|(_, tx)| *tx).collect()
3360 /// Checks if a given transaction spends any watched outputs.
3361 fn spends_watched_output(&self, tx: &Transaction) -> bool {
3362 for input in tx.input.iter() {
3363 if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
3364 for (idx, _script_pubkey) in outputs.iter() {
3365 if *idx == input.previous_output.vout {
3368 // If the expected script is a known type, check that the witness
3369 // appears to be spending the correct type (ie that the match would
3370 // actually succeed in BIP 158/159-style filters).
3371 if _script_pubkey.is_v0_p2wsh() {
3372 if input.witness.last().unwrap().to_vec() == deliberately_bogus_accepted_htlc_witness_program() {
3373 // In at least one test we use a deliberately bogus witness
3374 // script which hit an old panic. Thus, we check for that here
3375 // and avoid the assert if its the expected bogus script.
3379 assert_eq!(&bitcoin::Address::p2wsh(&Script::from(input.witness.last().unwrap().to_vec()), bitcoin::Network::Bitcoin).script_pubkey(), _script_pubkey);
3380 } else if _script_pubkey.is_v0_p2wpkh() {
3381 assert_eq!(&bitcoin::Address::p2wpkh(&bitcoin::PublicKey::from_slice(&input.witness.last().unwrap()).unwrap(), bitcoin::Network::Bitcoin).unwrap().script_pubkey(), _script_pubkey);
3382 } else { panic!(); }
3393 fn should_broadcast_holder_commitment_txn<L: Deref>(&self, logger: &L) -> bool where L::Target: Logger {
3394 // There's no need to broadcast our commitment transaction if we've seen one confirmed (even
3395 // with 1 confirmation) as it'll be rejected as duplicate/conflicting.
3396 if self.funding_spend_confirmed.is_some() ||
3397 self.onchain_events_awaiting_threshold_conf.iter().find(|event| match event.event {
3398 OnchainEvent::FundingSpendConfirmation { .. } => true,
3404 // We need to consider all HTLCs which are:
3405 // * in any unrevoked counterparty commitment transaction, as they could broadcast said
3406 // transactions and we'd end up in a race, or
3407 // * are in our latest holder commitment transaction, as this is the thing we will
3408 // broadcast if we go on-chain.
3409 // Note that we consider HTLCs which were below dust threshold here - while they don't
3410 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
3411 // to the source, and if we don't fail the channel we will have to ensure that the next
3412 // updates that peer sends us are update_fails, failing the channel if not. It's probably
3413 // easier to just fail the channel as this case should be rare enough anyway.
3414 let height = self.best_block.height();
3415 macro_rules! scan_commitment {
3416 ($htlcs: expr, $holder_tx: expr) => {
3417 for ref htlc in $htlcs {
3418 // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
3419 // chain with enough room to claim the HTLC without our counterparty being able to
3420 // time out the HTLC first.
3421 // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
3422 // concern is being able to claim the corresponding inbound HTLC (on another
3423 // channel) before it expires. In fact, we don't even really care if our
3424 // counterparty here claims such an outbound HTLC after it expired as long as we
3425 // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
3426 // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
3427 // we give ourselves a few blocks of headroom after expiration before going
3428 // on-chain for an expired HTLC.
3429 // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
3430 // from us until we've reached the point where we go on-chain with the
3431 // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
3432 // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
3433 // aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
3434 // inbound_cltv == height + CLTV_CLAIM_BUFFER
3435 // outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
3436 // LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
3437 // CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
3438 // LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
3439 // The final, above, condition is checked for statically in channelmanager
3440 // with CHECK_CLTV_EXPIRY_SANITY_2.
3441 let htlc_outbound = $holder_tx == htlc.offered;
3442 if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
3443 (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
3444 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
3451 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
3453 if let Some(ref txid) = self.current_counterparty_commitment_txid {
3454 if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
3455 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
3458 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
3459 if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
3460 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
3467 /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
3468 /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
3469 fn is_resolving_htlc_output<L: Deref>(&mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &L) where L::Target: Logger {
3470 'outer_loop: for input in &tx.input {
3471 let mut payment_data = None;
3472 let htlc_claim = HTLCClaim::from_witness(&input.witness);
3473 let revocation_sig_claim = htlc_claim == Some(HTLCClaim::Revocation);
3474 let accepted_preimage_claim = htlc_claim == Some(HTLCClaim::AcceptedPreimage);
3475 #[cfg(not(fuzzing))]
3476 let accepted_timeout_claim = htlc_claim == Some(HTLCClaim::AcceptedTimeout);
3477 let offered_preimage_claim = htlc_claim == Some(HTLCClaim::OfferedPreimage);
3478 #[cfg(not(fuzzing))]
3479 let offered_timeout_claim = htlc_claim == Some(HTLCClaim::OfferedTimeout);
3481 let mut payment_preimage = PaymentPreimage([0; 32]);
3482 if offered_preimage_claim || accepted_preimage_claim {
3483 payment_preimage.0.copy_from_slice(input.witness.second_to_last().unwrap());
3486 macro_rules! log_claim {
3487 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
3488 let outbound_htlc = $holder_tx == $htlc.offered;
3489 // HTLCs must either be claimed by a matching script type or through the
3491 #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
3492 debug_assert!(!$htlc.offered || offered_preimage_claim || offered_timeout_claim || revocation_sig_claim);
3493 #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
3494 debug_assert!($htlc.offered || accepted_preimage_claim || accepted_timeout_claim || revocation_sig_claim);
3495 // Further, only exactly one of the possible spend paths should have been
3496 // matched by any HTLC spend:
3497 #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
3498 debug_assert_eq!(accepted_preimage_claim as u8 + accepted_timeout_claim as u8 +
3499 offered_preimage_claim as u8 + offered_timeout_claim as u8 +
3500 revocation_sig_claim as u8, 1);
3501 if ($holder_tx && revocation_sig_claim) ||
3502 (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
3503 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
3504 $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
3505 if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
3506 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" });
3508 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
3509 $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
3510 if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
3511 if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
3516 macro_rules! check_htlc_valid_counterparty {
3517 ($counterparty_txid: expr, $htlc_output: expr) => {
3518 if let Some(txid) = $counterparty_txid {
3519 for &(ref pending_htlc, ref pending_source) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
3520 if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
3521 if let &Some(ref source) = pending_source {
3522 log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
3523 payment_data = Some(((**source).clone(), $htlc_output.payment_hash, $htlc_output.amount_msat));
3532 macro_rules! scan_commitment {
3533 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
3534 for (ref htlc_output, source_option) in $htlcs {
3535 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
3536 if let Some(ref source) = source_option {
3537 log_claim!($tx_info, $holder_tx, htlc_output, true);
3538 // We have a resolution of an HTLC either from one of our latest
3539 // holder commitment transactions or an unrevoked counterparty commitment
3540 // transaction. This implies we either learned a preimage, the HTLC
3541 // has timed out, or we screwed up. In any case, we should now
3542 // resolve the source HTLC with the original sender.
3543 payment_data = Some(((*source).clone(), htlc_output.payment_hash, htlc_output.amount_msat));
3544 } else if !$holder_tx {
3545 check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output);
3546 if payment_data.is_none() {
3547 check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output);
3550 if payment_data.is_none() {
3551 log_claim!($tx_info, $holder_tx, htlc_output, false);
3552 let outbound_htlc = $holder_tx == htlc_output.offered;
3553 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
3554 txid: tx.txid(), height, block_hash: Some(*block_hash), transaction: Some(tx.clone()),
3555 event: OnchainEvent::HTLCSpendConfirmation {
3556 commitment_tx_output_idx: input.previous_output.vout,
3557 preimage: if accepted_preimage_claim || offered_preimage_claim {
3558 Some(payment_preimage) } else { None },
3559 // If this is a payment to us (ie !outbound_htlc), wait for
3560 // the CSV delay before dropping the HTLC from claimable
3561 // balance if the claim was an HTLC-Success transaction (ie
3562 // accepted_preimage_claim).
3563 on_to_local_output_csv: if accepted_preimage_claim && !outbound_htlc {
3564 Some(self.on_holder_tx_csv) } else { None },
3567 continue 'outer_loop;
3574 if input.previous_output.txid == self.current_holder_commitment_tx.txid {
3575 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
3576 "our latest holder commitment tx", true);
3578 if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
3579 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
3580 scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
3581 "our previous holder commitment tx", true);
3584 if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
3585 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, (b.as_ref().clone()).map(|boxed| &**boxed))),
3586 "counterparty commitment tx", false);
3589 // Check that scan_commitment, above, decided there is some source worth relaying an
3590 // HTLC resolution backwards to and figure out whether we learned a preimage from it.
3591 if let Some((source, payment_hash, amount_msat)) = payment_data {
3592 if accepted_preimage_claim {
3593 if !self.pending_monitor_events.iter().any(
3594 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
3595 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
3598 block_hash: Some(*block_hash),
3599 transaction: Some(tx.clone()),
3600 event: OnchainEvent::HTLCSpendConfirmation {
3601 commitment_tx_output_idx: input.previous_output.vout,
3602 preimage: Some(payment_preimage),
3603 on_to_local_output_csv: None,
3606 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
3608 payment_preimage: Some(payment_preimage),
3610 htlc_value_satoshis: Some(amount_msat / 1000),
3613 } else if offered_preimage_claim {
3614 if !self.pending_monitor_events.iter().any(
3615 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
3616 upd.source == source
3618 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
3620 transaction: Some(tx.clone()),
3622 block_hash: Some(*block_hash),
3623 event: OnchainEvent::HTLCSpendConfirmation {
3624 commitment_tx_output_idx: input.previous_output.vout,
3625 preimage: Some(payment_preimage),
3626 on_to_local_output_csv: None,
3629 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
3631 payment_preimage: Some(payment_preimage),
3633 htlc_value_satoshis: Some(amount_msat / 1000),
3637 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
3638 if entry.height != height { return true; }
3640 OnchainEvent::HTLCUpdate { source: ref htlc_source, .. } => {
3641 *htlc_source != source
3646 let entry = OnchainEventEntry {
3648 transaction: Some(tx.clone()),
3650 block_hash: Some(*block_hash),
3651 event: OnchainEvent::HTLCUpdate {
3652 source, payment_hash,
3653 htlc_value_satoshis: Some(amount_msat / 1000),
3654 commitment_tx_output_idx: Some(input.previous_output.vout),
3657 log_info!(logger, "Failing HTLC with payment_hash {} timeout by a spend tx, waiting for confirmation (at height {})", log_bytes!(payment_hash.0), entry.confirmation_threshold());
3658 self.onchain_events_awaiting_threshold_conf.push(entry);
3664 /// Check if any transaction broadcasted is paying fund back to some address we can assume to own
3665 fn is_paying_spendable_output<L: Deref>(&mut self, tx: &Transaction, height: u32, block_hash: &BlockHash, logger: &L) where L::Target: Logger {
3666 let mut spendable_output = None;
3667 for (i, outp) in tx.output.iter().enumerate() { // There is max one spendable output for any channel tx, including ones generated by us
3668 if i > ::core::u16::MAX as usize {
3669 // While it is possible that an output exists on chain which is greater than the
3670 // 2^16th output in a given transaction, this is only possible if the output is not
3671 // in a lightning transaction and was instead placed there by some third party who
3672 // wishes to give us money for no reason.
3673 // Namely, any lightning transactions which we pre-sign will never have anywhere
3674 // near 2^16 outputs both because such transactions must have ~2^16 outputs who's
3675 // scripts are not longer than one byte in length and because they are inherently
3676 // non-standard due to their size.
3677 // Thus, it is completely safe to ignore such outputs, and while it may result in
3678 // us ignoring non-lightning fund to us, that is only possible if someone fills
3679 // nearly a full block with garbage just to hit this case.
3682 if outp.script_pubkey == self.destination_script {
3683 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
3684 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
3685 output: outp.clone(),
3689 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
3690 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
3691 spendable_output = Some(SpendableOutputDescriptor::DelayedPaymentOutput(DelayedPaymentOutputDescriptor {
3692 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
3693 per_commitment_point: broadcasted_holder_revokable_script.1,
3694 to_self_delay: self.on_holder_tx_csv,
3695 output: outp.clone(),
3696 revocation_pubkey: broadcasted_holder_revokable_script.2.clone(),
3697 channel_keys_id: self.channel_keys_id,
3698 channel_value_satoshis: self.channel_value_satoshis,
3703 if self.counterparty_payment_script == outp.script_pubkey {
3704 spendable_output = Some(SpendableOutputDescriptor::StaticPaymentOutput(StaticPaymentOutputDescriptor {
3705 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
3706 output: outp.clone(),
3707 channel_keys_id: self.channel_keys_id,
3708 channel_value_satoshis: self.channel_value_satoshis,
3712 if self.shutdown_script.as_ref() == Some(&outp.script_pubkey) {
3713 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
3714 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
3715 output: outp.clone(),
3720 if let Some(spendable_output) = spendable_output {
3721 let entry = OnchainEventEntry {
3723 transaction: Some(tx.clone()),
3725 block_hash: Some(*block_hash),
3726 event: OnchainEvent::MaturingOutput { descriptor: spendable_output.clone() },
3728 log_info!(logger, "Received spendable output {}, spendable at height {}", log_spendable!(spendable_output), entry.confirmation_threshold());
3729 self.onchain_events_awaiting_threshold_conf.push(entry);
3734 impl<Signer: WriteableEcdsaChannelSigner, T: Deref, F: Deref, L: Deref> chain::Listen for (ChannelMonitor<Signer>, T, F, L)
3736 T::Target: BroadcasterInterface,
3737 F::Target: FeeEstimator,
3740 fn filtered_block_connected(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
3741 self.0.block_connected(header, txdata, height, &*self.1, &*self.2, &*self.3);
3744 fn block_disconnected(&self, header: &BlockHeader, height: u32) {
3745 self.0.block_disconnected(header, height, &*self.1, &*self.2, &*self.3);
3749 impl<Signer: WriteableEcdsaChannelSigner, M, T: Deref, F: Deref, L: Deref> chain::Confirm for (M, T, F, L)
3751 M: Deref<Target = ChannelMonitor<Signer>>,
3752 T::Target: BroadcasterInterface,
3753 F::Target: FeeEstimator,
3756 fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
3757 self.0.transactions_confirmed(header, txdata, height, &*self.1, &*self.2, &*self.3);
3760 fn transaction_unconfirmed(&self, txid: &Txid) {
3761 self.0.transaction_unconfirmed(txid, &*self.1, &*self.2, &*self.3);
3764 fn best_block_updated(&self, header: &BlockHeader, height: u32) {
3765 self.0.best_block_updated(header, height, &*self.1, &*self.2, &*self.3);
3768 fn get_relevant_txids(&self) -> Vec<(Txid, Option<BlockHash>)> {
3769 self.0.get_relevant_txids()
3773 const MAX_ALLOC_SIZE: usize = 64*1024;
3775 impl<'a, 'b, ES: EntropySource, SP: SignerProvider> ReadableArgs<(&'a ES, &'b SP)>
3776 for (BlockHash, ChannelMonitor<SP::Signer>) {
3777 fn read<R: io::Read>(reader: &mut R, args: (&'a ES, &'b SP)) -> Result<Self, DecodeError> {
3778 macro_rules! unwrap_obj {
3782 Err(_) => return Err(DecodeError::InvalidValue),
3787 let (entropy_source, signer_provider) = args;
3789 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
3791 let latest_update_id: u64 = Readable::read(reader)?;
3792 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
3794 let destination_script = Readable::read(reader)?;
3795 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
3797 let revokable_address = Readable::read(reader)?;
3798 let per_commitment_point = Readable::read(reader)?;
3799 let revokable_script = Readable::read(reader)?;
3800 Some((revokable_address, per_commitment_point, revokable_script))
3803 _ => return Err(DecodeError::InvalidValue),
3805 let counterparty_payment_script = Readable::read(reader)?;
3806 let shutdown_script = {
3807 let script = <Script as Readable>::read(reader)?;
3808 if script.is_empty() { None } else { Some(script) }
3811 let channel_keys_id = Readable::read(reader)?;
3812 let holder_revocation_basepoint = Readable::read(reader)?;
3813 // Technically this can fail and serialize fail a round-trip, but only for serialization of
3814 // barely-init'd ChannelMonitors that we can't do anything with.
3815 let outpoint = OutPoint {
3816 txid: Readable::read(reader)?,
3817 index: Readable::read(reader)?,
3819 let funding_info = (outpoint, Readable::read(reader)?);
3820 let current_counterparty_commitment_txid = Readable::read(reader)?;
3821 let prev_counterparty_commitment_txid = Readable::read(reader)?;
3823 let counterparty_commitment_params = Readable::read(reader)?;
3824 let funding_redeemscript = Readable::read(reader)?;
3825 let channel_value_satoshis = Readable::read(reader)?;
3827 let their_cur_per_commitment_points = {
3828 let first_idx = <U48 as Readable>::read(reader)?.0;
3832 let first_point = Readable::read(reader)?;
3833 let second_point_slice: [u8; 33] = Readable::read(reader)?;
3834 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
3835 Some((first_idx, first_point, None))
3837 Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
3842 let on_holder_tx_csv: u16 = Readable::read(reader)?;
3844 let commitment_secrets = Readable::read(reader)?;
3846 macro_rules! read_htlc_in_commitment {
3849 let offered: bool = Readable::read(reader)?;
3850 let amount_msat: u64 = Readable::read(reader)?;
3851 let cltv_expiry: u32 = Readable::read(reader)?;
3852 let payment_hash: PaymentHash = Readable::read(reader)?;
3853 let transaction_output_index: Option<u32> = Readable::read(reader)?;
3855 HTLCOutputInCommitment {
3856 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
3862 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
3863 let mut counterparty_claimable_outpoints = HashMap::with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
3864 for _ in 0..counterparty_claimable_outpoints_len {
3865 let txid: Txid = Readable::read(reader)?;
3866 let htlcs_count: u64 = Readable::read(reader)?;
3867 let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
3868 for _ in 0..htlcs_count {
3869 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
3871 if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
3872 return Err(DecodeError::InvalidValue);
3876 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
3877 let mut counterparty_commitment_txn_on_chain = HashMap::with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
3878 for _ in 0..counterparty_commitment_txn_on_chain_len {
3879 let txid: Txid = Readable::read(reader)?;
3880 let commitment_number = <U48 as Readable>::read(reader)?.0;
3881 if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, commitment_number) {
3882 return Err(DecodeError::InvalidValue);
3886 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
3887 let mut counterparty_hash_commitment_number = HashMap::with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
3888 for _ in 0..counterparty_hash_commitment_number_len {
3889 let payment_hash: PaymentHash = Readable::read(reader)?;
3890 let commitment_number = <U48 as Readable>::read(reader)?.0;
3891 if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
3892 return Err(DecodeError::InvalidValue);
3896 let mut prev_holder_signed_commitment_tx: Option<HolderSignedTx> =
3897 match <u8 as Readable>::read(reader)? {
3900 Some(Readable::read(reader)?)
3902 _ => return Err(DecodeError::InvalidValue),
3904 let mut current_holder_commitment_tx: HolderSignedTx = Readable::read(reader)?;
3906 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
3907 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
3909 let payment_preimages_len: u64 = Readable::read(reader)?;
3910 let mut payment_preimages = HashMap::with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
3911 for _ in 0..payment_preimages_len {
3912 let preimage: PaymentPreimage = Readable::read(reader)?;
3913 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
3914 if let Some(_) = payment_preimages.insert(hash, preimage) {
3915 return Err(DecodeError::InvalidValue);
3919 let pending_monitor_events_len: u64 = Readable::read(reader)?;
3920 let mut pending_monitor_events = Some(
3921 Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3))));
3922 for _ in 0..pending_monitor_events_len {
3923 let ev = match <u8 as Readable>::read(reader)? {
3924 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
3925 1 => MonitorEvent::CommitmentTxConfirmed(funding_info.0),
3926 _ => return Err(DecodeError::InvalidValue)
3928 pending_monitor_events.as_mut().unwrap().push(ev);
3931 let pending_events_len: u64 = Readable::read(reader)?;
3932 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
3933 for _ in 0..pending_events_len {
3934 if let Some(event) = MaybeReadable::read(reader)? {
3935 pending_events.push(event);
3939 let best_block = BestBlock::new(Readable::read(reader)?, Readable::read(reader)?);
3941 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
3942 let mut onchain_events_awaiting_threshold_conf = Vec::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
3943 for _ in 0..waiting_threshold_conf_len {
3944 if let Some(val) = MaybeReadable::read(reader)? {
3945 onchain_events_awaiting_threshold_conf.push(val);
3949 let outputs_to_watch_len: u64 = Readable::read(reader)?;
3950 let mut outputs_to_watch = HashMap::with_capacity(cmp::min(outputs_to_watch_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<Txid>() + mem::size_of::<u32>() + mem::size_of::<Vec<Script>>())));
3951 for _ in 0..outputs_to_watch_len {
3952 let txid = Readable::read(reader)?;
3953 let outputs_len: u64 = Readable::read(reader)?;
3954 let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<u32>() + mem::size_of::<Script>())));
3955 for _ in 0..outputs_len {
3956 outputs.push((Readable::read(reader)?, Readable::read(reader)?));
3958 if let Some(_) = outputs_to_watch.insert(txid, outputs) {
3959 return Err(DecodeError::InvalidValue);
3962 let onchain_tx_handler: OnchainTxHandler<SP::Signer> = ReadableArgs::read(
3963 reader, (entropy_source, signer_provider, channel_value_satoshis, channel_keys_id)
3966 let lockdown_from_offchain = Readable::read(reader)?;
3967 let holder_tx_signed = Readable::read(reader)?;
3969 if let Some(prev_commitment_tx) = prev_holder_signed_commitment_tx.as_mut() {
3970 let prev_holder_value = onchain_tx_handler.get_prev_holder_commitment_to_self_value();
3971 if prev_holder_value.is_none() { return Err(DecodeError::InvalidValue); }
3972 if prev_commitment_tx.to_self_value_sat == u64::max_value() {
3973 prev_commitment_tx.to_self_value_sat = prev_holder_value.unwrap();
3974 } else if prev_commitment_tx.to_self_value_sat != prev_holder_value.unwrap() {
3975 return Err(DecodeError::InvalidValue);
3979 let cur_holder_value = onchain_tx_handler.get_cur_holder_commitment_to_self_value();
3980 if current_holder_commitment_tx.to_self_value_sat == u64::max_value() {
3981 current_holder_commitment_tx.to_self_value_sat = cur_holder_value;
3982 } else if current_holder_commitment_tx.to_self_value_sat != cur_holder_value {
3983 return Err(DecodeError::InvalidValue);
3986 let mut funding_spend_confirmed = None;
3987 let mut htlcs_resolved_on_chain = Some(Vec::new());
3988 let mut funding_spend_seen = Some(false);
3989 let mut counterparty_node_id = None;
3990 let mut confirmed_commitment_tx_counterparty_output = None;
3991 let mut spendable_txids_confirmed = Some(Vec::new());
3992 let mut counterparty_fulfilled_htlcs = Some(HashMap::new());
3993 read_tlv_fields!(reader, {
3994 (1, funding_spend_confirmed, option),
3995 (3, htlcs_resolved_on_chain, vec_type),
3996 (5, pending_monitor_events, vec_type),
3997 (7, funding_spend_seen, option),
3998 (9, counterparty_node_id, option),
3999 (11, confirmed_commitment_tx_counterparty_output, option),
4000 (13, spendable_txids_confirmed, vec_type),
4001 (15, counterparty_fulfilled_htlcs, option),
4004 Ok((best_block.block_hash(), ChannelMonitor::from_impl(ChannelMonitorImpl {
4006 commitment_transaction_number_obscure_factor,
4009 broadcasted_holder_revokable_script,
4010 counterparty_payment_script,
4014 holder_revocation_basepoint,
4016 current_counterparty_commitment_txid,
4017 prev_counterparty_commitment_txid,
4019 counterparty_commitment_params,
4020 funding_redeemscript,
4021 channel_value_satoshis,
4022 their_cur_per_commitment_points,
4027 counterparty_claimable_outpoints,
4028 counterparty_commitment_txn_on_chain,
4029 counterparty_hash_commitment_number,
4030 counterparty_fulfilled_htlcs: counterparty_fulfilled_htlcs.unwrap(),
4032 prev_holder_signed_commitment_tx,
4033 current_holder_commitment_tx,
4034 current_counterparty_commitment_number,
4035 current_holder_commitment_number,
4038 pending_monitor_events: pending_monitor_events.unwrap(),
4041 onchain_events_awaiting_threshold_conf,
4046 lockdown_from_offchain,
4048 funding_spend_seen: funding_spend_seen.unwrap(),
4049 funding_spend_confirmed,
4050 confirmed_commitment_tx_counterparty_output,
4051 htlcs_resolved_on_chain: htlcs_resolved_on_chain.unwrap(),
4052 spendable_txids_confirmed: spendable_txids_confirmed.unwrap(),
4055 counterparty_node_id,
4062 use bitcoin::blockdata::block::BlockHeader;
4063 use bitcoin::blockdata::script::{Script, Builder};
4064 use bitcoin::blockdata::opcodes;
4065 use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, EcdsaSighashType};
4066 use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
4067 use bitcoin::util::sighash;
4068 use bitcoin::hashes::Hash;
4069 use bitcoin::hashes::sha256::Hash as Sha256;
4070 use bitcoin::hashes::hex::FromHex;
4071 use bitcoin::hash_types::{BlockHash, Txid};
4072 use bitcoin::network::constants::Network;
4073 use bitcoin::secp256k1::{SecretKey,PublicKey};
4074 use bitcoin::secp256k1::Secp256k1;
4078 use crate::chain::chaininterface::LowerBoundedFeeEstimator;
4080 use super::ChannelMonitorUpdateStep;
4081 use crate::{check_added_monitors, check_closed_broadcast, check_closed_event, check_spends, get_local_commitment_txn, get_monitor, get_route_and_payment_hash, unwrap_send_err};
4082 use crate::chain::{BestBlock, Confirm};
4083 use crate::chain::channelmonitor::ChannelMonitor;
4084 use crate::chain::package::{weight_offered_htlc, weight_received_htlc, weight_revoked_offered_htlc, weight_revoked_received_htlc, WEIGHT_REVOKED_OUTPUT};
4085 use crate::chain::transaction::OutPoint;
4086 use crate::chain::keysinterface::InMemorySigner;
4087 use crate::events::ClosureReason;
4088 use crate::ln::{PaymentPreimage, PaymentHash};
4089 use crate::ln::chan_utils;
4090 use crate::ln::chan_utils::{HTLCOutputInCommitment, ChannelPublicKeys, ChannelTransactionParameters, HolderCommitmentTransaction, CounterpartyChannelTransactionParameters};
4091 use crate::ln::channelmanager::{PaymentSendFailure, PaymentId, RecipientOnionFields};
4092 use crate::ln::functional_test_utils::*;
4093 use crate::ln::script::ShutdownScript;
4094 use crate::util::errors::APIError;
4095 use crate::util::test_utils::{TestLogger, TestBroadcaster, TestFeeEstimator};
4096 use crate::util::ser::{ReadableArgs, Writeable};
4097 use crate::sync::{Arc, Mutex};
4099 use bitcoin::{PackedLockTime, Sequence, TxMerkleNode, Witness};
4100 use crate::prelude::*;
4102 fn do_test_funding_spend_refuses_updates(use_local_txn: bool) {
4103 // Previously, monitor updates were allowed freely even after a funding-spend transaction
4104 // confirmed. This would allow a race condition where we could receive a payment (including
4105 // the counterparty revoking their broadcasted state!) and accept it without recourse as
4106 // long as the ChannelMonitor receives the block first, the full commitment update dance
4107 // occurs after the block is connected, and before the ChannelManager receives the block.
4108 // Obviously this is an incredibly contrived race given the counterparty would be risking
4109 // their full channel balance for it, but its worth fixing nonetheless as it makes the
4110 // potential ChannelMonitor states simpler to reason about.
4112 // This test checks said behavior, as well as ensuring a ChannelMonitorUpdate with multiple
4113 // updates is handled correctly in such conditions.
4114 let chanmon_cfgs = create_chanmon_cfgs(3);
4115 let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
4116 let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[None, None, None]);
4117 let nodes = create_network(3, &node_cfgs, &node_chanmgrs);
4118 let channel = create_announced_chan_between_nodes(&nodes, 0, 1);
4119 create_announced_chan_between_nodes(&nodes, 1, 2);
4121 // Rebalance somewhat
4122 send_payment(&nodes[0], &[&nodes[1]], 10_000_000);
4124 // First route two payments for testing at the end
4125 let payment_preimage_1 = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000).0;
4126 let payment_preimage_2 = route_payment(&nodes[0], &[&nodes[1], &nodes[2]], 1_000_000).0;
4128 let local_txn = get_local_commitment_txn!(nodes[1], channel.2);
4129 assert_eq!(local_txn.len(), 1);
4130 let remote_txn = get_local_commitment_txn!(nodes[0], channel.2);
4131 assert_eq!(remote_txn.len(), 3); // Commitment and two HTLC-Timeouts
4132 check_spends!(remote_txn[1], remote_txn[0]);
4133 check_spends!(remote_txn[2], remote_txn[0]);
4134 let broadcast_tx = if use_local_txn { &local_txn[0] } else { &remote_txn[0] };
4136 // Connect a commitment transaction, but only to the ChainMonitor/ChannelMonitor. The
4137 // channel is now closed, but the ChannelManager doesn't know that yet.
4138 let new_header = BlockHeader {
4139 version: 2, time: 0, bits: 0, nonce: 0,
4140 prev_blockhash: nodes[0].best_block_info().0,
4141 merkle_root: TxMerkleNode::all_zeros() };
4142 let conf_height = nodes[0].best_block_info().1 + 1;
4143 nodes[1].chain_monitor.chain_monitor.transactions_confirmed(&new_header,
4144 &[(0, broadcast_tx)], conf_height);
4146 let (_, pre_update_monitor) = <(BlockHash, ChannelMonitor<InMemorySigner>)>::read(
4147 &mut io::Cursor::new(&get_monitor!(nodes[1], channel.2).encode()),
4148 (&nodes[1].keys_manager.backing, &nodes[1].keys_manager.backing)).unwrap();
4150 // If the ChannelManager tries to update the channel, however, the ChainMonitor will pass
4151 // the update through to the ChannelMonitor which will refuse it (as the channel is closed).
4152 let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 100_000);
4153 unwrap_send_err!(nodes[1].node.send_payment_with_route(&route, payment_hash,
4154 RecipientOnionFields::secret_only(payment_secret), PaymentId(payment_hash.0)
4155 ), true, APIError::ChannelUnavailable { ref err },
4156 assert!(err.contains("ChannelMonitor storage failure")));
4157 check_added_monitors!(nodes[1], 2); // After the failure we generate a close-channel monitor update
4158 check_closed_broadcast!(nodes[1], true);
4159 check_closed_event!(nodes[1], 1, ClosureReason::ProcessingError { err: "ChannelMonitor storage failure".to_string() });
4161 // Build a new ChannelMonitorUpdate which contains both the failing commitment tx update
4162 // and provides the claim preimages for the two pending HTLCs. The first update generates
4163 // an error, but the point of this test is to ensure the later updates are still applied.
4164 let monitor_updates = nodes[1].chain_monitor.monitor_updates.lock().unwrap();
4165 let mut replay_update = monitor_updates.get(&channel.2).unwrap().iter().rev().skip(1).next().unwrap().clone();
4166 assert_eq!(replay_update.updates.len(), 1);
4167 if let ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { .. } = replay_update.updates[0] {
4168 } else { panic!(); }
4169 replay_update.updates.push(ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage: payment_preimage_1 });
4170 replay_update.updates.push(ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage: payment_preimage_2 });
4172 let broadcaster = TestBroadcaster::new(Arc::clone(&nodes[1].blocks));
4174 pre_update_monitor.update_monitor(&replay_update, &&broadcaster, &chanmon_cfgs[1].fee_estimator, &nodes[1].logger)
4176 // Even though we error'd on the first update, we should still have generated an HTLC claim
4178 let txn_broadcasted = broadcaster.txn_broadcasted.lock().unwrap().split_off(0);
4179 assert!(txn_broadcasted.len() >= 2);
4180 let htlc_txn = txn_broadcasted.iter().filter(|tx| {
4181 assert_eq!(tx.input.len(), 1);
4182 tx.input[0].previous_output.txid == broadcast_tx.txid()
4183 }).collect::<Vec<_>>();
4184 assert_eq!(htlc_txn.len(), 2);
4185 check_spends!(htlc_txn[0], broadcast_tx);
4186 check_spends!(htlc_txn[1], broadcast_tx);
4189 fn test_funding_spend_refuses_updates() {
4190 do_test_funding_spend_refuses_updates(true);
4191 do_test_funding_spend_refuses_updates(false);
4195 fn test_prune_preimages() {
4196 let secp_ctx = Secp256k1::new();
4197 let logger = Arc::new(TestLogger::new());
4198 let broadcaster = Arc::new(TestBroadcaster {
4199 txn_broadcasted: Mutex::new(Vec::new()),
4200 blocks: Arc::new(Mutex::new(Vec::new()))
4202 let fee_estimator = TestFeeEstimator { sat_per_kw: Mutex::new(253) };
4204 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
4206 let mut preimages = Vec::new();
4209 let preimage = PaymentPreimage([i; 32]);
4210 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
4211 preimages.push((preimage, hash));
4215 macro_rules! preimages_slice_to_htlcs {
4216 ($preimages_slice: expr) => {
4218 let mut res = Vec::new();
4219 for (idx, preimage) in $preimages_slice.iter().enumerate() {
4220 res.push((HTLCOutputInCommitment {
4224 payment_hash: preimage.1.clone(),
4225 transaction_output_index: Some(idx as u32),
4232 macro_rules! preimages_slice_to_htlc_outputs {
4233 ($preimages_slice: expr) => {
4234 preimages_slice_to_htlcs!($preimages_slice).into_iter().map(|(htlc, _)| (htlc, None)).collect()
4237 let dummy_sig = crate::util::crypto::sign(&secp_ctx,
4238 &bitcoin::secp256k1::Message::from_slice(&[42; 32]).unwrap(),
4239 &SecretKey::from_slice(&[42; 32]).unwrap());
4241 macro_rules! test_preimages_exist {
4242 ($preimages_slice: expr, $monitor: expr) => {
4243 for preimage in $preimages_slice {
4244 assert!($monitor.inner.lock().unwrap().payment_preimages.contains_key(&preimage.1));
4249 let keys = InMemorySigner::new(
4251 SecretKey::from_slice(&[41; 32]).unwrap(),
4252 SecretKey::from_slice(&[41; 32]).unwrap(),
4253 SecretKey::from_slice(&[41; 32]).unwrap(),
4254 SecretKey::from_slice(&[41; 32]).unwrap(),
4255 SecretKey::from_slice(&[41; 32]).unwrap(),
4262 let counterparty_pubkeys = ChannelPublicKeys {
4263 funding_pubkey: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
4264 revocation_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap()),
4265 payment_point: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[46; 32]).unwrap()),
4266 delayed_payment_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[47; 32]).unwrap()),
4267 htlc_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[48; 32]).unwrap())
4269 let funding_outpoint = OutPoint { txid: Txid::all_zeros(), index: u16::max_value() };
4270 let channel_parameters = ChannelTransactionParameters {
4271 holder_pubkeys: keys.holder_channel_pubkeys.clone(),
4272 holder_selected_contest_delay: 66,
4273 is_outbound_from_holder: true,
4274 counterparty_parameters: Some(CounterpartyChannelTransactionParameters {
4275 pubkeys: counterparty_pubkeys,
4276 selected_contest_delay: 67,
4278 funding_outpoint: Some(funding_outpoint),
4280 opt_non_zero_fee_anchors: None,
4282 // Prune with one old state and a holder commitment tx holding a few overlaps with the
4284 let shutdown_pubkey = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
4285 let best_block = BestBlock::from_network(Network::Testnet);
4286 let monitor = ChannelMonitor::new(Secp256k1::new(), keys,
4287 Some(ShutdownScript::new_p2wpkh_from_pubkey(shutdown_pubkey).into_inner()), 0, &Script::new(),
4288 (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, Script::new()),
4289 &channel_parameters, Script::new(), 46, 0, HolderCommitmentTransaction::dummy(&mut Vec::new()),
4290 best_block, dummy_key);
4292 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..10]);
4293 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
4294 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx.clone(),
4295 htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
4296 monitor.provide_latest_counterparty_commitment_tx(Txid::from_inner(Sha256::hash(b"1").into_inner()),
4297 preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
4298 monitor.provide_latest_counterparty_commitment_tx(Txid::from_inner(Sha256::hash(b"2").into_inner()),
4299 preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
4300 for &(ref preimage, ref hash) in preimages.iter() {
4301 let bounded_fee_estimator = LowerBoundedFeeEstimator::new(&fee_estimator);
4302 monitor.provide_payment_preimage(hash, preimage, &broadcaster, &bounded_fee_estimator, &logger);
4305 // Now provide a secret, pruning preimages 10-15
4306 let mut secret = [0; 32];
4307 secret[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
4308 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
4309 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 15);
4310 test_preimages_exist!(&preimages[0..10], monitor);
4311 test_preimages_exist!(&preimages[15..20], monitor);
4313 monitor.provide_latest_counterparty_commitment_tx(Txid::from_inner(Sha256::hash(b"3").into_inner()),
4314 preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
4316 // Now provide a further secret, pruning preimages 15-17
4317 secret[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
4318 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
4319 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 13);
4320 test_preimages_exist!(&preimages[0..10], monitor);
4321 test_preimages_exist!(&preimages[17..20], monitor);
4323 monitor.provide_latest_counterparty_commitment_tx(Txid::from_inner(Sha256::hash(b"4").into_inner()),
4324 preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
4326 // Now update holder commitment tx info, pruning only element 18 as we still care about the
4327 // previous commitment tx's preimages too
4328 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..5]);
4329 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
4330 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx.clone(),
4331 htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
4332 secret[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
4333 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
4334 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 12);
4335 test_preimages_exist!(&preimages[0..10], monitor);
4336 test_preimages_exist!(&preimages[18..20], monitor);
4338 // But if we do it again, we'll prune 5-10
4339 let mut htlcs = preimages_slice_to_htlcs!(preimages[0..3]);
4340 let dummy_commitment_tx = HolderCommitmentTransaction::dummy(&mut htlcs);
4341 monitor.provide_latest_holder_commitment_tx(dummy_commitment_tx,
4342 htlcs.into_iter().map(|(htlc, _)| (htlc, Some(dummy_sig), None)).collect()).unwrap();
4343 secret[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
4344 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
4345 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 5);
4346 test_preimages_exist!(&preimages[0..5], monitor);
4350 fn test_claim_txn_weight_computation() {
4351 // We test Claim txn weight, knowing that we want expected weigth and
4352 // not actual case to avoid sigs and time-lock delays hell variances.
4354 let secp_ctx = Secp256k1::new();
4355 let privkey = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
4356 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
4358 macro_rules! sign_input {
4359 ($sighash_parts: expr, $idx: expr, $amount: expr, $weight: expr, $sum_actual_sigs: expr, $opt_anchors: expr) => {
4360 let htlc = HTLCOutputInCommitment {
4361 offered: if *$weight == weight_revoked_offered_htlc($opt_anchors) || *$weight == weight_offered_htlc($opt_anchors) { true } else { false },
4363 cltv_expiry: 2 << 16,
4364 payment_hash: PaymentHash([1; 32]),
4365 transaction_output_index: Some($idx as u32),
4367 let redeem_script = if *$weight == WEIGHT_REVOKED_OUTPUT { chan_utils::get_revokeable_redeemscript(&pubkey, 256, &pubkey) } else { chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, $opt_anchors, &pubkey, &pubkey, &pubkey) };
4368 let sighash = hash_to_message!(&$sighash_parts.segwit_signature_hash($idx, &redeem_script, $amount, EcdsaSighashType::All).unwrap()[..]);
4369 let sig = secp_ctx.sign_ecdsa(&sighash, &privkey);
4370 let mut ser_sig = sig.serialize_der().to_vec();
4371 ser_sig.push(EcdsaSighashType::All as u8);
4372 $sum_actual_sigs += ser_sig.len();
4373 let witness = $sighash_parts.witness_mut($idx).unwrap();
4374 witness.push(ser_sig);
4375 if *$weight == WEIGHT_REVOKED_OUTPUT {
4376 witness.push(vec!(1));
4377 } else if *$weight == weight_revoked_offered_htlc($opt_anchors) || *$weight == weight_revoked_received_htlc($opt_anchors) {
4378 witness.push(pubkey.clone().serialize().to_vec());
4379 } else if *$weight == weight_received_htlc($opt_anchors) {
4380 witness.push(vec![0]);
4382 witness.push(PaymentPreimage([1; 32]).0.to_vec());
4384 witness.push(redeem_script.into_bytes());
4385 let witness = witness.to_vec();
4386 println!("witness[0] {}", witness[0].len());
4387 println!("witness[1] {}", witness[1].len());
4388 println!("witness[2] {}", witness[2].len());
4392 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
4393 let txid = Txid::from_hex("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
4395 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
4396 for &opt_anchors in [false, true].iter() {
4397 let mut claim_tx = Transaction { version: 0, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() };
4398 let mut sum_actual_sigs = 0;
4400 claim_tx.input.push(TxIn {
4401 previous_output: BitcoinOutPoint {
4405 script_sig: Script::new(),
4406 sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
4407 witness: Witness::new(),
4410 claim_tx.output.push(TxOut {
4411 script_pubkey: script_pubkey.clone(),
4414 let base_weight = claim_tx.weight();
4415 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT, weight_revoked_offered_htlc(opt_anchors), weight_revoked_offered_htlc(opt_anchors), weight_revoked_received_htlc(opt_anchors)];
4416 let mut inputs_total_weight = 2; // count segwit flags
4418 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
4419 for (idx, inp) in inputs_weight.iter().enumerate() {
4420 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs, opt_anchors);
4421 inputs_total_weight += inp;
4424 assert_eq!(base_weight + inputs_total_weight as usize, claim_tx.weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
4427 // Claim tx with 1 offered HTLCs, 3 received HTLCs
4428 for &opt_anchors in [false, true].iter() {
4429 let mut claim_tx = Transaction { version: 0, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() };
4430 let mut sum_actual_sigs = 0;
4432 claim_tx.input.push(TxIn {
4433 previous_output: BitcoinOutPoint {
4437 script_sig: Script::new(),
4438 sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
4439 witness: Witness::new(),
4442 claim_tx.output.push(TxOut {
4443 script_pubkey: script_pubkey.clone(),
4446 let base_weight = claim_tx.weight();
4447 let inputs_weight = vec![weight_offered_htlc(opt_anchors), weight_received_htlc(opt_anchors), weight_received_htlc(opt_anchors), weight_received_htlc(opt_anchors)];
4448 let mut inputs_total_weight = 2; // count segwit flags
4450 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
4451 for (idx, inp) in inputs_weight.iter().enumerate() {
4452 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs, opt_anchors);
4453 inputs_total_weight += inp;
4456 assert_eq!(base_weight + inputs_total_weight as usize, claim_tx.weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
4459 // Justice tx with 1 revoked HTLC-Success tx output
4460 for &opt_anchors in [false, true].iter() {
4461 let mut claim_tx = Transaction { version: 0, lock_time: PackedLockTime::ZERO, input: Vec::new(), output: Vec::new() };
4462 let mut sum_actual_sigs = 0;
4463 claim_tx.input.push(TxIn {
4464 previous_output: BitcoinOutPoint {
4468 script_sig: Script::new(),
4469 sequence: Sequence::ENABLE_RBF_NO_LOCKTIME,
4470 witness: Witness::new(),
4472 claim_tx.output.push(TxOut {
4473 script_pubkey: script_pubkey.clone(),
4476 let base_weight = claim_tx.weight();
4477 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT];
4478 let mut inputs_total_weight = 2; // count segwit flags
4480 let mut sighash_parts = sighash::SighashCache::new(&mut claim_tx);
4481 for (idx, inp) in inputs_weight.iter().enumerate() {
4482 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs, opt_anchors);
4483 inputs_total_weight += inp;
4486 assert_eq!(base_weight + inputs_total_weight as usize, claim_tx.weight() + /* max_length_isg */ (73 * inputs_weight.len() - sum_actual_sigs));
4490 // Further testing is done in the ChannelManager integration tests.