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