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