Remove outdated line from get_route docs
[rust-lightning] / lightning / src / chain / channelmonitor.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The logic to monitor for on-chain transactions and create the relevant claim responses lives
11 //! here.
12 //!
13 //! ChannelMonitor objects are generated by ChannelManager in response to relevant
14 //! messages/actions, and MUST be persisted to disk (and, preferably, remotely) before progress can
15 //! be made in responding to certain messages, see [`chain::Watch`] for more.
16 //!
17 //! Note that ChannelMonitors are an important part of the lightning trust model and a copy of the
18 //! latest ChannelMonitor must always be actively monitoring for chain updates (and no out-of-date
19 //! ChannelMonitors should do so). Thus, if you're building rust-lightning into an HSM or other
20 //! security-domain-separated system design, you should consider having multiple paths for
21 //! ChannelMonitors to get out of the HSM and onto monitoring devices.
22
23 use bitcoin::blockdata::block::{Block, BlockHeader};
24 use bitcoin::blockdata::transaction::{TxOut,Transaction};
25 use bitcoin::blockdata::script::{Script, Builder};
26 use bitcoin::blockdata::opcodes;
27
28 use bitcoin::hashes::Hash;
29 use bitcoin::hashes::sha256::Hash as Sha256;
30 use bitcoin::hash_types::{Txid, BlockHash, WPubkeyHash};
31
32 use bitcoin::secp256k1::{Secp256k1,Signature};
33 use bitcoin::secp256k1::key::{SecretKey,PublicKey};
34 use bitcoin::secp256k1;
35
36 use ln::{PaymentHash, PaymentPreimage};
37 use ln::msgs::DecodeError;
38 use ln::chan_utils;
39 use ln::chan_utils::{CounterpartyCommitmentSecrets, HTLCOutputInCommitment, HTLCType, ChannelTransactionParameters, HolderCommitmentTransaction};
40 use ln::channelmanager::HTLCSource;
41 use chain;
42 use chain::{BestBlock, WatchedOutput};
43 use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
44 use chain::transaction::{OutPoint, TransactionData};
45 use chain::keysinterface::{SpendableOutputDescriptor, StaticPaymentOutputDescriptor, DelayedPaymentOutputDescriptor, Sign, KeysInterface};
46 use chain::onchaintx::OnchainTxHandler;
47 use chain::package::{CounterpartyOfferedHTLCOutput, CounterpartyReceivedHTLCOutput, HolderFundingOutput, HolderHTLCOutput, PackageSolvingData, PackageTemplate, RevokedOutput, RevokedHTLCOutput};
48 use chain::Filter;
49 use util::logger::Logger;
50 use util::ser::{Readable, ReadableArgs, MaybeReadable, Writer, Writeable, U48, OptionDeserWrapper};
51 use util::byte_utils;
52 use util::events::Event;
53
54 use prelude::*;
55 use core::{cmp, mem};
56 use io::{self, Error};
57 use core::ops::Deref;
58 use sync::Mutex;
59
60 /// An update generated by the underlying Channel itself which contains some new information the
61 /// ChannelMonitor should be made aware of.
62 #[cfg_attr(any(test, feature = "fuzztarget", feature = "_test_utils"), derive(PartialEq))]
63 #[derive(Clone)]
64 #[must_use]
65 pub struct ChannelMonitorUpdate {
66         pub(crate) updates: Vec<ChannelMonitorUpdateStep>,
67         /// The sequence number of this update. Updates *must* be replayed in-order according to this
68         /// sequence number (and updates may panic if they are not). The update_id values are strictly
69         /// increasing and increase by one for each new update, with one exception specified below.
70         ///
71         /// This sequence number is also used to track up to which points updates which returned
72         /// ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
73         /// ChannelMonitor when ChannelManager::channel_monitor_updated is called.
74         ///
75         /// The only instance where update_id values are not strictly increasing is the case where we
76         /// allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
77         /// its docs for more details.
78         pub update_id: u64,
79 }
80
81 /// If:
82 ///    (1) a channel has been force closed and
83 ///    (2) we receive a preimage from a forward link that allows us to spend an HTLC output on
84 ///        this channel's (the backward link's) broadcasted commitment transaction
85 /// then we allow the `ChannelManager` to send a `ChannelMonitorUpdate` with this update ID,
86 /// with the update providing said payment preimage. No other update types are allowed after
87 /// force-close.
88 pub const CLOSED_CHANNEL_UPDATE_ID: u64 = core::u64::MAX;
89
90 impl Writeable for ChannelMonitorUpdate {
91         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
92                 write_ver_prefix!(w, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
93                 self.update_id.write(w)?;
94                 (self.updates.len() as u64).write(w)?;
95                 for update_step in self.updates.iter() {
96                         update_step.write(w)?;
97                 }
98                 write_tlv_fields!(w, {});
99                 Ok(())
100         }
101 }
102 impl Readable for ChannelMonitorUpdate {
103         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
104                 let _ver = read_ver_prefix!(r, SERIALIZATION_VERSION);
105                 let update_id: u64 = Readable::read(r)?;
106                 let len: u64 = Readable::read(r)?;
107                 let mut updates = Vec::with_capacity(cmp::min(len as usize, MAX_ALLOC_SIZE / ::core::mem::size_of::<ChannelMonitorUpdateStep>()));
108                 for _ in 0..len {
109                         if let Some(upd) = MaybeReadable::read(r)? {
110                                 updates.push(upd);
111                         }
112                 }
113                 read_tlv_fields!(r, {});
114                 Ok(Self { update_id, updates })
115         }
116 }
117
118 /// General Err type for ChannelMonitor actions. Generally, this implies that the data provided is
119 /// inconsistent with the ChannelMonitor being called. eg for ChannelMonitor::update_monitor this
120 /// means you tried to update a monitor for a different channel or the ChannelMonitorUpdate was
121 /// corrupted.
122 /// Contains a developer-readable error message.
123 #[derive(Clone, Debug)]
124 pub struct MonitorUpdateError(pub &'static str);
125
126 /// An event to be processed by the ChannelManager.
127 #[derive(Clone, PartialEq)]
128 pub enum MonitorEvent {
129         /// A monitor event containing an HTLCUpdate.
130         HTLCEvent(HTLCUpdate),
131
132         /// A monitor event that the Channel's commitment transaction was confirmed.
133         CommitmentTxConfirmed(OutPoint),
134
135         /// Indicates a [`ChannelMonitor`] update has completed. See
136         /// [`ChannelMonitorUpdateErr::TemporaryFailure`] for more information on how this is used.
137         ///
138         /// [`ChannelMonitorUpdateErr::TemporaryFailure`]: super::ChannelMonitorUpdateErr::TemporaryFailure
139         UpdateCompleted {
140                 /// The funding outpoint of the [`ChannelMonitor`] that was updated
141                 funding_txo: OutPoint,
142                 /// The Update ID from [`ChannelMonitorUpdate::update_id`] which was applied or
143                 /// [`ChannelMonitor::get_latest_update_id`].
144                 ///
145                 /// Note that this should only be set to a given update's ID if all previous updates for the
146                 /// same [`ChannelMonitor`] have been applied and persisted.
147                 monitor_update_id: u64,
148         },
149
150         /// Indicates a [`ChannelMonitor`] update has failed. See
151         /// [`ChannelMonitorUpdateErr::PermanentFailure`] for more information on how this is used.
152         ///
153         /// [`ChannelMonitorUpdateErr::PermanentFailure`]: super::ChannelMonitorUpdateErr::PermanentFailure
154         UpdateFailed(OutPoint),
155 }
156 impl_writeable_tlv_based_enum_upgradable!(MonitorEvent,
157         // Note that UpdateCompleted and UpdateFailed are currently never serialized to disk as they are
158         // generated only in ChainMonitor
159         (0, UpdateCompleted) => {
160                 (0, funding_txo, required),
161                 (2, monitor_update_id, required),
162         },
163 ;
164         (2, HTLCEvent),
165         (4, CommitmentTxConfirmed),
166         (6, UpdateFailed),
167 );
168
169 /// Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
170 /// chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
171 /// preimage claim backward will lead to loss of funds.
172 #[derive(Clone, PartialEq)]
173 pub struct HTLCUpdate {
174         pub(crate) payment_hash: PaymentHash,
175         pub(crate) payment_preimage: Option<PaymentPreimage>,
176         pub(crate) source: HTLCSource,
177         pub(crate) onchain_value_satoshis: Option<u64>,
178 }
179 impl_writeable_tlv_based!(HTLCUpdate, {
180         (0, payment_hash, required),
181         (1, onchain_value_satoshis, option),
182         (2, source, required),
183         (4, payment_preimage, option),
184 });
185
186 /// If an HTLC expires within this many blocks, don't try to claim it in a shared transaction,
187 /// instead claiming it in its own individual transaction.
188 pub(crate) const CLTV_SHARED_CLAIM_BUFFER: u32 = 12;
189 /// If an HTLC expires within this many blocks, force-close the channel to broadcast the
190 /// HTLC-Success transaction.
191 /// In other words, this is an upper bound on how many blocks we think it can take us to get a
192 /// transaction confirmed (and we use it in a few more, equivalent, places).
193 pub(crate) const CLTV_CLAIM_BUFFER: u32 = 18;
194 /// Number of blocks by which point we expect our counterparty to have seen new blocks on the
195 /// network and done a full update_fail_htlc/commitment_signed dance (+ we've updated all our
196 /// copies of ChannelMonitors, including watchtowers). We could enforce the contract by failing
197 /// at CLTV expiration height but giving a grace period to our peer may be profitable for us if he
198 /// can provide an over-late preimage. Nevertheless, grace period has to be accounted in our
199 /// CLTV_EXPIRY_DELTA to be secure. Following this policy we may decrease the rate of channel failures
200 /// due to expiration but increase the cost of funds being locked longuer in case of failure.
201 /// This delay also cover a low-power peer being slow to process blocks and so being behind us on
202 /// accurate block height.
203 /// In case of onchain failure to be pass backward we may see the last block of ANTI_REORG_DELAY
204 /// with at worst this delay, so we are not only using this value as a mercy for them but also
205 /// us as a safeguard to delay with enough time.
206 pub(crate) const LATENCY_GRACE_PERIOD_BLOCKS: u32 = 3;
207 /// Number of blocks we wait on seeing a HTLC output being solved before we fail corresponding
208 /// inbound HTLCs. This prevents us from failing backwards and then getting a reorg resulting in us
209 /// losing money.
210 ///
211 /// Note that this is a library-wide security assumption. If a reorg deeper than this number of
212 /// blocks occurs, counterparties may be able to steal funds or claims made by and balances exposed
213 /// by a  [`ChannelMonitor`] may be incorrect.
214 // We also use this delay to be sure we can remove our in-flight claim txn from bump candidates buffer.
215 // It may cause spurious generation of bumped claim txn but that's alright given the outpoint is already
216 // solved by a previous claim tx. What we want to avoid is reorg evicting our claim tx and us not
217 // keep bumping another claim tx to solve the outpoint.
218 pub const ANTI_REORG_DELAY: u32 = 6;
219 /// Number of blocks before confirmation at which we fail back an un-relayed HTLC or at which we
220 /// refuse to accept a new HTLC.
221 ///
222 /// This is used for a few separate purposes:
223 /// 1) if we've received an MPP HTLC to us and it expires within this many blocks and we are
224 ///    waiting on additional parts (or waiting on the preimage for any HTLC from the user), we will
225 ///    fail this HTLC,
226 /// 2) if we receive an HTLC within this many blocks of its expiry (plus one to avoid a race
227 ///    condition with the above), we will fail this HTLC without telling the user we received it,
228 /// 3) if we are waiting on a connection or a channel state update to send an HTLC to a peer, and
229 ///    that HTLC expires within this many blocks, we will simply fail the HTLC instead.
230 ///
231 /// (1) is all about protecting us - we need enough time to update the channel state before we hit
232 /// CLTV_CLAIM_BUFFER, at which point we'd go on chain to claim the HTLC with the preimage.
233 ///
234 /// (2) is the same, but with an additional buffer to avoid accepting an HTLC which is immediately
235 /// in a race condition between the user connecting a block (which would fail it) and the user
236 /// providing us the preimage (which would claim it).
237 ///
238 /// (3) is about our counterparty - we don't want to relay an HTLC to a counterparty when they may
239 /// end up force-closing the channel on us to claim it.
240 pub(crate) const HTLC_FAIL_BACK_BUFFER: u32 = CLTV_CLAIM_BUFFER + LATENCY_GRACE_PERIOD_BLOCKS;
241
242 // TODO(devrandom) replace this with HolderCommitmentTransaction
243 #[derive(Clone, PartialEq)]
244 struct HolderSignedTx {
245         /// txid of the transaction in tx, just used to make comparison faster
246         txid: Txid,
247         revocation_key: PublicKey,
248         a_htlc_key: PublicKey,
249         b_htlc_key: PublicKey,
250         delayed_payment_key: PublicKey,
251         per_commitment_point: PublicKey,
252         htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
253         to_self_value_sat: u64,
254         feerate_per_kw: u32,
255 }
256 impl_writeable_tlv_based!(HolderSignedTx, {
257         (0, txid, required),
258         // Note that this is filled in with data from OnchainTxHandler if it's missing.
259         // For HolderSignedTx objects serialized with 0.0.100+, this should be filled in.
260         (1, to_self_value_sat, (default_value, u64::max_value())),
261         (2, revocation_key, required),
262         (4, a_htlc_key, required),
263         (6, b_htlc_key, required),
264         (8, delayed_payment_key, required),
265         (10, per_commitment_point, required),
266         (12, feerate_per_kw, required),
267         (14, htlc_outputs, vec_type)
268 });
269
270 /// We use this to track static counterparty commitment transaction data and to generate any
271 /// justice or 2nd-stage preimage/timeout transactions.
272 #[derive(PartialEq)]
273 struct CounterpartyCommitmentParameters {
274         counterparty_delayed_payment_base_key: PublicKey,
275         counterparty_htlc_base_key: PublicKey,
276         on_counterparty_tx_csv: u16,
277 }
278
279 impl Writeable for CounterpartyCommitmentParameters {
280         fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
281                 w.write_all(&byte_utils::be64_to_array(0))?;
282                 write_tlv_fields!(w, {
283                         (0, self.counterparty_delayed_payment_base_key, required),
284                         (2, self.counterparty_htlc_base_key, required),
285                         (4, self.on_counterparty_tx_csv, required),
286                 });
287                 Ok(())
288         }
289 }
290 impl Readable for CounterpartyCommitmentParameters {
291         fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
292                 let counterparty_commitment_transaction = {
293                         // Versions prior to 0.0.100 had some per-HTLC state stored here, which is no longer
294                         // used. Read it for compatibility.
295                         let per_htlc_len: u64 = Readable::read(r)?;
296                         for _  in 0..per_htlc_len {
297                                 let _txid: Txid = Readable::read(r)?;
298                                 let htlcs_count: u64 = Readable::read(r)?;
299                                 for _ in 0..htlcs_count {
300                                         let _htlc: HTLCOutputInCommitment = Readable::read(r)?;
301                                 }
302                         }
303
304                         let mut counterparty_delayed_payment_base_key = OptionDeserWrapper(None);
305                         let mut counterparty_htlc_base_key = OptionDeserWrapper(None);
306                         let mut on_counterparty_tx_csv: u16 = 0;
307                         read_tlv_fields!(r, {
308                                 (0, counterparty_delayed_payment_base_key, required),
309                                 (2, counterparty_htlc_base_key, required),
310                                 (4, on_counterparty_tx_csv, required),
311                         });
312                         CounterpartyCommitmentParameters {
313                                 counterparty_delayed_payment_base_key: counterparty_delayed_payment_base_key.0.unwrap(),
314                                 counterparty_htlc_base_key: counterparty_htlc_base_key.0.unwrap(),
315                                 on_counterparty_tx_csv,
316                         }
317                 };
318                 Ok(counterparty_commitment_transaction)
319         }
320 }
321
322 /// An entry for an [`OnchainEvent`], stating the block height when the event was observed and the
323 /// transaction causing it.
324 ///
325 /// Used to determine when the on-chain event can be considered safe from a chain reorganization.
326 #[derive(PartialEq)]
327 struct OnchainEventEntry {
328         txid: Txid,
329         height: u32,
330         event: OnchainEvent,
331 }
332
333 impl OnchainEventEntry {
334         fn confirmation_threshold(&self) -> u32 {
335                 let mut conf_threshold = self.height + ANTI_REORG_DELAY - 1;
336                 match self.event {
337                         OnchainEvent::MaturingOutput {
338                                 descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor)
339                         } => {
340                                 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
341                                 // it's broadcastable when we see the previous block.
342                                 conf_threshold = cmp::max(conf_threshold, self.height + descriptor.to_self_delay as u32 - 1);
343                         },
344                         OnchainEvent::FundingSpendConfirmation { on_local_output_csv: Some(csv), .. } |
345                         OnchainEvent::HTLCSpendConfirmation { on_to_local_output_csv: Some(csv), .. } => {
346                                 // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
347                                 // it's broadcastable when we see the previous block.
348                                 conf_threshold = cmp::max(conf_threshold, self.height + csv as u32 - 1);
349                         },
350                         _ => {},
351                 }
352                 conf_threshold
353         }
354
355         fn has_reached_confirmation_threshold(&self, best_block: &BestBlock) -> bool {
356                 best_block.height() >= self.confirmation_threshold()
357         }
358 }
359
360 /// Upon discovering of some classes of onchain tx by ChannelMonitor, we may have to take actions on it
361 /// once they mature to enough confirmations (ANTI_REORG_DELAY)
362 #[derive(PartialEq)]
363 enum OnchainEvent {
364         /// An outbound HTLC failing after a transaction is confirmed. Used
365         ///  * when an outbound HTLC output is spent by us after the HTLC timed out
366         ///  * an outbound HTLC which was not present in the commitment transaction which appeared
367         ///    on-chain (either because it was not fully committed to or it was dust).
368         /// Note that this is *not* used for preimage claims, as those are passed upstream immediately,
369         /// appearing only as an `HTLCSpendConfirmation`, below.
370         HTLCUpdate {
371                 source: HTLCSource,
372                 payment_hash: PaymentHash,
373                 onchain_value_satoshis: Option<u64>,
374                 /// None in the second case, above, ie when there is no relevant output in the commitment
375                 /// transaction which appeared on chain.
376                 input_idx: Option<u32>,
377         },
378         MaturingOutput {
379                 descriptor: SpendableOutputDescriptor,
380         },
381         /// A spend of the funding output, either a commitment transaction or a cooperative closing
382         /// transaction.
383         FundingSpendConfirmation {
384                 /// The CSV delay for the output of the funding spend transaction (implying it is a local
385                 /// commitment transaction, and this is the delay on the to_self output).
386                 on_local_output_csv: Option<u16>,
387         },
388         /// A spend of a commitment transaction HTLC output, set in the cases where *no* `HTLCUpdate`
389         /// is constructed. This is used when
390         ///  * an outbound HTLC is claimed by our counterparty with a preimage, causing us to
391         ///    immediately claim the HTLC on the inbound edge and track the resolution here,
392         ///  * an inbound HTLC is claimed by our counterparty (with a timeout),
393         ///  * an inbound HTLC is claimed by us (with a preimage).
394         ///  * a revoked-state HTLC transaction was broadcasted, which was claimed by the revocation
395         ///    signature.
396         HTLCSpendConfirmation {
397                 input_idx: u32,
398                 /// If the claim was made by either party with a preimage, this is filled in
399                 preimage: Option<PaymentPreimage>,
400                 /// If the claim was made by us on an inbound HTLC against a local commitment transaction,
401                 /// we set this to the output CSV value which we will have to wait until to spend the
402                 /// output (and generate a SpendableOutput event).
403                 on_to_local_output_csv: Option<u16>,
404         },
405 }
406
407 impl Writeable for OnchainEventEntry {
408         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
409                 write_tlv_fields!(writer, {
410                         (0, self.txid, required),
411                         (2, self.height, required),
412                         (4, self.event, required),
413                 });
414                 Ok(())
415         }
416 }
417
418 impl MaybeReadable for OnchainEventEntry {
419         fn read<R: io::Read>(reader: &mut R) -> Result<Option<Self>, DecodeError> {
420                 let mut txid = Default::default();
421                 let mut height = 0;
422                 let mut event = None;
423                 read_tlv_fields!(reader, {
424                         (0, txid, required),
425                         (2, height, required),
426                         (4, event, ignorable),
427                 });
428                 if let Some(ev) = event {
429                         Ok(Some(Self { txid, height, event: ev }))
430                 } else {
431                         Ok(None)
432                 }
433         }
434 }
435
436 impl_writeable_tlv_based_enum_upgradable!(OnchainEvent,
437         (0, HTLCUpdate) => {
438                 (0, source, required),
439                 (1, onchain_value_satoshis, option),
440                 (2, payment_hash, required),
441                 (3, input_idx, option),
442         },
443         (1, MaturingOutput) => {
444                 (0, descriptor, required),
445         },
446         (3, FundingSpendConfirmation) => {
447                 (0, on_local_output_csv, option),
448         },
449         (5, HTLCSpendConfirmation) => {
450                 (0, input_idx, required),
451                 (2, preimage, option),
452                 (4, on_to_local_output_csv, option),
453         },
454
455 );
456
457 #[cfg_attr(any(test, feature = "fuzztarget", feature = "_test_utils"), derive(PartialEq))]
458 #[derive(Clone)]
459 pub(crate) enum ChannelMonitorUpdateStep {
460         LatestHolderCommitmentTXInfo {
461                 commitment_tx: HolderCommitmentTransaction,
462                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
463         },
464         LatestCounterpartyCommitmentTXInfo {
465                 commitment_txid: Txid,
466                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
467                 commitment_number: u64,
468                 their_revocation_point: PublicKey,
469         },
470         PaymentPreimage {
471                 payment_preimage: PaymentPreimage,
472         },
473         CommitmentSecret {
474                 idx: u64,
475                 secret: [u8; 32],
476         },
477         /// Used to indicate that the no future updates will occur, and likely that the latest holder
478         /// commitment transaction(s) should be broadcast, as the channel has been force-closed.
479         ChannelForceClosed {
480                 /// If set to false, we shouldn't broadcast the latest holder commitment transaction as we
481                 /// think we've fallen behind!
482                 should_broadcast: bool,
483         },
484         ShutdownScript {
485                 scriptpubkey: Script,
486         },
487 }
488
489 impl_writeable_tlv_based_enum_upgradable!(ChannelMonitorUpdateStep,
490         (0, LatestHolderCommitmentTXInfo) => {
491                 (0, commitment_tx, required),
492                 (2, htlc_outputs, vec_type),
493         },
494         (1, LatestCounterpartyCommitmentTXInfo) => {
495                 (0, commitment_txid, required),
496                 (2, commitment_number, required),
497                 (4, their_revocation_point, required),
498                 (6, htlc_outputs, vec_type),
499         },
500         (2, PaymentPreimage) => {
501                 (0, payment_preimage, required),
502         },
503         (3, CommitmentSecret) => {
504                 (0, idx, required),
505                 (2, secret, required),
506         },
507         (4, ChannelForceClosed) => {
508                 (0, should_broadcast, required),
509         },
510         (5, ShutdownScript) => {
511                 (0, scriptpubkey, required),
512         },
513 );
514
515 /// Details about the balance(s) available for spending once the channel appears on chain.
516 ///
517 /// See [`ChannelMonitor::get_claimable_balances`] for more details on when these will or will not
518 /// be provided.
519 #[derive(Clone, Debug, PartialEq, Eq)]
520 #[cfg_attr(test, derive(PartialOrd, Ord))]
521 pub enum Balance {
522         /// The channel is not yet closed (or the commitment or closing transaction has not yet
523         /// appeared in a block). The given balance is claimable (less on-chain fees) if the channel is
524         /// force-closed now.
525         ClaimableOnChannelClose {
526                 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
527                 /// required to do so.
528                 claimable_amount_satoshis: u64,
529         },
530         /// The channel has been closed, and the given balance is ours but awaiting confirmations until
531         /// we consider it spendable.
532         ClaimableAwaitingConfirmations {
533                 /// The amount available to claim, in satoshis, possibly excluding the on-chain fees which
534                 /// were spent in broadcasting the transaction.
535                 claimable_amount_satoshis: u64,
536                 /// The height at which an [`Event::SpendableOutputs`] event will be generated for this
537                 /// amount.
538                 confirmation_height: u32,
539         },
540         /// The channel has been closed, and the given balance should be ours but awaiting spending
541         /// transaction confirmation. If the spending transaction does not confirm in time, it is
542         /// possible our counterparty can take the funds by broadcasting an HTLC timeout on-chain.
543         ///
544         /// Once the spending transaction confirms, before it has reached enough confirmations to be
545         /// considered safe from chain reorganizations, the balance will instead be provided via
546         /// [`Balance::ClaimableAwaitingConfirmations`].
547         ContentiousClaimable {
548                 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
549                 /// required to do so.
550                 claimable_amount_satoshis: u64,
551                 /// The height at which the counterparty may be able to claim the balance if we have not
552                 /// done so.
553                 timeout_height: u32,
554         },
555         /// HTLCs which we sent to our counterparty which are claimable after a timeout (less on-chain
556         /// fees) if the counterparty does not know the preimage for the HTLCs. These are somewhat
557         /// likely to be claimed by our counterparty before we do.
558         MaybeClaimableHTLCAwaitingTimeout {
559                 /// The amount available to claim, in satoshis, excluding the on-chain fees which will be
560                 /// required to do so.
561                 claimable_amount_satoshis: u64,
562                 /// The height at which we will be able to claim the balance if our counterparty has not
563                 /// done so.
564                 claimable_height: u32,
565         },
566 }
567
568 /// An HTLC which has been irrevocably resolved on-chain, and has reached ANTI_REORG_DELAY.
569 #[derive(PartialEq)]
570 struct IrrevocablyResolvedHTLC {
571         input_idx: u32,
572         /// Only set if the HTLC claim was ours using a payment preimage
573         payment_preimage: Option<PaymentPreimage>,
574 }
575
576 impl_writeable_tlv_based!(IrrevocablyResolvedHTLC, {
577         (0, input_idx, required),
578         (2, payment_preimage, option),
579 });
580
581 /// A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
582 /// on-chain transactions to ensure no loss of funds occurs.
583 ///
584 /// You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
585 /// information and are actively monitoring the chain.
586 ///
587 /// Pending Events or updated HTLCs which have not yet been read out by
588 /// get_and_clear_pending_monitor_events or get_and_clear_pending_events are serialized to disk and
589 /// reloaded at deserialize-time. Thus, you must ensure that, when handling events, all events
590 /// gotten are fully handled before re-serializing the new state.
591 ///
592 /// Note that the deserializer is only implemented for (BlockHash, ChannelMonitor), which
593 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
594 /// the "reorg path" (ie disconnecting blocks until you find a common ancestor from both the
595 /// returned block hash and the the current chain and then reconnecting blocks to get to the
596 /// best chain) upon deserializing the object!
597 pub struct ChannelMonitor<Signer: Sign> {
598         #[cfg(test)]
599         pub(crate) inner: Mutex<ChannelMonitorImpl<Signer>>,
600         #[cfg(not(test))]
601         inner: Mutex<ChannelMonitorImpl<Signer>>,
602 }
603
604 pub(crate) struct ChannelMonitorImpl<Signer: Sign> {
605         latest_update_id: u64,
606         commitment_transaction_number_obscure_factor: u64,
607
608         destination_script: Script,
609         broadcasted_holder_revokable_script: Option<(Script, PublicKey, PublicKey)>,
610         counterparty_payment_script: Script,
611         shutdown_script: Option<Script>,
612
613         channel_keys_id: [u8; 32],
614         holder_revocation_basepoint: PublicKey,
615         funding_info: (OutPoint, Script),
616         current_counterparty_commitment_txid: Option<Txid>,
617         prev_counterparty_commitment_txid: Option<Txid>,
618
619         counterparty_commitment_params: CounterpartyCommitmentParameters,
620         funding_redeemscript: Script,
621         channel_value_satoshis: u64,
622         // first is the idx of the first of the two revocation points
623         their_cur_revocation_points: Option<(u64, PublicKey, Option<PublicKey>)>,
624
625         on_holder_tx_csv: u16,
626
627         commitment_secrets: CounterpartyCommitmentSecrets,
628         /// The set of outpoints in each counterparty commitment transaction. We always need at least
629         /// the payment hash from `HTLCOutputInCommitment` to claim even a revoked commitment
630         /// transaction broadcast as we need to be able to construct the witness script in all cases.
631         counterparty_claimable_outpoints: HashMap<Txid, Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>,
632         /// We cannot identify HTLC-Success or HTLC-Timeout transactions by themselves on the chain.
633         /// Nor can we figure out their commitment numbers without the commitment transaction they are
634         /// spending. Thus, in order to claim them via revocation key, we track all the counterparty
635         /// commitment transactions which we find on-chain, mapping them to the commitment number which
636         /// can be used to derive the revocation key and claim the transactions.
637         counterparty_commitment_txn_on_chain: HashMap<Txid, u64>,
638         /// Cache used to make pruning of payment_preimages faster.
639         /// Maps payment_hash values to commitment numbers for counterparty transactions for non-revoked
640         /// counterparty transactions (ie should remain pretty small).
641         /// Serialized to disk but should generally not be sent to Watchtowers.
642         counterparty_hash_commitment_number: HashMap<PaymentHash, u64>,
643
644         // We store two holder commitment transactions to avoid any race conditions where we may update
645         // some monitors (potentially on watchtowers) but then fail to update others, resulting in the
646         // various monitors for one channel being out of sync, and us broadcasting a holder
647         // transaction for which we have deleted claim information on some watchtowers.
648         prev_holder_signed_commitment_tx: Option<HolderSignedTx>,
649         current_holder_commitment_tx: HolderSignedTx,
650
651         // Used just for ChannelManager to make sure it has the latest channel data during
652         // deserialization
653         current_counterparty_commitment_number: u64,
654         // Used just for ChannelManager to make sure it has the latest channel data during
655         // deserialization
656         current_holder_commitment_number: u64,
657
658         payment_preimages: HashMap<PaymentHash, PaymentPreimage>,
659
660         // Note that `MonitorEvent`s MUST NOT be generated during update processing, only generated
661         // during chain data processing. This prevents a race in `ChainMonitor::update_channel` (and
662         // presumably user implementations thereof as well) where we update the in-memory channel
663         // object, then before the persistence finishes (as it's all under a read-lock), we return
664         // pending events to the user or to the relevant `ChannelManager`. Then, on reload, we'll have
665         // the pre-event state here, but have processed the event in the `ChannelManager`.
666         // Note that because the `event_lock` in `ChainMonitor` is only taken in
667         // block/transaction-connected events and *not* during block/transaction-disconnected events,
668         // we further MUST NOT generate events during block/transaction-disconnection.
669         pending_monitor_events: Vec<MonitorEvent>,
670
671         pending_events: Vec<Event>,
672
673         // Used to track on-chain events (i.e., transactions part of channels confirmed on chain) on
674         // which to take actions once they reach enough confirmations. Each entry includes the
675         // transaction's id and the height when the transaction was confirmed on chain.
676         onchain_events_awaiting_threshold_conf: Vec<OnchainEventEntry>,
677
678         // If we get serialized out and re-read, we need to make sure that the chain monitoring
679         // interface knows about the TXOs that we want to be notified of spends of. We could probably
680         // be smart and derive them from the above storage fields, but its much simpler and more
681         // Obviously Correct (tm) if we just keep track of them explicitly.
682         outputs_to_watch: HashMap<Txid, Vec<(u32, Script)>>,
683
684         #[cfg(test)]
685         pub onchain_tx_handler: OnchainTxHandler<Signer>,
686         #[cfg(not(test))]
687         onchain_tx_handler: OnchainTxHandler<Signer>,
688
689         // This is set when the Channel[Manager] generated a ChannelMonitorUpdate which indicated the
690         // channel has been force-closed. After this is set, no further holder commitment transaction
691         // updates may occur, and we panic!() if one is provided.
692         lockdown_from_offchain: bool,
693
694         // Set once we've signed a holder commitment transaction and handed it over to our
695         // OnchainTxHandler. After this is set, no future updates to our holder commitment transactions
696         // may occur, and we fail any such monitor updates.
697         //
698         // In case of update rejection due to a locally already signed commitment transaction, we
699         // nevertheless store update content to track in case of concurrent broadcast by another
700         // remote monitor out-of-order with regards to the block view.
701         holder_tx_signed: bool,
702
703         funding_spend_confirmed: Option<Txid>,
704         /// The set of HTLCs which have been either claimed or failed on chain and have reached
705         /// the requisite confirmations on the claim/fail transaction (either ANTI_REORG_DELAY or the
706         /// spending CSV for revocable outputs).
707         htlcs_resolved_on_chain: Vec<IrrevocablyResolvedHTLC>,
708
709         // We simply modify best_block in Channel's block_connected so that serialization is
710         // consistent but hopefully the users' copy handles block_connected in a consistent way.
711         // (we do *not*, however, update them in update_monitor to ensure any local user copies keep
712         // their best_block from its state and not based on updated copies that didn't run through
713         // the full block_connected).
714         best_block: BestBlock,
715
716         secp_ctx: Secp256k1<secp256k1::All>, //TODO: dedup this a bit...
717 }
718
719 /// Transaction outputs to watch for on-chain spends.
720 pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
721
722 #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))]
723 /// Used only in testing and fuzztarget to check serialization roundtrips don't change the
724 /// underlying object
725 impl<Signer: Sign> PartialEq for ChannelMonitor<Signer> {
726         fn eq(&self, other: &Self) -> bool {
727                 let inner = self.inner.lock().unwrap();
728                 let other = other.inner.lock().unwrap();
729                 inner.eq(&other)
730         }
731 }
732
733 #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))]
734 /// Used only in testing and fuzztarget to check serialization roundtrips don't change the
735 /// underlying object
736 impl<Signer: Sign> PartialEq for ChannelMonitorImpl<Signer> {
737         fn eq(&self, other: &Self) -> bool {
738                 if self.latest_update_id != other.latest_update_id ||
739                         self.commitment_transaction_number_obscure_factor != other.commitment_transaction_number_obscure_factor ||
740                         self.destination_script != other.destination_script ||
741                         self.broadcasted_holder_revokable_script != other.broadcasted_holder_revokable_script ||
742                         self.counterparty_payment_script != other.counterparty_payment_script ||
743                         self.channel_keys_id != other.channel_keys_id ||
744                         self.holder_revocation_basepoint != other.holder_revocation_basepoint ||
745                         self.funding_info != other.funding_info ||
746                         self.current_counterparty_commitment_txid != other.current_counterparty_commitment_txid ||
747                         self.prev_counterparty_commitment_txid != other.prev_counterparty_commitment_txid ||
748                         self.counterparty_commitment_params != other.counterparty_commitment_params ||
749                         self.funding_redeemscript != other.funding_redeemscript ||
750                         self.channel_value_satoshis != other.channel_value_satoshis ||
751                         self.their_cur_revocation_points != other.their_cur_revocation_points ||
752                         self.on_holder_tx_csv != other.on_holder_tx_csv ||
753                         self.commitment_secrets != other.commitment_secrets ||
754                         self.counterparty_claimable_outpoints != other.counterparty_claimable_outpoints ||
755                         self.counterparty_commitment_txn_on_chain != other.counterparty_commitment_txn_on_chain ||
756                         self.counterparty_hash_commitment_number != other.counterparty_hash_commitment_number ||
757                         self.prev_holder_signed_commitment_tx != other.prev_holder_signed_commitment_tx ||
758                         self.current_counterparty_commitment_number != other.current_counterparty_commitment_number ||
759                         self.current_holder_commitment_number != other.current_holder_commitment_number ||
760                         self.current_holder_commitment_tx != other.current_holder_commitment_tx ||
761                         self.payment_preimages != other.payment_preimages ||
762                         self.pending_monitor_events != other.pending_monitor_events ||
763                         self.pending_events.len() != other.pending_events.len() || // We trust events to round-trip properly
764                         self.onchain_events_awaiting_threshold_conf != other.onchain_events_awaiting_threshold_conf ||
765                         self.outputs_to_watch != other.outputs_to_watch ||
766                         self.lockdown_from_offchain != other.lockdown_from_offchain ||
767                         self.holder_tx_signed != other.holder_tx_signed ||
768                         self.funding_spend_confirmed != other.funding_spend_confirmed ||
769                         self.htlcs_resolved_on_chain != other.htlcs_resolved_on_chain
770                 {
771                         false
772                 } else {
773                         true
774                 }
775         }
776 }
777
778 impl<Signer: Sign> Writeable for ChannelMonitor<Signer> {
779         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
780                 self.inner.lock().unwrap().write(writer)
781         }
782 }
783
784 // These are also used for ChannelMonitorUpdate, above.
785 const SERIALIZATION_VERSION: u8 = 1;
786 const MIN_SERIALIZATION_VERSION: u8 = 1;
787
788 impl<Signer: Sign> Writeable for ChannelMonitorImpl<Signer> {
789         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
790                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
791
792                 self.latest_update_id.write(writer)?;
793
794                 // Set in initial Channel-object creation, so should always be set by now:
795                 U48(self.commitment_transaction_number_obscure_factor).write(writer)?;
796
797                 self.destination_script.write(writer)?;
798                 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
799                         writer.write_all(&[0; 1])?;
800                         broadcasted_holder_revokable_script.0.write(writer)?;
801                         broadcasted_holder_revokable_script.1.write(writer)?;
802                         broadcasted_holder_revokable_script.2.write(writer)?;
803                 } else {
804                         writer.write_all(&[1; 1])?;
805                 }
806
807                 self.counterparty_payment_script.write(writer)?;
808                 match &self.shutdown_script {
809                         Some(script) => script.write(writer)?,
810                         None => Script::new().write(writer)?,
811                 }
812
813                 self.channel_keys_id.write(writer)?;
814                 self.holder_revocation_basepoint.write(writer)?;
815                 writer.write_all(&self.funding_info.0.txid[..])?;
816                 writer.write_all(&byte_utils::be16_to_array(self.funding_info.0.index))?;
817                 self.funding_info.1.write(writer)?;
818                 self.current_counterparty_commitment_txid.write(writer)?;
819                 self.prev_counterparty_commitment_txid.write(writer)?;
820
821                 self.counterparty_commitment_params.write(writer)?;
822                 self.funding_redeemscript.write(writer)?;
823                 self.channel_value_satoshis.write(writer)?;
824
825                 match self.their_cur_revocation_points {
826                         Some((idx, pubkey, second_option)) => {
827                                 writer.write_all(&byte_utils::be48_to_array(idx))?;
828                                 writer.write_all(&pubkey.serialize())?;
829                                 match second_option {
830                                         Some(second_pubkey) => {
831                                                 writer.write_all(&second_pubkey.serialize())?;
832                                         },
833                                         None => {
834                                                 writer.write_all(&[0; 33])?;
835                                         },
836                                 }
837                         },
838                         None => {
839                                 writer.write_all(&byte_utils::be48_to_array(0))?;
840                         },
841                 }
842
843                 writer.write_all(&byte_utils::be16_to_array(self.on_holder_tx_csv))?;
844
845                 self.commitment_secrets.write(writer)?;
846
847                 macro_rules! serialize_htlc_in_commitment {
848                         ($htlc_output: expr) => {
849                                 writer.write_all(&[$htlc_output.offered as u8; 1])?;
850                                 writer.write_all(&byte_utils::be64_to_array($htlc_output.amount_msat))?;
851                                 writer.write_all(&byte_utils::be32_to_array($htlc_output.cltv_expiry))?;
852                                 writer.write_all(&$htlc_output.payment_hash.0[..])?;
853                                 $htlc_output.transaction_output_index.write(writer)?;
854                         }
855                 }
856
857                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_claimable_outpoints.len() as u64))?;
858                 for (ref txid, ref htlc_infos) in self.counterparty_claimable_outpoints.iter() {
859                         writer.write_all(&txid[..])?;
860                         writer.write_all(&byte_utils::be64_to_array(htlc_infos.len() as u64))?;
861                         for &(ref htlc_output, ref htlc_source) in htlc_infos.iter() {
862                                 serialize_htlc_in_commitment!(htlc_output);
863                                 htlc_source.as_ref().map(|b| b.as_ref()).write(writer)?;
864                         }
865                 }
866
867                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_commitment_txn_on_chain.len() as u64))?;
868                 for (ref txid, commitment_number) in self.counterparty_commitment_txn_on_chain.iter() {
869                         writer.write_all(&txid[..])?;
870                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
871                 }
872
873                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_hash_commitment_number.len() as u64))?;
874                 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
875                         writer.write_all(&payment_hash.0[..])?;
876                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
877                 }
878
879                 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
880                         writer.write_all(&[1; 1])?;
881                         prev_holder_tx.write(writer)?;
882                 } else {
883                         writer.write_all(&[0; 1])?;
884                 }
885
886                 self.current_holder_commitment_tx.write(writer)?;
887
888                 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
889                 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
890
891                 writer.write_all(&byte_utils::be64_to_array(self.payment_preimages.len() as u64))?;
892                 for payment_preimage in self.payment_preimages.values() {
893                         writer.write_all(&payment_preimage.0[..])?;
894                 }
895
896                 writer.write_all(&(self.pending_monitor_events.iter().filter(|ev| match ev {
897                         MonitorEvent::HTLCEvent(_) => true,
898                         MonitorEvent::CommitmentTxConfirmed(_) => true,
899                         _ => false,
900                 }).count() as u64).to_be_bytes())?;
901                 for event in self.pending_monitor_events.iter() {
902                         match event {
903                                 MonitorEvent::HTLCEvent(upd) => {
904                                         0u8.write(writer)?;
905                                         upd.write(writer)?;
906                                 },
907                                 MonitorEvent::CommitmentTxConfirmed(_) => 1u8.write(writer)?,
908                                 _ => {}, // Covered in the TLV writes below
909                         }
910                 }
911
912                 writer.write_all(&byte_utils::be64_to_array(self.pending_events.len() as u64))?;
913                 for event in self.pending_events.iter() {
914                         event.write(writer)?;
915                 }
916
917                 self.best_block.block_hash().write(writer)?;
918                 writer.write_all(&byte_utils::be32_to_array(self.best_block.height()))?;
919
920                 writer.write_all(&byte_utils::be64_to_array(self.onchain_events_awaiting_threshold_conf.len() as u64))?;
921                 for ref entry in self.onchain_events_awaiting_threshold_conf.iter() {
922                         entry.write(writer)?;
923                 }
924
925                 (self.outputs_to_watch.len() as u64).write(writer)?;
926                 for (txid, idx_scripts) in self.outputs_to_watch.iter() {
927                         txid.write(writer)?;
928                         (idx_scripts.len() as u64).write(writer)?;
929                         for (idx, script) in idx_scripts.iter() {
930                                 idx.write(writer)?;
931                                 script.write(writer)?;
932                         }
933                 }
934                 self.onchain_tx_handler.write(writer)?;
935
936                 self.lockdown_from_offchain.write(writer)?;
937                 self.holder_tx_signed.write(writer)?;
938
939                 write_tlv_fields!(writer, {
940                         (1, self.funding_spend_confirmed, option),
941                         (3, self.htlcs_resolved_on_chain, vec_type),
942                         (5, self.pending_monitor_events, vec_type),
943                 });
944
945                 Ok(())
946         }
947 }
948
949 impl<Signer: Sign> ChannelMonitor<Signer> {
950         pub(crate) fn new(secp_ctx: Secp256k1<secp256k1::All>, keys: Signer, shutdown_script: Option<Script>,
951                           on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, Script),
952                           channel_parameters: &ChannelTransactionParameters,
953                           funding_redeemscript: Script, channel_value_satoshis: u64,
954                           commitment_transaction_number_obscure_factor: u64,
955                           initial_holder_commitment_tx: HolderCommitmentTransaction,
956                           best_block: BestBlock) -> ChannelMonitor<Signer> {
957
958                 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
959                 let payment_key_hash = WPubkeyHash::hash(&keys.pubkeys().payment_point.serialize());
960                 let counterparty_payment_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_key_hash[..]).into_script();
961
962                 let counterparty_channel_parameters = channel_parameters.counterparty_parameters.as_ref().unwrap();
963                 let counterparty_delayed_payment_base_key = counterparty_channel_parameters.pubkeys.delayed_payment_basepoint;
964                 let counterparty_htlc_base_key = counterparty_channel_parameters.pubkeys.htlc_basepoint;
965                 let counterparty_commitment_params = CounterpartyCommitmentParameters { counterparty_delayed_payment_base_key, counterparty_htlc_base_key, on_counterparty_tx_csv };
966
967                 let channel_keys_id = keys.channel_keys_id();
968                 let holder_revocation_basepoint = keys.pubkeys().revocation_basepoint;
969
970                 // block for Rust 1.34 compat
971                 let (holder_commitment_tx, current_holder_commitment_number) = {
972                         let trusted_tx = initial_holder_commitment_tx.trust();
973                         let txid = trusted_tx.txid();
974
975                         let tx_keys = trusted_tx.keys();
976                         let holder_commitment_tx = HolderSignedTx {
977                                 txid,
978                                 revocation_key: tx_keys.revocation_key,
979                                 a_htlc_key: tx_keys.broadcaster_htlc_key,
980                                 b_htlc_key: tx_keys.countersignatory_htlc_key,
981                                 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
982                                 per_commitment_point: tx_keys.per_commitment_point,
983                                 htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
984                                 to_self_value_sat: initial_holder_commitment_tx.to_broadcaster_value_sat(),
985                                 feerate_per_kw: trusted_tx.feerate_per_kw(),
986                         };
987                         (holder_commitment_tx, trusted_tx.commitment_number())
988                 };
989
990                 let onchain_tx_handler =
991                         OnchainTxHandler::new(destination_script.clone(), keys,
992                         channel_parameters.clone(), initial_holder_commitment_tx, secp_ctx.clone());
993
994                 let mut outputs_to_watch = HashMap::new();
995                 outputs_to_watch.insert(funding_info.0.txid, vec![(funding_info.0.index as u32, funding_info.1.clone())]);
996
997                 ChannelMonitor {
998                         inner: Mutex::new(ChannelMonitorImpl {
999                                 latest_update_id: 0,
1000                                 commitment_transaction_number_obscure_factor,
1001
1002                                 destination_script: destination_script.clone(),
1003                                 broadcasted_holder_revokable_script: None,
1004                                 counterparty_payment_script,
1005                                 shutdown_script,
1006
1007                                 channel_keys_id,
1008                                 holder_revocation_basepoint,
1009                                 funding_info,
1010                                 current_counterparty_commitment_txid: None,
1011                                 prev_counterparty_commitment_txid: None,
1012
1013                                 counterparty_commitment_params,
1014                                 funding_redeemscript,
1015                                 channel_value_satoshis,
1016                                 their_cur_revocation_points: None,
1017
1018                                 on_holder_tx_csv: counterparty_channel_parameters.selected_contest_delay,
1019
1020                                 commitment_secrets: CounterpartyCommitmentSecrets::new(),
1021                                 counterparty_claimable_outpoints: HashMap::new(),
1022                                 counterparty_commitment_txn_on_chain: HashMap::new(),
1023                                 counterparty_hash_commitment_number: HashMap::new(),
1024
1025                                 prev_holder_signed_commitment_tx: None,
1026                                 current_holder_commitment_tx: holder_commitment_tx,
1027                                 current_counterparty_commitment_number: 1 << 48,
1028                                 current_holder_commitment_number,
1029
1030                                 payment_preimages: HashMap::new(),
1031                                 pending_monitor_events: Vec::new(),
1032                                 pending_events: Vec::new(),
1033
1034                                 onchain_events_awaiting_threshold_conf: Vec::new(),
1035                                 outputs_to_watch,
1036
1037                                 onchain_tx_handler,
1038
1039                                 lockdown_from_offchain: false,
1040                                 holder_tx_signed: false,
1041                                 funding_spend_confirmed: None,
1042                                 htlcs_resolved_on_chain: Vec::new(),
1043
1044                                 best_block,
1045
1046                                 secp_ctx,
1047                         }),
1048                 }
1049         }
1050
1051         #[cfg(test)]
1052         fn provide_secret(&self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
1053                 self.inner.lock().unwrap().provide_secret(idx, secret)
1054         }
1055
1056         /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
1057         /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
1058         /// possibly future revocation/preimage information) to claim outputs where possible.
1059         /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
1060         pub(crate) fn provide_latest_counterparty_commitment_tx<L: Deref>(
1061                 &self,
1062                 txid: Txid,
1063                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
1064                 commitment_number: u64,
1065                 their_revocation_point: PublicKey,
1066                 logger: &L,
1067         ) where L::Target: Logger {
1068                 self.inner.lock().unwrap().provide_latest_counterparty_commitment_tx(
1069                         txid, htlc_outputs, commitment_number, their_revocation_point, logger)
1070         }
1071
1072         #[cfg(test)]
1073         fn provide_latest_holder_commitment_tx(
1074                 &self,
1075                 holder_commitment_tx: HolderCommitmentTransaction,
1076                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
1077         ) -> Result<(), MonitorUpdateError> {
1078                 self.inner.lock().unwrap().provide_latest_holder_commitment_tx(
1079                         holder_commitment_tx, htlc_outputs)
1080         }
1081
1082         #[cfg(test)]
1083         pub(crate) fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
1084                 &self,
1085                 payment_hash: &PaymentHash,
1086                 payment_preimage: &PaymentPreimage,
1087                 broadcaster: &B,
1088                 fee_estimator: &F,
1089                 logger: &L,
1090         ) where
1091                 B::Target: BroadcasterInterface,
1092                 F::Target: FeeEstimator,
1093                 L::Target: Logger,
1094         {
1095                 self.inner.lock().unwrap().provide_payment_preimage(
1096                         payment_hash, payment_preimage, broadcaster, fee_estimator, logger)
1097         }
1098
1099         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(
1100                 &self,
1101                 broadcaster: &B,
1102                 logger: &L,
1103         ) where
1104                 B::Target: BroadcasterInterface,
1105                 L::Target: Logger,
1106         {
1107                 self.inner.lock().unwrap().broadcast_latest_holder_commitment_txn(broadcaster, logger)
1108         }
1109
1110         /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
1111         /// itself.
1112         ///
1113         /// panics if the given update is not the next update by update_id.
1114         pub fn update_monitor<B: Deref, F: Deref, L: Deref>(
1115                 &self,
1116                 updates: &ChannelMonitorUpdate,
1117                 broadcaster: &B,
1118                 fee_estimator: &F,
1119                 logger: &L,
1120         ) -> Result<(), MonitorUpdateError>
1121         where
1122                 B::Target: BroadcasterInterface,
1123                 F::Target: FeeEstimator,
1124                 L::Target: Logger,
1125         {
1126                 self.inner.lock().unwrap().update_monitor(updates, broadcaster, fee_estimator, logger)
1127         }
1128
1129         /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
1130         /// ChannelMonitor.
1131         pub fn get_latest_update_id(&self) -> u64 {
1132                 self.inner.lock().unwrap().get_latest_update_id()
1133         }
1134
1135         /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
1136         pub fn get_funding_txo(&self) -> (OutPoint, Script) {
1137                 self.inner.lock().unwrap().get_funding_txo().clone()
1138         }
1139
1140         /// Gets a list of txids, with their output scripts (in the order they appear in the
1141         /// transaction), which we must learn about spends of via block_connected().
1142         pub fn get_outputs_to_watch(&self) -> Vec<(Txid, Vec<(u32, Script)>)> {
1143                 self.inner.lock().unwrap().get_outputs_to_watch()
1144                         .iter().map(|(txid, outputs)| (*txid, outputs.clone())).collect()
1145         }
1146
1147         /// Loads the funding txo and outputs to watch into the given `chain::Filter` by repeatedly
1148         /// calling `chain::Filter::register_output` and `chain::Filter::register_tx` until all outputs
1149         /// have been registered.
1150         pub fn load_outputs_to_watch<F: Deref>(&self, filter: &F) where F::Target: chain::Filter {
1151                 let lock = self.inner.lock().unwrap();
1152                 filter.register_tx(&lock.get_funding_txo().0.txid, &lock.get_funding_txo().1);
1153                 for (txid, outputs) in lock.get_outputs_to_watch().iter() {
1154                         for (index, script_pubkey) in outputs.iter() {
1155                                 assert!(*index <= u16::max_value() as u32);
1156                                 filter.register_output(WatchedOutput {
1157                                         block_hash: None,
1158                                         outpoint: OutPoint { txid: *txid, index: *index as u16 },
1159                                         script_pubkey: script_pubkey.clone(),
1160                                 });
1161                         }
1162                 }
1163         }
1164
1165         /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1166         /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1167         pub fn get_and_clear_pending_monitor_events(&self) -> Vec<MonitorEvent> {
1168                 self.inner.lock().unwrap().get_and_clear_pending_monitor_events()
1169         }
1170
1171         /// Gets the list of pending events which were generated by previous actions, clearing the list
1172         /// in the process.
1173         ///
1174         /// This is called by ChainMonitor::get_and_clear_pending_events() and is equivalent to
1175         /// EventsProvider::get_and_clear_pending_events() except that it requires &mut self as we do
1176         /// no internal locking in ChannelMonitors.
1177         pub fn get_and_clear_pending_events(&self) -> Vec<Event> {
1178                 self.inner.lock().unwrap().get_and_clear_pending_events()
1179         }
1180
1181         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1182                 self.inner.lock().unwrap().get_min_seen_secret()
1183         }
1184
1185         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1186                 self.inner.lock().unwrap().get_cur_counterparty_commitment_number()
1187         }
1188
1189         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1190                 self.inner.lock().unwrap().get_cur_holder_commitment_number()
1191         }
1192
1193         /// Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
1194         /// the Channel was out-of-date. You may use it to get a broadcastable holder toxic tx in case of
1195         /// fallen-behind, i.e when receiving a channel_reestablish with a proof that our counterparty side knows
1196         /// a higher revocation secret than the holder commitment number we are aware of. Broadcasting these
1197         /// transactions are UNSAFE, as they allow counterparty side to punish you. Nevertheless you may want to
1198         /// broadcast them if counterparty don't close channel with his higher commitment transaction after a
1199         /// substantial amount of time (a month or even a year) to get back funds. Best may be to contact
1200         /// out-of-band the other node operator to coordinate with him if option is available to you.
1201         /// In any-case, choice is up to the user.
1202         pub fn get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1203         where L::Target: Logger {
1204                 self.inner.lock().unwrap().get_latest_holder_commitment_txn(logger)
1205         }
1206
1207         /// Unsafe test-only version of get_latest_holder_commitment_txn used by our test framework
1208         /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1209         /// revoked commitment transaction.
1210         #[cfg(any(test, feature = "unsafe_revoked_tx_signing"))]
1211         pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1212         where L::Target: Logger {
1213                 self.inner.lock().unwrap().unsafe_get_latest_holder_commitment_txn(logger)
1214         }
1215
1216         /// Processes transactions in a newly connected block, which may result in any of the following:
1217         /// - update the monitor's state against resolved HTLCs
1218         /// - punish the counterparty in the case of seeing a revoked commitment transaction
1219         /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1220         /// - detect settled outputs for later spending
1221         /// - schedule and bump any in-flight claims
1222         ///
1223         /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1224         /// [`get_outputs_to_watch`].
1225         ///
1226         /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1227         pub fn block_connected<B: Deref, F: Deref, L: Deref>(
1228                 &self,
1229                 header: &BlockHeader,
1230                 txdata: &TransactionData,
1231                 height: u32,
1232                 broadcaster: B,
1233                 fee_estimator: F,
1234                 logger: L,
1235         ) -> Vec<TransactionOutputs>
1236         where
1237                 B::Target: BroadcasterInterface,
1238                 F::Target: FeeEstimator,
1239                 L::Target: Logger,
1240         {
1241                 self.inner.lock().unwrap().block_connected(
1242                         header, txdata, height, broadcaster, fee_estimator, logger)
1243         }
1244
1245         /// Determines if the disconnected block contained any transactions of interest and updates
1246         /// appropriately.
1247         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(
1248                 &self,
1249                 header: &BlockHeader,
1250                 height: u32,
1251                 broadcaster: B,
1252                 fee_estimator: F,
1253                 logger: L,
1254         ) where
1255                 B::Target: BroadcasterInterface,
1256                 F::Target: FeeEstimator,
1257                 L::Target: Logger,
1258         {
1259                 self.inner.lock().unwrap().block_disconnected(
1260                         header, height, broadcaster, fee_estimator, logger)
1261         }
1262
1263         /// Processes transactions confirmed in a block with the given header and height, returning new
1264         /// outputs to watch. See [`block_connected`] for details.
1265         ///
1266         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1267         /// blocks. See [`chain::Confirm`] for calling expectations.
1268         ///
1269         /// [`block_connected`]: Self::block_connected
1270         pub fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
1271                 &self,
1272                 header: &BlockHeader,
1273                 txdata: &TransactionData,
1274                 height: u32,
1275                 broadcaster: B,
1276                 fee_estimator: F,
1277                 logger: L,
1278         ) -> Vec<TransactionOutputs>
1279         where
1280                 B::Target: BroadcasterInterface,
1281                 F::Target: FeeEstimator,
1282                 L::Target: Logger,
1283         {
1284                 self.inner.lock().unwrap().transactions_confirmed(
1285                         header, txdata, height, broadcaster, fee_estimator, logger)
1286         }
1287
1288         /// Processes a transaction that was reorganized out of the chain.
1289         ///
1290         /// Used instead of [`block_disconnected`] by clients that are notified of transactions rather
1291         /// than blocks. See [`chain::Confirm`] for calling expectations.
1292         ///
1293         /// [`block_disconnected`]: Self::block_disconnected
1294         pub fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
1295                 &self,
1296                 txid: &Txid,
1297                 broadcaster: B,
1298                 fee_estimator: F,
1299                 logger: L,
1300         ) where
1301                 B::Target: BroadcasterInterface,
1302                 F::Target: FeeEstimator,
1303                 L::Target: Logger,
1304         {
1305                 self.inner.lock().unwrap().transaction_unconfirmed(
1306                         txid, broadcaster, fee_estimator, logger);
1307         }
1308
1309         /// Updates the monitor with the current best chain tip, returning new outputs to watch. See
1310         /// [`block_connected`] for details.
1311         ///
1312         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1313         /// blocks. See [`chain::Confirm`] for calling expectations.
1314         ///
1315         /// [`block_connected`]: Self::block_connected
1316         pub fn best_block_updated<B: Deref, F: Deref, L: Deref>(
1317                 &self,
1318                 header: &BlockHeader,
1319                 height: u32,
1320                 broadcaster: B,
1321                 fee_estimator: F,
1322                 logger: L,
1323         ) -> Vec<TransactionOutputs>
1324         where
1325                 B::Target: BroadcasterInterface,
1326                 F::Target: FeeEstimator,
1327                 L::Target: Logger,
1328         {
1329                 self.inner.lock().unwrap().best_block_updated(
1330                         header, height, broadcaster, fee_estimator, logger)
1331         }
1332
1333         /// Returns the set of txids that should be monitored for re-organization out of the chain.
1334         pub fn get_relevant_txids(&self) -> Vec<Txid> {
1335                 let inner = self.inner.lock().unwrap();
1336                 let mut txids: Vec<Txid> = inner.onchain_events_awaiting_threshold_conf
1337                         .iter()
1338                         .map(|entry| entry.txid)
1339                         .chain(inner.onchain_tx_handler.get_relevant_txids().into_iter())
1340                         .collect();
1341                 txids.sort_unstable();
1342                 txids.dedup();
1343                 txids
1344         }
1345
1346         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1347         /// [`chain::Confirm`] interfaces.
1348         pub fn current_best_block(&self) -> BestBlock {
1349                 self.inner.lock().unwrap().best_block.clone()
1350         }
1351
1352         /// Gets the balances in this channel which are either claimable by us if we were to
1353         /// force-close the channel now or which are claimable on-chain (possibly awaiting
1354         /// confirmation).
1355         ///
1356         /// Any balances in the channel which are available on-chain (excluding on-chain fees) are
1357         /// included here until an [`Event::SpendableOutputs`] event has been generated for the
1358         /// balance, or until our counterparty has claimed the balance and accrued several
1359         /// confirmations on the claim transaction.
1360         ///
1361         /// Note that the balances available when you or your counterparty have broadcasted revoked
1362         /// state(s) may not be fully captured here.
1363         // TODO, fix that ^
1364         ///
1365         /// See [`Balance`] for additional details on the types of claimable balances which
1366         /// may be returned here and their meanings.
1367         pub fn get_claimable_balances(&self) -> Vec<Balance> {
1368                 let mut res = Vec::new();
1369                 let us = self.inner.lock().unwrap();
1370
1371                 let mut confirmed_txid = us.funding_spend_confirmed;
1372                 let mut pending_commitment_tx_conf_thresh = None;
1373                 let funding_spend_pending = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1374                         if let OnchainEvent::FundingSpendConfirmation { .. } = event.event {
1375                                 Some((event.txid, event.confirmation_threshold()))
1376                         } else { None }
1377                 });
1378                 if let Some((txid, conf_thresh)) = funding_spend_pending {
1379                         debug_assert!(us.funding_spend_confirmed.is_none(),
1380                                 "We have a pending funding spend awaiting anti-reorg confirmation, we can't have confirmed it already!");
1381                         confirmed_txid = Some(txid);
1382                         pending_commitment_tx_conf_thresh = Some(conf_thresh);
1383                 }
1384
1385                 macro_rules! walk_htlcs {
1386                         ($holder_commitment: expr, $htlc_iter: expr) => {
1387                                 for htlc in $htlc_iter {
1388                                         if let Some(htlc_input_idx) = htlc.transaction_output_index {
1389                                                 if us.htlcs_resolved_on_chain.iter().any(|v| v.input_idx == htlc_input_idx) {
1390                                                         assert!(us.funding_spend_confirmed.is_some());
1391                                                 } else if htlc.offered == $holder_commitment {
1392                                                         // If the payment was outbound, check if there's an HTLCUpdate
1393                                                         // indicating we have spent this HTLC with a timeout, claiming it back
1394                                                         // and awaiting confirmations on it.
1395                                                         let htlc_update_pending = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1396                                                                 if let OnchainEvent::HTLCUpdate { input_idx: Some(input_idx), .. } = event.event {
1397                                                                         if input_idx == htlc_input_idx { Some(event.confirmation_threshold()) } else { None }
1398                                                                 } else { None }
1399                                                         });
1400                                                         if let Some(conf_thresh) = htlc_update_pending {
1401                                                                 res.push(Balance::ClaimableAwaitingConfirmations {
1402                                                                         claimable_amount_satoshis: htlc.amount_msat / 1000,
1403                                                                         confirmation_height: conf_thresh,
1404                                                                 });
1405                                                         } else {
1406                                                                 res.push(Balance::MaybeClaimableHTLCAwaitingTimeout {
1407                                                                         claimable_amount_satoshis: htlc.amount_msat / 1000,
1408                                                                         claimable_height: htlc.cltv_expiry,
1409                                                                 });
1410                                                         }
1411                                                 } else if us.payment_preimages.get(&htlc.payment_hash).is_some() {
1412                                                         // Otherwise (the payment was inbound), only expose it as claimable if
1413                                                         // we know the preimage.
1414                                                         // Note that if there is a pending claim, but it did not use the
1415                                                         // preimage, we lost funds to our counterparty! We will then continue
1416                                                         // to show it as ContentiousClaimable until ANTI_REORG_DELAY.
1417                                                         let htlc_spend_pending = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1418                                                                 if let OnchainEvent::HTLCSpendConfirmation { input_idx, preimage, .. } = event.event {
1419                                                                         if input_idx == htlc_input_idx {
1420                                                                                 Some((event.confirmation_threshold(), preimage.is_some()))
1421                                                                         } else { None }
1422                                                                 } else { None }
1423                                                         });
1424                                                         if let Some((conf_thresh, true)) = htlc_spend_pending {
1425                                                                 res.push(Balance::ClaimableAwaitingConfirmations {
1426                                                                         claimable_amount_satoshis: htlc.amount_msat / 1000,
1427                                                                         confirmation_height: conf_thresh,
1428                                                                 });
1429                                                         } else {
1430                                                                 res.push(Balance::ContentiousClaimable {
1431                                                                         claimable_amount_satoshis: htlc.amount_msat / 1000,
1432                                                                         timeout_height: htlc.cltv_expiry,
1433                                                                 });
1434                                                         }
1435                                                 }
1436                                         }
1437                                 }
1438                         }
1439                 }
1440
1441                 if let Some(txid) = confirmed_txid {
1442                         let mut found_commitment_tx = false;
1443                         if Some(txid) == us.current_counterparty_commitment_txid || Some(txid) == us.prev_counterparty_commitment_txid {
1444                                 walk_htlcs!(false, us.counterparty_claimable_outpoints.get(&txid).unwrap().iter().map(|(a, _)| a));
1445                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1446                                         if let Some(value) = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1447                                                 if let OnchainEvent::MaturingOutput {
1448                                                         descriptor: SpendableOutputDescriptor::StaticPaymentOutput(descriptor)
1449                                                 } = &event.event {
1450                                                         Some(descriptor.output.value)
1451                                                 } else { None }
1452                                         }) {
1453                                                 res.push(Balance::ClaimableAwaitingConfirmations {
1454                                                         claimable_amount_satoshis: value,
1455                                                         confirmation_height: conf_thresh,
1456                                                 });
1457                                         } else {
1458                                                 // If a counterparty commitment transaction is awaiting confirmation, we
1459                                                 // should either have a StaticPaymentOutput MaturingOutput event awaiting
1460                                                 // confirmation with the same height or have never met our dust amount.
1461                                         }
1462                                 }
1463                                 found_commitment_tx = true;
1464                         } else if txid == us.current_holder_commitment_tx.txid {
1465                                 walk_htlcs!(true, us.current_holder_commitment_tx.htlc_outputs.iter().map(|(a, _, _)| a));
1466                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1467                                         res.push(Balance::ClaimableAwaitingConfirmations {
1468                                                 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
1469                                                 confirmation_height: conf_thresh,
1470                                         });
1471                                 }
1472                                 found_commitment_tx = true;
1473                         } else if let Some(prev_commitment) = &us.prev_holder_signed_commitment_tx {
1474                                 if txid == prev_commitment.txid {
1475                                         walk_htlcs!(true, prev_commitment.htlc_outputs.iter().map(|(a, _, _)| a));
1476                                         if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1477                                                 res.push(Balance::ClaimableAwaitingConfirmations {
1478                                                         claimable_amount_satoshis: prev_commitment.to_self_value_sat,
1479                                                         confirmation_height: conf_thresh,
1480                                                 });
1481                                         }
1482                                         found_commitment_tx = true;
1483                                 }
1484                         }
1485                         if !found_commitment_tx {
1486                                 if let Some(conf_thresh) = pending_commitment_tx_conf_thresh {
1487                                         // We blindly assume this is a cooperative close transaction here, and that
1488                                         // neither us nor our counterparty misbehaved. At worst we've under-estimated
1489                                         // the amount we can claim as we'll punish a misbehaving counterparty.
1490                                         res.push(Balance::ClaimableAwaitingConfirmations {
1491                                                 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat,
1492                                                 confirmation_height: conf_thresh,
1493                                         });
1494                                 }
1495                         }
1496                         // TODO: Add logic to provide claimable balances for counterparty broadcasting revoked
1497                         // outputs.
1498                 } else {
1499                         let mut claimable_inbound_htlc_value_sat = 0;
1500                         for (htlc, _, _) in us.current_holder_commitment_tx.htlc_outputs.iter() {
1501                                 if htlc.transaction_output_index.is_none() { continue; }
1502                                 if htlc.offered {
1503                                         res.push(Balance::MaybeClaimableHTLCAwaitingTimeout {
1504                                                 claimable_amount_satoshis: htlc.amount_msat / 1000,
1505                                                 claimable_height: htlc.cltv_expiry,
1506                                         });
1507                                 } else if us.payment_preimages.get(&htlc.payment_hash).is_some() {
1508                                         claimable_inbound_htlc_value_sat += htlc.amount_msat / 1000;
1509                                 }
1510                         }
1511                         res.push(Balance::ClaimableOnChannelClose {
1512                                 claimable_amount_satoshis: us.current_holder_commitment_tx.to_self_value_sat + claimable_inbound_htlc_value_sat,
1513                         });
1514                 }
1515
1516                 res
1517         }
1518 }
1519
1520 /// Compares a broadcasted commitment transaction's HTLCs with those in the latest state,
1521 /// failing any HTLCs which didn't make it into the broadcasted commitment transaction back
1522 /// after ANTI_REORG_DELAY blocks.
1523 ///
1524 /// We always compare against the set of HTLCs in counterparty commitment transactions, as those
1525 /// are the commitment transactions which are generated by us. The off-chain state machine in
1526 /// `Channel` will automatically resolve any HTLCs which were never included in a commitment
1527 /// transaction when it detects channel closure, but it is up to us to ensure any HTLCs which were
1528 /// included in a remote commitment transaction are failed back if they are not present in the
1529 /// broadcasted commitment transaction.
1530 ///
1531 /// Specifically, the removal process for HTLCs in `Channel` is always based on the counterparty
1532 /// sending a `revoke_and_ack`, which causes us to clear `prev_counterparty_commitment_txid`. Thus,
1533 /// as long as we examine both the current counterparty commitment transaction and, if it hasn't
1534 /// been revoked yet, the previous one, we we will never "forget" to resolve an HTLC.
1535 macro_rules! fail_unbroadcast_htlcs {
1536         ($self: expr, $commitment_tx_type: expr, $commitment_tx_conf_height: expr, $confirmed_htlcs_list: expr, $logger: expr) => { {
1537                 macro_rules! check_htlc_fails {
1538                         ($txid: expr, $commitment_tx: expr) => {
1539                                 if let Some(ref latest_outpoints) = $self.counterparty_claimable_outpoints.get($txid) {
1540                                         for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1541                                                 if let &Some(ref source) = source_option {
1542                                                         // Check if the HTLC is present in the commitment transaction that was
1543                                                         // broadcast, but not if it was below the dust limit, which we should
1544                                                         // fail backwards immediately as there is no way for us to learn the
1545                                                         // payment_preimage.
1546                                                         // Note that if the dust limit were allowed to change between
1547                                                         // commitment transactions we'd want to be check whether *any*
1548                                                         // broadcastable commitment transaction has the HTLC in it, but it
1549                                                         // cannot currently change after channel initialization, so we don't
1550                                                         // need to here.
1551                                                         let confirmed_htlcs_iter: &mut Iterator<Item = (&HTLCOutputInCommitment, Option<&HTLCSource>)> = &mut $confirmed_htlcs_list;
1552                                                         let mut matched_htlc = false;
1553                                                         for (ref broadcast_htlc, ref broadcast_source) in confirmed_htlcs_iter {
1554                                                                 if broadcast_htlc.transaction_output_index.is_some() && Some(&**source) == *broadcast_source {
1555                                                                         matched_htlc = true;
1556                                                                         break;
1557                                                                 }
1558                                                         }
1559                                                         if matched_htlc { continue; }
1560                                                         $self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
1561                                                                 if entry.height != $commitment_tx_conf_height { return true; }
1562                                                                 match entry.event {
1563                                                                         OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
1564                                                                                 *update_source != **source
1565                                                                         },
1566                                                                         _ => true,
1567                                                                 }
1568                                                         });
1569                                                         let entry = OnchainEventEntry {
1570                                                                 txid: *$txid,
1571                                                                 height: $commitment_tx_conf_height,
1572                                                                 event: OnchainEvent::HTLCUpdate {
1573                                                                         source: (**source).clone(),
1574                                                                         payment_hash: htlc.payment_hash.clone(),
1575                                                                         onchain_value_satoshis: Some(htlc.amount_msat / 1000),
1576                                                                         input_idx: None,
1577                                                                 },
1578                                                         };
1579                                                         log_trace!($logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of {} commitment transaction, waiting for confirmation (at height {})",
1580                                                                 log_bytes!(htlc.payment_hash.0), $commitment_tx, $commitment_tx_type, entry.confirmation_threshold());
1581                                                         $self.onchain_events_awaiting_threshold_conf.push(entry);
1582                                                 }
1583                                         }
1584                                 }
1585                         }
1586                 }
1587                 if let Some(ref txid) = $self.current_counterparty_commitment_txid {
1588                         check_htlc_fails!(txid, "current");
1589                 }
1590                 if let Some(ref txid) = $self.prev_counterparty_commitment_txid {
1591                         check_htlc_fails!(txid, "previous");
1592                 }
1593         } }
1594 }
1595
1596 impl<Signer: Sign> ChannelMonitorImpl<Signer> {
1597         /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
1598         /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
1599         /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
1600         fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
1601                 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
1602                         return Err(MonitorUpdateError("Previous secret did not match new one"));
1603                 }
1604
1605                 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
1606                 // events for now-revoked/fulfilled HTLCs.
1607                 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
1608                         for &mut (_, ref mut source) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
1609                                 *source = None;
1610                         }
1611                 }
1612
1613                 if !self.payment_preimages.is_empty() {
1614                         let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
1615                         let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
1616                         let min_idx = self.get_min_seen_secret();
1617                         let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
1618
1619                         self.payment_preimages.retain(|&k, _| {
1620                                 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
1621                                         if k == htlc.payment_hash {
1622                                                 return true
1623                                         }
1624                                 }
1625                                 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
1626                                         for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
1627                                                 if k == htlc.payment_hash {
1628                                                         return true
1629                                                 }
1630                                         }
1631                                 }
1632                                 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
1633                                         if *cn < min_idx {
1634                                                 return true
1635                                         }
1636                                         true
1637                                 } else { false };
1638                                 if contains {
1639                                         counterparty_hash_commitment_number.remove(&k);
1640                                 }
1641                                 false
1642                         });
1643                 }
1644
1645                 Ok(())
1646         }
1647
1648         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_revocation_point: PublicKey, logger: &L) where L::Target: Logger {
1649                 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
1650                 // so that a remote monitor doesn't learn anything unless there is a malicious close.
1651                 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
1652                 // timeouts)
1653                 for &(ref htlc, _) in &htlc_outputs {
1654                         self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
1655                 }
1656
1657                 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", txid, commitment_number, htlc_outputs.len());
1658                 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
1659                 self.current_counterparty_commitment_txid = Some(txid);
1660                 self.counterparty_claimable_outpoints.insert(txid, htlc_outputs.clone());
1661                 self.current_counterparty_commitment_number = commitment_number;
1662                 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
1663                 match self.their_cur_revocation_points {
1664                         Some(old_points) => {
1665                                 if old_points.0 == commitment_number + 1 {
1666                                         self.their_cur_revocation_points = Some((old_points.0, old_points.1, Some(their_revocation_point)));
1667                                 } else if old_points.0 == commitment_number + 2 {
1668                                         if let Some(old_second_point) = old_points.2 {
1669                                                 self.their_cur_revocation_points = Some((old_points.0 - 1, old_second_point, Some(their_revocation_point)));
1670                                         } else {
1671                                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1672                                         }
1673                                 } else {
1674                                         self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1675                                 }
1676                         },
1677                         None => {
1678                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1679                         }
1680                 }
1681                 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
1682                 for htlc in htlc_outputs {
1683                         if htlc.0.transaction_output_index.is_some() {
1684                                 htlcs.push(htlc.0);
1685                         }
1686                 }
1687         }
1688
1689         /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
1690         /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
1691         /// is important that any clones of this channel monitor (including remote clones) by kept
1692         /// up-to-date as our holder commitment transaction is updated.
1693         /// Panics if set_on_holder_tx_csv has never been called.
1694         fn provide_latest_holder_commitment_tx(&mut self, holder_commitment_tx: HolderCommitmentTransaction, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>) -> Result<(), MonitorUpdateError> {
1695                 // block for Rust 1.34 compat
1696                 let mut new_holder_commitment_tx = {
1697                         let trusted_tx = holder_commitment_tx.trust();
1698                         let txid = trusted_tx.txid();
1699                         let tx_keys = trusted_tx.keys();
1700                         self.current_holder_commitment_number = trusted_tx.commitment_number();
1701                         HolderSignedTx {
1702                                 txid,
1703                                 revocation_key: tx_keys.revocation_key,
1704                                 a_htlc_key: tx_keys.broadcaster_htlc_key,
1705                                 b_htlc_key: tx_keys.countersignatory_htlc_key,
1706                                 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
1707                                 per_commitment_point: tx_keys.per_commitment_point,
1708                                 htlc_outputs,
1709                                 to_self_value_sat: holder_commitment_tx.to_broadcaster_value_sat(),
1710                                 feerate_per_kw: trusted_tx.feerate_per_kw(),
1711                         }
1712                 };
1713                 self.onchain_tx_handler.provide_latest_holder_tx(holder_commitment_tx);
1714                 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
1715                 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
1716                 if self.holder_tx_signed {
1717                         return Err(MonitorUpdateError("Latest holder commitment signed has already been signed, update is rejected"));
1718                 }
1719                 Ok(())
1720         }
1721
1722         /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
1723         /// commitment_tx_infos which contain the payment hash have been revoked.
1724         fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(&mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage, broadcaster: &B, fee_estimator: &F, logger: &L)
1725         where B::Target: BroadcasterInterface,
1726                     F::Target: FeeEstimator,
1727                     L::Target: Logger,
1728         {
1729                 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
1730
1731                 // If the channel is force closed, try to claim the output from this preimage.
1732                 // First check if a counterparty commitment transaction has been broadcasted:
1733                 macro_rules! claim_htlcs {
1734                         ($commitment_number: expr, $txid: expr) => {
1735                                 let htlc_claim_reqs = self.get_counterparty_htlc_output_claim_reqs($commitment_number, $txid, None);
1736                                 self.onchain_tx_handler.update_claims_view(&Vec::new(), htlc_claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1737                         }
1738                 }
1739                 if let Some(txid) = self.current_counterparty_commitment_txid {
1740                         if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
1741                                 claim_htlcs!(*commitment_number, txid);
1742                                 return;
1743                         }
1744                 }
1745                 if let Some(txid) = self.prev_counterparty_commitment_txid {
1746                         if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
1747                                 claim_htlcs!(*commitment_number, txid);
1748                                 return;
1749                         }
1750                 }
1751
1752                 // Then if a holder commitment transaction has been seen on-chain, broadcast transactions
1753                 // claiming the HTLC output from each of the holder commitment transactions.
1754                 // Note that we can't just use `self.holder_tx_signed`, because that only covers the case where
1755                 // *we* sign a holder commitment transaction, not when e.g. a watchtower broadcasts one of our
1756                 // holder commitment transactions.
1757                 if self.broadcasted_holder_revokable_script.is_some() {
1758                         // Assume that the broadcasted commitment transaction confirmed in the current best
1759                         // block. Even if not, its a reasonable metric for the bump criteria on the HTLC
1760                         // transactions.
1761                         let (claim_reqs, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
1762                         self.onchain_tx_handler.update_claims_view(&Vec::new(), claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1763                         if let Some(ref tx) = self.prev_holder_signed_commitment_tx {
1764                                 let (claim_reqs, _) = self.get_broadcasted_holder_claims(&tx, self.best_block.height());
1765                                 self.onchain_tx_handler.update_claims_view(&Vec::new(), claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1766                         }
1767                 }
1768         }
1769
1770         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(&mut self, broadcaster: &B, logger: &L)
1771                 where B::Target: BroadcasterInterface,
1772                                         L::Target: Logger,
1773         {
1774                 for tx in self.get_latest_holder_commitment_txn(logger).iter() {
1775                         log_info!(logger, "Broadcasting local {}", log_tx!(tx));
1776                         broadcaster.broadcast_transaction(tx);
1777                 }
1778                 self.pending_monitor_events.push(MonitorEvent::CommitmentTxConfirmed(self.funding_info.0));
1779         }
1780
1781         pub fn update_monitor<B: Deref, F: Deref, L: Deref>(&mut self, updates: &ChannelMonitorUpdate, broadcaster: &B, fee_estimator: &F, logger: &L) -> Result<(), MonitorUpdateError>
1782         where B::Target: BroadcasterInterface,
1783                     F::Target: FeeEstimator,
1784                     L::Target: Logger,
1785         {
1786                 // ChannelMonitor updates may be applied after force close if we receive a
1787                 // preimage for a broadcasted commitment transaction HTLC output that we'd
1788                 // like to claim on-chain. If this is the case, we no longer have guaranteed
1789                 // access to the monitor's update ID, so we use a sentinel value instead.
1790                 if updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
1791                         match updates.updates[0] {
1792                                 ChannelMonitorUpdateStep::PaymentPreimage { .. } => {},
1793                                 _ => panic!("Attempted to apply post-force-close ChannelMonitorUpdate that wasn't providing a payment preimage"),
1794                         }
1795                         assert_eq!(updates.updates.len(), 1);
1796                 } else if self.latest_update_id + 1 != updates.update_id {
1797                         panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
1798                 }
1799                 for update in updates.updates.iter() {
1800                         match update {
1801                                 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs } => {
1802                                         log_trace!(logger, "Updating ChannelMonitor with latest holder commitment transaction info");
1803                                         if self.lockdown_from_offchain { panic!(); }
1804                                         self.provide_latest_holder_commitment_tx(commitment_tx.clone(), htlc_outputs.clone())?
1805                                 }
1806                                 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { commitment_txid, htlc_outputs, commitment_number, their_revocation_point } => {
1807                                         log_trace!(logger, "Updating ChannelMonitor with latest counterparty commitment transaction info");
1808                                         self.provide_latest_counterparty_commitment_tx(*commitment_txid, htlc_outputs.clone(), *commitment_number, *their_revocation_point, logger)
1809                                 },
1810                                 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } => {
1811                                         log_trace!(logger, "Updating ChannelMonitor with payment preimage");
1812                                         self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()), &payment_preimage, broadcaster, fee_estimator, logger)
1813                                 },
1814                                 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } => {
1815                                         log_trace!(logger, "Updating ChannelMonitor with commitment secret");
1816                                         self.provide_secret(*idx, *secret)?
1817                                 },
1818                                 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
1819                                         log_trace!(logger, "Updating ChannelMonitor: channel force closed, should broadcast: {}", should_broadcast);
1820                                         self.lockdown_from_offchain = true;
1821                                         if *should_broadcast {
1822                                                 self.broadcast_latest_holder_commitment_txn(broadcaster, logger);
1823                                         } else if !self.holder_tx_signed {
1824                                                 log_error!(logger, "You have a toxic holder commitment transaction avaible in channel monitor, read comment in ChannelMonitor::get_latest_holder_commitment_txn to be informed of manual action to take");
1825                                         } else {
1826                                                 // If we generated a MonitorEvent::CommitmentTxConfirmed, the ChannelManager
1827                                                 // will still give us a ChannelForceClosed event with !should_broadcast, but we
1828                                                 // shouldn't print the scary warning above.
1829                                                 log_info!(logger, "Channel off-chain state closed after we broadcasted our latest commitment transaction.");
1830                                         }
1831                                 },
1832                                 ChannelMonitorUpdateStep::ShutdownScript { scriptpubkey } => {
1833                                         log_trace!(logger, "Updating ChannelMonitor with shutdown script");
1834                                         if let Some(shutdown_script) = self.shutdown_script.replace(scriptpubkey.clone()) {
1835                                                 panic!("Attempted to replace shutdown script {} with {}", shutdown_script, scriptpubkey);
1836                                         }
1837                                 },
1838                         }
1839                 }
1840                 self.latest_update_id = updates.update_id;
1841                 Ok(())
1842         }
1843
1844         pub fn get_latest_update_id(&self) -> u64 {
1845                 self.latest_update_id
1846         }
1847
1848         pub fn get_funding_txo(&self) -> &(OutPoint, Script) {
1849                 &self.funding_info
1850         }
1851
1852         pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, Script)>> {
1853                 // If we've detected a counterparty commitment tx on chain, we must include it in the set
1854                 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
1855                 // its trivial to do, double-check that here.
1856                 for (txid, _) in self.counterparty_commitment_txn_on_chain.iter() {
1857                         self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
1858                 }
1859                 &self.outputs_to_watch
1860         }
1861
1862         pub fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
1863                 let mut ret = Vec::new();
1864                 mem::swap(&mut ret, &mut self.pending_monitor_events);
1865                 ret
1866         }
1867
1868         pub fn get_and_clear_pending_events(&mut self) -> Vec<Event> {
1869                 let mut ret = Vec::new();
1870                 mem::swap(&mut ret, &mut self.pending_events);
1871                 ret
1872         }
1873
1874         /// Can only fail if idx is < get_min_seen_secret
1875         fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
1876                 self.commitment_secrets.get_secret(idx)
1877         }
1878
1879         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1880                 self.commitment_secrets.get_min_seen_secret()
1881         }
1882
1883         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1884                 self.current_counterparty_commitment_number
1885         }
1886
1887         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1888                 self.current_holder_commitment_number
1889         }
1890
1891         /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
1892         /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
1893         /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
1894         /// HTLC-Success/HTLC-Timeout transactions.
1895         /// Return updates for HTLC pending in the channel and failed automatically by the broadcast of
1896         /// revoked counterparty commitment tx
1897         fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<PackageTemplate>, TransactionOutputs) where L::Target: Logger {
1898                 // Most secp and related errors trying to create keys means we have no hope of constructing
1899                 // a spend transaction...so we return no transactions to broadcast
1900                 let mut claimable_outpoints = Vec::new();
1901                 let mut watch_outputs = Vec::new();
1902
1903                 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
1904                 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
1905
1906                 macro_rules! ignore_error {
1907                         ( $thing : expr ) => {
1908                                 match $thing {
1909                                         Ok(a) => a,
1910                                         Err(_) => return (claimable_outpoints, (commitment_txid, watch_outputs))
1911                                 }
1912                         };
1913                 }
1914
1915                 let commitment_number = 0xffffffffffff - ((((tx.input[0].sequence as u64 & 0xffffff) << 3*8) | (tx.lock_time as u64 & 0xffffff)) ^ self.commitment_transaction_number_obscure_factor);
1916                 if commitment_number >= self.get_min_seen_secret() {
1917                         let secret = self.get_secret(commitment_number).unwrap();
1918                         let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1919                         let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1920                         let revocation_pubkey = ignore_error!(chan_utils::derive_public_revocation_key(&self.secp_ctx, &per_commitment_point, &self.holder_revocation_basepoint));
1921                         let delayed_key = ignore_error!(chan_utils::derive_public_key(&self.secp_ctx, &PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key), &self.counterparty_commitment_params.counterparty_delayed_payment_base_key));
1922
1923                         let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_commitment_params.on_counterparty_tx_csv, &delayed_key);
1924                         let revokeable_p2wsh = revokeable_redeemscript.to_v0_p2wsh();
1925
1926                         // First, process non-htlc outputs (to_holder & to_counterparty)
1927                         for (idx, outp) in tx.output.iter().enumerate() {
1928                                 if outp.script_pubkey == revokeable_p2wsh {
1929                                         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);
1930                                         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);
1931                                         claimable_outpoints.push(justice_package);
1932                                 }
1933                         }
1934
1935                         // Then, try to find revoked htlc outputs
1936                         if let Some(ref per_commitment_data) = per_commitment_option {
1937                                 for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1938                                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1939                                                 if transaction_output_index as usize >= tx.output.len() ||
1940                                                                 tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1941                                                         return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1942                                                 }
1943                                                 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());
1944                                                 let justice_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, PackageSolvingData::RevokedHTLCOutput(revk_htlc_outp), htlc.cltv_expiry, true, height);
1945                                                 claimable_outpoints.push(justice_package);
1946                                         }
1947                                 }
1948                         }
1949
1950                         // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
1951                         if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
1952                                 // We're definitely a counterparty commitment transaction!
1953                                 log_error!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
1954                                 for (idx, outp) in tx.output.iter().enumerate() {
1955                                         watch_outputs.push((idx as u32, outp.clone()));
1956                                 }
1957                                 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1958
1959                                 fail_unbroadcast_htlcs!(self, "revoked counterparty", height, [].iter().map(|a| *a), logger);
1960                         }
1961                 } else if let Some(per_commitment_data) = per_commitment_option {
1962                         // While this isn't useful yet, there is a potential race where if a counterparty
1963                         // revokes a state at the same time as the commitment transaction for that state is
1964                         // confirmed, and the watchtower receives the block before the user, the user could
1965                         // upload a new ChannelMonitor with the revocation secret but the watchtower has
1966                         // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
1967                         // not being generated by the above conditional. Thus, to be safe, we go ahead and
1968                         // insert it here.
1969                         for (idx, outp) in tx.output.iter().enumerate() {
1970                                 watch_outputs.push((idx as u32, outp.clone()));
1971                         }
1972                         self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1973
1974                         log_info!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
1975                         fail_unbroadcast_htlcs!(self, "counterparty", height, per_commitment_data.iter().map(|(a, b)| (a, b.as_ref().map(|b| b.as_ref()))), logger);
1976
1977                         let htlc_claim_reqs = self.get_counterparty_htlc_output_claim_reqs(commitment_number, commitment_txid, Some(tx));
1978                         for req in htlc_claim_reqs {
1979                                 claimable_outpoints.push(req);
1980                         }
1981
1982                 }
1983                 (claimable_outpoints, (commitment_txid, watch_outputs))
1984         }
1985
1986         fn get_counterparty_htlc_output_claim_reqs(&self, commitment_number: u64, commitment_txid: Txid, tx: Option<&Transaction>) -> Vec<PackageTemplate> {
1987                 let mut claimable_outpoints = Vec::new();
1988                 if let Some(htlc_outputs) = self.counterparty_claimable_outpoints.get(&commitment_txid) {
1989                         if let Some(revocation_points) = self.their_cur_revocation_points {
1990                                 let revocation_point_option =
1991                                         // If the counterparty commitment tx is the latest valid state, use their latest
1992                                         // per-commitment point
1993                                         if revocation_points.0 == commitment_number { Some(&revocation_points.1) }
1994                                         else if let Some(point) = revocation_points.2.as_ref() {
1995                                                 // If counterparty commitment tx is the state previous to the latest valid state, use
1996                                                 // their previous per-commitment point (non-atomicity of revocation means it's valid for
1997                                                 // them to temporarily have two valid commitment txns from our viewpoint)
1998                                                 if revocation_points.0 == commitment_number + 1 { Some(point) } else { None }
1999                                         } else { None };
2000                                 if let Some(revocation_point) = revocation_point_option {
2001                                         for (_, &(ref htlc, _)) in htlc_outputs.iter().enumerate() {
2002                                                 if let Some(transaction_output_index) = htlc.transaction_output_index {
2003                                                         if let Some(transaction) = tx {
2004                                                                 if transaction_output_index as usize >= transaction.output.len() ||
2005                                                                         transaction.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
2006                                                                                 return claimable_outpoints; // Corrupted per_commitment_data, fuck this user
2007                                                                         }
2008                                                         }
2009                                                         let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
2010                                                         if preimage.is_some() || !htlc.offered {
2011                                                                 let counterparty_htlc_outp = if htlc.offered { PackageSolvingData::CounterpartyOfferedHTLCOutput(CounterpartyOfferedHTLCOutput::build(*revocation_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, preimage.unwrap(), htlc.clone())) } else { PackageSolvingData::CounterpartyReceivedHTLCOutput(CounterpartyReceivedHTLCOutput::build(*revocation_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, htlc.clone())) };
2012                                                                 let aggregation = if !htlc.offered { false } else { true };
2013                                                                 let counterparty_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, counterparty_htlc_outp, htlc.cltv_expiry,aggregation, 0);
2014                                                                 claimable_outpoints.push(counterparty_package);
2015                                                         }
2016                                                 }
2017                                         }
2018                                 }
2019                         }
2020                 }
2021                 claimable_outpoints
2022         }
2023
2024         /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
2025         fn check_spend_counterparty_htlc<L: Deref>(&mut self, tx: &Transaction, commitment_number: u64, height: u32, logger: &L) -> (Vec<PackageTemplate>, Option<TransactionOutputs>) where L::Target: Logger {
2026                 let htlc_txid = tx.txid();
2027                 if tx.input.len() != 1 || tx.output.len() != 1 || tx.input[0].witness.len() != 5 {
2028                         return (Vec::new(), None)
2029                 }
2030
2031                 macro_rules! ignore_error {
2032                         ( $thing : expr ) => {
2033                                 match $thing {
2034                                         Ok(a) => a,
2035                                         Err(_) => return (Vec::new(), None)
2036                                 }
2037                         };
2038                 }
2039
2040                 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
2041                 let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
2042                 let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
2043
2044                 log_error!(logger, "Got broadcast of revoked counterparty HTLC transaction, spending {}:{}", htlc_txid, 0);
2045                 let revk_outp = RevokedOutput::build(per_commitment_point, self.counterparty_commitment_params.counterparty_delayed_payment_base_key, self.counterparty_commitment_params.counterparty_htlc_base_key, per_commitment_key, tx.output[0].value, self.counterparty_commitment_params.on_counterparty_tx_csv);
2046                 let justice_package = PackageTemplate::build_package(htlc_txid, 0, PackageSolvingData::RevokedOutput(revk_outp), height + self.counterparty_commitment_params.on_counterparty_tx_csv as u32, true, height);
2047                 let claimable_outpoints = vec!(justice_package);
2048                 let outputs = vec![(0, tx.output[0].clone())];
2049                 (claimable_outpoints, Some((htlc_txid, outputs)))
2050         }
2051
2052         // Returns (1) `PackageTemplate`s that can be given to the OnChainTxHandler, so that the handler can
2053         // broadcast transactions claiming holder HTLC commitment outputs and (2) a holder revokable
2054         // script so we can detect whether a holder transaction has been seen on-chain.
2055         fn get_broadcasted_holder_claims(&self, holder_tx: &HolderSignedTx, conf_height: u32) -> (Vec<PackageTemplate>, Option<(Script, PublicKey, PublicKey)>) {
2056                 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
2057
2058                 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
2059                 let broadcasted_holder_revokable_script = Some((redeemscript.to_v0_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
2060
2061                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
2062                         if let Some(transaction_output_index) = htlc.transaction_output_index {
2063                                 let htlc_output = if htlc.offered {
2064                                                 HolderHTLCOutput::build_offered(htlc.amount_msat, htlc.cltv_expiry)
2065                                         } else {
2066                                                 let payment_preimage = if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
2067                                                         preimage.clone()
2068                                                 } else {
2069                                                         // We can't build an HTLC-Success transaction without the preimage
2070                                                         continue;
2071                                                 };
2072                                                 HolderHTLCOutput::build_accepted(payment_preimage, htlc.amount_msat)
2073                                         };
2074                                 let htlc_package = PackageTemplate::build_package(holder_tx.txid, transaction_output_index, PackageSolvingData::HolderHTLCOutput(htlc_output), htlc.cltv_expiry, false, conf_height);
2075                                 claim_requests.push(htlc_package);
2076                         }
2077                 }
2078
2079                 (claim_requests, broadcasted_holder_revokable_script)
2080         }
2081
2082         // Returns holder HTLC outputs to watch and react to in case of spending.
2083         fn get_broadcasted_holder_watch_outputs(&self, holder_tx: &HolderSignedTx, commitment_tx: &Transaction) -> Vec<(u32, TxOut)> {
2084                 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
2085                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
2086                         if let Some(transaction_output_index) = htlc.transaction_output_index {
2087                                 watch_outputs.push((transaction_output_index, commitment_tx.output[transaction_output_index as usize].clone()));
2088                         }
2089                 }
2090                 watch_outputs
2091         }
2092
2093         /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
2094         /// revoked using data in holder_claimable_outpoints.
2095         /// Should not be used if check_spend_revoked_transaction succeeds.
2096         /// Returns None unless the transaction is definitely one of our commitment transactions.
2097         fn check_spend_holder_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> Option<(Vec<PackageTemplate>, TransactionOutputs)> where L::Target: Logger {
2098                 let commitment_txid = tx.txid();
2099                 let mut claim_requests = Vec::new();
2100                 let mut watch_outputs = Vec::new();
2101
2102                 macro_rules! append_onchain_update {
2103                         ($updates: expr, $to_watch: expr) => {
2104                                 claim_requests = $updates.0;
2105                                 self.broadcasted_holder_revokable_script = $updates.1;
2106                                 watch_outputs.append(&mut $to_watch);
2107                         }
2108                 }
2109
2110                 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
2111                 let mut is_holder_tx = false;
2112
2113                 if self.current_holder_commitment_tx.txid == commitment_txid {
2114                         is_holder_tx = true;
2115                         log_info!(logger, "Got broadcast of latest holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
2116                         let res = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, height);
2117                         let mut to_watch = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, tx);
2118                         append_onchain_update!(res, to_watch);
2119                         fail_unbroadcast_htlcs!(self, "latest holder", height, self.current_holder_commitment_tx.htlc_outputs.iter().map(|(a, _, c)| (a, c.as_ref())), logger);
2120                 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
2121                         if holder_tx.txid == commitment_txid {
2122                                 is_holder_tx = true;
2123                                 log_info!(logger, "Got broadcast of previous holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
2124                                 let res = self.get_broadcasted_holder_claims(holder_tx, height);
2125                                 let mut to_watch = self.get_broadcasted_holder_watch_outputs(holder_tx, tx);
2126                                 append_onchain_update!(res, to_watch);
2127                                 fail_unbroadcast_htlcs!(self, "previous holder", height, holder_tx.htlc_outputs.iter().map(|(a, _, c)| (a, c.as_ref())), logger);
2128                         }
2129                 }
2130
2131                 if is_holder_tx {
2132                         Some((claim_requests, (commitment_txid, watch_outputs)))
2133                 } else {
2134                         None
2135                 }
2136         }
2137
2138         pub fn get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
2139                 log_debug!(logger, "Getting signed latest holder commitment transaction!");
2140                 self.holder_tx_signed = true;
2141                 let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
2142                 let txid = commitment_tx.txid();
2143                 let mut holder_transactions = vec![commitment_tx];
2144                 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
2145                         if let Some(vout) = htlc.0.transaction_output_index {
2146                                 let preimage = if !htlc.0.offered {
2147                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
2148                                                 // We can't build an HTLC-Success transaction without the preimage
2149                                                 continue;
2150                                         }
2151                                 } else if htlc.0.cltv_expiry > self.best_block.height() + 1 {
2152                                         // Don't broadcast HTLC-Timeout transactions immediately as they don't meet the
2153                                         // current locktime requirements on-chain. We will broadcast them in
2154                                         // `block_confirmed` when `should_broadcast_holder_commitment_txn` returns true.
2155                                         // Note that we add + 1 as transactions are broadcastable when they can be
2156                                         // confirmed in the next block.
2157                                         continue;
2158                                 } else { None };
2159                                 if let Some(htlc_tx) = self.onchain_tx_handler.get_fully_signed_htlc_tx(
2160                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
2161                                         holder_transactions.push(htlc_tx);
2162                                 }
2163                         }
2164                 }
2165                 // 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.
2166                 // The data will be re-generated and tracked in check_spend_holder_transaction if we get a confirmation.
2167                 holder_transactions
2168         }
2169
2170         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
2171         /// Note that this includes possibly-locktimed-in-the-future transactions!
2172         fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
2173                 log_debug!(logger, "Getting signed copy of latest holder commitment transaction!");
2174                 let commitment_tx = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript);
2175                 let txid = commitment_tx.txid();
2176                 let mut holder_transactions = vec![commitment_tx];
2177                 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
2178                         if let Some(vout) = htlc.0.transaction_output_index {
2179                                 let preimage = if !htlc.0.offered {
2180                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
2181                                                 // We can't build an HTLC-Success transaction without the preimage
2182                                                 continue;
2183                                         }
2184                                 } else { None };
2185                                 if let Some(htlc_tx) = self.onchain_tx_handler.unsafe_get_fully_signed_htlc_tx(
2186                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
2187                                         holder_transactions.push(htlc_tx);
2188                                 }
2189                         }
2190                 }
2191                 holder_transactions
2192         }
2193
2194         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>
2195                 where B::Target: BroadcasterInterface,
2196                       F::Target: FeeEstimator,
2197                                         L::Target: Logger,
2198         {
2199                 let block_hash = header.block_hash();
2200                 self.best_block = BestBlock::new(block_hash, height);
2201
2202                 self.transactions_confirmed(header, txdata, height, broadcaster, fee_estimator, logger)
2203         }
2204
2205         fn best_block_updated<B: Deref, F: Deref, L: Deref>(
2206                 &mut self,
2207                 header: &BlockHeader,
2208                 height: u32,
2209                 broadcaster: B,
2210                 fee_estimator: F,
2211                 logger: L,
2212         ) -> Vec<TransactionOutputs>
2213         where
2214                 B::Target: BroadcasterInterface,
2215                 F::Target: FeeEstimator,
2216                 L::Target: Logger,
2217         {
2218                 let block_hash = header.block_hash();
2219
2220                 if height > self.best_block.height() {
2221                         self.best_block = BestBlock::new(block_hash, height);
2222                         self.block_confirmed(height, vec![], vec![], vec![], &broadcaster, &fee_estimator, &logger)
2223                 } else if block_hash != self.best_block.block_hash() {
2224                         self.best_block = BestBlock::new(block_hash, height);
2225                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height <= height);
2226                         self.onchain_tx_handler.block_disconnected(height + 1, broadcaster, fee_estimator, logger);
2227                         Vec::new()
2228                 } else { Vec::new() }
2229         }
2230
2231         fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
2232                 &mut self,
2233                 header: &BlockHeader,
2234                 txdata: &TransactionData,
2235                 height: u32,
2236                 broadcaster: B,
2237                 fee_estimator: F,
2238                 logger: L,
2239         ) -> Vec<TransactionOutputs>
2240         where
2241                 B::Target: BroadcasterInterface,
2242                 F::Target: FeeEstimator,
2243                 L::Target: Logger,
2244         {
2245                 let txn_matched = self.filter_block(txdata);
2246                 for tx in &txn_matched {
2247                         let mut output_val = 0;
2248                         for out in tx.output.iter() {
2249                                 if out.value > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
2250                                 output_val += out.value;
2251                                 if output_val > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
2252                         }
2253                 }
2254
2255                 let block_hash = header.block_hash();
2256
2257                 let mut watch_outputs = Vec::new();
2258                 let mut claimable_outpoints = Vec::new();
2259                 for tx in &txn_matched {
2260                         if tx.input.len() == 1 {
2261                                 // Assuming our keys were not leaked (in which case we're screwed no matter what),
2262                                 // commitment transactions and HTLC transactions will all only ever have one input,
2263                                 // which is an easy way to filter out any potential non-matching txn for lazy
2264                                 // filters.
2265                                 let prevout = &tx.input[0].previous_output;
2266                                 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
2267                                         let mut balance_spendable_csv = None;
2268                                         log_info!(logger, "Channel closed by funding output spend in txid {}.", log_bytes!(tx.txid()));
2269                                         if (tx.input[0].sequence >> 8*3) as u8 == 0x80 && (tx.lock_time >> 8*3) as u8 == 0x20 {
2270                                                 let (mut new_outpoints, new_outputs) = self.check_spend_counterparty_transaction(&tx, height, &logger);
2271                                                 if !new_outputs.1.is_empty() {
2272                                                         watch_outputs.push(new_outputs);
2273                                                 }
2274                                                 claimable_outpoints.append(&mut new_outpoints);
2275                                                 if new_outpoints.is_empty() {
2276                                                         if let Some((mut new_outpoints, new_outputs)) = self.check_spend_holder_transaction(&tx, height, &logger) {
2277                                                                 if !new_outputs.1.is_empty() {
2278                                                                         watch_outputs.push(new_outputs);
2279                                                                 }
2280                                                                 claimable_outpoints.append(&mut new_outpoints);
2281                                                                 balance_spendable_csv = Some(self.on_holder_tx_csv);
2282                                                         }
2283                                                 }
2284                                         }
2285                                         let txid = tx.txid();
2286                                         self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
2287                                                 txid,
2288                                                 height: height,
2289                                                 event: OnchainEvent::FundingSpendConfirmation {
2290                                                         on_local_output_csv: balance_spendable_csv,
2291                                                 },
2292                                         });
2293                                 } else {
2294                                         if let Some(&commitment_number) = self.counterparty_commitment_txn_on_chain.get(&prevout.txid) {
2295                                                 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(&tx, commitment_number, height, &logger);
2296                                                 claimable_outpoints.append(&mut new_outpoints);
2297                                                 if let Some(new_outputs) = new_outputs_option {
2298                                                         watch_outputs.push(new_outputs);
2299                                                 }
2300                                         }
2301                                 }
2302                         }
2303                         // While all commitment/HTLC-Success/HTLC-Timeout transactions have one input, HTLCs
2304                         // can also be resolved in a few other ways which can have more than one output. Thus,
2305                         // we call is_resolving_htlc_output here outside of the tx.input.len() == 1 check.
2306                         self.is_resolving_htlc_output(&tx, height, &logger);
2307
2308                         self.is_paying_spendable_output(&tx, height, &logger);
2309                 }
2310
2311                 if height > self.best_block.height() {
2312                         self.best_block = BestBlock::new(block_hash, height);
2313                 }
2314
2315                 self.block_confirmed(height, txn_matched, watch_outputs, claimable_outpoints, &broadcaster, &fee_estimator, &logger)
2316         }
2317
2318         /// Update state for new block(s)/transaction(s) confirmed. Note that the caller must update
2319         /// `self.best_block` before calling if a new best blockchain tip is available. More
2320         /// concretely, `self.best_block` must never be at a lower height than `conf_height`, avoiding
2321         /// complexity especially in `OnchainTx::update_claims_view`.
2322         ///
2323         /// `conf_height` should be set to the height at which any new transaction(s)/block(s) were
2324         /// confirmed at, even if it is not the current best height.
2325         fn block_confirmed<B: Deref, F: Deref, L: Deref>(
2326                 &mut self,
2327                 conf_height: u32,
2328                 txn_matched: Vec<&Transaction>,
2329                 mut watch_outputs: Vec<TransactionOutputs>,
2330                 mut claimable_outpoints: Vec<PackageTemplate>,
2331                 broadcaster: &B,
2332                 fee_estimator: &F,
2333                 logger: &L,
2334         ) -> Vec<TransactionOutputs>
2335         where
2336                 B::Target: BroadcasterInterface,
2337                 F::Target: FeeEstimator,
2338                 L::Target: Logger,
2339         {
2340                 log_trace!(logger, "Processing {} matched transactions for block at height {}.", txn_matched.len(), conf_height);
2341                 debug_assert!(self.best_block.height() >= conf_height);
2342
2343                 let should_broadcast = self.should_broadcast_holder_commitment_txn(logger);
2344                 if should_broadcast {
2345                         let funding_outp = HolderFundingOutput::build(self.funding_redeemscript.clone());
2346                         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());
2347                         claimable_outpoints.push(commitment_package);
2348                         self.pending_monitor_events.push(MonitorEvent::CommitmentTxConfirmed(self.funding_info.0));
2349                         let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
2350                         self.holder_tx_signed = true;
2351                         // Because we're broadcasting a commitment transaction, we should construct the package
2352                         // assuming it gets confirmed in the next block. Sadly, we have code which considers
2353                         // "not yet confirmed" things as discardable, so we cannot do that here.
2354                         let (mut new_outpoints, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
2355                         let new_outputs = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, &commitment_tx);
2356                         if !new_outputs.is_empty() {
2357                                 watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
2358                         }
2359                         claimable_outpoints.append(&mut new_outpoints);
2360                 }
2361
2362                 // Find which on-chain events have reached their confirmation threshold.
2363                 let onchain_events_awaiting_threshold_conf =
2364                         self.onchain_events_awaiting_threshold_conf.drain(..).collect::<Vec<_>>();
2365                 let mut onchain_events_reaching_threshold_conf = Vec::new();
2366                 for entry in onchain_events_awaiting_threshold_conf {
2367                         if entry.has_reached_confirmation_threshold(&self.best_block) {
2368                                 onchain_events_reaching_threshold_conf.push(entry);
2369                         } else {
2370                                 self.onchain_events_awaiting_threshold_conf.push(entry);
2371                         }
2372                 }
2373
2374                 // Used to check for duplicate HTLC resolutions.
2375                 #[cfg(debug_assertions)]
2376                 let unmatured_htlcs: Vec<_> = self.onchain_events_awaiting_threshold_conf
2377                         .iter()
2378                         .filter_map(|entry| match &entry.event {
2379                                 OnchainEvent::HTLCUpdate { source, .. } => Some(source),
2380                                 _ => None,
2381                         })
2382                         .collect();
2383                 #[cfg(debug_assertions)]
2384                 let mut matured_htlcs = Vec::new();
2385
2386                 // Produce actionable events from on-chain events having reached their threshold.
2387                 for entry in onchain_events_reaching_threshold_conf.drain(..) {
2388                         match entry.event {
2389                                 OnchainEvent::HTLCUpdate { ref source, payment_hash, onchain_value_satoshis, input_idx } => {
2390                                         // Check for duplicate HTLC resolutions.
2391                                         #[cfg(debug_assertions)]
2392                                         {
2393                                                 debug_assert!(
2394                                                         unmatured_htlcs.iter().find(|&htlc| htlc == &source).is_none(),
2395                                                         "An unmature HTLC transaction conflicts with a maturing one; failed to \
2396                                                          call either transaction_unconfirmed for the conflicting transaction \
2397                                                          or block_disconnected for a block containing it.");
2398                                                 debug_assert!(
2399                                                         matured_htlcs.iter().find(|&htlc| htlc == source).is_none(),
2400                                                         "A matured HTLC transaction conflicts with a maturing one; failed to \
2401                                                          call either transaction_unconfirmed for the conflicting transaction \
2402                                                          or block_disconnected for a block containing it.");
2403                                                 matured_htlcs.push(source.clone());
2404                                         }
2405
2406                                         log_debug!(logger, "HTLC {} failure update has got enough confirmations to be passed upstream", log_bytes!(payment_hash.0));
2407                                         self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2408                                                 payment_hash,
2409                                                 payment_preimage: None,
2410                                                 source: source.clone(),
2411                                                 onchain_value_satoshis,
2412                                         }));
2413                                         if let Some(idx) = input_idx {
2414                                                 self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC { input_idx: idx, payment_preimage: None });
2415                                         }
2416                                 },
2417                                 OnchainEvent::MaturingOutput { descriptor } => {
2418                                         log_debug!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
2419                                         self.pending_events.push(Event::SpendableOutputs {
2420                                                 outputs: vec![descriptor]
2421                                         });
2422                                 },
2423                                 OnchainEvent::HTLCSpendConfirmation { input_idx, preimage, .. } => {
2424                                         self.htlcs_resolved_on_chain.push(IrrevocablyResolvedHTLC { input_idx, payment_preimage: preimage });
2425                                 },
2426                                 OnchainEvent::FundingSpendConfirmation { .. } => {
2427                                         self.funding_spend_confirmed = Some(entry.txid);
2428                                 },
2429                         }
2430                 }
2431
2432                 self.onchain_tx_handler.update_claims_view(&txn_matched, claimable_outpoints, conf_height, self.best_block.height(), broadcaster, fee_estimator, logger);
2433
2434                 // Determine new outputs to watch by comparing against previously known outputs to watch,
2435                 // updating the latter in the process.
2436                 watch_outputs.retain(|&(ref txid, ref txouts)| {
2437                         let idx_and_scripts = txouts.iter().map(|o| (o.0, o.1.script_pubkey.clone())).collect();
2438                         self.outputs_to_watch.insert(txid.clone(), idx_and_scripts).is_none()
2439                 });
2440                 #[cfg(test)]
2441                 {
2442                         // If we see a transaction for which we registered outputs previously,
2443                         // make sure the registered scriptpubkey at the expected index match
2444                         // the actual transaction output one. We failed this case before #653.
2445                         for tx in &txn_matched {
2446                                 if let Some(outputs) = self.get_outputs_to_watch().get(&tx.txid()) {
2447                                         for idx_and_script in outputs.iter() {
2448                                                 assert!((idx_and_script.0 as usize) < tx.output.len());
2449                                                 assert_eq!(tx.output[idx_and_script.0 as usize].script_pubkey, idx_and_script.1);
2450                                         }
2451                                 }
2452                         }
2453                 }
2454                 watch_outputs
2455         }
2456
2457         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, height: u32, broadcaster: B, fee_estimator: F, logger: L)
2458                 where B::Target: BroadcasterInterface,
2459                       F::Target: FeeEstimator,
2460                       L::Target: Logger,
2461         {
2462                 log_trace!(logger, "Block {} at height {} disconnected", header.block_hash(), height);
2463
2464                 //We may discard:
2465                 //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
2466                 //- maturing spendable output has transaction paying us has been disconnected
2467                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height < height);
2468
2469                 self.onchain_tx_handler.block_disconnected(height, broadcaster, fee_estimator, logger);
2470
2471                 self.best_block = BestBlock::new(header.prev_blockhash, height - 1);
2472         }
2473
2474         fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
2475                 &mut self,
2476                 txid: &Txid,
2477                 broadcaster: B,
2478                 fee_estimator: F,
2479                 logger: L,
2480         ) where
2481                 B::Target: BroadcasterInterface,
2482                 F::Target: FeeEstimator,
2483                 L::Target: Logger,
2484         {
2485                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.txid != *txid);
2486                 self.onchain_tx_handler.transaction_unconfirmed(txid, broadcaster, fee_estimator, logger);
2487         }
2488
2489         /// Filters a block's `txdata` for transactions spending watched outputs or for any child
2490         /// transactions thereof.
2491         fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
2492                 let mut matched_txn = HashSet::new();
2493                 txdata.iter().filter(|&&(_, tx)| {
2494                         let mut matches = self.spends_watched_output(tx);
2495                         for input in tx.input.iter() {
2496                                 if matches { break; }
2497                                 if matched_txn.contains(&input.previous_output.txid) {
2498                                         matches = true;
2499                                 }
2500                         }
2501                         if matches {
2502                                 matched_txn.insert(tx.txid());
2503                         }
2504                         matches
2505                 }).map(|(_, tx)| *tx).collect()
2506         }
2507
2508         /// Checks if a given transaction spends any watched outputs.
2509         fn spends_watched_output(&self, tx: &Transaction) -> bool {
2510                 for input in tx.input.iter() {
2511                         if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
2512                                 for (idx, _script_pubkey) in outputs.iter() {
2513                                         if *idx == input.previous_output.vout {
2514                                                 #[cfg(test)]
2515                                                 {
2516                                                         // If the expected script is a known type, check that the witness
2517                                                         // appears to be spending the correct type (ie that the match would
2518                                                         // actually succeed in BIP 158/159-style filters).
2519                                                         if _script_pubkey.is_v0_p2wsh() {
2520                                                                 assert_eq!(&bitcoin::Address::p2wsh(&Script::from(input.witness.last().unwrap().clone()), bitcoin::Network::Bitcoin).script_pubkey(), _script_pubkey);
2521                                                         } else if _script_pubkey.is_v0_p2wpkh() {
2522                                                                 assert_eq!(&bitcoin::Address::p2wpkh(&bitcoin::PublicKey::from_slice(&input.witness.last().unwrap()).unwrap(), bitcoin::Network::Bitcoin).unwrap().script_pubkey(), _script_pubkey);
2523                                                         } else { panic!(); }
2524                                                 }
2525                                                 return true;
2526                                         }
2527                                 }
2528                         }
2529                 }
2530
2531                 false
2532         }
2533
2534         fn should_broadcast_holder_commitment_txn<L: Deref>(&self, logger: &L) -> bool where L::Target: Logger {
2535                 // We need to consider all HTLCs which are:
2536                 //  * in any unrevoked counterparty commitment transaction, as they could broadcast said
2537                 //    transactions and we'd end up in a race, or
2538                 //  * are in our latest holder commitment transaction, as this is the thing we will
2539                 //    broadcast if we go on-chain.
2540                 // Note that we consider HTLCs which were below dust threshold here - while they don't
2541                 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
2542                 // to the source, and if we don't fail the channel we will have to ensure that the next
2543                 // updates that peer sends us are update_fails, failing the channel if not. It's probably
2544                 // easier to just fail the channel as this case should be rare enough anyway.
2545                 let height = self.best_block.height();
2546                 macro_rules! scan_commitment {
2547                         ($htlcs: expr, $holder_tx: expr) => {
2548                                 for ref htlc in $htlcs {
2549                                         // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
2550                                         // chain with enough room to claim the HTLC without our counterparty being able to
2551                                         // time out the HTLC first.
2552                                         // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
2553                                         // concern is being able to claim the corresponding inbound HTLC (on another
2554                                         // channel) before it expires. In fact, we don't even really care if our
2555                                         // counterparty here claims such an outbound HTLC after it expired as long as we
2556                                         // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
2557                                         // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
2558                                         // we give ourselves a few blocks of headroom after expiration before going
2559                                         // on-chain for an expired HTLC.
2560                                         // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
2561                                         // from us until we've reached the point where we go on-chain with the
2562                                         // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
2563                                         // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
2564                                         //  aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
2565                                         //      inbound_cltv == height + CLTV_CLAIM_BUFFER
2566                                         //      outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
2567                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
2568                                         //      CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
2569                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
2570                                         //  The final, above, condition is checked for statically in channelmanager
2571                                         //  with CHECK_CLTV_EXPIRY_SANITY_2.
2572                                         let htlc_outbound = $holder_tx == htlc.offered;
2573                                         if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
2574                                            (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
2575                                                 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
2576                                                 return true;
2577                                         }
2578                                 }
2579                         }
2580                 }
2581
2582                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
2583
2584                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
2585                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
2586                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
2587                         }
2588                 }
2589                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
2590                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
2591                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
2592                         }
2593                 }
2594
2595                 false
2596         }
2597
2598         /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
2599         /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
2600         fn is_resolving_htlc_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2601                 'outer_loop: for input in &tx.input {
2602                         let mut payment_data = None;
2603                         let revocation_sig_claim = (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC) && input.witness[1].len() == 33)
2604                                 || (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::AcceptedHTLC) && input.witness[1].len() == 33);
2605                         let accepted_preimage_claim = input.witness.len() == 5 && HTLCType::scriptlen_to_htlctype(input.witness[4].len()) == Some(HTLCType::AcceptedHTLC);
2606                         #[cfg(not(fuzzing))]
2607                         let accepted_timeout_claim = input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::AcceptedHTLC) && !revocation_sig_claim;
2608                         let offered_preimage_claim = input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC) && !revocation_sig_claim;
2609                         #[cfg(not(fuzzing))]
2610                         let offered_timeout_claim = input.witness.len() == 5 && HTLCType::scriptlen_to_htlctype(input.witness[4].len()) == Some(HTLCType::OfferedHTLC);
2611
2612                         let mut payment_preimage = PaymentPreimage([0; 32]);
2613                         if accepted_preimage_claim {
2614                                 payment_preimage.0.copy_from_slice(&input.witness[3]);
2615                         } else if offered_preimage_claim {
2616                                 payment_preimage.0.copy_from_slice(&input.witness[1]);
2617                         }
2618
2619                         macro_rules! log_claim {
2620                                 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
2621                                         let outbound_htlc = $holder_tx == $htlc.offered;
2622                                         // HTLCs must either be claimed by a matching script type or through the
2623                                         // revocation path:
2624                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
2625                                         debug_assert!(!$htlc.offered || offered_preimage_claim || offered_timeout_claim || revocation_sig_claim);
2626                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
2627                                         debug_assert!($htlc.offered || accepted_preimage_claim || accepted_timeout_claim || revocation_sig_claim);
2628                                         // Further, only exactly one of the possible spend paths should have been
2629                                         // matched by any HTLC spend:
2630                                         #[cfg(not(fuzzing))] // Note that the fuzzer is not bound by pesky things like "signatures"
2631                                         debug_assert_eq!(accepted_preimage_claim as u8 + accepted_timeout_claim as u8 +
2632                                                          offered_preimage_claim as u8 + offered_timeout_claim as u8 +
2633                                                          revocation_sig_claim as u8, 1);
2634                                         if ($holder_tx && revocation_sig_claim) ||
2635                                                         (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
2636                                                 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
2637                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
2638                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
2639                                                         if revocation_sig_claim { "revocation sig" } else { "preimage claim after we'd passed the HTLC resolution back" });
2640                                         } else {
2641                                                 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
2642                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
2643                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
2644                                                         if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
2645                                         }
2646                                 }
2647                         }
2648
2649                         macro_rules! check_htlc_valid_counterparty {
2650                                 ($counterparty_txid: expr, $htlc_output: expr) => {
2651                                         if let Some(txid) = $counterparty_txid {
2652                                                 for &(ref pending_htlc, ref pending_source) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
2653                                                         if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
2654                                                                 if let &Some(ref source) = pending_source {
2655                                                                         log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
2656                                                                         payment_data = Some(((**source).clone(), $htlc_output.payment_hash, $htlc_output.amount_msat));
2657                                                                         break;
2658                                                                 }
2659                                                         }
2660                                                 }
2661                                         }
2662                                 }
2663                         }
2664
2665                         macro_rules! scan_commitment {
2666                                 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
2667                                         for (ref htlc_output, source_option) in $htlcs {
2668                                                 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
2669                                                         if let Some(ref source) = source_option {
2670                                                                 log_claim!($tx_info, $holder_tx, htlc_output, true);
2671                                                                 // We have a resolution of an HTLC either from one of our latest
2672                                                                 // holder commitment transactions or an unrevoked counterparty commitment
2673                                                                 // transaction. This implies we either learned a preimage, the HTLC
2674                                                                 // has timed out, or we screwed up. In any case, we should now
2675                                                                 // resolve the source HTLC with the original sender.
2676                                                                 payment_data = Some(((*source).clone(), htlc_output.payment_hash, htlc_output.amount_msat));
2677                                                         } else if !$holder_tx {
2678                                                                 check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output);
2679                                                                 if payment_data.is_none() {
2680                                                                         check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output);
2681                                                                 }
2682                                                         }
2683                                                         if payment_data.is_none() {
2684                                                                 log_claim!($tx_info, $holder_tx, htlc_output, false);
2685                                                                 let outbound_htlc = $holder_tx == htlc_output.offered;
2686                                                                 if !outbound_htlc || revocation_sig_claim {
2687                                                                         self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
2688                                                                                 txid: tx.txid(), height,
2689                                                                                 event: OnchainEvent::HTLCSpendConfirmation {
2690                                                                                         input_idx: input.previous_output.vout,
2691                                                                                         preimage: if accepted_preimage_claim || offered_preimage_claim {
2692                                                                                                 Some(payment_preimage) } else { None },
2693                                                                                         // If this is a payment to us (!outbound_htlc, above),
2694                                                                                         // wait for the CSV delay before dropping the HTLC from
2695                                                                                         // claimable balance if the claim was an HTLC-Success
2696                                                                                         // transaction.
2697                                                                                         on_to_local_output_csv: if accepted_preimage_claim {
2698                                                                                                 Some(self.on_holder_tx_csv) } else { None },
2699                                                                                 },
2700                                                                         });
2701                                                                 } else {
2702                                                                         // Outbound claims should always have payment_data, unless
2703                                                                         // we've already failed the HTLC as the commitment transaction
2704                                                                         // which was broadcasted was revoked. In that case, we should
2705                                                                         // spend the HTLC output here immediately, and expose that fact
2706                                                                         // as a Balance, something which we do not yet do.
2707                                                                         // TODO: Track the above as claimable!
2708                                                                 }
2709                                                                 continue 'outer_loop;
2710                                                         }
2711                                                 }
2712                                         }
2713                                 }
2714                         }
2715
2716                         if input.previous_output.txid == self.current_holder_commitment_tx.txid {
2717                                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
2718                                         "our latest holder commitment tx", true);
2719                         }
2720                         if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
2721                                 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
2722                                         scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
2723                                                 "our previous holder commitment tx", true);
2724                                 }
2725                         }
2726                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
2727                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, (b.as_ref().clone()).map(|boxed| &**boxed))),
2728                                         "counterparty commitment tx", false);
2729                         }
2730
2731                         // Check that scan_commitment, above, decided there is some source worth relaying an
2732                         // HTLC resolution backwards to and figure out whether we learned a preimage from it.
2733                         if let Some((source, payment_hash, amount_msat)) = payment_data {
2734                                 if accepted_preimage_claim {
2735                                         if !self.pending_monitor_events.iter().any(
2736                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
2737                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
2738                                                         txid: tx.txid(),
2739                                                         height,
2740                                                         event: OnchainEvent::HTLCSpendConfirmation {
2741                                                                 input_idx: input.previous_output.vout,
2742                                                                 preimage: Some(payment_preimage),
2743                                                                 on_to_local_output_csv: None,
2744                                                         },
2745                                                 });
2746                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2747                                                         source,
2748                                                         payment_preimage: Some(payment_preimage),
2749                                                         payment_hash,
2750                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2751                                                 }));
2752                                         }
2753                                 } else if offered_preimage_claim {
2754                                         if !self.pending_monitor_events.iter().any(
2755                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
2756                                                         upd.source == source
2757                                                 } else { false }) {
2758                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
2759                                                         txid: tx.txid(),
2760                                                         height,
2761                                                         event: OnchainEvent::HTLCSpendConfirmation {
2762                                                                 input_idx: input.previous_output.vout,
2763                                                                 preimage: Some(payment_preimage),
2764                                                                 on_to_local_output_csv: None,
2765                                                         },
2766                                                 });
2767                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2768                                                         source,
2769                                                         payment_preimage: Some(payment_preimage),
2770                                                         payment_hash,
2771                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2772                                                 }));
2773                                         }
2774                                 } else {
2775                                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
2776                                                 if entry.height != height { return true; }
2777                                                 match entry.event {
2778                                                         OnchainEvent::HTLCUpdate { source: ref htlc_source, .. } => {
2779                                                                 *htlc_source != source
2780                                                         },
2781                                                         _ => true,
2782                                                 }
2783                                         });
2784                                         let entry = OnchainEventEntry {
2785                                                 txid: tx.txid(),
2786                                                 height,
2787                                                 event: OnchainEvent::HTLCUpdate {
2788                                                         source, payment_hash,
2789                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2790                                                         input_idx: Some(input.previous_output.vout),
2791                                                 },
2792                                         };
2793                                         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());
2794                                         self.onchain_events_awaiting_threshold_conf.push(entry);
2795                                 }
2796                         }
2797                 }
2798         }
2799
2800         /// Check if any transaction broadcasted is paying fund back to some address we can assume to own
2801         fn is_paying_spendable_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2802                 let mut spendable_output = None;
2803                 for (i, outp) in tx.output.iter().enumerate() { // There is max one spendable output for any channel tx, including ones generated by us
2804                         if i > ::core::u16::MAX as usize {
2805                                 // While it is possible that an output exists on chain which is greater than the
2806                                 // 2^16th output in a given transaction, this is only possible if the output is not
2807                                 // in a lightning transaction and was instead placed there by some third party who
2808                                 // wishes to give us money for no reason.
2809                                 // Namely, any lightning transactions which we pre-sign will never have anywhere
2810                                 // near 2^16 outputs both because such transactions must have ~2^16 outputs who's
2811                                 // scripts are not longer than one byte in length and because they are inherently
2812                                 // non-standard due to their size.
2813                                 // Thus, it is completely safe to ignore such outputs, and while it may result in
2814                                 // us ignoring non-lightning fund to us, that is only possible if someone fills
2815                                 // nearly a full block with garbage just to hit this case.
2816                                 continue;
2817                         }
2818                         if outp.script_pubkey == self.destination_script {
2819                                 spendable_output =  Some(SpendableOutputDescriptor::StaticOutput {
2820                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2821                                         output: outp.clone(),
2822                                 });
2823                                 break;
2824                         }
2825                         if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
2826                                 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
2827                                         spendable_output =  Some(SpendableOutputDescriptor::DelayedPaymentOutput(DelayedPaymentOutputDescriptor {
2828                                                 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2829                                                 per_commitment_point: broadcasted_holder_revokable_script.1,
2830                                                 to_self_delay: self.on_holder_tx_csv,
2831                                                 output: outp.clone(),
2832                                                 revocation_pubkey: broadcasted_holder_revokable_script.2.clone(),
2833                                                 channel_keys_id: self.channel_keys_id,
2834                                                 channel_value_satoshis: self.channel_value_satoshis,
2835                                         }));
2836                                         break;
2837                                 }
2838                         }
2839                         if self.counterparty_payment_script == outp.script_pubkey {
2840                                 spendable_output = Some(SpendableOutputDescriptor::StaticPaymentOutput(StaticPaymentOutputDescriptor {
2841                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2842                                         output: outp.clone(),
2843                                         channel_keys_id: self.channel_keys_id,
2844                                         channel_value_satoshis: self.channel_value_satoshis,
2845                                 }));
2846                                 break;
2847                         }
2848                         if self.shutdown_script.as_ref() == Some(&outp.script_pubkey) {
2849                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
2850                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2851                                         output: outp.clone(),
2852                                 });
2853                                 break;
2854                         }
2855                 }
2856                 if let Some(spendable_output) = spendable_output {
2857                         let entry = OnchainEventEntry {
2858                                 txid: tx.txid(),
2859                                 height: height,
2860                                 event: OnchainEvent::MaturingOutput { descriptor: spendable_output.clone() },
2861                         };
2862                         log_info!(logger, "Received spendable output {}, spendable at height {}", log_spendable!(spendable_output), entry.confirmation_threshold());
2863                         self.onchain_events_awaiting_threshold_conf.push(entry);
2864                 }
2865         }
2866 }
2867
2868 impl<Signer: Sign, T: Deref, F: Deref, L: Deref> chain::Listen for (ChannelMonitor<Signer>, T, F, L)
2869 where
2870         T::Target: BroadcasterInterface,
2871         F::Target: FeeEstimator,
2872         L::Target: Logger,
2873 {
2874         fn block_connected(&self, block: &Block, height: u32) {
2875                 let txdata: Vec<_> = block.txdata.iter().enumerate().collect();
2876                 self.0.block_connected(&block.header, &txdata, height, &*self.1, &*self.2, &*self.3);
2877         }
2878
2879         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
2880                 self.0.block_disconnected(header, height, &*self.1, &*self.2, &*self.3);
2881         }
2882 }
2883
2884 impl<Signer: Sign, T: Deref, F: Deref, L: Deref> chain::Confirm for (ChannelMonitor<Signer>, T, F, L)
2885 where
2886         T::Target: BroadcasterInterface,
2887         F::Target: FeeEstimator,
2888         L::Target: Logger,
2889 {
2890         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
2891                 self.0.transactions_confirmed(header, txdata, height, &*self.1, &*self.2, &*self.3);
2892         }
2893
2894         fn transaction_unconfirmed(&self, txid: &Txid) {
2895                 self.0.transaction_unconfirmed(txid, &*self.1, &*self.2, &*self.3);
2896         }
2897
2898         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
2899                 self.0.best_block_updated(header, height, &*self.1, &*self.2, &*self.3);
2900         }
2901
2902         fn get_relevant_txids(&self) -> Vec<Txid> {
2903                 self.0.get_relevant_txids()
2904         }
2905 }
2906
2907 const MAX_ALLOC_SIZE: usize = 64*1024;
2908
2909 impl<'a, Signer: Sign, K: KeysInterface<Signer = Signer>> ReadableArgs<&'a K>
2910                 for (BlockHash, ChannelMonitor<Signer>) {
2911         fn read<R: io::Read>(reader: &mut R, keys_manager: &'a K) -> Result<Self, DecodeError> {
2912                 macro_rules! unwrap_obj {
2913                         ($key: expr) => {
2914                                 match $key {
2915                                         Ok(res) => res,
2916                                         Err(_) => return Err(DecodeError::InvalidValue),
2917                                 }
2918                         }
2919                 }
2920
2921                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
2922
2923                 let latest_update_id: u64 = Readable::read(reader)?;
2924                 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
2925
2926                 let destination_script = Readable::read(reader)?;
2927                 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
2928                         0 => {
2929                                 let revokable_address = Readable::read(reader)?;
2930                                 let per_commitment_point = Readable::read(reader)?;
2931                                 let revokable_script = Readable::read(reader)?;
2932                                 Some((revokable_address, per_commitment_point, revokable_script))
2933                         },
2934                         1 => { None },
2935                         _ => return Err(DecodeError::InvalidValue),
2936                 };
2937                 let counterparty_payment_script = Readable::read(reader)?;
2938                 let shutdown_script = {
2939                         let script = <Script as Readable>::read(reader)?;
2940                         if script.is_empty() { None } else { Some(script) }
2941                 };
2942
2943                 let channel_keys_id = Readable::read(reader)?;
2944                 let holder_revocation_basepoint = Readable::read(reader)?;
2945                 // Technically this can fail and serialize fail a round-trip, but only for serialization of
2946                 // barely-init'd ChannelMonitors that we can't do anything with.
2947                 let outpoint = OutPoint {
2948                         txid: Readable::read(reader)?,
2949                         index: Readable::read(reader)?,
2950                 };
2951                 let funding_info = (outpoint, Readable::read(reader)?);
2952                 let current_counterparty_commitment_txid = Readable::read(reader)?;
2953                 let prev_counterparty_commitment_txid = Readable::read(reader)?;
2954
2955                 let counterparty_commitment_params = Readable::read(reader)?;
2956                 let funding_redeemscript = Readable::read(reader)?;
2957                 let channel_value_satoshis = Readable::read(reader)?;
2958
2959                 let their_cur_revocation_points = {
2960                         let first_idx = <U48 as Readable>::read(reader)?.0;
2961                         if first_idx == 0 {
2962                                 None
2963                         } else {
2964                                 let first_point = Readable::read(reader)?;
2965                                 let second_point_slice: [u8; 33] = Readable::read(reader)?;
2966                                 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
2967                                         Some((first_idx, first_point, None))
2968                                 } else {
2969                                         Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
2970                                 }
2971                         }
2972                 };
2973
2974                 let on_holder_tx_csv: u16 = Readable::read(reader)?;
2975
2976                 let commitment_secrets = Readable::read(reader)?;
2977
2978                 macro_rules! read_htlc_in_commitment {
2979                         () => {
2980                                 {
2981                                         let offered: bool = Readable::read(reader)?;
2982                                         let amount_msat: u64 = Readable::read(reader)?;
2983                                         let cltv_expiry: u32 = Readable::read(reader)?;
2984                                         let payment_hash: PaymentHash = Readable::read(reader)?;
2985                                         let transaction_output_index: Option<u32> = Readable::read(reader)?;
2986
2987                                         HTLCOutputInCommitment {
2988                                                 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
2989                                         }
2990                                 }
2991                         }
2992                 }
2993
2994                 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
2995                 let mut counterparty_claimable_outpoints = HashMap::with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
2996                 for _ in 0..counterparty_claimable_outpoints_len {
2997                         let txid: Txid = Readable::read(reader)?;
2998                         let htlcs_count: u64 = Readable::read(reader)?;
2999                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
3000                         for _ in 0..htlcs_count {
3001                                 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
3002                         }
3003                         if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
3004                                 return Err(DecodeError::InvalidValue);
3005                         }
3006                 }
3007
3008                 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
3009                 let mut counterparty_commitment_txn_on_chain = HashMap::with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
3010                 for _ in 0..counterparty_commitment_txn_on_chain_len {
3011                         let txid: Txid = Readable::read(reader)?;
3012                         let commitment_number = <U48 as Readable>::read(reader)?.0;
3013                         if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, commitment_number) {
3014                                 return Err(DecodeError::InvalidValue);
3015                         }
3016                 }
3017
3018                 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
3019                 let mut counterparty_hash_commitment_number = HashMap::with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
3020                 for _ in 0..counterparty_hash_commitment_number_len {
3021                         let payment_hash: PaymentHash = Readable::read(reader)?;
3022                         let commitment_number = <U48 as Readable>::read(reader)?.0;
3023                         if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
3024                                 return Err(DecodeError::InvalidValue);
3025                         }
3026                 }
3027
3028                 let mut prev_holder_signed_commitment_tx: Option<HolderSignedTx> =
3029                         match <u8 as Readable>::read(reader)? {
3030                                 0 => None,
3031                                 1 => {
3032                                         Some(Readable::read(reader)?)
3033                                 },
3034                                 _ => return Err(DecodeError::InvalidValue),
3035                         };
3036                 let mut current_holder_commitment_tx: HolderSignedTx = Readable::read(reader)?;
3037
3038                 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
3039                 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
3040
3041                 let payment_preimages_len: u64 = Readable::read(reader)?;
3042                 let mut payment_preimages = HashMap::with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
3043                 for _ in 0..payment_preimages_len {
3044                         let preimage: PaymentPreimage = Readable::read(reader)?;
3045                         let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
3046                         if let Some(_) = payment_preimages.insert(hash, preimage) {
3047                                 return Err(DecodeError::InvalidValue);
3048                         }
3049                 }
3050
3051                 let pending_monitor_events_len: u64 = Readable::read(reader)?;
3052                 let mut pending_monitor_events = Some(
3053                         Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3))));
3054                 for _ in 0..pending_monitor_events_len {
3055                         let ev = match <u8 as Readable>::read(reader)? {
3056                                 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
3057                                 1 => MonitorEvent::CommitmentTxConfirmed(funding_info.0),
3058                                 _ => return Err(DecodeError::InvalidValue)
3059                         };
3060                         pending_monitor_events.as_mut().unwrap().push(ev);
3061                 }
3062
3063                 let pending_events_len: u64 = Readable::read(reader)?;
3064                 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
3065                 for _ in 0..pending_events_len {
3066                         if let Some(event) = MaybeReadable::read(reader)? {
3067                                 pending_events.push(event);
3068                         }
3069                 }
3070
3071                 let best_block = BestBlock::new(Readable::read(reader)?, Readable::read(reader)?);
3072
3073                 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
3074                 let mut onchain_events_awaiting_threshold_conf = Vec::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
3075                 for _ in 0..waiting_threshold_conf_len {
3076                         if let Some(val) = MaybeReadable::read(reader)? {
3077                                 onchain_events_awaiting_threshold_conf.push(val);
3078                         }
3079                 }
3080
3081                 let outputs_to_watch_len: u64 = Readable::read(reader)?;
3082                 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>>())));
3083                 for _ in 0..outputs_to_watch_len {
3084                         let txid = Readable::read(reader)?;
3085                         let outputs_len: u64 = Readable::read(reader)?;
3086                         let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<u32>() + mem::size_of::<Script>())));
3087                         for _ in 0..outputs_len {
3088                                 outputs.push((Readable::read(reader)?, Readable::read(reader)?));
3089                         }
3090                         if let Some(_) = outputs_to_watch.insert(txid, outputs) {
3091                                 return Err(DecodeError::InvalidValue);
3092                         }
3093                 }
3094                 let onchain_tx_handler: OnchainTxHandler<Signer> = ReadableArgs::read(reader, keys_manager)?;
3095
3096                 let lockdown_from_offchain = Readable::read(reader)?;
3097                 let holder_tx_signed = Readable::read(reader)?;
3098
3099                 if let Some(prev_commitment_tx) = prev_holder_signed_commitment_tx.as_mut() {
3100                         let prev_holder_value = onchain_tx_handler.get_prev_holder_commitment_to_self_value();
3101                         if prev_holder_value.is_none() { return Err(DecodeError::InvalidValue); }
3102                         if prev_commitment_tx.to_self_value_sat == u64::max_value() {
3103                                 prev_commitment_tx.to_self_value_sat = prev_holder_value.unwrap();
3104                         } else if prev_commitment_tx.to_self_value_sat != prev_holder_value.unwrap() {
3105                                 return Err(DecodeError::InvalidValue);
3106                         }
3107                 }
3108
3109                 let cur_holder_value = onchain_tx_handler.get_cur_holder_commitment_to_self_value();
3110                 if current_holder_commitment_tx.to_self_value_sat == u64::max_value() {
3111                         current_holder_commitment_tx.to_self_value_sat = cur_holder_value;
3112                 } else if current_holder_commitment_tx.to_self_value_sat != cur_holder_value {
3113                         return Err(DecodeError::InvalidValue);
3114                 }
3115
3116                 let mut funding_spend_confirmed = None;
3117                 let mut htlcs_resolved_on_chain = Some(Vec::new());
3118                 read_tlv_fields!(reader, {
3119                         (1, funding_spend_confirmed, option),
3120                         (3, htlcs_resolved_on_chain, vec_type),
3121                         (5, pending_monitor_events, vec_type),
3122                 });
3123
3124                 let mut secp_ctx = Secp256k1::new();
3125                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
3126
3127                 Ok((best_block.block_hash(), ChannelMonitor {
3128                         inner: Mutex::new(ChannelMonitorImpl {
3129                                 latest_update_id,
3130                                 commitment_transaction_number_obscure_factor,
3131
3132                                 destination_script,
3133                                 broadcasted_holder_revokable_script,
3134                                 counterparty_payment_script,
3135                                 shutdown_script,
3136
3137                                 channel_keys_id,
3138                                 holder_revocation_basepoint,
3139                                 funding_info,
3140                                 current_counterparty_commitment_txid,
3141                                 prev_counterparty_commitment_txid,
3142
3143                                 counterparty_commitment_params,
3144                                 funding_redeemscript,
3145                                 channel_value_satoshis,
3146                                 their_cur_revocation_points,
3147
3148                                 on_holder_tx_csv,
3149
3150                                 commitment_secrets,
3151                                 counterparty_claimable_outpoints,
3152                                 counterparty_commitment_txn_on_chain,
3153                                 counterparty_hash_commitment_number,
3154
3155                                 prev_holder_signed_commitment_tx,
3156                                 current_holder_commitment_tx,
3157                                 current_counterparty_commitment_number,
3158                                 current_holder_commitment_number,
3159
3160                                 payment_preimages,
3161                                 pending_monitor_events: pending_monitor_events.unwrap(),
3162                                 pending_events,
3163
3164                                 onchain_events_awaiting_threshold_conf,
3165                                 outputs_to_watch,
3166
3167                                 onchain_tx_handler,
3168
3169                                 lockdown_from_offchain,
3170                                 holder_tx_signed,
3171                                 funding_spend_confirmed,
3172                                 htlcs_resolved_on_chain: htlcs_resolved_on_chain.unwrap(),
3173
3174                                 best_block,
3175
3176                                 secp_ctx,
3177                         }),
3178                 }))
3179         }
3180 }
3181
3182 #[cfg(test)]
3183 mod tests {
3184         use bitcoin::blockdata::script::{Script, Builder};
3185         use bitcoin::blockdata::opcodes;
3186         use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, SigHashType};
3187         use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
3188         use bitcoin::util::bip143;
3189         use bitcoin::hashes::Hash;
3190         use bitcoin::hashes::sha256::Hash as Sha256;
3191         use bitcoin::hashes::hex::FromHex;
3192         use bitcoin::hash_types::Txid;
3193         use bitcoin::network::constants::Network;
3194         use hex;
3195         use chain::BestBlock;
3196         use chain::channelmonitor::ChannelMonitor;
3197         use chain::package::{WEIGHT_OFFERED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_RECEIVED_HTLC, WEIGHT_REVOKED_OUTPUT};
3198         use chain::transaction::OutPoint;
3199         use ln::{PaymentPreimage, PaymentHash};
3200         use ln::chan_utils;
3201         use ln::chan_utils::{HTLCOutputInCommitment, ChannelPublicKeys, ChannelTransactionParameters, HolderCommitmentTransaction, CounterpartyChannelTransactionParameters};
3202         use ln::script::ShutdownScript;
3203         use util::test_utils::{TestLogger, TestBroadcaster, TestFeeEstimator};
3204         use bitcoin::secp256k1::key::{SecretKey,PublicKey};
3205         use bitcoin::secp256k1::Secp256k1;
3206         use sync::{Arc, Mutex};
3207         use chain::keysinterface::InMemorySigner;
3208         use prelude::*;
3209
3210         #[test]
3211         fn test_prune_preimages() {
3212                 let secp_ctx = Secp256k1::new();
3213                 let logger = Arc::new(TestLogger::new());
3214                 let broadcaster = Arc::new(TestBroadcaster{txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new()))});
3215                 let fee_estimator = Arc::new(TestFeeEstimator { sat_per_kw: Mutex::new(253) });
3216
3217                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
3218                 let dummy_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
3219
3220                 let mut preimages = Vec::new();
3221                 {
3222                         for i in 0..20 {
3223                                 let preimage = PaymentPreimage([i; 32]);
3224                                 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
3225                                 preimages.push((preimage, hash));
3226                         }
3227                 }
3228
3229                 macro_rules! preimages_slice_to_htlc_outputs {
3230                         ($preimages_slice: expr) => {
3231                                 {
3232                                         let mut res = Vec::new();
3233                                         for (idx, preimage) in $preimages_slice.iter().enumerate() {
3234                                                 res.push((HTLCOutputInCommitment {
3235                                                         offered: true,
3236                                                         amount_msat: 0,
3237                                                         cltv_expiry: 0,
3238                                                         payment_hash: preimage.1.clone(),
3239                                                         transaction_output_index: Some(idx as u32),
3240                                                 }, None));
3241                                         }
3242                                         res
3243                                 }
3244                         }
3245                 }
3246                 macro_rules! preimages_to_holder_htlcs {
3247                         ($preimages_slice: expr) => {
3248                                 {
3249                                         let mut inp = preimages_slice_to_htlc_outputs!($preimages_slice);
3250                                         let res: Vec<_> = inp.drain(..).map(|e| { (e.0, None, e.1) }).collect();
3251                                         res
3252                                 }
3253                         }
3254                 }
3255
3256                 macro_rules! test_preimages_exist {
3257                         ($preimages_slice: expr, $monitor: expr) => {
3258                                 for preimage in $preimages_slice {
3259                                         assert!($monitor.inner.lock().unwrap().payment_preimages.contains_key(&preimage.1));
3260                                 }
3261                         }
3262                 }
3263
3264                 let keys = InMemorySigner::new(
3265                         &secp_ctx,
3266                         SecretKey::from_slice(&[41; 32]).unwrap(),
3267                         SecretKey::from_slice(&[41; 32]).unwrap(),
3268                         SecretKey::from_slice(&[41; 32]).unwrap(),
3269                         SecretKey::from_slice(&[41; 32]).unwrap(),
3270                         SecretKey::from_slice(&[41; 32]).unwrap(),
3271                         [41; 32],
3272                         0,
3273                         [0; 32]
3274                 );
3275
3276                 let counterparty_pubkeys = ChannelPublicKeys {
3277                         funding_pubkey: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
3278                         revocation_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap()),
3279                         payment_point: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[46; 32]).unwrap()),
3280                         delayed_payment_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[47; 32]).unwrap()),
3281                         htlc_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[48; 32]).unwrap())
3282                 };
3283                 let funding_outpoint = OutPoint { txid: Default::default(), index: u16::max_value() };
3284                 let channel_parameters = ChannelTransactionParameters {
3285                         holder_pubkeys: keys.holder_channel_pubkeys.clone(),
3286                         holder_selected_contest_delay: 66,
3287                         is_outbound_from_holder: true,
3288                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters {
3289                                 pubkeys: counterparty_pubkeys,
3290                                 selected_contest_delay: 67,
3291                         }),
3292                         funding_outpoint: Some(funding_outpoint),
3293                 };
3294                 // Prune with one old state and a holder commitment tx holding a few overlaps with the
3295                 // old state.
3296                 let shutdown_pubkey = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
3297                 let best_block = BestBlock::from_genesis(Network::Testnet);
3298                 let monitor = ChannelMonitor::new(Secp256k1::new(), keys,
3299                                                   Some(ShutdownScript::new_p2wpkh_from_pubkey(shutdown_pubkey).into_inner()), 0, &Script::new(),
3300                                                   (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, Script::new()),
3301                                                   &channel_parameters,
3302                                                   Script::new(), 46, 0,
3303                                                   HolderCommitmentTransaction::dummy(), best_block);
3304
3305                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..10])).unwrap();
3306                 let dummy_txid = dummy_tx.txid();
3307                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
3308                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
3309                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
3310                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
3311                 for &(ref preimage, ref hash) in preimages.iter() {
3312                         monitor.provide_payment_preimage(hash, preimage, &broadcaster, &fee_estimator, &logger);
3313                 }
3314
3315                 // Now provide a secret, pruning preimages 10-15
3316                 let mut secret = [0; 32];
3317                 secret[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
3318                 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
3319                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 15);
3320                 test_preimages_exist!(&preimages[0..10], monitor);
3321                 test_preimages_exist!(&preimages[15..20], monitor);
3322
3323                 // Now provide a further secret, pruning preimages 15-17
3324                 secret[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
3325                 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
3326                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 13);
3327                 test_preimages_exist!(&preimages[0..10], monitor);
3328                 test_preimages_exist!(&preimages[17..20], monitor);
3329
3330                 // Now update holder commitment tx info, pruning only element 18 as we still care about the
3331                 // previous commitment tx's preimages too
3332                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..5])).unwrap();
3333                 secret[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
3334                 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
3335                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 12);
3336                 test_preimages_exist!(&preimages[0..10], monitor);
3337                 test_preimages_exist!(&preimages[18..20], monitor);
3338
3339                 // But if we do it again, we'll prune 5-10
3340                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..3])).unwrap();
3341                 secret[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
3342                 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
3343                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 5);
3344                 test_preimages_exist!(&preimages[0..5], monitor);
3345         }
3346
3347         #[test]
3348         fn test_claim_txn_weight_computation() {
3349                 // We test Claim txn weight, knowing that we want expected weigth and
3350                 // not actual case to avoid sigs and time-lock delays hell variances.
3351
3352                 let secp_ctx = Secp256k1::new();
3353                 let privkey = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
3354                 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
3355                 let mut sum_actual_sigs = 0;
3356
3357                 macro_rules! sign_input {
3358                         ($sighash_parts: expr, $idx: expr, $amount: expr, $weight: expr, $sum_actual_sigs: expr) => {
3359                                 let htlc = HTLCOutputInCommitment {
3360                                         offered: if *$weight == WEIGHT_REVOKED_OFFERED_HTLC || *$weight == WEIGHT_OFFERED_HTLC { true } else { false },
3361                                         amount_msat: 0,
3362                                         cltv_expiry: 2 << 16,
3363                                         payment_hash: PaymentHash([1; 32]),
3364                                         transaction_output_index: Some($idx as u32),
3365                                 };
3366                                 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, &pubkey, &pubkey, &pubkey) };
3367                                 let sighash = hash_to_message!(&$sighash_parts.signature_hash($idx, &redeem_script, $amount, SigHashType::All)[..]);
3368                                 let sig = secp_ctx.sign(&sighash, &privkey);
3369                                 $sighash_parts.access_witness($idx).push(sig.serialize_der().to_vec());
3370                                 $sighash_parts.access_witness($idx)[0].push(SigHashType::All as u8);
3371                                 sum_actual_sigs += $sighash_parts.access_witness($idx)[0].len();
3372                                 if *$weight == WEIGHT_REVOKED_OUTPUT {
3373                                         $sighash_parts.access_witness($idx).push(vec!(1));
3374                                 } else if *$weight == WEIGHT_REVOKED_OFFERED_HTLC || *$weight == WEIGHT_REVOKED_RECEIVED_HTLC {
3375                                         $sighash_parts.access_witness($idx).push(pubkey.clone().serialize().to_vec());
3376                                 } else if *$weight == WEIGHT_RECEIVED_HTLC {
3377                                         $sighash_parts.access_witness($idx).push(vec![0]);
3378                                 } else {
3379                                         $sighash_parts.access_witness($idx).push(PaymentPreimage([1; 32]).0.to_vec());
3380                                 }
3381                                 $sighash_parts.access_witness($idx).push(redeem_script.into_bytes());
3382                                 println!("witness[0] {}", $sighash_parts.access_witness($idx)[0].len());
3383                                 println!("witness[1] {}", $sighash_parts.access_witness($idx)[1].len());
3384                                 println!("witness[2] {}", $sighash_parts.access_witness($idx)[2].len());
3385                         }
3386                 }
3387
3388                 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
3389                 let txid = Txid::from_hex("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
3390
3391                 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
3392                 let mut claim_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
3393                 for i in 0..4 {
3394                         claim_tx.input.push(TxIn {
3395                                 previous_output: BitcoinOutPoint {
3396                                         txid,
3397                                         vout: i,
3398                                 },
3399                                 script_sig: Script::new(),
3400                                 sequence: 0xfffffffd,
3401                                 witness: Vec::new(),
3402                         });
3403                 }
3404                 claim_tx.output.push(TxOut {
3405                         script_pubkey: script_pubkey.clone(),
3406                         value: 0,
3407                 });
3408                 let base_weight = claim_tx.get_weight();
3409                 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_RECEIVED_HTLC];
3410                 let mut inputs_total_weight = 2; // count segwit flags
3411                 {
3412                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3413                         for (idx, inp) in inputs_weight.iter().enumerate() {
3414                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3415                                 inputs_total_weight += inp;
3416                         }
3417                 }
3418                 assert_eq!(base_weight + inputs_total_weight as usize,  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
3419
3420                 // Claim tx with 1 offered HTLCs, 3 received HTLCs
3421                 claim_tx.input.clear();
3422                 sum_actual_sigs = 0;
3423                 for i in 0..4 {
3424                         claim_tx.input.push(TxIn {
3425                                 previous_output: BitcoinOutPoint {
3426                                         txid,
3427                                         vout: i,
3428                                 },
3429                                 script_sig: Script::new(),
3430                                 sequence: 0xfffffffd,
3431                                 witness: Vec::new(),
3432                         });
3433                 }
3434                 let base_weight = claim_tx.get_weight();
3435                 let inputs_weight = vec![WEIGHT_OFFERED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_RECEIVED_HTLC];
3436                 let mut inputs_total_weight = 2; // count segwit flags
3437                 {
3438                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3439                         for (idx, inp) in inputs_weight.iter().enumerate() {
3440                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3441                                 inputs_total_weight += inp;
3442                         }
3443                 }
3444                 assert_eq!(base_weight + inputs_total_weight as usize,  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
3445
3446                 // Justice tx with 1 revoked HTLC-Success tx output
3447                 claim_tx.input.clear();
3448                 sum_actual_sigs = 0;
3449                 claim_tx.input.push(TxIn {
3450                         previous_output: BitcoinOutPoint {
3451                                 txid,
3452                                 vout: 0,
3453                         },
3454                         script_sig: Script::new(),
3455                         sequence: 0xfffffffd,
3456                         witness: Vec::new(),
3457                 });
3458                 let base_weight = claim_tx.get_weight();
3459                 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT];
3460                 let mut inputs_total_weight = 2; // count segwit flags
3461                 {
3462                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3463                         for (idx, inp) in inputs_weight.iter().enumerate() {
3464                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3465                                 inputs_total_weight += inp;
3466                         }
3467                 }
3468                 assert_eq!(base_weight + inputs_total_weight as usize, claim_tx.get_weight() + /* max_length_isg */ (73 * inputs_weight.len() - sum_actual_sigs));
3469         }
3470
3471         // Further testing is done in the ChannelManager integration tests.
3472 }