Add transaction index in watched_outputs
[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 //! [`chain::Watch`]: ../trait.Watch.html
24
25 use bitcoin::blockdata::block::BlockHeader;
26 use bitcoin::blockdata::transaction::{TxOut,Transaction};
27 use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
28 use bitcoin::blockdata::script::{Script, Builder};
29 use bitcoin::blockdata::opcodes;
30 use bitcoin::consensus::encode;
31
32 use bitcoin::hashes::Hash;
33 use bitcoin::hashes::sha256::Hash as Sha256;
34 use bitcoin::hash_types::{Txid, BlockHash, WPubkeyHash};
35
36 use bitcoin::secp256k1::{Secp256k1,Signature};
37 use bitcoin::secp256k1::key::{SecretKey,PublicKey};
38 use bitcoin::secp256k1;
39
40 use ln::msgs::DecodeError;
41 use ln::chan_utils;
42 use ln::chan_utils::{CounterpartyCommitmentSecrets, HTLCOutputInCommitment, HolderCommitmentTransaction, HTLCType};
43 use ln::channelmanager::{HTLCSource, PaymentPreimage, PaymentHash};
44 use ln::onchaintx::{OnchainTxHandler, InputDescriptors};
45 use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
46 use chain::transaction::{OutPoint, TransactionData};
47 use chain::keysinterface::{SpendableOutputDescriptor, ChannelKeys};
48 use util::logger::Logger;
49 use util::ser::{Readable, MaybeReadable, Writer, Writeable, U48};
50 use util::byte_utils;
51 use util::events::Event;
52
53 use std::collections::{HashMap, HashSet, hash_map};
54 use std::{cmp, mem};
55 use std::ops::Deref;
56 use std::io::Error;
57
58 /// An update generated by the underlying Channel itself which contains some new information the
59 /// ChannelMonitor should be made aware of.
60 #[cfg_attr(test, derive(PartialEq))]
61 #[derive(Clone)]
62 #[must_use]
63 pub struct ChannelMonitorUpdate {
64         pub(crate) updates: Vec<ChannelMonitorUpdateStep>,
65         /// The sequence number of this update. Updates *must* be replayed in-order according to this
66         /// sequence number (and updates may panic if they are not). The update_id values are strictly
67         /// increasing and increase by one for each new update.
68         ///
69         /// This sequence number is also used to track up to which points updates which returned
70         /// ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
71         /// ChannelMonitor when ChannelManager::channel_monitor_updated is called.
72         pub update_id: u64,
73 }
74
75 impl Writeable for ChannelMonitorUpdate {
76         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
77                 self.update_id.write(w)?;
78                 (self.updates.len() as u64).write(w)?;
79                 for update_step in self.updates.iter() {
80                         update_step.write(w)?;
81                 }
82                 Ok(())
83         }
84 }
85 impl Readable for ChannelMonitorUpdate {
86         fn read<R: ::std::io::Read>(r: &mut R) -> Result<Self, DecodeError> {
87                 let update_id: u64 = Readable::read(r)?;
88                 let len: u64 = Readable::read(r)?;
89                 let mut updates = Vec::with_capacity(cmp::min(len as usize, MAX_ALLOC_SIZE / ::std::mem::size_of::<ChannelMonitorUpdateStep>()));
90                 for _ in 0..len {
91                         updates.push(Readable::read(r)?);
92                 }
93                 Ok(Self { update_id, updates })
94         }
95 }
96
97 /// An error enum representing a failure to persist a channel monitor update.
98 #[derive(Clone)]
99 pub enum ChannelMonitorUpdateErr {
100         /// Used to indicate a temporary failure (eg connection to a watchtower or remote backup of
101         /// our state failed, but is expected to succeed at some point in the future).
102         ///
103         /// Such a failure will "freeze" a channel, preventing us from revoking old states or
104         /// submitting new commitment transactions to the counterparty. Once the update(s) which failed
105         /// have been successfully applied, ChannelManager::channel_monitor_updated can be used to
106         /// restore the channel to an operational state.
107         ///
108         /// Note that a given ChannelManager will *never* re-generate a given ChannelMonitorUpdate. If
109         /// you return a TemporaryFailure you must ensure that it is written to disk safely before
110         /// writing out the latest ChannelManager state.
111         ///
112         /// Even when a channel has been "frozen" updates to the ChannelMonitor can continue to occur
113         /// (eg if an inbound HTLC which we forwarded was claimed upstream resulting in us attempting
114         /// to claim it on this channel) and those updates must be applied wherever they can be. At
115         /// least one such updated ChannelMonitor must be persisted otherwise PermanentFailure should
116         /// be returned to get things on-chain ASAP using only the in-memory copy. Obviously updates to
117         /// the channel which would invalidate previous ChannelMonitors are not made when a channel has
118         /// been "frozen".
119         ///
120         /// Note that even if updates made after TemporaryFailure succeed you must still call
121         /// channel_monitor_updated to ensure you have the latest monitor and re-enable normal channel
122         /// operation.
123         ///
124         /// Note that the update being processed here will not be replayed for you when you call
125         /// ChannelManager::channel_monitor_updated, so you must store the update itself along
126         /// with the persisted ChannelMonitor on your own local disk prior to returning a
127         /// TemporaryFailure. You may, of course, employ a journaling approach, storing only the
128         /// ChannelMonitorUpdate on disk without updating the monitor itself, replaying the journal at
129         /// reload-time.
130         ///
131         /// For deployments where a copy of ChannelMonitors and other local state are backed up in a
132         /// remote location (with local copies persisted immediately), it is anticipated that all
133         /// updates will return TemporaryFailure until the remote copies could be updated.
134         TemporaryFailure,
135         /// Used to indicate no further channel monitor updates will be allowed (eg we've moved on to a
136         /// different watchtower and cannot update with all watchtowers that were previously informed
137         /// of this channel).
138         ///
139         /// At reception of this error, ChannelManager will force-close the channel and return at
140         /// least a final ChannelMonitorUpdate::ChannelForceClosed which must be delivered to at
141         /// least one ChannelMonitor copy. Revocation secret MUST NOT be released and offchain channel
142         /// update must be rejected.
143         ///
144         /// This failure may also signal a failure to update the local persisted copy of one of
145         /// the channel monitor instance.
146         ///
147         /// Note that even when you fail a holder commitment transaction update, you must store the
148         /// update to ensure you can claim from it in case of a duplicate copy of this ChannelMonitor
149         /// broadcasts it (e.g distributed channel-monitor deployment)
150         ///
151         /// In case of distributed watchtowers deployment, the new version must be written to disk, as
152         /// state may have been stored but rejected due to a block forcing a commitment broadcast. This
153         /// storage is used to claim outputs of rejected state confirmed onchain by another watchtower,
154         /// lagging behind on block processing.
155         PermanentFailure,
156 }
157
158 /// General Err type for ChannelMonitor actions. Generally, this implies that the data provided is
159 /// inconsistent with the ChannelMonitor being called. eg for ChannelMonitor::update_monitor this
160 /// means you tried to update a monitor for a different channel or the ChannelMonitorUpdate was
161 /// corrupted.
162 /// Contains a human-readable error message.
163 #[derive(Debug)]
164 pub struct MonitorUpdateError(pub &'static str);
165
166 /// An event to be processed by the ChannelManager.
167 #[derive(PartialEq)]
168 pub enum MonitorEvent {
169         /// A monitor event containing an HTLCUpdate.
170         HTLCEvent(HTLCUpdate),
171
172         /// A monitor event that the Channel's commitment transaction was broadcasted.
173         CommitmentTxBroadcasted(OutPoint),
174 }
175
176 /// Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
177 /// chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
178 /// preimage claim backward will lead to loss of funds.
179 ///
180 /// [`chain::Watch`]: ../trait.Watch.html
181 #[derive(Clone, PartialEq)]
182 pub struct HTLCUpdate {
183         pub(crate) payment_hash: PaymentHash,
184         pub(crate) payment_preimage: Option<PaymentPreimage>,
185         pub(crate) source: HTLCSource
186 }
187 impl_writeable!(HTLCUpdate, 0, { payment_hash, payment_preimage, source });
188
189 /// If an HTLC expires within this many blocks, don't try to claim it in a shared transaction,
190 /// instead claiming it in its own individual transaction.
191 pub(crate) const CLTV_SHARED_CLAIM_BUFFER: u32 = 12;
192 /// If an HTLC expires within this many blocks, force-close the channel to broadcast the
193 /// HTLC-Success transaction.
194 /// In other words, this is an upper bound on how many blocks we think it can take us to get a
195 /// transaction confirmed (and we use it in a few more, equivalent, places).
196 pub(crate) const CLTV_CLAIM_BUFFER: u32 = 6;
197 /// Number of blocks by which point we expect our counterparty to have seen new blocks on the
198 /// network and done a full update_fail_htlc/commitment_signed dance (+ we've updated all our
199 /// copies of ChannelMonitors, including watchtowers). We could enforce the contract by failing
200 /// at CLTV expiration height but giving a grace period to our peer may be profitable for us if he
201 /// can provide an over-late preimage. Nevertheless, grace period has to be accounted in our
202 /// CLTV_EXPIRY_DELTA to be secure. Following this policy we may decrease the rate of channel failures
203 /// due to expiration but increase the cost of funds being locked longuer in case of failure.
204 /// This delay also cover a low-power peer being slow to process blocks and so being behind us on
205 /// accurate block height.
206 /// In case of onchain failure to be pass backward we may see the last block of ANTI_REORG_DELAY
207 /// with at worst this delay, so we are not only using this value as a mercy for them but also
208 /// us as a safeguard to delay with enough time.
209 pub(crate) const LATENCY_GRACE_PERIOD_BLOCKS: u32 = 3;
210 /// Number of blocks we wait on seeing a HTLC output being solved before we fail corresponding inbound
211 /// HTLCs. This prevents us from failing backwards and then getting a reorg resulting in us losing money.
212 /// We use also this delay to be sure we can remove our in-flight claim txn from bump candidates buffer.
213 /// It may cause spurrious generation of bumped claim txn but that's allright given the outpoint is already
214 /// solved by a previous claim tx. What we want to avoid is reorg evicting our claim tx and us not
215 /// keeping bumping another claim tx to solve the outpoint.
216 pub(crate) const ANTI_REORG_DELAY: u32 = 6;
217 /// Number of blocks before confirmation at which we fail back an un-relayed HTLC or at which we
218 /// refuse to accept a new HTLC.
219 ///
220 /// This is used for a few separate purposes:
221 /// 1) if we've received an MPP HTLC to us and it expires within this many blocks and we are
222 ///    waiting on additional parts (or waiting on the preimage for any HTLC from the user), we will
223 ///    fail this HTLC,
224 /// 2) if we receive an HTLC within this many blocks of its expiry (plus one to avoid a race
225 ///    condition with the above), we will fail this HTLC without telling the user we received it,
226 /// 3) if we are waiting on a connection or a channel state update to send an HTLC to a peer, and
227 ///    that HTLC expires within this many blocks, we will simply fail the HTLC instead.
228 ///
229 /// (1) is all about protecting us - we need enough time to update the channel state before we hit
230 /// CLTV_CLAIM_BUFFER, at which point we'd go on chain to claim the HTLC with the preimage.
231 ///
232 /// (2) is the same, but with an additional buffer to avoid accepting an HTLC which is immediately
233 /// in a race condition between the user connecting a block (which would fail it) and the user
234 /// providing us the preimage (which would claim it).
235 ///
236 /// (3) is about our counterparty - we don't want to relay an HTLC to a counterparty when they may
237 /// end up force-closing the channel on us to claim it.
238 pub(crate) const HTLC_FAIL_BACK_BUFFER: u32 = CLTV_CLAIM_BUFFER + LATENCY_GRACE_PERIOD_BLOCKS;
239
240 #[derive(Clone, PartialEq)]
241 struct HolderSignedTx {
242         /// txid of the transaction in tx, just used to make comparison faster
243         txid: Txid,
244         revocation_key: PublicKey,
245         a_htlc_key: PublicKey,
246         b_htlc_key: PublicKey,
247         delayed_payment_key: PublicKey,
248         per_commitment_point: PublicKey,
249         feerate_per_kw: u32,
250         htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
251 }
252
253 /// We use this to track counterparty commitment transactions and htlcs outputs and
254 /// use it to generate any justice or 2nd-stage preimage/timeout transactions.
255 #[derive(PartialEq)]
256 struct CounterpartyCommitmentTransaction {
257         counterparty_delayed_payment_base_key: PublicKey,
258         counterparty_htlc_base_key: PublicKey,
259         on_counterparty_tx_csv: u16,
260         per_htlc: HashMap<Txid, Vec<HTLCOutputInCommitment>>
261 }
262
263 impl Writeable for CounterpartyCommitmentTransaction {
264         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
265                 self.counterparty_delayed_payment_base_key.write(w)?;
266                 self.counterparty_htlc_base_key.write(w)?;
267                 w.write_all(&byte_utils::be16_to_array(self.on_counterparty_tx_csv))?;
268                 w.write_all(&byte_utils::be64_to_array(self.per_htlc.len() as u64))?;
269                 for (ref txid, ref htlcs) in self.per_htlc.iter() {
270                         w.write_all(&txid[..])?;
271                         w.write_all(&byte_utils::be64_to_array(htlcs.len() as u64))?;
272                         for &ref htlc in htlcs.iter() {
273                                 htlc.write(w)?;
274                         }
275                 }
276                 Ok(())
277         }
278 }
279 impl Readable for CounterpartyCommitmentTransaction {
280         fn read<R: ::std::io::Read>(r: &mut R) -> Result<Self, DecodeError> {
281                 let counterparty_commitment_transaction = {
282                         let counterparty_delayed_payment_base_key = Readable::read(r)?;
283                         let counterparty_htlc_base_key = Readable::read(r)?;
284                         let on_counterparty_tx_csv: u16 = Readable::read(r)?;
285                         let per_htlc_len: u64 = Readable::read(r)?;
286                         let mut per_htlc = HashMap::with_capacity(cmp::min(per_htlc_len as usize, MAX_ALLOC_SIZE / 64));
287                         for _  in 0..per_htlc_len {
288                                 let txid: Txid = Readable::read(r)?;
289                                 let htlcs_count: u64 = Readable::read(r)?;
290                                 let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
291                                 for _ in 0..htlcs_count {
292                                         let htlc = Readable::read(r)?;
293                                         htlcs.push(htlc);
294                                 }
295                                 if let Some(_) = per_htlc.insert(txid, htlcs) {
296                                         return Err(DecodeError::InvalidValue);
297                                 }
298                         }
299                         CounterpartyCommitmentTransaction {
300                                 counterparty_delayed_payment_base_key,
301                                 counterparty_htlc_base_key,
302                                 on_counterparty_tx_csv,
303                                 per_htlc,
304                         }
305                 };
306                 Ok(counterparty_commitment_transaction)
307         }
308 }
309
310 /// When ChannelMonitor discovers an onchain outpoint being a step of a channel and that it needs
311 /// to generate a tx to push channel state forward, we cache outpoint-solving tx material to build
312 /// a new bumped one in case of lenghty confirmation delay
313 #[derive(Clone, PartialEq)]
314 pub(crate) enum InputMaterial {
315         Revoked {
316                 per_commitment_point: PublicKey,
317                 counterparty_delayed_payment_base_key: PublicKey,
318                 counterparty_htlc_base_key: PublicKey,
319                 per_commitment_key: SecretKey,
320                 input_descriptor: InputDescriptors,
321                 amount: u64,
322                 htlc: Option<HTLCOutputInCommitment>,
323                 on_counterparty_tx_csv: u16,
324         },
325         CounterpartyHTLC {
326                 per_commitment_point: PublicKey,
327                 counterparty_delayed_payment_base_key: PublicKey,
328                 counterparty_htlc_base_key: PublicKey,
329                 preimage: Option<PaymentPreimage>,
330                 htlc: HTLCOutputInCommitment
331         },
332         HolderHTLC {
333                 preimage: Option<PaymentPreimage>,
334                 amount: u64,
335         },
336         Funding {
337                 funding_redeemscript: Script,
338         }
339 }
340
341 impl Writeable for InputMaterial  {
342         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
343                 match self {
344                         &InputMaterial::Revoked { ref per_commitment_point, ref counterparty_delayed_payment_base_key, ref counterparty_htlc_base_key, ref per_commitment_key, ref input_descriptor, ref amount, ref htlc, ref on_counterparty_tx_csv} => {
345                                 writer.write_all(&[0; 1])?;
346                                 per_commitment_point.write(writer)?;
347                                 counterparty_delayed_payment_base_key.write(writer)?;
348                                 counterparty_htlc_base_key.write(writer)?;
349                                 writer.write_all(&per_commitment_key[..])?;
350                                 input_descriptor.write(writer)?;
351                                 writer.write_all(&byte_utils::be64_to_array(*amount))?;
352                                 htlc.write(writer)?;
353                                 on_counterparty_tx_csv.write(writer)?;
354                         },
355                         &InputMaterial::CounterpartyHTLC { ref per_commitment_point, ref counterparty_delayed_payment_base_key, ref counterparty_htlc_base_key, ref preimage, ref htlc} => {
356                                 writer.write_all(&[1; 1])?;
357                                 per_commitment_point.write(writer)?;
358                                 counterparty_delayed_payment_base_key.write(writer)?;
359                                 counterparty_htlc_base_key.write(writer)?;
360                                 preimage.write(writer)?;
361                                 htlc.write(writer)?;
362                         },
363                         &InputMaterial::HolderHTLC { ref preimage, ref amount } => {
364                                 writer.write_all(&[2; 1])?;
365                                 preimage.write(writer)?;
366                                 writer.write_all(&byte_utils::be64_to_array(*amount))?;
367                         },
368                         &InputMaterial::Funding { ref funding_redeemscript } => {
369                                 writer.write_all(&[3; 1])?;
370                                 funding_redeemscript.write(writer)?;
371                         }
372                 }
373                 Ok(())
374         }
375 }
376
377 impl Readable for InputMaterial {
378         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
379                 let input_material = match <u8 as Readable>::read(reader)? {
380                         0 => {
381                                 let per_commitment_point = Readable::read(reader)?;
382                                 let counterparty_delayed_payment_base_key = Readable::read(reader)?;
383                                 let counterparty_htlc_base_key = Readable::read(reader)?;
384                                 let per_commitment_key = Readable::read(reader)?;
385                                 let input_descriptor = Readable::read(reader)?;
386                                 let amount = Readable::read(reader)?;
387                                 let htlc = Readable::read(reader)?;
388                                 let on_counterparty_tx_csv = Readable::read(reader)?;
389                                 InputMaterial::Revoked {
390                                         per_commitment_point,
391                                         counterparty_delayed_payment_base_key,
392                                         counterparty_htlc_base_key,
393                                         per_commitment_key,
394                                         input_descriptor,
395                                         amount,
396                                         htlc,
397                                         on_counterparty_tx_csv
398                                 }
399                         },
400                         1 => {
401                                 let per_commitment_point = Readable::read(reader)?;
402                                 let counterparty_delayed_payment_base_key = Readable::read(reader)?;
403                                 let counterparty_htlc_base_key = Readable::read(reader)?;
404                                 let preimage = Readable::read(reader)?;
405                                 let htlc = Readable::read(reader)?;
406                                 InputMaterial::CounterpartyHTLC {
407                                         per_commitment_point,
408                                         counterparty_delayed_payment_base_key,
409                                         counterparty_htlc_base_key,
410                                         preimage,
411                                         htlc
412                                 }
413                         },
414                         2 => {
415                                 let preimage = Readable::read(reader)?;
416                                 let amount = Readable::read(reader)?;
417                                 InputMaterial::HolderHTLC {
418                                         preimage,
419                                         amount,
420                                 }
421                         },
422                         3 => {
423                                 InputMaterial::Funding {
424                                         funding_redeemscript: Readable::read(reader)?,
425                                 }
426                         }
427                         _ => return Err(DecodeError::InvalidValue),
428                 };
429                 Ok(input_material)
430         }
431 }
432
433 /// ClaimRequest is a descriptor structure to communicate between detection
434 /// and reaction module. They are generated by ChannelMonitor while parsing
435 /// onchain txn leaked from a channel and handed over to OnchainTxHandler which
436 /// is responsible for opportunistic aggregation, selecting and enforcing
437 /// bumping logic, building and signing transactions.
438 pub(crate) struct ClaimRequest {
439         // Block height before which claiming is exclusive to one party,
440         // after reaching it, claiming may be contentious.
441         pub(crate) absolute_timelock: u32,
442         // Timeout tx must have nLocktime set which means aggregating multiple
443         // ones must take the higher nLocktime among them to satisfy all of them.
444         // Sadly it has few pitfalls, a) it takes longuer to get fund back b) CLTV_DELTA
445         // of a sooner-HTLC could be swallowed by the highest nLocktime of the HTLC set.
446         // Do simplify we mark them as non-aggregable.
447         pub(crate) aggregable: bool,
448         // Basic bitcoin outpoint (txid, vout)
449         pub(crate) outpoint: BitcoinOutPoint,
450         // Following outpoint type, set of data needed to generate transaction digest
451         // and satisfy witness program.
452         pub(crate) witness_data: InputMaterial
453 }
454
455 /// Upon discovering of some classes of onchain tx by ChannelMonitor, we may have to take actions on it
456 /// once they mature to enough confirmations (ANTI_REORG_DELAY)
457 #[derive(Clone, PartialEq)]
458 enum OnchainEvent {
459         /// HTLC output getting solved by a timeout, at maturation we pass upstream payment source information to solve
460         /// inbound HTLC in backward channel. Note, in case of preimage, we pass info to upstream without delay as we can
461         /// only win from it, so it's never an OnchainEvent
462         HTLCUpdate {
463                 htlc_update: (HTLCSource, PaymentHash),
464         },
465         MaturingOutput {
466                 descriptor: SpendableOutputDescriptor,
467         },
468 }
469
470 const SERIALIZATION_VERSION: u8 = 1;
471 const MIN_SERIALIZATION_VERSION: u8 = 1;
472
473 #[cfg_attr(test, derive(PartialEq))]
474 #[derive(Clone)]
475 pub(crate) enum ChannelMonitorUpdateStep {
476         LatestHolderCommitmentTXInfo {
477                 commitment_tx: HolderCommitmentTransaction,
478                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
479         },
480         LatestCounterpartyCommitmentTXInfo {
481                 unsigned_commitment_tx: Transaction, // TODO: We should actually only need the txid here
482                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
483                 commitment_number: u64,
484                 their_revocation_point: PublicKey,
485         },
486         PaymentPreimage {
487                 payment_preimage: PaymentPreimage,
488         },
489         CommitmentSecret {
490                 idx: u64,
491                 secret: [u8; 32],
492         },
493         /// Used to indicate that the no future updates will occur, and likely that the latest holder
494         /// commitment transaction(s) should be broadcast, as the channel has been force-closed.
495         ChannelForceClosed {
496                 /// If set to false, we shouldn't broadcast the latest holder commitment transaction as we
497                 /// think we've fallen behind!
498                 should_broadcast: bool,
499         },
500 }
501
502 impl Writeable for ChannelMonitorUpdateStep {
503         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
504                 match self {
505                         &ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { ref commitment_tx, ref htlc_outputs } => {
506                                 0u8.write(w)?;
507                                 commitment_tx.write(w)?;
508                                 (htlc_outputs.len() as u64).write(w)?;
509                                 for &(ref output, ref signature, ref source) in htlc_outputs.iter() {
510                                         output.write(w)?;
511                                         signature.write(w)?;
512                                         source.write(w)?;
513                                 }
514                         }
515                         &ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { ref unsigned_commitment_tx, ref htlc_outputs, ref commitment_number, ref their_revocation_point } => {
516                                 1u8.write(w)?;
517                                 unsigned_commitment_tx.write(w)?;
518                                 commitment_number.write(w)?;
519                                 their_revocation_point.write(w)?;
520                                 (htlc_outputs.len() as u64).write(w)?;
521                                 for &(ref output, ref source) in htlc_outputs.iter() {
522                                         output.write(w)?;
523                                         source.as_ref().map(|b| b.as_ref()).write(w)?;
524                                 }
525                         },
526                         &ChannelMonitorUpdateStep::PaymentPreimage { ref payment_preimage } => {
527                                 2u8.write(w)?;
528                                 payment_preimage.write(w)?;
529                         },
530                         &ChannelMonitorUpdateStep::CommitmentSecret { ref idx, ref secret } => {
531                                 3u8.write(w)?;
532                                 idx.write(w)?;
533                                 secret.write(w)?;
534                         },
535                         &ChannelMonitorUpdateStep::ChannelForceClosed { ref should_broadcast } => {
536                                 4u8.write(w)?;
537                                 should_broadcast.write(w)?;
538                         },
539                 }
540                 Ok(())
541         }
542 }
543 impl Readable for ChannelMonitorUpdateStep {
544         fn read<R: ::std::io::Read>(r: &mut R) -> Result<Self, DecodeError> {
545                 match Readable::read(r)? {
546                         0u8 => {
547                                 Ok(ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo {
548                                         commitment_tx: Readable::read(r)?,
549                                         htlc_outputs: {
550                                                 let len: u64 = Readable::read(r)?;
551                                                 let mut res = Vec::new();
552                                                 for _ in 0..len {
553                                                         res.push((Readable::read(r)?, Readable::read(r)?, Readable::read(r)?));
554                                                 }
555                                                 res
556                                         },
557                                 })
558                         },
559                         1u8 => {
560                                 Ok(ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo {
561                                         unsigned_commitment_tx: Readable::read(r)?,
562                                         commitment_number: Readable::read(r)?,
563                                         their_revocation_point: Readable::read(r)?,
564                                         htlc_outputs: {
565                                                 let len: u64 = Readable::read(r)?;
566                                                 let mut res = Vec::new();
567                                                 for _ in 0..len {
568                                                         res.push((Readable::read(r)?, <Option<HTLCSource> as Readable>::read(r)?.map(|o| Box::new(o))));
569                                                 }
570                                                 res
571                                         },
572                                 })
573                         },
574                         2u8 => {
575                                 Ok(ChannelMonitorUpdateStep::PaymentPreimage {
576                                         payment_preimage: Readable::read(r)?,
577                                 })
578                         },
579                         3u8 => {
580                                 Ok(ChannelMonitorUpdateStep::CommitmentSecret {
581                                         idx: Readable::read(r)?,
582                                         secret: Readable::read(r)?,
583                                 })
584                         },
585                         4u8 => {
586                                 Ok(ChannelMonitorUpdateStep::ChannelForceClosed {
587                                         should_broadcast: Readable::read(r)?
588                                 })
589                         },
590                         _ => Err(DecodeError::InvalidValue),
591                 }
592         }
593 }
594
595 /// A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
596 /// on-chain transactions to ensure no loss of funds occurs.
597 ///
598 /// You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
599 /// information and are actively monitoring the chain.
600 ///
601 /// Pending Events or updated HTLCs which have not yet been read out by
602 /// get_and_clear_pending_monitor_events or get_and_clear_pending_events are serialized to disk and
603 /// reloaded at deserialize-time. Thus, you must ensure that, when handling events, all events
604 /// gotten are fully handled before re-serializing the new state.
605 pub struct ChannelMonitor<ChanSigner: ChannelKeys> {
606         latest_update_id: u64,
607         commitment_transaction_number_obscure_factor: u64,
608
609         destination_script: Script,
610         broadcasted_holder_revokable_script: Option<(Script, PublicKey, PublicKey)>,
611         counterparty_payment_script: Script,
612         shutdown_script: Script,
613
614         keys: ChanSigner,
615         funding_info: (OutPoint, Script),
616         current_counterparty_commitment_txid: Option<Txid>,
617         prev_counterparty_commitment_txid: Option<Txid>,
618
619         counterparty_tx_cache: CounterpartyCommitmentTransaction,
620         funding_redeemscript: Script,
621         channel_value_satoshis: u64,
622         // first is the idx of the first of the two revocation points
623         their_cur_revocation_points: Option<(u64, PublicKey, Option<PublicKey>)>,
624
625         on_holder_tx_csv: u16,
626
627         commitment_secrets: CounterpartyCommitmentSecrets,
628         counterparty_claimable_outpoints: HashMap<Txid, Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>,
629         /// We cannot identify HTLC-Success or HTLC-Timeout transactions by themselves on the chain.
630         /// Nor can we figure out their commitment numbers without the commitment transaction they are
631         /// spending. Thus, in order to claim them via revocation key, we track all the counterparty
632         /// commitment transactions which we find on-chain, mapping them to the commitment number which
633         /// can be used to derive the revocation key and claim the transactions.
634         counterparty_commitment_txn_on_chain: HashMap<Txid, u64>,
635         /// Cache used to make pruning of payment_preimages faster.
636         /// Maps payment_hash values to commitment numbers for counterparty transactions for non-revoked
637         /// counterparty transactions (ie should remain pretty small).
638         /// Serialized to disk but should generally not be sent to Watchtowers.
639         counterparty_hash_commitment_number: HashMap<PaymentHash, u64>,
640
641         // We store two holder commitment transactions to avoid any race conditions where we may update
642         // some monitors (potentially on watchtowers) but then fail to update others, resulting in the
643         // various monitors for one channel being out of sync, and us broadcasting a holder
644         // transaction for which we have deleted claim information on some watchtowers.
645         prev_holder_signed_commitment_tx: Option<HolderSignedTx>,
646         current_holder_commitment_tx: HolderSignedTx,
647
648         // Used just for ChannelManager to make sure it has the latest channel data during
649         // deserialization
650         current_counterparty_commitment_number: u64,
651         // Used just for ChannelManager to make sure it has the latest channel data during
652         // deserialization
653         current_holder_commitment_number: u64,
654
655         payment_preimages: HashMap<PaymentHash, PaymentPreimage>,
656
657         pending_monitor_events: Vec<MonitorEvent>,
658         pending_events: Vec<Event>,
659
660         // Used to track onchain events, i.e transactions parts of channels confirmed on chain, on which
661         // we have to take actions once they reach enough confs. Key is a block height timer, i.e we enforce
662         // actions when we receive a block with given height. Actions depend on OnchainEvent type.
663         onchain_events_waiting_threshold_conf: HashMap<u32, Vec<OnchainEvent>>,
664
665         // If we get serialized out and re-read, we need to make sure that the chain monitoring
666         // interface knows about the TXOs that we want to be notified of spends of. We could probably
667         // be smart and derive them from the above storage fields, but its much simpler and more
668         // Obviously Correct (tm) if we just keep track of them explicitly.
669         outputs_to_watch: HashMap<Txid, Vec<(u32, Script)>>,
670
671         #[cfg(test)]
672         pub onchain_tx_handler: OnchainTxHandler<ChanSigner>,
673         #[cfg(not(test))]
674         onchain_tx_handler: OnchainTxHandler<ChanSigner>,
675
676         // This is set when the Channel[Manager] generated a ChannelMonitorUpdate which indicated the
677         // channel has been force-closed. After this is set, no further holder commitment transaction
678         // updates may occur, and we panic!() if one is provided.
679         lockdown_from_offchain: bool,
680
681         // Set once we've signed a holder commitment transaction and handed it over to our
682         // OnchainTxHandler. After this is set, no future updates to our holder commitment transactions
683         // may occur, and we fail any such monitor updates.
684         //
685         // In case of update rejection due to a locally already signed commitment transaction, we
686         // nevertheless store update content to track in case of concurrent broadcast by another
687         // remote monitor out-of-order with regards to the block view.
688         holder_tx_signed: bool,
689
690         // We simply modify last_block_hash in Channel's block_connected so that serialization is
691         // consistent but hopefully the users' copy handles block_connected in a consistent way.
692         // (we do *not*, however, update them in update_monitor to ensure any local user copies keep
693         // their last_block_hash from its state and not based on updated copies that didn't run through
694         // the full block_connected).
695         last_block_hash: BlockHash,
696         secp_ctx: Secp256k1<secp256k1::All>, //TODO: dedup this a bit...
697 }
698
699 #[cfg(any(test, feature = "fuzztarget"))]
700 /// Used only in testing and fuzztarget to check serialization roundtrips don't change the
701 /// underlying object
702 impl<ChanSigner: ChannelKeys> PartialEq for ChannelMonitor<ChanSigner> {
703         fn eq(&self, other: &Self) -> bool {
704                 if self.latest_update_id != other.latest_update_id ||
705                         self.commitment_transaction_number_obscure_factor != other.commitment_transaction_number_obscure_factor ||
706                         self.destination_script != other.destination_script ||
707                         self.broadcasted_holder_revokable_script != other.broadcasted_holder_revokable_script ||
708                         self.counterparty_payment_script != other.counterparty_payment_script ||
709                         self.keys.pubkeys() != other.keys.pubkeys() ||
710                         self.funding_info != other.funding_info ||
711                         self.current_counterparty_commitment_txid != other.current_counterparty_commitment_txid ||
712                         self.prev_counterparty_commitment_txid != other.prev_counterparty_commitment_txid ||
713                         self.counterparty_tx_cache != other.counterparty_tx_cache ||
714                         self.funding_redeemscript != other.funding_redeemscript ||
715                         self.channel_value_satoshis != other.channel_value_satoshis ||
716                         self.their_cur_revocation_points != other.their_cur_revocation_points ||
717                         self.on_holder_tx_csv != other.on_holder_tx_csv ||
718                         self.commitment_secrets != other.commitment_secrets ||
719                         self.counterparty_claimable_outpoints != other.counterparty_claimable_outpoints ||
720                         self.counterparty_commitment_txn_on_chain != other.counterparty_commitment_txn_on_chain ||
721                         self.counterparty_hash_commitment_number != other.counterparty_hash_commitment_number ||
722                         self.prev_holder_signed_commitment_tx != other.prev_holder_signed_commitment_tx ||
723                         self.current_counterparty_commitment_number != other.current_counterparty_commitment_number ||
724                         self.current_holder_commitment_number != other.current_holder_commitment_number ||
725                         self.current_holder_commitment_tx != other.current_holder_commitment_tx ||
726                         self.payment_preimages != other.payment_preimages ||
727                         self.pending_monitor_events != other.pending_monitor_events ||
728                         self.pending_events.len() != other.pending_events.len() || // We trust events to round-trip properly
729                         self.onchain_events_waiting_threshold_conf != other.onchain_events_waiting_threshold_conf ||
730                         self.outputs_to_watch != other.outputs_to_watch ||
731                         self.lockdown_from_offchain != other.lockdown_from_offchain ||
732                         self.holder_tx_signed != other.holder_tx_signed
733                 {
734                         false
735                 } else {
736                         true
737                 }
738         }
739 }
740
741 impl<ChanSigner: ChannelKeys + Writeable> ChannelMonitor<ChanSigner> {
742         /// Writes this monitor into the given writer, suitable for writing to disk.
743         ///
744         /// Note that the deserializer is only implemented for (Sha256dHash, ChannelMonitor), which
745         /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
746         /// the "reorg path" (ie disconnecting blocks until you find a common ancestor from both the
747         /// returned block hash and the the current chain and then reconnecting blocks to get to the
748         /// best chain) upon deserializing the object!
749         pub fn write_for_disk<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
750                 //TODO: We still write out all the serialization here manually instead of using the fancy
751                 //serialization framework we have, we should migrate things over to it.
752                 writer.write_all(&[SERIALIZATION_VERSION; 1])?;
753                 writer.write_all(&[MIN_SERIALIZATION_VERSION; 1])?;
754
755                 self.latest_update_id.write(writer)?;
756
757                 // Set in initial Channel-object creation, so should always be set by now:
758                 U48(self.commitment_transaction_number_obscure_factor).write(writer)?;
759
760                 self.destination_script.write(writer)?;
761                 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
762                         writer.write_all(&[0; 1])?;
763                         broadcasted_holder_revokable_script.0.write(writer)?;
764                         broadcasted_holder_revokable_script.1.write(writer)?;
765                         broadcasted_holder_revokable_script.2.write(writer)?;
766                 } else {
767                         writer.write_all(&[1; 1])?;
768                 }
769
770                 self.counterparty_payment_script.write(writer)?;
771                 self.shutdown_script.write(writer)?;
772
773                 self.keys.write(writer)?;
774                 writer.write_all(&self.funding_info.0.txid[..])?;
775                 writer.write_all(&byte_utils::be16_to_array(self.funding_info.0.index))?;
776                 self.funding_info.1.write(writer)?;
777                 self.current_counterparty_commitment_txid.write(writer)?;
778                 self.prev_counterparty_commitment_txid.write(writer)?;
779
780                 self.counterparty_tx_cache.write(writer)?;
781                 self.funding_redeemscript.write(writer)?;
782                 self.channel_value_satoshis.write(writer)?;
783
784                 match self.their_cur_revocation_points {
785                         Some((idx, pubkey, second_option)) => {
786                                 writer.write_all(&byte_utils::be48_to_array(idx))?;
787                                 writer.write_all(&pubkey.serialize())?;
788                                 match second_option {
789                                         Some(second_pubkey) => {
790                                                 writer.write_all(&second_pubkey.serialize())?;
791                                         },
792                                         None => {
793                                                 writer.write_all(&[0; 33])?;
794                                         },
795                                 }
796                         },
797                         None => {
798                                 writer.write_all(&byte_utils::be48_to_array(0))?;
799                         },
800                 }
801
802                 writer.write_all(&byte_utils::be16_to_array(self.on_holder_tx_csv))?;
803
804                 self.commitment_secrets.write(writer)?;
805
806                 macro_rules! serialize_htlc_in_commitment {
807                         ($htlc_output: expr) => {
808                                 writer.write_all(&[$htlc_output.offered as u8; 1])?;
809                                 writer.write_all(&byte_utils::be64_to_array($htlc_output.amount_msat))?;
810                                 writer.write_all(&byte_utils::be32_to_array($htlc_output.cltv_expiry))?;
811                                 writer.write_all(&$htlc_output.payment_hash.0[..])?;
812                                 $htlc_output.transaction_output_index.write(writer)?;
813                         }
814                 }
815
816                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_claimable_outpoints.len() as u64))?;
817                 for (ref txid, ref htlc_infos) in self.counterparty_claimable_outpoints.iter() {
818                         writer.write_all(&txid[..])?;
819                         writer.write_all(&byte_utils::be64_to_array(htlc_infos.len() as u64))?;
820                         for &(ref htlc_output, ref htlc_source) in htlc_infos.iter() {
821                                 serialize_htlc_in_commitment!(htlc_output);
822                                 htlc_source.as_ref().map(|b| b.as_ref()).write(writer)?;
823                         }
824                 }
825
826                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_commitment_txn_on_chain.len() as u64))?;
827                 for (ref txid, commitment_number) in self.counterparty_commitment_txn_on_chain.iter() {
828                         writer.write_all(&txid[..])?;
829                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
830                 }
831
832                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_hash_commitment_number.len() as u64))?;
833                 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
834                         writer.write_all(&payment_hash.0[..])?;
835                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
836                 }
837
838                 macro_rules! serialize_holder_tx {
839                         ($holder_tx: expr) => {
840                                 $holder_tx.txid.write(writer)?;
841                                 writer.write_all(&$holder_tx.revocation_key.serialize())?;
842                                 writer.write_all(&$holder_tx.a_htlc_key.serialize())?;
843                                 writer.write_all(&$holder_tx.b_htlc_key.serialize())?;
844                                 writer.write_all(&$holder_tx.delayed_payment_key.serialize())?;
845                                 writer.write_all(&$holder_tx.per_commitment_point.serialize())?;
846
847                                 writer.write_all(&byte_utils::be32_to_array($holder_tx.feerate_per_kw))?;
848                                 writer.write_all(&byte_utils::be64_to_array($holder_tx.htlc_outputs.len() as u64))?;
849                                 for &(ref htlc_output, ref sig, ref htlc_source) in $holder_tx.htlc_outputs.iter() {
850                                         serialize_htlc_in_commitment!(htlc_output);
851                                         if let &Some(ref their_sig) = sig {
852                                                 1u8.write(writer)?;
853                                                 writer.write_all(&their_sig.serialize_compact())?;
854                                         } else {
855                                                 0u8.write(writer)?;
856                                         }
857                                         htlc_source.write(writer)?;
858                                 }
859                         }
860                 }
861
862                 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
863                         writer.write_all(&[1; 1])?;
864                         serialize_holder_tx!(prev_holder_tx);
865                 } else {
866                         writer.write_all(&[0; 1])?;
867                 }
868
869                 serialize_holder_tx!(self.current_holder_commitment_tx);
870
871                 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
872                 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
873
874                 writer.write_all(&byte_utils::be64_to_array(self.payment_preimages.len() as u64))?;
875                 for payment_preimage in self.payment_preimages.values() {
876                         writer.write_all(&payment_preimage.0[..])?;
877                 }
878
879                 writer.write_all(&byte_utils::be64_to_array(self.pending_monitor_events.len() as u64))?;
880                 for event in self.pending_monitor_events.iter() {
881                         match event {
882                                 MonitorEvent::HTLCEvent(upd) => {
883                                         0u8.write(writer)?;
884                                         upd.write(writer)?;
885                                 },
886                                 MonitorEvent::CommitmentTxBroadcasted(_) => 1u8.write(writer)?
887                         }
888                 }
889
890                 writer.write_all(&byte_utils::be64_to_array(self.pending_events.len() as u64))?;
891                 for event in self.pending_events.iter() {
892                         event.write(writer)?;
893                 }
894
895                 self.last_block_hash.write(writer)?;
896
897                 writer.write_all(&byte_utils::be64_to_array(self.onchain_events_waiting_threshold_conf.len() as u64))?;
898                 for (ref target, ref events) in self.onchain_events_waiting_threshold_conf.iter() {
899                         writer.write_all(&byte_utils::be32_to_array(**target))?;
900                         writer.write_all(&byte_utils::be64_to_array(events.len() as u64))?;
901                         for ev in events.iter() {
902                                 match *ev {
903                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
904                                                 0u8.write(writer)?;
905                                                 htlc_update.0.write(writer)?;
906                                                 htlc_update.1.write(writer)?;
907                                         },
908                                         OnchainEvent::MaturingOutput { ref descriptor } => {
909                                                 1u8.write(writer)?;
910                                                 descriptor.write(writer)?;
911                                         },
912                                 }
913                         }
914                 }
915
916                 (self.outputs_to_watch.len() as u64).write(writer)?;
917                 for (txid, idx_scripts) in self.outputs_to_watch.iter() {
918                         txid.write(writer)?;
919                         (idx_scripts.len() as u64).write(writer)?;
920                         for (idx, script) in idx_scripts.iter() {
921                                 idx.write(writer)?;
922                                 script.write(writer)?;
923                         }
924                 }
925                 self.onchain_tx_handler.write(writer)?;
926
927                 self.lockdown_from_offchain.write(writer)?;
928                 self.holder_tx_signed.write(writer)?;
929
930                 Ok(())
931         }
932 }
933
934 impl<ChanSigner: ChannelKeys> ChannelMonitor<ChanSigner> {
935         pub(crate) fn new(keys: ChanSigner, shutdown_pubkey: &PublicKey,
936                         on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, Script),
937                         counterparty_htlc_base_key: &PublicKey, counterparty_delayed_payment_base_key: &PublicKey,
938                         on_holder_tx_csv: u16, funding_redeemscript: Script, channel_value_satoshis: u64,
939                         commitment_transaction_number_obscure_factor: u64,
940                         initial_holder_commitment_tx: HolderCommitmentTransaction) -> ChannelMonitor<ChanSigner> {
941
942                 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
943                 let our_channel_close_key_hash = WPubkeyHash::hash(&shutdown_pubkey.serialize());
944                 let shutdown_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_close_key_hash[..]).into_script();
945                 let payment_key_hash = WPubkeyHash::hash(&keys.pubkeys().payment_point.serialize());
946                 let counterparty_payment_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_key_hash[..]).into_script();
947
948                 let counterparty_tx_cache = CounterpartyCommitmentTransaction { counterparty_delayed_payment_base_key: *counterparty_delayed_payment_base_key, counterparty_htlc_base_key: *counterparty_htlc_base_key, on_counterparty_tx_csv, per_htlc: HashMap::new() };
949
950                 let mut onchain_tx_handler = OnchainTxHandler::new(destination_script.clone(), keys.clone(), on_holder_tx_csv);
951
952                 let holder_tx_sequence = initial_holder_commitment_tx.unsigned_tx.input[0].sequence as u64;
953                 let holder_tx_locktime = initial_holder_commitment_tx.unsigned_tx.lock_time as u64;
954                 let holder_commitment_tx = HolderSignedTx {
955                         txid: initial_holder_commitment_tx.txid(),
956                         revocation_key: initial_holder_commitment_tx.keys.revocation_key,
957                         a_htlc_key: initial_holder_commitment_tx.keys.broadcaster_htlc_key,
958                         b_htlc_key: initial_holder_commitment_tx.keys.countersignatory_htlc_key,
959                         delayed_payment_key: initial_holder_commitment_tx.keys.broadcaster_delayed_payment_key,
960                         per_commitment_point: initial_holder_commitment_tx.keys.per_commitment_point,
961                         feerate_per_kw: initial_holder_commitment_tx.feerate_per_kw,
962                         htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
963                 };
964                 onchain_tx_handler.provide_latest_holder_tx(initial_holder_commitment_tx);
965
966                 let mut outputs_to_watch = HashMap::new();
967                 outputs_to_watch.insert(funding_info.0.txid, vec![(funding_info.0.index as u32, funding_info.1.clone())]);
968
969                 ChannelMonitor {
970                         latest_update_id: 0,
971                         commitment_transaction_number_obscure_factor,
972
973                         destination_script: destination_script.clone(),
974                         broadcasted_holder_revokable_script: None,
975                         counterparty_payment_script,
976                         shutdown_script,
977
978                         keys,
979                         funding_info,
980                         current_counterparty_commitment_txid: None,
981                         prev_counterparty_commitment_txid: None,
982
983                         counterparty_tx_cache,
984                         funding_redeemscript,
985                         channel_value_satoshis,
986                         their_cur_revocation_points: None,
987
988                         on_holder_tx_csv,
989
990                         commitment_secrets: CounterpartyCommitmentSecrets::new(),
991                         counterparty_claimable_outpoints: HashMap::new(),
992                         counterparty_commitment_txn_on_chain: HashMap::new(),
993                         counterparty_hash_commitment_number: HashMap::new(),
994
995                         prev_holder_signed_commitment_tx: None,
996                         current_holder_commitment_tx: holder_commitment_tx,
997                         current_counterparty_commitment_number: 1 << 48,
998                         current_holder_commitment_number: 0xffff_ffff_ffff - ((((holder_tx_sequence & 0xffffff) << 3*8) | (holder_tx_locktime as u64 & 0xffffff)) ^ commitment_transaction_number_obscure_factor),
999
1000                         payment_preimages: HashMap::new(),
1001                         pending_monitor_events: Vec::new(),
1002                         pending_events: Vec::new(),
1003
1004                         onchain_events_waiting_threshold_conf: HashMap::new(),
1005                         outputs_to_watch,
1006
1007                         onchain_tx_handler,
1008
1009                         lockdown_from_offchain: false,
1010                         holder_tx_signed: false,
1011
1012                         last_block_hash: Default::default(),
1013                         secp_ctx: Secp256k1::new(),
1014                 }
1015         }
1016
1017         /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
1018         /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
1019         /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
1020         fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
1021                 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
1022                         return Err(MonitorUpdateError("Previous secret did not match new one"));
1023                 }
1024
1025                 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
1026                 // events for now-revoked/fulfilled HTLCs.
1027                 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
1028                         for &mut (_, ref mut source) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
1029                                 *source = None;
1030                         }
1031                 }
1032
1033                 if !self.payment_preimages.is_empty() {
1034                         let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
1035                         let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
1036                         let min_idx = self.get_min_seen_secret();
1037                         let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
1038
1039                         self.payment_preimages.retain(|&k, _| {
1040                                 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
1041                                         if k == htlc.payment_hash {
1042                                                 return true
1043                                         }
1044                                 }
1045                                 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
1046                                         for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
1047                                                 if k == htlc.payment_hash {
1048                                                         return true
1049                                                 }
1050                                         }
1051                                 }
1052                                 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
1053                                         if *cn < min_idx {
1054                                                 return true
1055                                         }
1056                                         true
1057                                 } else { false };
1058                                 if contains {
1059                                         counterparty_hash_commitment_number.remove(&k);
1060                                 }
1061                                 false
1062                         });
1063                 }
1064
1065                 Ok(())
1066         }
1067
1068         /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
1069         /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
1070         /// possibly future revocation/preimage information) to claim outputs where possible.
1071         /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
1072         pub(crate) fn provide_latest_counterparty_commitment_tx_info<L: Deref>(&mut self, unsigned_commitment_tx: &Transaction, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>, commitment_number: u64, their_revocation_point: PublicKey, logger: &L) where L::Target: Logger {
1073                 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
1074                 // so that a remote monitor doesn't learn anything unless there is a malicious close.
1075                 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
1076                 // timeouts)
1077                 for &(ref htlc, _) in &htlc_outputs {
1078                         self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
1079                 }
1080
1081                 let new_txid = unsigned_commitment_tx.txid();
1082                 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", new_txid, commitment_number, htlc_outputs.len());
1083                 log_trace!(logger, "New potential counterparty commitment transaction: {}", encode::serialize_hex(unsigned_commitment_tx));
1084                 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
1085                 self.current_counterparty_commitment_txid = Some(new_txid);
1086                 self.counterparty_claimable_outpoints.insert(new_txid, htlc_outputs.clone());
1087                 self.current_counterparty_commitment_number = commitment_number;
1088                 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
1089                 match self.their_cur_revocation_points {
1090                         Some(old_points) => {
1091                                 if old_points.0 == commitment_number + 1 {
1092                                         self.their_cur_revocation_points = Some((old_points.0, old_points.1, Some(their_revocation_point)));
1093                                 } else if old_points.0 == commitment_number + 2 {
1094                                         if let Some(old_second_point) = old_points.2 {
1095                                                 self.their_cur_revocation_points = Some((old_points.0 - 1, old_second_point, Some(their_revocation_point)));
1096                                         } else {
1097                                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1098                                         }
1099                                 } else {
1100                                         self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1101                                 }
1102                         },
1103                         None => {
1104                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1105                         }
1106                 }
1107                 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
1108                 for htlc in htlc_outputs {
1109                         if htlc.0.transaction_output_index.is_some() {
1110                                 htlcs.push(htlc.0);
1111                         }
1112                 }
1113                 self.counterparty_tx_cache.per_htlc.insert(new_txid, htlcs);
1114         }
1115
1116         /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
1117         /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
1118         /// is important that any clones of this channel monitor (including remote clones) by kept
1119         /// up-to-date as our holder commitment transaction is updated.
1120         /// Panics if set_on_holder_tx_csv has never been called.
1121         fn provide_latest_holder_commitment_tx_info(&mut self, commitment_tx: HolderCommitmentTransaction, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>) -> Result<(), MonitorUpdateError> {
1122                 let txid = commitment_tx.txid();
1123                 let sequence = commitment_tx.unsigned_tx.input[0].sequence as u64;
1124                 let locktime = commitment_tx.unsigned_tx.lock_time as u64;
1125                 let mut new_holder_commitment_tx = HolderSignedTx {
1126                         txid,
1127                         revocation_key: commitment_tx.keys.revocation_key,
1128                         a_htlc_key: commitment_tx.keys.broadcaster_htlc_key,
1129                         b_htlc_key: commitment_tx.keys.countersignatory_htlc_key,
1130                         delayed_payment_key: commitment_tx.keys.broadcaster_delayed_payment_key,
1131                         per_commitment_point: commitment_tx.keys.per_commitment_point,
1132                         feerate_per_kw: commitment_tx.feerate_per_kw,
1133                         htlc_outputs,
1134                 };
1135                 self.onchain_tx_handler.provide_latest_holder_tx(commitment_tx);
1136                 self.current_holder_commitment_number = 0xffff_ffff_ffff - ((((sequence & 0xffffff) << 3*8) | (locktime as u64 & 0xffffff)) ^ self.commitment_transaction_number_obscure_factor);
1137                 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
1138                 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
1139                 if self.holder_tx_signed {
1140                         return Err(MonitorUpdateError("Latest holder commitment signed has already been signed, update is rejected"));
1141                 }
1142                 Ok(())
1143         }
1144
1145         /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
1146         /// commitment_tx_infos which contain the payment hash have been revoked.
1147         pub(crate) fn provide_payment_preimage(&mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage) {
1148                 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
1149         }
1150
1151         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(&mut self, broadcaster: &B, logger: &L)
1152                 where B::Target: BroadcasterInterface,
1153                                         L::Target: Logger,
1154         {
1155                 for tx in self.get_latest_holder_commitment_txn(logger).iter() {
1156                         broadcaster.broadcast_transaction(tx);
1157                 }
1158                 self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
1159         }
1160
1161         /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
1162         /// itself.
1163         ///
1164         /// panics if the given update is not the next update by update_id.
1165         pub fn update_monitor<B: Deref, L: Deref>(&mut self, mut updates: ChannelMonitorUpdate, broadcaster: &B, logger: &L) -> Result<(), MonitorUpdateError>
1166                 where B::Target: BroadcasterInterface,
1167                                         L::Target: Logger,
1168         {
1169                 if self.latest_update_id + 1 != updates.update_id {
1170                         panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
1171                 }
1172                 for update in updates.updates.drain(..) {
1173                         match update {
1174                                 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs } => {
1175                                         if self.lockdown_from_offchain { panic!(); }
1176                                         self.provide_latest_holder_commitment_tx_info(commitment_tx, htlc_outputs)?
1177                                 },
1178                                 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { unsigned_commitment_tx, htlc_outputs, commitment_number, their_revocation_point } =>
1179                                         self.provide_latest_counterparty_commitment_tx_info(&unsigned_commitment_tx, htlc_outputs, commitment_number, their_revocation_point, logger),
1180                                 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } =>
1181                                         self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()), &payment_preimage),
1182                                 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } =>
1183                                         self.provide_secret(idx, secret)?,
1184                                 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
1185                                         self.lockdown_from_offchain = true;
1186                                         if should_broadcast {
1187                                                 self.broadcast_latest_holder_commitment_txn(broadcaster, logger);
1188                                         } else {
1189                                                 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");
1190                                         }
1191                                 }
1192                         }
1193                 }
1194                 self.latest_update_id = updates.update_id;
1195                 Ok(())
1196         }
1197
1198         /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
1199         /// ChannelMonitor.
1200         pub fn get_latest_update_id(&self) -> u64 {
1201                 self.latest_update_id
1202         }
1203
1204         /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
1205         pub fn get_funding_txo(&self) -> &(OutPoint, Script) {
1206                 &self.funding_info
1207         }
1208
1209         /// Gets a list of txids, with their output scripts (in the order they appear in the
1210         /// transaction), which we must learn about spends of via block_connected().
1211         ///
1212         /// (C-not exported) because we have no HashMap bindings
1213         pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, Script)>> {
1214                 // If we've detected a counterparty commitment tx on chain, we must include it in the set
1215                 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
1216                 // its trivial to do, double-check that here.
1217                 for (txid, _) in self.counterparty_commitment_txn_on_chain.iter() {
1218                         self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
1219                 }
1220                 &self.outputs_to_watch
1221         }
1222
1223         /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1224         /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1225         ///
1226         /// [`chain::Watch::release_pending_monitor_events`]: ../trait.Watch.html#tymethod.release_pending_monitor_events
1227         pub fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
1228                 let mut ret = Vec::new();
1229                 mem::swap(&mut ret, &mut self.pending_monitor_events);
1230                 ret
1231         }
1232
1233         /// Gets the list of pending events which were generated by previous actions, clearing the list
1234         /// in the process.
1235         ///
1236         /// This is called by ChainMonitor::get_and_clear_pending_events() and is equivalent to
1237         /// EventsProvider::get_and_clear_pending_events() except that it requires &mut self as we do
1238         /// no internal locking in ChannelMonitors.
1239         pub fn get_and_clear_pending_events(&mut self) -> Vec<Event> {
1240                 let mut ret = Vec::new();
1241                 mem::swap(&mut ret, &mut self.pending_events);
1242                 ret
1243         }
1244
1245         /// Can only fail if idx is < get_min_seen_secret
1246         fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
1247                 self.commitment_secrets.get_secret(idx)
1248         }
1249
1250         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1251                 self.commitment_secrets.get_min_seen_secret()
1252         }
1253
1254         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1255                 self.current_counterparty_commitment_number
1256         }
1257
1258         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1259                 self.current_holder_commitment_number
1260         }
1261
1262         /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
1263         /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
1264         /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
1265         /// HTLC-Success/HTLC-Timeout transactions.
1266         /// Return updates for HTLC pending in the channel and failed automatically by the broadcast of
1267         /// revoked counterparty commitment tx
1268         fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<ClaimRequest>, (Txid, Vec<(u32, TxOut)>)) where L::Target: Logger {
1269                 // Most secp and related errors trying to create keys means we have no hope of constructing
1270                 // a spend transaction...so we return no transactions to broadcast
1271                 let mut claimable_outpoints = Vec::new();
1272                 let mut watch_outputs = Vec::new();
1273
1274                 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
1275                 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
1276
1277                 macro_rules! ignore_error {
1278                         ( $thing : expr ) => {
1279                                 match $thing {
1280                                         Ok(a) => a,
1281                                         Err(_) => return (claimable_outpoints, (commitment_txid, watch_outputs))
1282                                 }
1283                         };
1284                 }
1285
1286                 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);
1287                 if commitment_number >= self.get_min_seen_secret() {
1288                         let secret = self.get_secret(commitment_number).unwrap();
1289                         let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1290                         let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1291                         let revocation_pubkey = ignore_error!(chan_utils::derive_public_revocation_key(&self.secp_ctx, &per_commitment_point, &self.keys.pubkeys().revocation_basepoint));
1292                         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_tx_cache.counterparty_delayed_payment_base_key));
1293
1294                         let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_tx_cache.on_counterparty_tx_csv, &delayed_key);
1295                         let revokeable_p2wsh = revokeable_redeemscript.to_v0_p2wsh();
1296
1297                         // First, process non-htlc outputs (to_holder & to_counterparty)
1298                         for (idx, outp) in tx.output.iter().enumerate() {
1299                                 if outp.script_pubkey == revokeable_p2wsh {
1300                                         let witness_data = InputMaterial::Revoked { per_commitment_point, counterparty_delayed_payment_base_key: self.counterparty_tx_cache.counterparty_delayed_payment_base_key, counterparty_htlc_base_key: self.counterparty_tx_cache.counterparty_htlc_base_key, per_commitment_key, input_descriptor: InputDescriptors::RevokedOutput, amount: outp.value, htlc: None, on_counterparty_tx_csv: self.counterparty_tx_cache.on_counterparty_tx_csv};
1301                                         claimable_outpoints.push(ClaimRequest { absolute_timelock: height + self.counterparty_tx_cache.on_counterparty_tx_csv as u32, aggregable: true, outpoint: BitcoinOutPoint { txid: commitment_txid, vout: idx as u32 }, witness_data});
1302                                 }
1303                         }
1304
1305                         // Then, try to find revoked htlc outputs
1306                         if let Some(ref per_commitment_data) = per_commitment_option {
1307                                 for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1308                                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1309                                                 if transaction_output_index as usize >= tx.output.len() ||
1310                                                                 tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1311                                                         return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1312                                                 }
1313                                                 let witness_data = InputMaterial::Revoked { per_commitment_point, counterparty_delayed_payment_base_key: self.counterparty_tx_cache.counterparty_delayed_payment_base_key, counterparty_htlc_base_key: self.counterparty_tx_cache.counterparty_htlc_base_key, per_commitment_key, input_descriptor: if htlc.offered { InputDescriptors::RevokedOfferedHTLC } else { InputDescriptors::RevokedReceivedHTLC }, amount: tx.output[transaction_output_index as usize].value, htlc: Some(htlc.clone()), on_counterparty_tx_csv: self.counterparty_tx_cache.on_counterparty_tx_csv};
1314                                                 claimable_outpoints.push(ClaimRequest { absolute_timelock: htlc.cltv_expiry, aggregable: true, outpoint: BitcoinOutPoint { txid: commitment_txid, vout: transaction_output_index }, witness_data });
1315                                         }
1316                                 }
1317                         }
1318
1319                         // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
1320                         if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
1321                                 // We're definitely a counterparty commitment transaction!
1322                                 log_trace!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
1323                                 for (idx, outp) in tx.output.iter().enumerate() {
1324                                         watch_outputs.push((idx as u32, outp.clone()));
1325                                 }
1326                                 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1327
1328                                 macro_rules! check_htlc_fails {
1329                                         ($txid: expr, $commitment_tx: expr) => {
1330                                                 if let Some(ref outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1331                                                         for &(ref htlc, ref source_option) in outpoints.iter() {
1332                                                                 if let &Some(ref source) = source_option {
1333                                                                         log_info!(logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of revoked counterparty commitment transaction, waiting for confirmation (at height {})", log_bytes!(htlc.payment_hash.0), $commitment_tx, height + ANTI_REORG_DELAY - 1);
1334                                                                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
1335                                                                                 hash_map::Entry::Occupied(mut entry) => {
1336                                                                                         let e = entry.get_mut();
1337                                                                                         e.retain(|ref event| {
1338                                                                                                 match **event {
1339                                                                                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
1340                                                                                                                 return htlc_update.0 != **source
1341                                                                                                         },
1342                                                                                                         _ => true
1343                                                                                                 }
1344                                                                                         });
1345                                                                                         e.push(OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())});
1346                                                                                 }
1347                                                                                 hash_map::Entry::Vacant(entry) => {
1348                                                                                         entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())}]);
1349                                                                                 }
1350                                                                         }
1351                                                                 }
1352                                                         }
1353                                                 }
1354                                         }
1355                                 }
1356                                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
1357                                         check_htlc_fails!(txid, "current");
1358                                 }
1359                                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1360                                         check_htlc_fails!(txid, "counterparty");
1361                                 }
1362                                 // No need to check holder commitment txn, symmetric HTLCSource must be present as per-htlc data on counterparty commitment tx
1363                         }
1364                 } else if let Some(per_commitment_data) = per_commitment_option {
1365                         // While this isn't useful yet, there is a potential race where if a counterparty
1366                         // revokes a state at the same time as the commitment transaction for that state is
1367                         // confirmed, and the watchtower receives the block before the user, the user could
1368                         // upload a new ChannelMonitor with the revocation secret but the watchtower has
1369                         // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
1370                         // not being generated by the above conditional. Thus, to be safe, we go ahead and
1371                         // insert it here.
1372                         for (idx, outp) in tx.output.iter().enumerate() {
1373                                 watch_outputs.push((idx as u32, outp.clone()));
1374                         }
1375                         self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1376
1377                         log_trace!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
1378
1379                         macro_rules! check_htlc_fails {
1380                                 ($txid: expr, $commitment_tx: expr, $id: tt) => {
1381                                         if let Some(ref latest_outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1382                                                 $id: for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1383                                                         if let &Some(ref source) = source_option {
1384                                                                 // Check if the HTLC is present in the commitment transaction that was
1385                                                                 // broadcast, but not if it was below the dust limit, which we should
1386                                                                 // fail backwards immediately as there is no way for us to learn the
1387                                                                 // payment_preimage.
1388                                                                 // Note that if the dust limit were allowed to change between
1389                                                                 // commitment transactions we'd want to be check whether *any*
1390                                                                 // broadcastable commitment transaction has the HTLC in it, but it
1391                                                                 // cannot currently change after channel initialization, so we don't
1392                                                                 // need to here.
1393                                                                 for &(ref broadcast_htlc, ref broadcast_source) in per_commitment_data.iter() {
1394                                                                         if broadcast_htlc.transaction_output_index.is_some() && Some(source) == broadcast_source.as_ref() {
1395                                                                                 continue $id;
1396                                                                         }
1397                                                                 }
1398                                                                 log_trace!(logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of counterparty commitment transaction", log_bytes!(htlc.payment_hash.0), $commitment_tx);
1399                                                                 match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
1400                                                                         hash_map::Entry::Occupied(mut entry) => {
1401                                                                                 let e = entry.get_mut();
1402                                                                                 e.retain(|ref event| {
1403                                                                                         match **event {
1404                                                                                                 OnchainEvent::HTLCUpdate { ref htlc_update } => {
1405                                                                                                         return htlc_update.0 != **source
1406                                                                                                 },
1407                                                                                                 _ => true
1408                                                                                         }
1409                                                                                 });
1410                                                                                 e.push(OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())});
1411                                                                         }
1412                                                                         hash_map::Entry::Vacant(entry) => {
1413                                                                                 entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())}]);
1414                                                                         }
1415                                                                 }
1416                                                         }
1417                                                 }
1418                                         }
1419                                 }
1420                         }
1421                         if let Some(ref txid) = self.current_counterparty_commitment_txid {
1422                                 check_htlc_fails!(txid, "current", 'current_loop);
1423                         }
1424                         if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1425                                 check_htlc_fails!(txid, "previous", 'prev_loop);
1426                         }
1427
1428                         if let Some(revocation_points) = self.their_cur_revocation_points {
1429                                 let revocation_point_option =
1430                                         if revocation_points.0 == commitment_number { Some(&revocation_points.1) }
1431                                         else if let Some(point) = revocation_points.2.as_ref() {
1432                                                 if revocation_points.0 == commitment_number + 1 { Some(point) } else { None }
1433                                         } else { None };
1434                                 if let Some(revocation_point) = revocation_point_option {
1435                                         self.counterparty_payment_script = {
1436                                                 // Note that the Network here is ignored as we immediately drop the address for the
1437                                                 // script_pubkey version
1438                                                 let payment_hash160 = WPubkeyHash::hash(&self.keys.pubkeys().payment_point.serialize());
1439                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_hash160[..]).into_script()
1440                                         };
1441
1442                                         // Then, try to find htlc outputs
1443                                         for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1444                                                 if let Some(transaction_output_index) = htlc.transaction_output_index {
1445                                                         if transaction_output_index as usize >= tx.output.len() ||
1446                                                                         tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1447                                                                 return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1448                                                         }
1449                                                         let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
1450                                                         let aggregable = if !htlc.offered { false } else { true };
1451                                                         if preimage.is_some() || !htlc.offered {
1452                                                                 let witness_data = InputMaterial::CounterpartyHTLC { per_commitment_point: *revocation_point, counterparty_delayed_payment_base_key: self.counterparty_tx_cache.counterparty_delayed_payment_base_key, counterparty_htlc_base_key: self.counterparty_tx_cache.counterparty_htlc_base_key, preimage, htlc: htlc.clone() };
1453                                                                 claimable_outpoints.push(ClaimRequest { absolute_timelock: htlc.cltv_expiry, aggregable, outpoint: BitcoinOutPoint { txid: commitment_txid, vout: transaction_output_index }, witness_data });
1454                                                         }
1455                                                 }
1456                                         }
1457                                 }
1458                         }
1459                 }
1460                 (claimable_outpoints, (commitment_txid, watch_outputs))
1461         }
1462
1463         /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
1464         fn check_spend_counterparty_htlc<L: Deref>(&mut self, tx: &Transaction, commitment_number: u64, height: u32, logger: &L) -> (Vec<ClaimRequest>, Option<(Txid, Vec<(u32, TxOut)>)>) where L::Target: Logger {
1465                 let htlc_txid = tx.txid();
1466                 if tx.input.len() != 1 || tx.output.len() != 1 || tx.input[0].witness.len() != 5 {
1467                         return (Vec::new(), None)
1468                 }
1469
1470                 macro_rules! ignore_error {
1471                         ( $thing : expr ) => {
1472                                 match $thing {
1473                                         Ok(a) => a,
1474                                         Err(_) => return (Vec::new(), None)
1475                                 }
1476                         };
1477                 }
1478
1479                 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
1480                 let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1481                 let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1482
1483                 log_trace!(logger, "Counterparty HTLC broadcast {}:{}", htlc_txid, 0);
1484                 let witness_data = InputMaterial::Revoked { per_commitment_point, counterparty_delayed_payment_base_key: self.counterparty_tx_cache.counterparty_delayed_payment_base_key, counterparty_htlc_base_key: self.counterparty_tx_cache.counterparty_htlc_base_key,  per_commitment_key, input_descriptor: InputDescriptors::RevokedOutput, amount: tx.output[0].value, htlc: None, on_counterparty_tx_csv: self.counterparty_tx_cache.on_counterparty_tx_csv };
1485                 let claimable_outpoints = vec!(ClaimRequest { absolute_timelock: height + self.counterparty_tx_cache.on_counterparty_tx_csv as u32, aggregable: true, outpoint: BitcoinOutPoint { txid: htlc_txid, vout: 0}, witness_data });
1486                 let outputs = vec![(0, tx.output[0].clone())];
1487                 (claimable_outpoints, Some((htlc_txid, outputs)))
1488         }
1489
1490         fn broadcast_by_holder_state(&self, commitment_tx: &Transaction, holder_tx: &HolderSignedTx) -> (Vec<ClaimRequest>, Vec<(u32, TxOut)>, Option<(Script, PublicKey, PublicKey)>) {
1491                 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
1492                 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
1493
1494                 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
1495                 let broadcasted_holder_revokable_script = Some((redeemscript.to_v0_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
1496
1497                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
1498                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1499                                 claim_requests.push(ClaimRequest { absolute_timelock: ::std::u32::MAX, aggregable: false, outpoint: BitcoinOutPoint { txid: holder_tx.txid, vout: transaction_output_index as u32 },
1500                                         witness_data: InputMaterial::HolderHTLC {
1501                                                 preimage: if !htlc.offered {
1502                                                                 if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
1503                                                                         Some(preimage.clone())
1504                                                                 } else {
1505                                                                         // We can't build an HTLC-Success transaction without the preimage
1506                                                                         continue;
1507                                                                 }
1508                                                         } else { None },
1509                                                 amount: htlc.amount_msat,
1510                                 }});
1511                                 watch_outputs.push((transaction_output_index, commitment_tx.output[transaction_output_index as usize].clone()));
1512                         }
1513                 }
1514
1515                 (claim_requests, watch_outputs, broadcasted_holder_revokable_script)
1516         }
1517
1518         /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
1519         /// revoked using data in holder_claimable_outpoints.
1520         /// Should not be used if check_spend_revoked_transaction succeeds.
1521         fn check_spend_holder_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<ClaimRequest>, (Txid, Vec<(u32, TxOut)>)) where L::Target: Logger {
1522                 let commitment_txid = tx.txid();
1523                 let mut claim_requests = Vec::new();
1524                 let mut watch_outputs = Vec::new();
1525
1526                 macro_rules! wait_threshold_conf {
1527                         ($height: expr, $source: expr, $commitment_tx: expr, $payment_hash: expr) => {
1528                                 log_trace!(logger, "Failing HTLC with payment_hash {} from {} holder commitment tx due to broadcast of transaction, waiting confirmation (at height{})", log_bytes!($payment_hash.0), $commitment_tx, height + ANTI_REORG_DELAY - 1);
1529                                 match self.onchain_events_waiting_threshold_conf.entry($height + ANTI_REORG_DELAY - 1) {
1530                                         hash_map::Entry::Occupied(mut entry) => {
1531                                                 let e = entry.get_mut();
1532                                                 e.retain(|ref event| {
1533                                                         match **event {
1534                                                                 OnchainEvent::HTLCUpdate { ref htlc_update } => {
1535                                                                         return htlc_update.0 != $source
1536                                                                 },
1537                                                                 _ => true
1538                                                         }
1539                                                 });
1540                                                 e.push(OnchainEvent::HTLCUpdate { htlc_update: ($source, $payment_hash)});
1541                                         }
1542                                         hash_map::Entry::Vacant(entry) => {
1543                                                 entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ($source, $payment_hash)}]);
1544                                         }
1545                                 }
1546                         }
1547                 }
1548
1549                 macro_rules! append_onchain_update {
1550                         ($updates: expr) => {
1551                                 claim_requests = $updates.0;
1552                                 watch_outputs.append(&mut $updates.1);
1553                                 self.broadcasted_holder_revokable_script = $updates.2;
1554                         }
1555                 }
1556
1557                 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
1558                 let mut is_holder_tx = false;
1559
1560                 if self.current_holder_commitment_tx.txid == commitment_txid {
1561                         is_holder_tx = true;
1562                         log_trace!(logger, "Got latest holder commitment tx broadcast, searching for available HTLCs to claim");
1563                         let mut res = self.broadcast_by_holder_state(tx, &self.current_holder_commitment_tx);
1564                         append_onchain_update!(res);
1565                 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1566                         if holder_tx.txid == commitment_txid {
1567                                 is_holder_tx = true;
1568                                 log_trace!(logger, "Got previous holder commitment tx broadcast, searching for available HTLCs to claim");
1569                                 let mut res = self.broadcast_by_holder_state(tx, holder_tx);
1570                                 append_onchain_update!(res);
1571                         }
1572                 }
1573
1574                 macro_rules! fail_dust_htlcs_after_threshold_conf {
1575                         ($holder_tx: expr) => {
1576                                 for &(ref htlc, _, ref source) in &$holder_tx.htlc_outputs {
1577                                         if htlc.transaction_output_index.is_none() {
1578                                                 if let &Some(ref source) = source {
1579                                                         wait_threshold_conf!(height, source.clone(), "lastest", htlc.payment_hash.clone());
1580                                                 }
1581                                         }
1582                                 }
1583                         }
1584                 }
1585
1586                 if is_holder_tx {
1587                         fail_dust_htlcs_after_threshold_conf!(self.current_holder_commitment_tx);
1588                         if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1589                                 fail_dust_htlcs_after_threshold_conf!(holder_tx);
1590                         }
1591                 }
1592
1593                 (claim_requests, (commitment_txid, watch_outputs))
1594         }
1595
1596         /// Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
1597         /// the Channel was out-of-date. You may use it to get a broadcastable holder toxic tx in case of
1598         /// fallen-behind, i.e when receiving a channel_reestablish with a proof that our counterparty side knows
1599         /// a higher revocation secret than the holder commitment number we are aware of. Broadcasting these
1600         /// transactions are UNSAFE, as they allow counterparty side to punish you. Nevertheless you may want to
1601         /// broadcast them if counterparty don't close channel with his higher commitment transaction after a
1602         /// substantial amount of time (a month or even a year) to get back funds. Best may be to contact
1603         /// out-of-band the other node operator to coordinate with him if option is available to you.
1604         /// In any-case, choice is up to the user.
1605         pub fn get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1606                 log_trace!(logger, "Getting signed latest holder commitment transaction!");
1607                 self.holder_tx_signed = true;
1608                 if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript) {
1609                         let txid = commitment_tx.txid();
1610                         let mut res = vec![commitment_tx];
1611                         for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1612                                 if let Some(vout) = htlc.0.transaction_output_index {
1613                                         let preimage = if !htlc.0.offered {
1614                                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1615                                                                 // We can't build an HTLC-Success transaction without the preimage
1616                                                                 continue;
1617                                                         }
1618                                                 } else { None };
1619                                         if let Some(htlc_tx) = self.onchain_tx_handler.get_fully_signed_htlc_tx(
1620                                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1621                                                 res.push(htlc_tx);
1622                                         }
1623                                 }
1624                         }
1625                         // 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.
1626                         // The data will be re-generated and tracked in check_spend_holder_transaction if we get a confirmation.
1627                         return res
1628                 }
1629                 Vec::new()
1630         }
1631
1632         /// Unsafe test-only version of get_latest_holder_commitment_txn used by our test framework
1633         /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1634         /// revoked commitment transaction.
1635         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
1636         pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1637                 log_trace!(logger, "Getting signed copy of latest holder commitment transaction!");
1638                 if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript) {
1639                         let txid = commitment_tx.txid();
1640                         let mut res = vec![commitment_tx];
1641                         for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1642                                 if let Some(vout) = htlc.0.transaction_output_index {
1643                                         let preimage = if !htlc.0.offered {
1644                                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1645                                                                 // We can't build an HTLC-Success transaction without the preimage
1646                                                                 continue;
1647                                                         }
1648                                                 } else { None };
1649                                         if let Some(htlc_tx) = self.onchain_tx_handler.unsafe_get_fully_signed_htlc_tx(
1650                                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1651                                                 res.push(htlc_tx);
1652                                         }
1653                                 }
1654                         }
1655                         return res
1656                 }
1657                 Vec::new()
1658         }
1659
1660         /// Processes transactions in a newly connected block, which may result in any of the following:
1661         /// - update the monitor's state against resolved HTLCs
1662         /// - punish the counterparty in the case of seeing a revoked commitment transaction
1663         /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1664         /// - detect settled outputs for later spending
1665         /// - schedule and bump any in-flight claims
1666         ///
1667         /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1668         /// [`get_outputs_to_watch`].
1669         ///
1670         /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1671         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<(Txid, Vec<(u32, TxOut)>)>
1672                 where B::Target: BroadcasterInterface,
1673                       F::Target: FeeEstimator,
1674                                         L::Target: Logger,
1675         {
1676                 let txn_matched = self.filter_block(txdata);
1677                 for tx in &txn_matched {
1678                         let mut output_val = 0;
1679                         for out in tx.output.iter() {
1680                                 if out.value > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1681                                 output_val += out.value;
1682                                 if output_val > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1683                         }
1684                 }
1685
1686                 let block_hash = header.block_hash();
1687                 log_trace!(logger, "Block {} at height {} connected with {} txn matched", block_hash, height, txn_matched.len());
1688
1689                 let mut watch_outputs = Vec::new();
1690                 let mut claimable_outpoints = Vec::new();
1691                 for tx in &txn_matched {
1692                         if tx.input.len() == 1 {
1693                                 // Assuming our keys were not leaked (in which case we're screwed no matter what),
1694                                 // commitment transactions and HTLC transactions will all only ever have one input,
1695                                 // which is an easy way to filter out any potential non-matching txn for lazy
1696                                 // filters.
1697                                 let prevout = &tx.input[0].previous_output;
1698                                 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
1699                                         if (tx.input[0].sequence >> 8*3) as u8 == 0x80 && (tx.lock_time >> 8*3) as u8 == 0x20 {
1700                                                 let (mut new_outpoints, new_outputs) = self.check_spend_counterparty_transaction(&tx, height, &logger);
1701                                                 if !new_outputs.1.is_empty() {
1702                                                         watch_outputs.push(new_outputs);
1703                                                 }
1704                                                 if new_outpoints.is_empty() {
1705                                                         let (mut new_outpoints, new_outputs) = self.check_spend_holder_transaction(&tx, height, &logger);
1706                                                         if !new_outputs.1.is_empty() {
1707                                                                 watch_outputs.push(new_outputs);
1708                                                         }
1709                                                         claimable_outpoints.append(&mut new_outpoints);
1710                                                 }
1711                                                 claimable_outpoints.append(&mut new_outpoints);
1712                                         }
1713                                 } else {
1714                                         if let Some(&commitment_number) = self.counterparty_commitment_txn_on_chain.get(&prevout.txid) {
1715                                                 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(&tx, commitment_number, height, &logger);
1716                                                 claimable_outpoints.append(&mut new_outpoints);
1717                                                 if let Some(new_outputs) = new_outputs_option {
1718                                                         watch_outputs.push(new_outputs);
1719                                                 }
1720                                         }
1721                                 }
1722                         }
1723                         // While all commitment/HTLC-Success/HTLC-Timeout transactions have one input, HTLCs
1724                         // can also be resolved in a few other ways which can have more than one output. Thus,
1725                         // we call is_resolving_htlc_output here outside of the tx.input.len() == 1 check.
1726                         self.is_resolving_htlc_output(&tx, height, &logger);
1727
1728                         self.is_paying_spendable_output(&tx, height, &logger);
1729                 }
1730                 let should_broadcast = self.would_broadcast_at_height(height, &logger);
1731                 if should_broadcast {
1732                         claimable_outpoints.push(ClaimRequest { absolute_timelock: height, aggregable: false, outpoint: BitcoinOutPoint { txid: self.funding_info.0.txid.clone(), vout: self.funding_info.0.index as u32 }, witness_data: InputMaterial::Funding { funding_redeemscript: self.funding_redeemscript.clone() }});
1733                 }
1734                 if should_broadcast {
1735                         self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
1736                         if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript) {
1737                                 self.holder_tx_signed = true;
1738                                 let (mut new_outpoints, new_outputs, _) = self.broadcast_by_holder_state(&commitment_tx, &self.current_holder_commitment_tx);
1739                                 if !new_outputs.is_empty() {
1740                                         watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
1741                                 }
1742                                 claimable_outpoints.append(&mut new_outpoints);
1743                         }
1744                 }
1745                 if let Some(events) = self.onchain_events_waiting_threshold_conf.remove(&height) {
1746                         for ev in events {
1747                                 match ev {
1748                                         OnchainEvent::HTLCUpdate { htlc_update } => {
1749                                                 log_trace!(logger, "HTLC {} failure update has got enough confirmations to be passed upstream", log_bytes!((htlc_update.1).0));
1750                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
1751                                                         payment_hash: htlc_update.1,
1752                                                         payment_preimage: None,
1753                                                         source: htlc_update.0,
1754                                                 }));
1755                                         },
1756                                         OnchainEvent::MaturingOutput { descriptor } => {
1757                                                 log_trace!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
1758                                                 self.pending_events.push(Event::SpendableOutputs {
1759                                                         outputs: vec![descriptor]
1760                                                 });
1761                                         }
1762                                 }
1763                         }
1764                 }
1765
1766                 self.onchain_tx_handler.block_connected(&txn_matched, claimable_outpoints, height, &*broadcaster, &*fee_estimator, &*logger);
1767                 self.last_block_hash = block_hash;
1768
1769                 // Determine new outputs to watch by comparing against previously known outputs to watch,
1770                 // updating the latter in the process.
1771                 watch_outputs.retain(|&(ref txid, ref txouts)| {
1772                         let idx_and_scripts = txouts.iter().map(|o| (o.0, o.1.script_pubkey.clone())).collect();
1773                         self.outputs_to_watch.insert(txid.clone(), idx_and_scripts).is_none()
1774                 });
1775                 watch_outputs
1776         }
1777
1778         /// Determines if the disconnected block contained any transactions of interest and updates
1779         /// appropriately.
1780         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, height: u32, broadcaster: B, fee_estimator: F, logger: L)
1781                 where B::Target: BroadcasterInterface,
1782                       F::Target: FeeEstimator,
1783                       L::Target: Logger,
1784         {
1785                 let block_hash = header.block_hash();
1786                 log_trace!(logger, "Block {} at height {} disconnected", block_hash, height);
1787
1788                 if let Some(_) = self.onchain_events_waiting_threshold_conf.remove(&(height + ANTI_REORG_DELAY - 1)) {
1789                         //We may discard:
1790                         //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
1791                         //- maturing spendable output has transaction paying us has been disconnected
1792                 }
1793
1794                 self.onchain_tx_handler.block_disconnected(height, broadcaster, fee_estimator, logger);
1795
1796                 self.last_block_hash = block_hash;
1797         }
1798
1799         /// Filters a block's `txdata` for transactions spending watched outputs or for any child
1800         /// transactions thereof.
1801         fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
1802                 let mut matched_txn = HashSet::new();
1803                 txdata.iter().filter(|&&(_, tx)| {
1804                         let mut matches = self.spends_watched_output(tx);
1805                         for input in tx.input.iter() {
1806                                 if matches { break; }
1807                                 if matched_txn.contains(&input.previous_output.txid) {
1808                                         matches = true;
1809                                 }
1810                         }
1811                         if matches {
1812                                 matched_txn.insert(tx.txid());
1813                         }
1814                         matches
1815                 }).map(|(_, tx)| *tx).collect()
1816         }
1817
1818         /// Checks if a given transaction spends any watched outputs.
1819         fn spends_watched_output(&self, tx: &Transaction) -> bool {
1820                 for input in tx.input.iter() {
1821                         if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
1822                                 for (idx, _script_pubkey) in outputs.iter() {
1823                                         if *idx == input.previous_output.vout {
1824                                                 return true;
1825                                         }
1826                                 }
1827                         }
1828                 }
1829
1830                 false
1831         }
1832
1833         fn would_broadcast_at_height<L: Deref>(&self, height: u32, logger: &L) -> bool where L::Target: Logger {
1834                 // We need to consider all HTLCs which are:
1835                 //  * in any unrevoked counterparty commitment transaction, as they could broadcast said
1836                 //    transactions and we'd end up in a race, or
1837                 //  * are in our latest holder commitment transaction, as this is the thing we will
1838                 //    broadcast if we go on-chain.
1839                 // Note that we consider HTLCs which were below dust threshold here - while they don't
1840                 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
1841                 // to the source, and if we don't fail the channel we will have to ensure that the next
1842                 // updates that peer sends us are update_fails, failing the channel if not. It's probably
1843                 // easier to just fail the channel as this case should be rare enough anyway.
1844                 macro_rules! scan_commitment {
1845                         ($htlcs: expr, $holder_tx: expr) => {
1846                                 for ref htlc in $htlcs {
1847                                         // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
1848                                         // chain with enough room to claim the HTLC without our counterparty being able to
1849                                         // time out the HTLC first.
1850                                         // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
1851                                         // concern is being able to claim the corresponding inbound HTLC (on another
1852                                         // channel) before it expires. In fact, we don't even really care if our
1853                                         // counterparty here claims such an outbound HTLC after it expired as long as we
1854                                         // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
1855                                         // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
1856                                         // we give ourselves a few blocks of headroom after expiration before going
1857                                         // on-chain for an expired HTLC.
1858                                         // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
1859                                         // from us until we've reached the point where we go on-chain with the
1860                                         // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
1861                                         // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
1862                                         //  aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
1863                                         //      inbound_cltv == height + CLTV_CLAIM_BUFFER
1864                                         //      outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
1865                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
1866                                         //      CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
1867                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
1868                                         //  The final, above, condition is checked for statically in channelmanager
1869                                         //  with CHECK_CLTV_EXPIRY_SANITY_2.
1870                                         let htlc_outbound = $holder_tx == htlc.offered;
1871                                         if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
1872                                            (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
1873                                                 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
1874                                                 return true;
1875                                         }
1876                                 }
1877                         }
1878                 }
1879
1880                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
1881
1882                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
1883                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
1884                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
1885                         }
1886                 }
1887                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1888                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
1889                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
1890                         }
1891                 }
1892
1893                 false
1894         }
1895
1896         /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
1897         /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
1898         fn is_resolving_htlc_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
1899                 'outer_loop: for input in &tx.input {
1900                         let mut payment_data = None;
1901                         let revocation_sig_claim = (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC) && input.witness[1].len() == 33)
1902                                 || (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::AcceptedHTLC) && input.witness[1].len() == 33);
1903                         let accepted_preimage_claim = input.witness.len() == 5 && HTLCType::scriptlen_to_htlctype(input.witness[4].len()) == Some(HTLCType::AcceptedHTLC);
1904                         let offered_preimage_claim = input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC);
1905
1906                         macro_rules! log_claim {
1907                                 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
1908                                         // We found the output in question, but aren't failing it backwards
1909                                         // as we have no corresponding source and no valid counterparty commitment txid
1910                                         // to try a weak source binding with same-hash, same-value still-valid offered HTLC.
1911                                         // This implies either it is an inbound HTLC or an outbound HTLC on a revoked transaction.
1912                                         let outbound_htlc = $holder_tx == $htlc.offered;
1913                                         if ($holder_tx && revocation_sig_claim) ||
1914                                                         (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
1915                                                 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
1916                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
1917                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
1918                                                         if revocation_sig_claim { "revocation sig" } else { "preimage claim after we'd passed the HTLC resolution back" });
1919                                         } else {
1920                                                 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
1921                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
1922                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
1923                                                         if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
1924                                         }
1925                                 }
1926                         }
1927
1928                         macro_rules! check_htlc_valid_counterparty {
1929                                 ($counterparty_txid: expr, $htlc_output: expr) => {
1930                                         if let Some(txid) = $counterparty_txid {
1931                                                 for &(ref pending_htlc, ref pending_source) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
1932                                                         if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
1933                                                                 if let &Some(ref source) = pending_source {
1934                                                                         log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
1935                                                                         payment_data = Some(((**source).clone(), $htlc_output.payment_hash));
1936                                                                         break;
1937                                                                 }
1938                                                         }
1939                                                 }
1940                                         }
1941                                 }
1942                         }
1943
1944                         macro_rules! scan_commitment {
1945                                 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
1946                                         for (ref htlc_output, source_option) in $htlcs {
1947                                                 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
1948                                                         if let Some(ref source) = source_option {
1949                                                                 log_claim!($tx_info, $holder_tx, htlc_output, true);
1950                                                                 // We have a resolution of an HTLC either from one of our latest
1951                                                                 // holder commitment transactions or an unrevoked counterparty commitment
1952                                                                 // transaction. This implies we either learned a preimage, the HTLC
1953                                                                 // has timed out, or we screwed up. In any case, we should now
1954                                                                 // resolve the source HTLC with the original sender.
1955                                                                 payment_data = Some(((*source).clone(), htlc_output.payment_hash));
1956                                                         } else if !$holder_tx {
1957                                                                         check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output);
1958                                                                 if payment_data.is_none() {
1959                                                                         check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output);
1960                                                                 }
1961                                                         }
1962                                                         if payment_data.is_none() {
1963                                                                 log_claim!($tx_info, $holder_tx, htlc_output, false);
1964                                                                 continue 'outer_loop;
1965                                                         }
1966                                                 }
1967                                         }
1968                                 }
1969                         }
1970
1971                         if input.previous_output.txid == self.current_holder_commitment_tx.txid {
1972                                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
1973                                         "our latest holder commitment tx", true);
1974                         }
1975                         if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
1976                                 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
1977                                         scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
1978                                                 "our previous holder commitment tx", true);
1979                                 }
1980                         }
1981                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
1982                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, (b.as_ref().clone()).map(|boxed| &**boxed))),
1983                                         "counterparty commitment tx", false);
1984                         }
1985
1986                         // Check that scan_commitment, above, decided there is some source worth relaying an
1987                         // HTLC resolution backwards to and figure out whether we learned a preimage from it.
1988                         if let Some((source, payment_hash)) = payment_data {
1989                                 let mut payment_preimage = PaymentPreimage([0; 32]);
1990                                 if accepted_preimage_claim {
1991                                         if !self.pending_monitor_events.iter().any(
1992                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
1993                                                 payment_preimage.0.copy_from_slice(&input.witness[3]);
1994                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
1995                                                         source,
1996                                                         payment_preimage: Some(payment_preimage),
1997                                                         payment_hash
1998                                                 }));
1999                                         }
2000                                 } else if offered_preimage_claim {
2001                                         if !self.pending_monitor_events.iter().any(
2002                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
2003                                                         upd.source == source
2004                                                 } else { false }) {
2005                                                 payment_preimage.0.copy_from_slice(&input.witness[1]);
2006                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2007                                                         source,
2008                                                         payment_preimage: Some(payment_preimage),
2009                                                         payment_hash
2010                                                 }));
2011                                         }
2012                                 } else {
2013                                         log_info!(logger, "Failing HTLC with payment_hash {} timeout by a spend tx, waiting for confirmation (at height{})", log_bytes!(payment_hash.0), height + ANTI_REORG_DELAY - 1);
2014                                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
2015                                                 hash_map::Entry::Occupied(mut entry) => {
2016                                                         let e = entry.get_mut();
2017                                                         e.retain(|ref event| {
2018                                                                 match **event {
2019                                                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
2020                                                                                 return htlc_update.0 != source
2021                                                                         },
2022                                                                         _ => true
2023                                                                 }
2024                                                         });
2025                                                         e.push(OnchainEvent::HTLCUpdate { htlc_update: (source, payment_hash)});
2026                                                 }
2027                                                 hash_map::Entry::Vacant(entry) => {
2028                                                         entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: (source, payment_hash)}]);
2029                                                 }
2030                                         }
2031                                 }
2032                         }
2033                 }
2034         }
2035
2036         /// Check if any transaction broadcasted is paying fund back to some address we can assume to own
2037         fn is_paying_spendable_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2038                 let mut spendable_output = None;
2039                 for (i, outp) in tx.output.iter().enumerate() { // There is max one spendable output for any channel tx, including ones generated by us
2040                         if i > ::std::u16::MAX as usize {
2041                                 // While it is possible that an output exists on chain which is greater than the
2042                                 // 2^16th output in a given transaction, this is only possible if the output is not
2043                                 // in a lightning transaction and was instead placed there by some third party who
2044                                 // wishes to give us money for no reason.
2045                                 // Namely, any lightning transactions which we pre-sign will never have anywhere
2046                                 // near 2^16 outputs both because such transactions must have ~2^16 outputs who's
2047                                 // scripts are not longer than one byte in length and because they are inherently
2048                                 // non-standard due to their size.
2049                                 // Thus, it is completely safe to ignore such outputs, and while it may result in
2050                                 // us ignoring non-lightning fund to us, that is only possible if someone fills
2051                                 // nearly a full block with garbage just to hit this case.
2052                                 continue;
2053                         }
2054                         if outp.script_pubkey == self.destination_script {
2055                                 spendable_output =  Some(SpendableOutputDescriptor::StaticOutput {
2056                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2057                                         output: outp.clone(),
2058                                 });
2059                                 break;
2060                         } else if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
2061                                 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
2062                                         spendable_output =  Some(SpendableOutputDescriptor::DynamicOutputP2WSH {
2063                                                 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2064                                                 per_commitment_point: broadcasted_holder_revokable_script.1,
2065                                                 to_self_delay: self.on_holder_tx_csv,
2066                                                 output: outp.clone(),
2067                                                 key_derivation_params: self.keys.key_derivation_params(),
2068                                                 revocation_pubkey: broadcasted_holder_revokable_script.2.clone(),
2069                                         });
2070                                         break;
2071                                 }
2072                         } else if self.counterparty_payment_script == outp.script_pubkey {
2073                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutputCounterpartyPayment {
2074                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2075                                         output: outp.clone(),
2076                                         key_derivation_params: self.keys.key_derivation_params(),
2077                                 });
2078                                 break;
2079                         } else if outp.script_pubkey == self.shutdown_script {
2080                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
2081                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2082                                         output: outp.clone(),
2083                                 });
2084                         }
2085                 }
2086                 if let Some(spendable_output) = spendable_output {
2087                         log_trace!(logger, "Maturing {} until {}", log_spendable!(spendable_output), height + ANTI_REORG_DELAY - 1);
2088                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
2089                                 hash_map::Entry::Occupied(mut entry) => {
2090                                         let e = entry.get_mut();
2091                                         e.push(OnchainEvent::MaturingOutput { descriptor: spendable_output });
2092                                 }
2093                                 hash_map::Entry::Vacant(entry) => {
2094                                         entry.insert(vec![OnchainEvent::MaturingOutput { descriptor: spendable_output }]);
2095                                 }
2096                         }
2097                 }
2098         }
2099 }
2100
2101 const MAX_ALLOC_SIZE: usize = 64*1024;
2102
2103 impl<ChanSigner: ChannelKeys + Readable> Readable for (BlockHash, ChannelMonitor<ChanSigner>) {
2104         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
2105                 macro_rules! unwrap_obj {
2106                         ($key: expr) => {
2107                                 match $key {
2108                                         Ok(res) => res,
2109                                         Err(_) => return Err(DecodeError::InvalidValue),
2110                                 }
2111                         }
2112                 }
2113
2114                 let _ver: u8 = Readable::read(reader)?;
2115                 let min_ver: u8 = Readable::read(reader)?;
2116                 if min_ver > SERIALIZATION_VERSION {
2117                         return Err(DecodeError::UnknownVersion);
2118                 }
2119
2120                 let latest_update_id: u64 = Readable::read(reader)?;
2121                 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
2122
2123                 let destination_script = Readable::read(reader)?;
2124                 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
2125                         0 => {
2126                                 let revokable_address = Readable::read(reader)?;
2127                                 let per_commitment_point = Readable::read(reader)?;
2128                                 let revokable_script = Readable::read(reader)?;
2129                                 Some((revokable_address, per_commitment_point, revokable_script))
2130                         },
2131                         1 => { None },
2132                         _ => return Err(DecodeError::InvalidValue),
2133                 };
2134                 let counterparty_payment_script = Readable::read(reader)?;
2135                 let shutdown_script = Readable::read(reader)?;
2136
2137                 let keys = Readable::read(reader)?;
2138                 // Technically this can fail and serialize fail a round-trip, but only for serialization of
2139                 // barely-init'd ChannelMonitors that we can't do anything with.
2140                 let outpoint = OutPoint {
2141                         txid: Readable::read(reader)?,
2142                         index: Readable::read(reader)?,
2143                 };
2144                 let funding_info = (outpoint, Readable::read(reader)?);
2145                 let current_counterparty_commitment_txid = Readable::read(reader)?;
2146                 let prev_counterparty_commitment_txid = Readable::read(reader)?;
2147
2148                 let counterparty_tx_cache = Readable::read(reader)?;
2149                 let funding_redeemscript = Readable::read(reader)?;
2150                 let channel_value_satoshis = Readable::read(reader)?;
2151
2152                 let their_cur_revocation_points = {
2153                         let first_idx = <U48 as Readable>::read(reader)?.0;
2154                         if first_idx == 0 {
2155                                 None
2156                         } else {
2157                                 let first_point = Readable::read(reader)?;
2158                                 let second_point_slice: [u8; 33] = Readable::read(reader)?;
2159                                 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
2160                                         Some((first_idx, first_point, None))
2161                                 } else {
2162                                         Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
2163                                 }
2164                         }
2165                 };
2166
2167                 let on_holder_tx_csv: u16 = Readable::read(reader)?;
2168
2169                 let commitment_secrets = Readable::read(reader)?;
2170
2171                 macro_rules! read_htlc_in_commitment {
2172                         () => {
2173                                 {
2174                                         let offered: bool = Readable::read(reader)?;
2175                                         let amount_msat: u64 = Readable::read(reader)?;
2176                                         let cltv_expiry: u32 = Readable::read(reader)?;
2177                                         let payment_hash: PaymentHash = Readable::read(reader)?;
2178                                         let transaction_output_index: Option<u32> = Readable::read(reader)?;
2179
2180                                         HTLCOutputInCommitment {
2181                                                 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
2182                                         }
2183                                 }
2184                         }
2185                 }
2186
2187                 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
2188                 let mut counterparty_claimable_outpoints = HashMap::with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
2189                 for _ in 0..counterparty_claimable_outpoints_len {
2190                         let txid: Txid = Readable::read(reader)?;
2191                         let htlcs_count: u64 = Readable::read(reader)?;
2192                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
2193                         for _ in 0..htlcs_count {
2194                                 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
2195                         }
2196                         if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
2197                                 return Err(DecodeError::InvalidValue);
2198                         }
2199                 }
2200
2201                 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
2202                 let mut counterparty_commitment_txn_on_chain = HashMap::with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
2203                 for _ in 0..counterparty_commitment_txn_on_chain_len {
2204                         let txid: Txid = Readable::read(reader)?;
2205                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2206                         if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, commitment_number) {
2207                                 return Err(DecodeError::InvalidValue);
2208                         }
2209                 }
2210
2211                 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
2212                 let mut counterparty_hash_commitment_number = HashMap::with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
2213                 for _ in 0..counterparty_hash_commitment_number_len {
2214                         let payment_hash: PaymentHash = Readable::read(reader)?;
2215                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2216                         if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
2217                                 return Err(DecodeError::InvalidValue);
2218                         }
2219                 }
2220
2221                 macro_rules! read_holder_tx {
2222                         () => {
2223                                 {
2224                                         let txid = Readable::read(reader)?;
2225                                         let revocation_key = Readable::read(reader)?;
2226                                         let a_htlc_key = Readable::read(reader)?;
2227                                         let b_htlc_key = Readable::read(reader)?;
2228                                         let delayed_payment_key = Readable::read(reader)?;
2229                                         let per_commitment_point = Readable::read(reader)?;
2230                                         let feerate_per_kw: u32 = Readable::read(reader)?;
2231
2232                                         let htlcs_len: u64 = Readable::read(reader)?;
2233                                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_len as usize, MAX_ALLOC_SIZE / 128));
2234                                         for _ in 0..htlcs_len {
2235                                                 let htlc = read_htlc_in_commitment!();
2236                                                 let sigs = match <u8 as Readable>::read(reader)? {
2237                                                         0 => None,
2238                                                         1 => Some(Readable::read(reader)?),
2239                                                         _ => return Err(DecodeError::InvalidValue),
2240                                                 };
2241                                                 htlcs.push((htlc, sigs, Readable::read(reader)?));
2242                                         }
2243
2244                                         HolderSignedTx {
2245                                                 txid,
2246                                                 revocation_key, a_htlc_key, b_htlc_key, delayed_payment_key, per_commitment_point, feerate_per_kw,
2247                                                 htlc_outputs: htlcs
2248                                         }
2249                                 }
2250                         }
2251                 }
2252
2253                 let prev_holder_signed_commitment_tx = match <u8 as Readable>::read(reader)? {
2254                         0 => None,
2255                         1 => {
2256                                 Some(read_holder_tx!())
2257                         },
2258                         _ => return Err(DecodeError::InvalidValue),
2259                 };
2260                 let current_holder_commitment_tx = read_holder_tx!();
2261
2262                 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
2263                 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
2264
2265                 let payment_preimages_len: u64 = Readable::read(reader)?;
2266                 let mut payment_preimages = HashMap::with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
2267                 for _ in 0..payment_preimages_len {
2268                         let preimage: PaymentPreimage = Readable::read(reader)?;
2269                         let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2270                         if let Some(_) = payment_preimages.insert(hash, preimage) {
2271                                 return Err(DecodeError::InvalidValue);
2272                         }
2273                 }
2274
2275                 let pending_monitor_events_len: u64 = Readable::read(reader)?;
2276                 let mut pending_monitor_events = Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3)));
2277                 for _ in 0..pending_monitor_events_len {
2278                         let ev = match <u8 as Readable>::read(reader)? {
2279                                 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
2280                                 1 => MonitorEvent::CommitmentTxBroadcasted(funding_info.0),
2281                                 _ => return Err(DecodeError::InvalidValue)
2282                         };
2283                         pending_monitor_events.push(ev);
2284                 }
2285
2286                 let pending_events_len: u64 = Readable::read(reader)?;
2287                 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
2288                 for _ in 0..pending_events_len {
2289                         if let Some(event) = MaybeReadable::read(reader)? {
2290                                 pending_events.push(event);
2291                         }
2292                 }
2293
2294                 let last_block_hash: BlockHash = Readable::read(reader)?;
2295
2296                 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
2297                 let mut onchain_events_waiting_threshold_conf = HashMap::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
2298                 for _ in 0..waiting_threshold_conf_len {
2299                         let height_target = Readable::read(reader)?;
2300                         let events_len: u64 = Readable::read(reader)?;
2301                         let mut events = Vec::with_capacity(cmp::min(events_len as usize, MAX_ALLOC_SIZE / 128));
2302                         for _ in 0..events_len {
2303                                 let ev = match <u8 as Readable>::read(reader)? {
2304                                         0 => {
2305                                                 let htlc_source = Readable::read(reader)?;
2306                                                 let hash = Readable::read(reader)?;
2307                                                 OnchainEvent::HTLCUpdate {
2308                                                         htlc_update: (htlc_source, hash)
2309                                                 }
2310                                         },
2311                                         1 => {
2312                                                 let descriptor = Readable::read(reader)?;
2313                                                 OnchainEvent::MaturingOutput {
2314                                                         descriptor
2315                                                 }
2316                                         },
2317                                         _ => return Err(DecodeError::InvalidValue),
2318                                 };
2319                                 events.push(ev);
2320                         }
2321                         onchain_events_waiting_threshold_conf.insert(height_target, events);
2322                 }
2323
2324                 let outputs_to_watch_len: u64 = Readable::read(reader)?;
2325                 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>>())));
2326                 for _ in 0..outputs_to_watch_len {
2327                         let txid = Readable::read(reader)?;
2328                         let outputs_len: u64 = Readable::read(reader)?;
2329                         let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<u32>() + mem::size_of::<Script>())));
2330                         for _ in 0..outputs_len {
2331                                 outputs.push((Readable::read(reader)?, Readable::read(reader)?));
2332                         }
2333                         if let Some(_) = outputs_to_watch.insert(txid, outputs) {
2334                                 return Err(DecodeError::InvalidValue);
2335                         }
2336                 }
2337                 let onchain_tx_handler = Readable::read(reader)?;
2338
2339                 let lockdown_from_offchain = Readable::read(reader)?;
2340                 let holder_tx_signed = Readable::read(reader)?;
2341
2342                 Ok((last_block_hash.clone(), ChannelMonitor {
2343                         latest_update_id,
2344                         commitment_transaction_number_obscure_factor,
2345
2346                         destination_script,
2347                         broadcasted_holder_revokable_script,
2348                         counterparty_payment_script,
2349                         shutdown_script,
2350
2351                         keys,
2352                         funding_info,
2353                         current_counterparty_commitment_txid,
2354                         prev_counterparty_commitment_txid,
2355
2356                         counterparty_tx_cache,
2357                         funding_redeemscript,
2358                         channel_value_satoshis,
2359                         their_cur_revocation_points,
2360
2361                         on_holder_tx_csv,
2362
2363                         commitment_secrets,
2364                         counterparty_claimable_outpoints,
2365                         counterparty_commitment_txn_on_chain,
2366                         counterparty_hash_commitment_number,
2367
2368                         prev_holder_signed_commitment_tx,
2369                         current_holder_commitment_tx,
2370                         current_counterparty_commitment_number,
2371                         current_holder_commitment_number,
2372
2373                         payment_preimages,
2374                         pending_monitor_events,
2375                         pending_events,
2376
2377                         onchain_events_waiting_threshold_conf,
2378                         outputs_to_watch,
2379
2380                         onchain_tx_handler,
2381
2382                         lockdown_from_offchain,
2383                         holder_tx_signed,
2384
2385                         last_block_hash,
2386                         secp_ctx: Secp256k1::new(),
2387                 }))
2388         }
2389 }
2390
2391 #[cfg(test)]
2392 mod tests {
2393         use bitcoin::blockdata::script::{Script, Builder};
2394         use bitcoin::blockdata::opcodes;
2395         use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, SigHashType};
2396         use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
2397         use bitcoin::util::bip143;
2398         use bitcoin::hashes::Hash;
2399         use bitcoin::hashes::sha256::Hash as Sha256;
2400         use bitcoin::hashes::hex::FromHex;
2401         use bitcoin::hash_types::Txid;
2402         use hex;
2403         use chain::channelmonitor::ChannelMonitor;
2404         use chain::transaction::OutPoint;
2405         use ln::channelmanager::{PaymentPreimage, PaymentHash};
2406         use ln::onchaintx::{OnchainTxHandler, InputDescriptors};
2407         use ln::chan_utils;
2408         use ln::chan_utils::{HTLCOutputInCommitment, HolderCommitmentTransaction};
2409         use util::test_utils::TestLogger;
2410         use bitcoin::secp256k1::key::{SecretKey,PublicKey};
2411         use bitcoin::secp256k1::Secp256k1;
2412         use std::sync::Arc;
2413         use chain::keysinterface::InMemoryChannelKeys;
2414
2415         #[test]
2416         fn test_prune_preimages() {
2417                 let secp_ctx = Secp256k1::new();
2418                 let logger = Arc::new(TestLogger::new());
2419
2420                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
2421                 let dummy_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
2422
2423                 let mut preimages = Vec::new();
2424                 {
2425                         for i in 0..20 {
2426                                 let preimage = PaymentPreimage([i; 32]);
2427                                 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2428                                 preimages.push((preimage, hash));
2429                         }
2430                 }
2431
2432                 macro_rules! preimages_slice_to_htlc_outputs {
2433                         ($preimages_slice: expr) => {
2434                                 {
2435                                         let mut res = Vec::new();
2436                                         for (idx, preimage) in $preimages_slice.iter().enumerate() {
2437                                                 res.push((HTLCOutputInCommitment {
2438                                                         offered: true,
2439                                                         amount_msat: 0,
2440                                                         cltv_expiry: 0,
2441                                                         payment_hash: preimage.1.clone(),
2442                                                         transaction_output_index: Some(idx as u32),
2443                                                 }, None));
2444                                         }
2445                                         res
2446                                 }
2447                         }
2448                 }
2449                 macro_rules! preimages_to_holder_htlcs {
2450                         ($preimages_slice: expr) => {
2451                                 {
2452                                         let mut inp = preimages_slice_to_htlc_outputs!($preimages_slice);
2453                                         let res: Vec<_> = inp.drain(..).map(|e| { (e.0, None, e.1) }).collect();
2454                                         res
2455                                 }
2456                         }
2457                 }
2458
2459                 macro_rules! test_preimages_exist {
2460                         ($preimages_slice: expr, $monitor: expr) => {
2461                                 for preimage in $preimages_slice {
2462                                         assert!($monitor.payment_preimages.contains_key(&preimage.1));
2463                                 }
2464                         }
2465                 }
2466
2467                 let keys = InMemoryChannelKeys::new(
2468                         &secp_ctx,
2469                         SecretKey::from_slice(&[41; 32]).unwrap(),
2470                         SecretKey::from_slice(&[41; 32]).unwrap(),
2471                         SecretKey::from_slice(&[41; 32]).unwrap(),
2472                         SecretKey::from_slice(&[41; 32]).unwrap(),
2473                         SecretKey::from_slice(&[41; 32]).unwrap(),
2474                         [41; 32],
2475                         0,
2476                         (0, 0)
2477                 );
2478
2479                 // Prune with one old state and a holder commitment tx holding a few overlaps with the
2480                 // old state.
2481                 let mut monitor = ChannelMonitor::new(keys,
2482                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap()), 0, &Script::new(),
2483                         (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, Script::new()),
2484                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
2485                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap()),
2486                         10, Script::new(), 46, 0, HolderCommitmentTransaction::dummy());
2487
2488                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..10])).unwrap();
2489                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
2490                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
2491                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
2492                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
2493                 for &(ref preimage, ref hash) in preimages.iter() {
2494                         monitor.provide_payment_preimage(hash, preimage);
2495                 }
2496
2497                 // Now provide a secret, pruning preimages 10-15
2498                 let mut secret = [0; 32];
2499                 secret[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2500                 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
2501                 assert_eq!(monitor.payment_preimages.len(), 15);
2502                 test_preimages_exist!(&preimages[0..10], monitor);
2503                 test_preimages_exist!(&preimages[15..20], monitor);
2504
2505                 // Now provide a further secret, pruning preimages 15-17
2506                 secret[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2507                 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
2508                 assert_eq!(monitor.payment_preimages.len(), 13);
2509                 test_preimages_exist!(&preimages[0..10], monitor);
2510                 test_preimages_exist!(&preimages[17..20], monitor);
2511
2512                 // Now update holder commitment tx info, pruning only element 18 as we still care about the
2513                 // previous commitment tx's preimages too
2514                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..5])).unwrap();
2515                 secret[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2516                 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
2517                 assert_eq!(monitor.payment_preimages.len(), 12);
2518                 test_preimages_exist!(&preimages[0..10], monitor);
2519                 test_preimages_exist!(&preimages[18..20], monitor);
2520
2521                 // But if we do it again, we'll prune 5-10
2522                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..3])).unwrap();
2523                 secret[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2524                 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
2525                 assert_eq!(monitor.payment_preimages.len(), 5);
2526                 test_preimages_exist!(&preimages[0..5], monitor);
2527         }
2528
2529         #[test]
2530         fn test_claim_txn_weight_computation() {
2531                 // We test Claim txn weight, knowing that we want expected weigth and
2532                 // not actual case to avoid sigs and time-lock delays hell variances.
2533
2534                 let secp_ctx = Secp256k1::new();
2535                 let privkey = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
2536                 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
2537                 let mut sum_actual_sigs = 0;
2538
2539                 macro_rules! sign_input {
2540                         ($sighash_parts: expr, $idx: expr, $amount: expr, $input_type: expr, $sum_actual_sigs: expr) => {
2541                                 let htlc = HTLCOutputInCommitment {
2542                                         offered: if *$input_type == InputDescriptors::RevokedOfferedHTLC || *$input_type == InputDescriptors::OfferedHTLC { true } else { false },
2543                                         amount_msat: 0,
2544                                         cltv_expiry: 2 << 16,
2545                                         payment_hash: PaymentHash([1; 32]),
2546                                         transaction_output_index: Some($idx as u32),
2547                                 };
2548                                 let redeem_script = if *$input_type == InputDescriptors::RevokedOutput { chan_utils::get_revokeable_redeemscript(&pubkey, 256, &pubkey) } else { chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, &pubkey, &pubkey, &pubkey) };
2549                                 let sighash = hash_to_message!(&$sighash_parts.signature_hash($idx, &redeem_script, $amount, SigHashType::All)[..]);
2550                                 let sig = secp_ctx.sign(&sighash, &privkey);
2551                                 $sighash_parts.access_witness($idx).push(sig.serialize_der().to_vec());
2552                                 $sighash_parts.access_witness($idx)[0].push(SigHashType::All as u8);
2553                                 sum_actual_sigs += $sighash_parts.access_witness($idx)[0].len();
2554                                 if *$input_type == InputDescriptors::RevokedOutput {
2555                                         $sighash_parts.access_witness($idx).push(vec!(1));
2556                                 } else if *$input_type == InputDescriptors::RevokedOfferedHTLC || *$input_type == InputDescriptors::RevokedReceivedHTLC {
2557                                         $sighash_parts.access_witness($idx).push(pubkey.clone().serialize().to_vec());
2558                                 } else if *$input_type == InputDescriptors::ReceivedHTLC {
2559                                         $sighash_parts.access_witness($idx).push(vec![0]);
2560                                 } else {
2561                                         $sighash_parts.access_witness($idx).push(PaymentPreimage([1; 32]).0.to_vec());
2562                                 }
2563                                 $sighash_parts.access_witness($idx).push(redeem_script.into_bytes());
2564                                 println!("witness[0] {}", $sighash_parts.access_witness($idx)[0].len());
2565                                 println!("witness[1] {}", $sighash_parts.access_witness($idx)[1].len());
2566                                 println!("witness[2] {}", $sighash_parts.access_witness($idx)[2].len());
2567                         }
2568                 }
2569
2570                 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
2571                 let txid = Txid::from_hex("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
2572
2573                 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
2574                 let mut claim_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
2575                 for i in 0..4 {
2576                         claim_tx.input.push(TxIn {
2577                                 previous_output: BitcoinOutPoint {
2578                                         txid,
2579                                         vout: i,
2580                                 },
2581                                 script_sig: Script::new(),
2582                                 sequence: 0xfffffffd,
2583                                 witness: Vec::new(),
2584                         });
2585                 }
2586                 claim_tx.output.push(TxOut {
2587                         script_pubkey: script_pubkey.clone(),
2588                         value: 0,
2589                 });
2590                 let base_weight = claim_tx.get_weight();
2591                 let inputs_des = vec![InputDescriptors::RevokedOutput, InputDescriptors::RevokedOfferedHTLC, InputDescriptors::RevokedOfferedHTLC, InputDescriptors::RevokedReceivedHTLC];
2592                 {
2593                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2594                         for (idx, inp) in inputs_des.iter().enumerate() {
2595                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2596                         }
2597                 }
2598                 assert_eq!(base_weight + OnchainTxHandler::<InMemoryChannelKeys>::get_witnesses_weight(&inputs_des[..]),  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_des.len() - sum_actual_sigs));
2599
2600                 // Claim tx with 1 offered HTLCs, 3 received HTLCs
2601                 claim_tx.input.clear();
2602                 sum_actual_sigs = 0;
2603                 for i in 0..4 {
2604                         claim_tx.input.push(TxIn {
2605                                 previous_output: BitcoinOutPoint {
2606                                         txid,
2607                                         vout: i,
2608                                 },
2609                                 script_sig: Script::new(),
2610                                 sequence: 0xfffffffd,
2611                                 witness: Vec::new(),
2612                         });
2613                 }
2614                 let base_weight = claim_tx.get_weight();
2615                 let inputs_des = vec![InputDescriptors::OfferedHTLC, InputDescriptors::ReceivedHTLC, InputDescriptors::ReceivedHTLC, InputDescriptors::ReceivedHTLC];
2616                 {
2617                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2618                         for (idx, inp) in inputs_des.iter().enumerate() {
2619                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2620                         }
2621                 }
2622                 assert_eq!(base_weight + OnchainTxHandler::<InMemoryChannelKeys>::get_witnesses_weight(&inputs_des[..]),  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_des.len() - sum_actual_sigs));
2623
2624                 // Justice tx with 1 revoked HTLC-Success tx output
2625                 claim_tx.input.clear();
2626                 sum_actual_sigs = 0;
2627                 claim_tx.input.push(TxIn {
2628                         previous_output: BitcoinOutPoint {
2629                                 txid,
2630                                 vout: 0,
2631                         },
2632                         script_sig: Script::new(),
2633                         sequence: 0xfffffffd,
2634                         witness: Vec::new(),
2635                 });
2636                 let base_weight = claim_tx.get_weight();
2637                 let inputs_des = vec![InputDescriptors::RevokedOutput];
2638                 {
2639                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2640                         for (idx, inp) in inputs_des.iter().enumerate() {
2641                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2642                         }
2643                 }
2644                 assert_eq!(base_weight + OnchainTxHandler::<InMemoryChannelKeys>::get_witnesses_weight(&inputs_des[..]), claim_tx.get_weight() + /* max_length_isg */ (73 * inputs_des.len() - sum_actual_sigs));
2645         }
2646
2647         // Further testing is done in the ChannelManager integration tests.
2648 }