Drop the redundant/broken `ChannelMonitor::get_monitored_outpoints`
[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, Vec<Script>)>,
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<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, ref txouts)) 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                         (txouts.len() as u64).write(writer)?;
831                         for script in txouts.iter() {
832                                 script.write(writer)?;
833                         }
834                 }
835
836                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_hash_commitment_number.len() as u64))?;
837                 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
838                         writer.write_all(&payment_hash.0[..])?;
839                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
840                 }
841
842                 macro_rules! serialize_holder_tx {
843                         ($holder_tx: expr) => {
844                                 $holder_tx.txid.write(writer)?;
845                                 writer.write_all(&$holder_tx.revocation_key.serialize())?;
846                                 writer.write_all(&$holder_tx.a_htlc_key.serialize())?;
847                                 writer.write_all(&$holder_tx.b_htlc_key.serialize())?;
848                                 writer.write_all(&$holder_tx.delayed_payment_key.serialize())?;
849                                 writer.write_all(&$holder_tx.per_commitment_point.serialize())?;
850
851                                 writer.write_all(&byte_utils::be32_to_array($holder_tx.feerate_per_kw))?;
852                                 writer.write_all(&byte_utils::be64_to_array($holder_tx.htlc_outputs.len() as u64))?;
853                                 for &(ref htlc_output, ref sig, ref htlc_source) in $holder_tx.htlc_outputs.iter() {
854                                         serialize_htlc_in_commitment!(htlc_output);
855                                         if let &Some(ref their_sig) = sig {
856                                                 1u8.write(writer)?;
857                                                 writer.write_all(&their_sig.serialize_compact())?;
858                                         } else {
859                                                 0u8.write(writer)?;
860                                         }
861                                         htlc_source.write(writer)?;
862                                 }
863                         }
864                 }
865
866                 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
867                         writer.write_all(&[1; 1])?;
868                         serialize_holder_tx!(prev_holder_tx);
869                 } else {
870                         writer.write_all(&[0; 1])?;
871                 }
872
873                 serialize_holder_tx!(self.current_holder_commitment_tx);
874
875                 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
876                 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
877
878                 writer.write_all(&byte_utils::be64_to_array(self.payment_preimages.len() as u64))?;
879                 for payment_preimage in self.payment_preimages.values() {
880                         writer.write_all(&payment_preimage.0[..])?;
881                 }
882
883                 writer.write_all(&byte_utils::be64_to_array(self.pending_monitor_events.len() as u64))?;
884                 for event in self.pending_monitor_events.iter() {
885                         match event {
886                                 MonitorEvent::HTLCEvent(upd) => {
887                                         0u8.write(writer)?;
888                                         upd.write(writer)?;
889                                 },
890                                 MonitorEvent::CommitmentTxBroadcasted(_) => 1u8.write(writer)?
891                         }
892                 }
893
894                 writer.write_all(&byte_utils::be64_to_array(self.pending_events.len() as u64))?;
895                 for event in self.pending_events.iter() {
896                         event.write(writer)?;
897                 }
898
899                 self.last_block_hash.write(writer)?;
900
901                 writer.write_all(&byte_utils::be64_to_array(self.onchain_events_waiting_threshold_conf.len() as u64))?;
902                 for (ref target, ref events) in self.onchain_events_waiting_threshold_conf.iter() {
903                         writer.write_all(&byte_utils::be32_to_array(**target))?;
904                         writer.write_all(&byte_utils::be64_to_array(events.len() as u64))?;
905                         for ev in events.iter() {
906                                 match *ev {
907                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
908                                                 0u8.write(writer)?;
909                                                 htlc_update.0.write(writer)?;
910                                                 htlc_update.1.write(writer)?;
911                                         },
912                                         OnchainEvent::MaturingOutput { ref descriptor } => {
913                                                 1u8.write(writer)?;
914                                                 descriptor.write(writer)?;
915                                         },
916                                 }
917                         }
918                 }
919
920                 (self.outputs_to_watch.len() as u64).write(writer)?;
921                 for (txid, output_scripts) in self.outputs_to_watch.iter() {
922                         txid.write(writer)?;
923                         (output_scripts.len() as u64).write(writer)?;
924                         for script in output_scripts.iter() {
925                                 script.write(writer)?;
926                         }
927                 }
928                 self.onchain_tx_handler.write(writer)?;
929
930                 self.lockdown_from_offchain.write(writer)?;
931                 self.holder_tx_signed.write(writer)?;
932
933                 Ok(())
934         }
935 }
936
937 impl<ChanSigner: ChannelKeys> ChannelMonitor<ChanSigner> {
938         pub(crate) fn new(keys: ChanSigner, shutdown_pubkey: &PublicKey,
939                         on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, Script),
940                         counterparty_htlc_base_key: &PublicKey, counterparty_delayed_payment_base_key: &PublicKey,
941                         on_holder_tx_csv: u16, funding_redeemscript: Script, channel_value_satoshis: u64,
942                         commitment_transaction_number_obscure_factor: u64,
943                         initial_holder_commitment_tx: HolderCommitmentTransaction) -> ChannelMonitor<ChanSigner> {
944
945                 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
946                 let our_channel_close_key_hash = WPubkeyHash::hash(&shutdown_pubkey.serialize());
947                 let shutdown_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_close_key_hash[..]).into_script();
948                 let payment_key_hash = WPubkeyHash::hash(&keys.pubkeys().payment_point.serialize());
949                 let counterparty_payment_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_key_hash[..]).into_script();
950
951                 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() };
952
953                 let mut onchain_tx_handler = OnchainTxHandler::new(destination_script.clone(), keys.clone(), on_holder_tx_csv);
954
955                 let holder_tx_sequence = initial_holder_commitment_tx.unsigned_tx.input[0].sequence as u64;
956                 let holder_tx_locktime = initial_holder_commitment_tx.unsigned_tx.lock_time as u64;
957                 let holder_commitment_tx = HolderSignedTx {
958                         txid: initial_holder_commitment_tx.txid(),
959                         revocation_key: initial_holder_commitment_tx.keys.revocation_key,
960                         a_htlc_key: initial_holder_commitment_tx.keys.broadcaster_htlc_key,
961                         b_htlc_key: initial_holder_commitment_tx.keys.countersignatory_htlc_key,
962                         delayed_payment_key: initial_holder_commitment_tx.keys.broadcaster_delayed_payment_key,
963                         per_commitment_point: initial_holder_commitment_tx.keys.per_commitment_point,
964                         feerate_per_kw: initial_holder_commitment_tx.feerate_per_kw,
965                         htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
966                 };
967                 onchain_tx_handler.provide_latest_holder_tx(initial_holder_commitment_tx);
968
969                 let mut outputs_to_watch = HashMap::new();
970                 outputs_to_watch.insert(funding_info.0.txid, vec![funding_info.1.clone()]);
971
972                 ChannelMonitor {
973                         latest_update_id: 0,
974                         commitment_transaction_number_obscure_factor,
975
976                         destination_script: destination_script.clone(),
977                         broadcasted_holder_revokable_script: None,
978                         counterparty_payment_script,
979                         shutdown_script,
980
981                         keys,
982                         funding_info,
983                         current_counterparty_commitment_txid: None,
984                         prev_counterparty_commitment_txid: None,
985
986                         counterparty_tx_cache,
987                         funding_redeemscript,
988                         channel_value_satoshis: channel_value_satoshis,
989                         their_cur_revocation_points: None,
990
991                         on_holder_tx_csv,
992
993                         commitment_secrets: CounterpartyCommitmentSecrets::new(),
994                         counterparty_claimable_outpoints: HashMap::new(),
995                         counterparty_commitment_txn_on_chain: HashMap::new(),
996                         counterparty_hash_commitment_number: HashMap::new(),
997
998                         prev_holder_signed_commitment_tx: None,
999                         current_holder_commitment_tx: holder_commitment_tx,
1000                         current_counterparty_commitment_number: 1 << 48,
1001                         current_holder_commitment_number: 0xffff_ffff_ffff - ((((holder_tx_sequence & 0xffffff) << 3*8) | (holder_tx_locktime as u64 & 0xffffff)) ^ commitment_transaction_number_obscure_factor),
1002
1003                         payment_preimages: HashMap::new(),
1004                         pending_monitor_events: Vec::new(),
1005                         pending_events: Vec::new(),
1006
1007                         onchain_events_waiting_threshold_conf: HashMap::new(),
1008                         outputs_to_watch,
1009
1010                         onchain_tx_handler,
1011
1012                         lockdown_from_offchain: false,
1013                         holder_tx_signed: false,
1014
1015                         last_block_hash: Default::default(),
1016                         secp_ctx: Secp256k1::new(),
1017                 }
1018         }
1019
1020         /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
1021         /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
1022         /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
1023         fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
1024                 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
1025                         return Err(MonitorUpdateError("Previous secret did not match new one"));
1026                 }
1027
1028                 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
1029                 // events for now-revoked/fulfilled HTLCs.
1030                 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
1031                         for &mut (_, ref mut source) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
1032                                 *source = None;
1033                         }
1034                 }
1035
1036                 if !self.payment_preimages.is_empty() {
1037                         let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
1038                         let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
1039                         let min_idx = self.get_min_seen_secret();
1040                         let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
1041
1042                         self.payment_preimages.retain(|&k, _| {
1043                                 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
1044                                         if k == htlc.payment_hash {
1045                                                 return true
1046                                         }
1047                                 }
1048                                 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
1049                                         for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
1050                                                 if k == htlc.payment_hash {
1051                                                         return true
1052                                                 }
1053                                         }
1054                                 }
1055                                 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
1056                                         if *cn < min_idx {
1057                                                 return true
1058                                         }
1059                                         true
1060                                 } else { false };
1061                                 if contains {
1062                                         counterparty_hash_commitment_number.remove(&k);
1063                                 }
1064                                 false
1065                         });
1066                 }
1067
1068                 Ok(())
1069         }
1070
1071         /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
1072         /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
1073         /// possibly future revocation/preimage information) to claim outputs where possible.
1074         /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
1075         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 {
1076                 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
1077                 // so that a remote monitor doesn't learn anything unless there is a malicious close.
1078                 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
1079                 // timeouts)
1080                 for &(ref htlc, _) in &htlc_outputs {
1081                         self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
1082                 }
1083
1084                 let new_txid = unsigned_commitment_tx.txid();
1085                 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", new_txid, commitment_number, htlc_outputs.len());
1086                 log_trace!(logger, "New potential counterparty commitment transaction: {}", encode::serialize_hex(unsigned_commitment_tx));
1087                 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
1088                 self.current_counterparty_commitment_txid = Some(new_txid);
1089                 self.counterparty_claimable_outpoints.insert(new_txid, htlc_outputs.clone());
1090                 self.current_counterparty_commitment_number = commitment_number;
1091                 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
1092                 match self.their_cur_revocation_points {
1093                         Some(old_points) => {
1094                                 if old_points.0 == commitment_number + 1 {
1095                                         self.their_cur_revocation_points = Some((old_points.0, old_points.1, Some(their_revocation_point)));
1096                                 } else if old_points.0 == commitment_number + 2 {
1097                                         if let Some(old_second_point) = old_points.2 {
1098                                                 self.their_cur_revocation_points = Some((old_points.0 - 1, old_second_point, Some(their_revocation_point)));
1099                                         } else {
1100                                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1101                                         }
1102                                 } else {
1103                                         self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1104                                 }
1105                         },
1106                         None => {
1107                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1108                         }
1109                 }
1110                 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
1111                 for htlc in htlc_outputs {
1112                         if htlc.0.transaction_output_index.is_some() {
1113                                 htlcs.push(htlc.0);
1114                         }
1115                 }
1116                 self.counterparty_tx_cache.per_htlc.insert(new_txid, htlcs);
1117         }
1118
1119         /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
1120         /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
1121         /// is important that any clones of this channel monitor (including remote clones) by kept
1122         /// up-to-date as our holder commitment transaction is updated.
1123         /// Panics if set_on_holder_tx_csv has never been called.
1124         fn provide_latest_holder_commitment_tx_info(&mut self, commitment_tx: HolderCommitmentTransaction, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>) -> Result<(), MonitorUpdateError> {
1125                 let txid = commitment_tx.txid();
1126                 let sequence = commitment_tx.unsigned_tx.input[0].sequence as u64;
1127                 let locktime = commitment_tx.unsigned_tx.lock_time as u64;
1128                 let mut new_holder_commitment_tx = HolderSignedTx {
1129                         txid,
1130                         revocation_key: commitment_tx.keys.revocation_key,
1131                         a_htlc_key: commitment_tx.keys.broadcaster_htlc_key,
1132                         b_htlc_key: commitment_tx.keys.countersignatory_htlc_key,
1133                         delayed_payment_key: commitment_tx.keys.broadcaster_delayed_payment_key,
1134                         per_commitment_point: commitment_tx.keys.per_commitment_point,
1135                         feerate_per_kw: commitment_tx.feerate_per_kw,
1136                         htlc_outputs: htlc_outputs,
1137                 };
1138                 self.onchain_tx_handler.provide_latest_holder_tx(commitment_tx);
1139                 self.current_holder_commitment_number = 0xffff_ffff_ffff - ((((sequence & 0xffffff) << 3*8) | (locktime as u64 & 0xffffff)) ^ self.commitment_transaction_number_obscure_factor);
1140                 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
1141                 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
1142                 if self.holder_tx_signed {
1143                         return Err(MonitorUpdateError("Latest holder commitment signed has already been signed, update is rejected"));
1144                 }
1145                 Ok(())
1146         }
1147
1148         /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
1149         /// commitment_tx_infos which contain the payment hash have been revoked.
1150         pub(crate) fn provide_payment_preimage(&mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage) {
1151                 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
1152         }
1153
1154         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(&mut self, broadcaster: &B, logger: &L)
1155                 where B::Target: BroadcasterInterface,
1156                                         L::Target: Logger,
1157         {
1158                 for tx in self.get_latest_holder_commitment_txn(logger).iter() {
1159                         broadcaster.broadcast_transaction(tx);
1160                 }
1161                 self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
1162         }
1163
1164         /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
1165         /// itself.
1166         ///
1167         /// panics if the given update is not the next update by update_id.
1168         pub fn update_monitor<B: Deref, L: Deref>(&mut self, mut updates: ChannelMonitorUpdate, broadcaster: &B, logger: &L) -> Result<(), MonitorUpdateError>
1169                 where B::Target: BroadcasterInterface,
1170                                         L::Target: Logger,
1171         {
1172                 if self.latest_update_id + 1 != updates.update_id {
1173                         panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
1174                 }
1175                 for update in updates.updates.drain(..) {
1176                         match update {
1177                                 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs } => {
1178                                         if self.lockdown_from_offchain { panic!(); }
1179                                         self.provide_latest_holder_commitment_tx_info(commitment_tx, htlc_outputs)?
1180                                 },
1181                                 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { unsigned_commitment_tx, htlc_outputs, commitment_number, their_revocation_point } =>
1182                                         self.provide_latest_counterparty_commitment_tx_info(&unsigned_commitment_tx, htlc_outputs, commitment_number, their_revocation_point, logger),
1183                                 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } =>
1184                                         self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()), &payment_preimage),
1185                                 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } =>
1186                                         self.provide_secret(idx, secret)?,
1187                                 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
1188                                         self.lockdown_from_offchain = true;
1189                                         if should_broadcast {
1190                                                 self.broadcast_latest_holder_commitment_txn(broadcaster, logger);
1191                                         } else {
1192                                                 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");
1193                                         }
1194                                 }
1195                         }
1196                 }
1197                 self.latest_update_id = updates.update_id;
1198                 Ok(())
1199         }
1200
1201         /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
1202         /// ChannelMonitor.
1203         pub fn get_latest_update_id(&self) -> u64 {
1204                 self.latest_update_id
1205         }
1206
1207         /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
1208         pub fn get_funding_txo(&self) -> &(OutPoint, Script) {
1209                 &self.funding_info
1210         }
1211
1212         /// Gets a list of txids, with their output scripts (in the order they appear in the
1213         /// transaction), which we must learn about spends of via block_connected().
1214         ///
1215         /// (C-not exported) because we have no HashMap bindings
1216         pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<Script>> {
1217                 // If we've detected a counterparty commitment tx on chain, we must include it in the set
1218                 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
1219                 // its trivial to do, double-check that here.
1220                 for (txid, &(_, ref outputs)) in self.counterparty_commitment_txn_on_chain.iter() {
1221                         let watched_outputs = self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
1222                         assert_eq!(watched_outputs.len(), outputs.len());
1223                         for (watched, output) in watched_outputs.iter().zip(outputs.iter()) {
1224                                 assert_eq!(watched, output);
1225                         }
1226                 }
1227                 &self.outputs_to_watch
1228         }
1229
1230         /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1231         /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1232         ///
1233         /// [`chain::Watch::release_pending_monitor_events`]: ../trait.Watch.html#tymethod.release_pending_monitor_events
1234         pub fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
1235                 let mut ret = Vec::new();
1236                 mem::swap(&mut ret, &mut self.pending_monitor_events);
1237                 ret
1238         }
1239
1240         /// Gets the list of pending events which were generated by previous actions, clearing the list
1241         /// in the process.
1242         ///
1243         /// This is called by ChainMonitor::get_and_clear_pending_events() and is equivalent to
1244         /// EventsProvider::get_and_clear_pending_events() except that it requires &mut self as we do
1245         /// no internal locking in ChannelMonitors.
1246         pub fn get_and_clear_pending_events(&mut self) -> Vec<Event> {
1247                 let mut ret = Vec::new();
1248                 mem::swap(&mut ret, &mut self.pending_events);
1249                 ret
1250         }
1251
1252         /// Can only fail if idx is < get_min_seen_secret
1253         fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
1254                 self.commitment_secrets.get_secret(idx)
1255         }
1256
1257         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1258                 self.commitment_secrets.get_min_seen_secret()
1259         }
1260
1261         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1262                 self.current_counterparty_commitment_number
1263         }
1264
1265         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1266                 self.current_holder_commitment_number
1267         }
1268
1269         /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
1270         /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
1271         /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
1272         /// HTLC-Success/HTLC-Timeout transactions.
1273         /// Return updates for HTLC pending in the channel and failed automatically by the broadcast of
1274         /// revoked counterparty commitment tx
1275         fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<ClaimRequest>, (Txid, Vec<TxOut>)) where L::Target: Logger {
1276                 // Most secp and related errors trying to create keys means we have no hope of constructing
1277                 // a spend transaction...so we return no transactions to broadcast
1278                 let mut claimable_outpoints = Vec::new();
1279                 let mut watch_outputs = Vec::new();
1280
1281                 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
1282                 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
1283
1284                 macro_rules! ignore_error {
1285                         ( $thing : expr ) => {
1286                                 match $thing {
1287                                         Ok(a) => a,
1288                                         Err(_) => return (claimable_outpoints, (commitment_txid, watch_outputs))
1289                                 }
1290                         };
1291                 }
1292
1293                 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);
1294                 if commitment_number >= self.get_min_seen_secret() {
1295                         let secret = self.get_secret(commitment_number).unwrap();
1296                         let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1297                         let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1298                         let revocation_pubkey = ignore_error!(chan_utils::derive_public_revocation_key(&self.secp_ctx, &per_commitment_point, &self.keys.pubkeys().revocation_basepoint));
1299                         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));
1300
1301                         let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_tx_cache.on_counterparty_tx_csv, &delayed_key);
1302                         let revokeable_p2wsh = revokeable_redeemscript.to_v0_p2wsh();
1303
1304                         // First, process non-htlc outputs (to_holder & to_counterparty)
1305                         for (idx, outp) in tx.output.iter().enumerate() {
1306                                 if outp.script_pubkey == revokeable_p2wsh {
1307                                         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};
1308                                         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});
1309                                 }
1310                         }
1311
1312                         // Then, try to find revoked htlc outputs
1313                         if let Some(ref per_commitment_data) = per_commitment_option {
1314                                 for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1315                                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1316                                                 if transaction_output_index as usize >= tx.output.len() ||
1317                                                                 tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1318                                                         return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1319                                                 }
1320                                                 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};
1321                                                 claimable_outpoints.push(ClaimRequest { absolute_timelock: htlc.cltv_expiry, aggregable: true, outpoint: BitcoinOutPoint { txid: commitment_txid, vout: transaction_output_index }, witness_data });
1322                                         }
1323                                 }
1324                         }
1325
1326                         // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
1327                         if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
1328                                 // We're definitely a counterparty commitment transaction!
1329                                 log_trace!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
1330                                 watch_outputs.append(&mut tx.output.clone());
1331                                 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, (commitment_number, tx.output.iter().map(|output| { output.script_pubkey.clone() }).collect()));
1332
1333                                 macro_rules! check_htlc_fails {
1334                                         ($txid: expr, $commitment_tx: expr) => {
1335                                                 if let Some(ref outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1336                                                         for &(ref htlc, ref source_option) in outpoints.iter() {
1337                                                                 if let &Some(ref source) = source_option {
1338                                                                         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);
1339                                                                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
1340                                                                                 hash_map::Entry::Occupied(mut entry) => {
1341                                                                                         let e = entry.get_mut();
1342                                                                                         e.retain(|ref event| {
1343                                                                                                 match **event {
1344                                                                                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
1345                                                                                                                 return htlc_update.0 != **source
1346                                                                                                         },
1347                                                                                                         _ => true
1348                                                                                                 }
1349                                                                                         });
1350                                                                                         e.push(OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())});
1351                                                                                 }
1352                                                                                 hash_map::Entry::Vacant(entry) => {
1353                                                                                         entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())}]);
1354                                                                                 }
1355                                                                         }
1356                                                                 }
1357                                                         }
1358                                                 }
1359                                         }
1360                                 }
1361                                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
1362                                         check_htlc_fails!(txid, "current");
1363                                 }
1364                                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1365                                         check_htlc_fails!(txid, "counterparty");
1366                                 }
1367                                 // No need to check holder commitment txn, symmetric HTLCSource must be present as per-htlc data on counterparty commitment tx
1368                         }
1369                 } else if let Some(per_commitment_data) = per_commitment_option {
1370                         // While this isn't useful yet, there is a potential race where if a counterparty
1371                         // revokes a state at the same time as the commitment transaction for that state is
1372                         // confirmed, and the watchtower receives the block before the user, the user could
1373                         // upload a new ChannelMonitor with the revocation secret but the watchtower has
1374                         // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
1375                         // not being generated by the above conditional. Thus, to be safe, we go ahead and
1376                         // insert it here.
1377                         watch_outputs.append(&mut tx.output.clone());
1378                         self.counterparty_commitment_txn_on_chain.insert(commitment_txid, (commitment_number, tx.output.iter().map(|output| { output.script_pubkey.clone() }).collect()));
1379
1380                         log_trace!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
1381
1382                         macro_rules! check_htlc_fails {
1383                                 ($txid: expr, $commitment_tx: expr, $id: tt) => {
1384                                         if let Some(ref latest_outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1385                                                 $id: for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1386                                                         if let &Some(ref source) = source_option {
1387                                                                 // Check if the HTLC is present in the commitment transaction that was
1388                                                                 // broadcast, but not if it was below the dust limit, which we should
1389                                                                 // fail backwards immediately as there is no way for us to learn the
1390                                                                 // payment_preimage.
1391                                                                 // Note that if the dust limit were allowed to change between
1392                                                                 // commitment transactions we'd want to be check whether *any*
1393                                                                 // broadcastable commitment transaction has the HTLC in it, but it
1394                                                                 // cannot currently change after channel initialization, so we don't
1395                                                                 // need to here.
1396                                                                 for &(ref broadcast_htlc, ref broadcast_source) in per_commitment_data.iter() {
1397                                                                         if broadcast_htlc.transaction_output_index.is_some() && Some(source) == broadcast_source.as_ref() {
1398                                                                                 continue $id;
1399                                                                         }
1400                                                                 }
1401                                                                 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);
1402                                                                 match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
1403                                                                         hash_map::Entry::Occupied(mut entry) => {
1404                                                                                 let e = entry.get_mut();
1405                                                                                 e.retain(|ref event| {
1406                                                                                         match **event {
1407                                                                                                 OnchainEvent::HTLCUpdate { ref htlc_update } => {
1408                                                                                                         return htlc_update.0 != **source
1409                                                                                                 },
1410                                                                                                 _ => true
1411                                                                                         }
1412                                                                                 });
1413                                                                                 e.push(OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())});
1414                                                                         }
1415                                                                         hash_map::Entry::Vacant(entry) => {
1416                                                                                 entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ((**source).clone(), htlc.payment_hash.clone())}]);
1417                                                                         }
1418                                                                 }
1419                                                         }
1420                                                 }
1421                                         }
1422                                 }
1423                         }
1424                         if let Some(ref txid) = self.current_counterparty_commitment_txid {
1425                                 check_htlc_fails!(txid, "current", 'current_loop);
1426                         }
1427                         if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1428                                 check_htlc_fails!(txid, "previous", 'prev_loop);
1429                         }
1430
1431                         if let Some(revocation_points) = self.their_cur_revocation_points {
1432                                 let revocation_point_option =
1433                                         if revocation_points.0 == commitment_number { Some(&revocation_points.1) }
1434                                         else if let Some(point) = revocation_points.2.as_ref() {
1435                                                 if revocation_points.0 == commitment_number + 1 { Some(point) } else { None }
1436                                         } else { None };
1437                                 if let Some(revocation_point) = revocation_point_option {
1438                                         self.counterparty_payment_script = {
1439                                                 // Note that the Network here is ignored as we immediately drop the address for the
1440                                                 // script_pubkey version
1441                                                 let payment_hash160 = WPubkeyHash::hash(&self.keys.pubkeys().payment_point.serialize());
1442                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_hash160[..]).into_script()
1443                                         };
1444
1445                                         // Then, try to find htlc outputs
1446                                         for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1447                                                 if let Some(transaction_output_index) = htlc.transaction_output_index {
1448                                                         if transaction_output_index as usize >= tx.output.len() ||
1449                                                                         tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1450                                                                 return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1451                                                         }
1452                                                         let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
1453                                                         let aggregable = if !htlc.offered { false } else { true };
1454                                                         if preimage.is_some() || !htlc.offered {
1455                                                                 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() };
1456                                                                 claimable_outpoints.push(ClaimRequest { absolute_timelock: htlc.cltv_expiry, aggregable, outpoint: BitcoinOutPoint { txid: commitment_txid, vout: transaction_output_index }, witness_data });
1457                                                         }
1458                                                 }
1459                                         }
1460                                 }
1461                         }
1462                 }
1463                 (claimable_outpoints, (commitment_txid, watch_outputs))
1464         }
1465
1466         /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
1467         fn check_spend_counterparty_htlc<L: Deref>(&mut self, tx: &Transaction, commitment_number: u64, height: u32, logger: &L) -> (Vec<ClaimRequest>, Option<(Txid, Vec<TxOut>)>) where L::Target: Logger {
1468                 let htlc_txid = tx.txid();
1469                 if tx.input.len() != 1 || tx.output.len() != 1 || tx.input[0].witness.len() != 5 {
1470                         return (Vec::new(), None)
1471                 }
1472
1473                 macro_rules! ignore_error {
1474                         ( $thing : expr ) => {
1475                                 match $thing {
1476                                         Ok(a) => a,
1477                                         Err(_) => return (Vec::new(), None)
1478                                 }
1479                         };
1480                 }
1481
1482                 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
1483                 let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1484                 let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1485
1486                 log_trace!(logger, "Counterparty HTLC broadcast {}:{}", htlc_txid, 0);
1487                 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 };
1488                 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 });
1489                 (claimable_outpoints, Some((htlc_txid, tx.output.clone())))
1490         }
1491
1492         fn broadcast_by_holder_state(&self, commitment_tx: &Transaction, holder_tx: &HolderSignedTx) -> (Vec<ClaimRequest>, Vec<TxOut>, Option<(Script, PublicKey, PublicKey)>) {
1493                 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
1494                 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
1495
1496                 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
1497                 let broadcasted_holder_revokable_script = Some((redeemscript.to_v0_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
1498
1499                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
1500                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1501                                 claim_requests.push(ClaimRequest { absolute_timelock: ::std::u32::MAX, aggregable: false, outpoint: BitcoinOutPoint { txid: holder_tx.txid, vout: transaction_output_index as u32 },
1502                                         witness_data: InputMaterial::HolderHTLC {
1503                                                 preimage: if !htlc.offered {
1504                                                                 if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
1505                                                                         Some(preimage.clone())
1506                                                                 } else {
1507                                                                         // We can't build an HTLC-Success transaction without the preimage
1508                                                                         continue;
1509                                                                 }
1510                                                         } else { None },
1511                                                 amount: htlc.amount_msat,
1512                                 }});
1513                                 watch_outputs.push(commitment_tx.output[transaction_output_index as usize].clone());
1514                         }
1515                 }
1516
1517                 (claim_requests, watch_outputs, broadcasted_holder_revokable_script)
1518         }
1519
1520         /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
1521         /// revoked using data in holder_claimable_outpoints.
1522         /// Should not be used if check_spend_revoked_transaction succeeds.
1523         fn check_spend_holder_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<ClaimRequest>, (Txid, Vec<TxOut>)) where L::Target: Logger {
1524                 let commitment_txid = tx.txid();
1525                 let mut claim_requests = Vec::new();
1526                 let mut watch_outputs = Vec::new();
1527
1528                 macro_rules! wait_threshold_conf {
1529                         ($height: expr, $source: expr, $commitment_tx: expr, $payment_hash: expr) => {
1530                                 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);
1531                                 match self.onchain_events_waiting_threshold_conf.entry($height + ANTI_REORG_DELAY - 1) {
1532                                         hash_map::Entry::Occupied(mut entry) => {
1533                                                 let e = entry.get_mut();
1534                                                 e.retain(|ref event| {
1535                                                         match **event {
1536                                                                 OnchainEvent::HTLCUpdate { ref htlc_update } => {
1537                                                                         return htlc_update.0 != $source
1538                                                                 },
1539                                                                 _ => true
1540                                                         }
1541                                                 });
1542                                                 e.push(OnchainEvent::HTLCUpdate { htlc_update: ($source, $payment_hash)});
1543                                         }
1544                                         hash_map::Entry::Vacant(entry) => {
1545                                                 entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: ($source, $payment_hash)}]);
1546                                         }
1547                                 }
1548                         }
1549                 }
1550
1551                 macro_rules! append_onchain_update {
1552                         ($updates: expr) => {
1553                                 claim_requests = $updates.0;
1554                                 watch_outputs.append(&mut $updates.1);
1555                                 self.broadcasted_holder_revokable_script = $updates.2;
1556                         }
1557                 }
1558
1559                 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
1560                 let mut is_holder_tx = false;
1561
1562                 if self.current_holder_commitment_tx.txid == commitment_txid {
1563                         is_holder_tx = true;
1564                         log_trace!(logger, "Got latest holder commitment tx broadcast, searching for available HTLCs to claim");
1565                         let mut res = self.broadcast_by_holder_state(tx, &self.current_holder_commitment_tx);
1566                         append_onchain_update!(res);
1567                 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1568                         if holder_tx.txid == commitment_txid {
1569                                 is_holder_tx = true;
1570                                 log_trace!(logger, "Got previous holder commitment tx broadcast, searching for available HTLCs to claim");
1571                                 let mut res = self.broadcast_by_holder_state(tx, holder_tx);
1572                                 append_onchain_update!(res);
1573                         }
1574                 }
1575
1576                 macro_rules! fail_dust_htlcs_after_threshold_conf {
1577                         ($holder_tx: expr) => {
1578                                 for &(ref htlc, _, ref source) in &$holder_tx.htlc_outputs {
1579                                         if htlc.transaction_output_index.is_none() {
1580                                                 if let &Some(ref source) = source {
1581                                                         wait_threshold_conf!(height, source.clone(), "lastest", htlc.payment_hash.clone());
1582                                                 }
1583                                         }
1584                                 }
1585                         }
1586                 }
1587
1588                 if is_holder_tx {
1589                         fail_dust_htlcs_after_threshold_conf!(self.current_holder_commitment_tx);
1590                         if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1591                                 fail_dust_htlcs_after_threshold_conf!(holder_tx);
1592                         }
1593                 }
1594
1595                 (claim_requests, (commitment_txid, watch_outputs))
1596         }
1597
1598         /// Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
1599         /// the Channel was out-of-date. You may use it to get a broadcastable holder toxic tx in case of
1600         /// fallen-behind, i.e when receiving a channel_reestablish with a proof that our counterparty side knows
1601         /// a higher revocation secret than the holder commitment number we are aware of. Broadcasting these
1602         /// transactions are UNSAFE, as they allow counterparty side to punish you. Nevertheless you may want to
1603         /// broadcast them if counterparty don't close channel with his higher commitment transaction after a
1604         /// substantial amount of time (a month or even a year) to get back funds. Best may be to contact
1605         /// out-of-band the other node operator to coordinate with him if option is available to you.
1606         /// In any-case, choice is up to the user.
1607         pub fn get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1608                 log_trace!(logger, "Getting signed latest holder commitment transaction!");
1609                 self.holder_tx_signed = true;
1610                 if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript) {
1611                         let txid = commitment_tx.txid();
1612                         let mut res = vec![commitment_tx];
1613                         for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1614                                 if let Some(vout) = htlc.0.transaction_output_index {
1615                                         let preimage = if !htlc.0.offered {
1616                                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1617                                                                 // We can't build an HTLC-Success transaction without the preimage
1618                                                                 continue;
1619                                                         }
1620                                                 } else { None };
1621                                         if let Some(htlc_tx) = self.onchain_tx_handler.get_fully_signed_htlc_tx(
1622                                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1623                                                 res.push(htlc_tx);
1624                                         }
1625                                 }
1626                         }
1627                         // 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.
1628                         // The data will be re-generated and tracked in check_spend_holder_transaction if we get a confirmation.
1629                         return res
1630                 }
1631                 Vec::new()
1632         }
1633
1634         /// Unsafe test-only version of get_latest_holder_commitment_txn used by our test framework
1635         /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1636         /// revoked commitment transaction.
1637         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
1638         pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1639                 log_trace!(logger, "Getting signed copy of latest holder commitment transaction!");
1640                 if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript) {
1641                         let txid = commitment_tx.txid();
1642                         let mut res = vec![commitment_tx];
1643                         for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1644                                 if let Some(vout) = htlc.0.transaction_output_index {
1645                                         let preimage = if !htlc.0.offered {
1646                                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1647                                                                 // We can't build an HTLC-Success transaction without the preimage
1648                                                                 continue;
1649                                                         }
1650                                                 } else { None };
1651                                         if let Some(htlc_tx) = self.onchain_tx_handler.unsafe_get_fully_signed_htlc_tx(
1652                                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1653                                                 res.push(htlc_tx);
1654                                         }
1655                                 }
1656                         }
1657                         return res
1658                 }
1659                 Vec::new()
1660         }
1661
1662         /// Processes transactions in a newly connected block, which may result in any of the following:
1663         /// - update the monitor's state against resolved HTLCs
1664         /// - punish the counterparty in the case of seeing a revoked commitment transaction
1665         /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1666         /// - detect settled outputs for later spending
1667         /// - schedule and bump any in-flight claims
1668         ///
1669         /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1670         /// [`get_outputs_to_watch`].
1671         ///
1672         /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1673         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<TxOut>)>
1674                 where B::Target: BroadcasterInterface,
1675                       F::Target: FeeEstimator,
1676                                         L::Target: Logger,
1677         {
1678                 let txn_matched = self.filter_block(txdata);
1679                 for tx in &txn_matched {
1680                         let mut output_val = 0;
1681                         for out in tx.output.iter() {
1682                                 if out.value > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1683                                 output_val += out.value;
1684                                 if output_val > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1685                         }
1686                 }
1687
1688                 let block_hash = header.block_hash();
1689                 log_trace!(logger, "Block {} at height {} connected with {} txn matched", block_hash, height, txn_matched.len());
1690
1691                 let mut watch_outputs = Vec::new();
1692                 let mut claimable_outpoints = Vec::new();
1693                 for tx in &txn_matched {
1694                         if tx.input.len() == 1 {
1695                                 // Assuming our keys were not leaked (in which case we're screwed no matter what),
1696                                 // commitment transactions and HTLC transactions will all only ever have one input,
1697                                 // which is an easy way to filter out any potential non-matching txn for lazy
1698                                 // filters.
1699                                 let prevout = &tx.input[0].previous_output;
1700                                 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
1701                                         if (tx.input[0].sequence >> 8*3) as u8 == 0x80 && (tx.lock_time >> 8*3) as u8 == 0x20 {
1702                                                 let (mut new_outpoints, new_outputs) = self.check_spend_counterparty_transaction(&tx, height, &logger);
1703                                                 if !new_outputs.1.is_empty() {
1704                                                         watch_outputs.push(new_outputs);
1705                                                 }
1706                                                 if new_outpoints.is_empty() {
1707                                                         let (mut new_outpoints, new_outputs) = self.check_spend_holder_transaction(&tx, height, &logger);
1708                                                         if !new_outputs.1.is_empty() {
1709                                                                 watch_outputs.push(new_outputs);
1710                                                         }
1711                                                         claimable_outpoints.append(&mut new_outpoints);
1712                                                 }
1713                                                 claimable_outpoints.append(&mut new_outpoints);
1714                                         }
1715                                 } else {
1716                                         if let Some(&(commitment_number, _)) = self.counterparty_commitment_txn_on_chain.get(&prevout.txid) {
1717                                                 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(&tx, commitment_number, height, &logger);
1718                                                 claimable_outpoints.append(&mut new_outpoints);
1719                                                 if let Some(new_outputs) = new_outputs_option {
1720                                                         watch_outputs.push(new_outputs);
1721                                                 }
1722                                         }
1723                                 }
1724                         }
1725                         // While all commitment/HTLC-Success/HTLC-Timeout transactions have one input, HTLCs
1726                         // can also be resolved in a few other ways which can have more than one output. Thus,
1727                         // we call is_resolving_htlc_output here outside of the tx.input.len() == 1 check.
1728                         self.is_resolving_htlc_output(&tx, height, &logger);
1729
1730                         self.is_paying_spendable_output(&tx, height, &logger);
1731                 }
1732                 let should_broadcast = self.would_broadcast_at_height(height, &logger);
1733                 if should_broadcast {
1734                         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() }});
1735                 }
1736                 if should_broadcast {
1737                         self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
1738                         if let Some(commitment_tx) = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript) {
1739                                 self.holder_tx_signed = true;
1740                                 let (mut new_outpoints, new_outputs, _) = self.broadcast_by_holder_state(&commitment_tx, &self.current_holder_commitment_tx);
1741                                 if !new_outputs.is_empty() {
1742                                         watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
1743                                 }
1744                                 claimable_outpoints.append(&mut new_outpoints);
1745                         }
1746                 }
1747                 if let Some(events) = self.onchain_events_waiting_threshold_conf.remove(&height) {
1748                         for ev in events {
1749                                 match ev {
1750                                         OnchainEvent::HTLCUpdate { htlc_update } => {
1751                                                 log_trace!(logger, "HTLC {} failure update has got enough confirmations to be passed upstream", log_bytes!((htlc_update.1).0));
1752                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
1753                                                         payment_hash: htlc_update.1,
1754                                                         payment_preimage: None,
1755                                                         source: htlc_update.0,
1756                                                 }));
1757                                         },
1758                                         OnchainEvent::MaturingOutput { descriptor } => {
1759                                                 log_trace!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
1760                                                 self.pending_events.push(Event::SpendableOutputs {
1761                                                         outputs: vec![descriptor]
1762                                                 });
1763                                         }
1764                                 }
1765                         }
1766                 }
1767
1768                 self.onchain_tx_handler.block_connected(&txn_matched, claimable_outpoints, height, &*broadcaster, &*fee_estimator, &*logger);
1769                 self.last_block_hash = block_hash;
1770
1771                 // Determine new outputs to watch by comparing against previously known outputs to watch,
1772                 // updating the latter in the process.
1773                 watch_outputs.retain(|&(ref txid, ref txouts)| {
1774                         let output_scripts = txouts.iter().map(|o| o.script_pubkey.clone()).collect();
1775                         self.outputs_to_watch.insert(txid.clone(), output_scripts).is_none()
1776                 });
1777                 watch_outputs
1778         }
1779
1780         /// Determines if the disconnected block contained any transactions of interest and updates
1781         /// appropriately.
1782         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, height: u32, broadcaster: B, fee_estimator: F, logger: L)
1783                 where B::Target: BroadcasterInterface,
1784                       F::Target: FeeEstimator,
1785                       L::Target: Logger,
1786         {
1787                 let block_hash = header.block_hash();
1788                 log_trace!(logger, "Block {} at height {} disconnected", block_hash, height);
1789
1790                 if let Some(_) = self.onchain_events_waiting_threshold_conf.remove(&(height + ANTI_REORG_DELAY - 1)) {
1791                         //We may discard:
1792                         //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
1793                         //- maturing spendable output has transaction paying us has been disconnected
1794                 }
1795
1796                 self.onchain_tx_handler.block_disconnected(height, broadcaster, fee_estimator, logger);
1797
1798                 self.last_block_hash = block_hash;
1799         }
1800
1801         /// Filters a block's `txdata` for transactions spending watched outputs or for any child
1802         /// transactions thereof.
1803         fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
1804                 let mut matched_txn = HashSet::new();
1805                 txdata.iter().filter(|&&(_, tx)| {
1806                         let mut matches = self.spends_watched_output(tx);
1807                         for input in tx.input.iter() {
1808                                 if matches { break; }
1809                                 if matched_txn.contains(&input.previous_output.txid) {
1810                                         matches = true;
1811                                 }
1812                         }
1813                         if matches {
1814                                 matched_txn.insert(tx.txid());
1815                         }
1816                         matches
1817                 }).map(|(_, tx)| *tx).collect()
1818         }
1819
1820         /// Checks if a given transaction spends any watched outputs.
1821         fn spends_watched_output(&self, tx: &Transaction) -> bool {
1822                 for input in tx.input.iter() {
1823                         if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
1824                                 for (idx, _script_pubkey) in outputs.iter().enumerate() {
1825                                         if idx == input.previous_output.vout as usize {
1826                                                 return true;
1827                                         }
1828                                 }
1829                         }
1830                 }
1831
1832                 false
1833         }
1834
1835         fn would_broadcast_at_height<L: Deref>(&self, height: u32, logger: &L) -> bool where L::Target: Logger {
1836                 // We need to consider all HTLCs which are:
1837                 //  * in any unrevoked counterparty commitment transaction, as they could broadcast said
1838                 //    transactions and we'd end up in a race, or
1839                 //  * are in our latest holder commitment transaction, as this is the thing we will
1840                 //    broadcast if we go on-chain.
1841                 // Note that we consider HTLCs which were below dust threshold here - while they don't
1842                 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
1843                 // to the source, and if we don't fail the channel we will have to ensure that the next
1844                 // updates that peer sends us are update_fails, failing the channel if not. It's probably
1845                 // easier to just fail the channel as this case should be rare enough anyway.
1846                 macro_rules! scan_commitment {
1847                         ($htlcs: expr, $holder_tx: expr) => {
1848                                 for ref htlc in $htlcs {
1849                                         // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
1850                                         // chain with enough room to claim the HTLC without our counterparty being able to
1851                                         // time out the HTLC first.
1852                                         // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
1853                                         // concern is being able to claim the corresponding inbound HTLC (on another
1854                                         // channel) before it expires. In fact, we don't even really care if our
1855                                         // counterparty here claims such an outbound HTLC after it expired as long as we
1856                                         // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
1857                                         // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
1858                                         // we give ourselves a few blocks of headroom after expiration before going
1859                                         // on-chain for an expired HTLC.
1860                                         // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
1861                                         // from us until we've reached the point where we go on-chain with the
1862                                         // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
1863                                         // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
1864                                         //  aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
1865                                         //      inbound_cltv == height + CLTV_CLAIM_BUFFER
1866                                         //      outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
1867                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
1868                                         //      CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
1869                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
1870                                         //  The final, above, condition is checked for statically in channelmanager
1871                                         //  with CHECK_CLTV_EXPIRY_SANITY_2.
1872                                         let htlc_outbound = $holder_tx == htlc.offered;
1873                                         if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
1874                                            (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
1875                                                 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
1876                                                 return true;
1877                                         }
1878                                 }
1879                         }
1880                 }
1881
1882                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
1883
1884                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
1885                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
1886                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
1887                         }
1888                 }
1889                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1890                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
1891                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
1892                         }
1893                 }
1894
1895                 false
1896         }
1897
1898         /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
1899         /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
1900         fn is_resolving_htlc_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
1901                 'outer_loop: for input in &tx.input {
1902                         let mut payment_data = None;
1903                         let revocation_sig_claim = (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC) && input.witness[1].len() == 33)
1904                                 || (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::AcceptedHTLC) && input.witness[1].len() == 33);
1905                         let accepted_preimage_claim = input.witness.len() == 5 && HTLCType::scriptlen_to_htlctype(input.witness[4].len()) == Some(HTLCType::AcceptedHTLC);
1906                         let offered_preimage_claim = input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC);
1907
1908                         macro_rules! log_claim {
1909                                 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
1910                                         // We found the output in question, but aren't failing it backwards
1911                                         // as we have no corresponding source and no valid counterparty commitment txid
1912                                         // to try a weak source binding with same-hash, same-value still-valid offered HTLC.
1913                                         // This implies either it is an inbound HTLC or an outbound HTLC on a revoked transaction.
1914                                         let outbound_htlc = $holder_tx == $htlc.offered;
1915                                         if ($holder_tx && revocation_sig_claim) ||
1916                                                         (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
1917                                                 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
1918                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
1919                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
1920                                                         if revocation_sig_claim { "revocation sig" } else { "preimage claim after we'd passed the HTLC resolution back" });
1921                                         } else {
1922                                                 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
1923                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
1924                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
1925                                                         if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
1926                                         }
1927                                 }
1928                         }
1929
1930                         macro_rules! check_htlc_valid_counterparty {
1931                                 ($counterparty_txid: expr, $htlc_output: expr) => {
1932                                         if let Some(txid) = $counterparty_txid {
1933                                                 for &(ref pending_htlc, ref pending_source) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
1934                                                         if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
1935                                                                 if let &Some(ref source) = pending_source {
1936                                                                         log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
1937                                                                         payment_data = Some(((**source).clone(), $htlc_output.payment_hash));
1938                                                                         break;
1939                                                                 }
1940                                                         }
1941                                                 }
1942                                         }
1943                                 }
1944                         }
1945
1946                         macro_rules! scan_commitment {
1947                                 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
1948                                         for (ref htlc_output, source_option) in $htlcs {
1949                                                 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
1950                                                         if let Some(ref source) = source_option {
1951                                                                 log_claim!($tx_info, $holder_tx, htlc_output, true);
1952                                                                 // We have a resolution of an HTLC either from one of our latest
1953                                                                 // holder commitment transactions or an unrevoked counterparty commitment
1954                                                                 // transaction. This implies we either learned a preimage, the HTLC
1955                                                                 // has timed out, or we screwed up. In any case, we should now
1956                                                                 // resolve the source HTLC with the original sender.
1957                                                                 payment_data = Some(((*source).clone(), htlc_output.payment_hash));
1958                                                         } else if !$holder_tx {
1959                                                                         check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output);
1960                                                                 if payment_data.is_none() {
1961                                                                         check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output);
1962                                                                 }
1963                                                         }
1964                                                         if payment_data.is_none() {
1965                                                                 log_claim!($tx_info, $holder_tx, htlc_output, false);
1966                                                                 continue 'outer_loop;
1967                                                         }
1968                                                 }
1969                                         }
1970                                 }
1971                         }
1972
1973                         if input.previous_output.txid == self.current_holder_commitment_tx.txid {
1974                                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
1975                                         "our latest holder commitment tx", true);
1976                         }
1977                         if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
1978                                 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
1979                                         scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
1980                                                 "our previous holder commitment tx", true);
1981                                 }
1982                         }
1983                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
1984                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, (b.as_ref().clone()).map(|boxed| &**boxed))),
1985                                         "counterparty commitment tx", false);
1986                         }
1987
1988                         // Check that scan_commitment, above, decided there is some source worth relaying an
1989                         // HTLC resolution backwards to and figure out whether we learned a preimage from it.
1990                         if let Some((source, payment_hash)) = payment_data {
1991                                 let mut payment_preimage = PaymentPreimage([0; 32]);
1992                                 if accepted_preimage_claim {
1993                                         if !self.pending_monitor_events.iter().any(
1994                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
1995                                                 payment_preimage.0.copy_from_slice(&input.witness[3]);
1996                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
1997                                                         source,
1998                                                         payment_preimage: Some(payment_preimage),
1999                                                         payment_hash
2000                                                 }));
2001                                         }
2002                                 } else if offered_preimage_claim {
2003                                         if !self.pending_monitor_events.iter().any(
2004                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
2005                                                         upd.source == source
2006                                                 } else { false }) {
2007                                                 payment_preimage.0.copy_from_slice(&input.witness[1]);
2008                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2009                                                         source,
2010                                                         payment_preimage: Some(payment_preimage),
2011                                                         payment_hash
2012                                                 }));
2013                                         }
2014                                 } else {
2015                                         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);
2016                                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
2017                                                 hash_map::Entry::Occupied(mut entry) => {
2018                                                         let e = entry.get_mut();
2019                                                         e.retain(|ref event| {
2020                                                                 match **event {
2021                                                                         OnchainEvent::HTLCUpdate { ref htlc_update } => {
2022                                                                                 return htlc_update.0 != source
2023                                                                         },
2024                                                                         _ => true
2025                                                                 }
2026                                                         });
2027                                                         e.push(OnchainEvent::HTLCUpdate { htlc_update: (source, payment_hash)});
2028                                                 }
2029                                                 hash_map::Entry::Vacant(entry) => {
2030                                                         entry.insert(vec![OnchainEvent::HTLCUpdate { htlc_update: (source, payment_hash)}]);
2031                                                 }
2032                                         }
2033                                 }
2034                         }
2035                 }
2036         }
2037
2038         /// Check if any transaction broadcasted is paying fund back to some address we can assume to own
2039         fn is_paying_spendable_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2040                 let mut spendable_output = None;
2041                 for (i, outp) in tx.output.iter().enumerate() { // There is max one spendable output for any channel tx, including ones generated by us
2042                         if i > ::std::u16::MAX as usize {
2043                                 // While it is possible that an output exists on chain which is greater than the
2044                                 // 2^16th output in a given transaction, this is only possible if the output is not
2045                                 // in a lightning transaction and was instead placed there by some third party who
2046                                 // wishes to give us money for no reason.
2047                                 // Namely, any lightning transactions which we pre-sign will never have anywhere
2048                                 // near 2^16 outputs both because such transactions must have ~2^16 outputs who's
2049                                 // scripts are not longer than one byte in length and because they are inherently
2050                                 // non-standard due to their size.
2051                                 // Thus, it is completely safe to ignore such outputs, and while it may result in
2052                                 // us ignoring non-lightning fund to us, that is only possible if someone fills
2053                                 // nearly a full block with garbage just to hit this case.
2054                                 continue;
2055                         }
2056                         if outp.script_pubkey == self.destination_script {
2057                                 spendable_output =  Some(SpendableOutputDescriptor::StaticOutput {
2058                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2059                                         output: outp.clone(),
2060                                 });
2061                                 break;
2062                         } else if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
2063                                 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
2064                                         spendable_output =  Some(SpendableOutputDescriptor::DynamicOutputP2WSH {
2065                                                 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2066                                                 per_commitment_point: broadcasted_holder_revokable_script.1,
2067                                                 to_self_delay: self.on_holder_tx_csv,
2068                                                 output: outp.clone(),
2069                                                 key_derivation_params: self.keys.key_derivation_params(),
2070                                                 revocation_pubkey: broadcasted_holder_revokable_script.2.clone(),
2071                                         });
2072                                         break;
2073                                 }
2074                         } else if self.counterparty_payment_script == outp.script_pubkey {
2075                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutputCounterpartyPayment {
2076                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2077                                         output: outp.clone(),
2078                                         key_derivation_params: self.keys.key_derivation_params(),
2079                                 });
2080                                 break;
2081                         } else if outp.script_pubkey == self.shutdown_script {
2082                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
2083                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2084                                         output: outp.clone(),
2085                                 });
2086                         }
2087                 }
2088                 if let Some(spendable_output) = spendable_output {
2089                         log_trace!(logger, "Maturing {} until {}", log_spendable!(spendable_output), height + ANTI_REORG_DELAY - 1);
2090                         match self.onchain_events_waiting_threshold_conf.entry(height + ANTI_REORG_DELAY - 1) {
2091                                 hash_map::Entry::Occupied(mut entry) => {
2092                                         let e = entry.get_mut();
2093                                         e.push(OnchainEvent::MaturingOutput { descriptor: spendable_output });
2094                                 }
2095                                 hash_map::Entry::Vacant(entry) => {
2096                                         entry.insert(vec![OnchainEvent::MaturingOutput { descriptor: spendable_output }]);
2097                                 }
2098                         }
2099                 }
2100         }
2101 }
2102
2103 const MAX_ALLOC_SIZE: usize = 64*1024;
2104
2105 impl<ChanSigner: ChannelKeys + Readable> Readable for (BlockHash, ChannelMonitor<ChanSigner>) {
2106         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
2107                 macro_rules! unwrap_obj {
2108                         ($key: expr) => {
2109                                 match $key {
2110                                         Ok(res) => res,
2111                                         Err(_) => return Err(DecodeError::InvalidValue),
2112                                 }
2113                         }
2114                 }
2115
2116                 let _ver: u8 = Readable::read(reader)?;
2117                 let min_ver: u8 = Readable::read(reader)?;
2118                 if min_ver > SERIALIZATION_VERSION {
2119                         return Err(DecodeError::UnknownVersion);
2120                 }
2121
2122                 let latest_update_id: u64 = Readable::read(reader)?;
2123                 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
2124
2125                 let destination_script = Readable::read(reader)?;
2126                 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
2127                         0 => {
2128                                 let revokable_address = Readable::read(reader)?;
2129                                 let per_commitment_point = Readable::read(reader)?;
2130                                 let revokable_script = Readable::read(reader)?;
2131                                 Some((revokable_address, per_commitment_point, revokable_script))
2132                         },
2133                         1 => { None },
2134                         _ => return Err(DecodeError::InvalidValue),
2135                 };
2136                 let counterparty_payment_script = Readable::read(reader)?;
2137                 let shutdown_script = Readable::read(reader)?;
2138
2139                 let keys = Readable::read(reader)?;
2140                 // Technically this can fail and serialize fail a round-trip, but only for serialization of
2141                 // barely-init'd ChannelMonitors that we can't do anything with.
2142                 let outpoint = OutPoint {
2143                         txid: Readable::read(reader)?,
2144                         index: Readable::read(reader)?,
2145                 };
2146                 let funding_info = (outpoint, Readable::read(reader)?);
2147                 let current_counterparty_commitment_txid = Readable::read(reader)?;
2148                 let prev_counterparty_commitment_txid = Readable::read(reader)?;
2149
2150                 let counterparty_tx_cache = Readable::read(reader)?;
2151                 let funding_redeemscript = Readable::read(reader)?;
2152                 let channel_value_satoshis = Readable::read(reader)?;
2153
2154                 let their_cur_revocation_points = {
2155                         let first_idx = <U48 as Readable>::read(reader)?.0;
2156                         if first_idx == 0 {
2157                                 None
2158                         } else {
2159                                 let first_point = Readable::read(reader)?;
2160                                 let second_point_slice: [u8; 33] = Readable::read(reader)?;
2161                                 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
2162                                         Some((first_idx, first_point, None))
2163                                 } else {
2164                                         Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
2165                                 }
2166                         }
2167                 };
2168
2169                 let on_holder_tx_csv: u16 = Readable::read(reader)?;
2170
2171                 let commitment_secrets = Readable::read(reader)?;
2172
2173                 macro_rules! read_htlc_in_commitment {
2174                         () => {
2175                                 {
2176                                         let offered: bool = Readable::read(reader)?;
2177                                         let amount_msat: u64 = Readable::read(reader)?;
2178                                         let cltv_expiry: u32 = Readable::read(reader)?;
2179                                         let payment_hash: PaymentHash = Readable::read(reader)?;
2180                                         let transaction_output_index: Option<u32> = Readable::read(reader)?;
2181
2182                                         HTLCOutputInCommitment {
2183                                                 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
2184                                         }
2185                                 }
2186                         }
2187                 }
2188
2189                 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
2190                 let mut counterparty_claimable_outpoints = HashMap::with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
2191                 for _ in 0..counterparty_claimable_outpoints_len {
2192                         let txid: Txid = Readable::read(reader)?;
2193                         let htlcs_count: u64 = Readable::read(reader)?;
2194                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
2195                         for _ in 0..htlcs_count {
2196                                 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
2197                         }
2198                         if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
2199                                 return Err(DecodeError::InvalidValue);
2200                         }
2201                 }
2202
2203                 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
2204                 let mut counterparty_commitment_txn_on_chain = HashMap::with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
2205                 for _ in 0..counterparty_commitment_txn_on_chain_len {
2206                         let txid: Txid = Readable::read(reader)?;
2207                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2208                         let outputs_count = <u64 as Readable>::read(reader)?;
2209                         let mut outputs = Vec::with_capacity(cmp::min(outputs_count as usize, MAX_ALLOC_SIZE / 8));
2210                         for _ in 0..outputs_count {
2211                                 outputs.push(Readable::read(reader)?);
2212                         }
2213                         if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, (commitment_number, outputs)) {
2214                                 return Err(DecodeError::InvalidValue);
2215                         }
2216                 }
2217
2218                 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
2219                 let mut counterparty_hash_commitment_number = HashMap::with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
2220                 for _ in 0..counterparty_hash_commitment_number_len {
2221                         let payment_hash: PaymentHash = Readable::read(reader)?;
2222                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2223                         if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
2224                                 return Err(DecodeError::InvalidValue);
2225                         }
2226                 }
2227
2228                 macro_rules! read_holder_tx {
2229                         () => {
2230                                 {
2231                                         let txid = Readable::read(reader)?;
2232                                         let revocation_key = Readable::read(reader)?;
2233                                         let a_htlc_key = Readable::read(reader)?;
2234                                         let b_htlc_key = Readable::read(reader)?;
2235                                         let delayed_payment_key = Readable::read(reader)?;
2236                                         let per_commitment_point = Readable::read(reader)?;
2237                                         let feerate_per_kw: u32 = Readable::read(reader)?;
2238
2239                                         let htlcs_len: u64 = Readable::read(reader)?;
2240                                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_len as usize, MAX_ALLOC_SIZE / 128));
2241                                         for _ in 0..htlcs_len {
2242                                                 let htlc = read_htlc_in_commitment!();
2243                                                 let sigs = match <u8 as Readable>::read(reader)? {
2244                                                         0 => None,
2245                                                         1 => Some(Readable::read(reader)?),
2246                                                         _ => return Err(DecodeError::InvalidValue),
2247                                                 };
2248                                                 htlcs.push((htlc, sigs, Readable::read(reader)?));
2249                                         }
2250
2251                                         HolderSignedTx {
2252                                                 txid,
2253                                                 revocation_key, a_htlc_key, b_htlc_key, delayed_payment_key, per_commitment_point, feerate_per_kw,
2254                                                 htlc_outputs: htlcs
2255                                         }
2256                                 }
2257                         }
2258                 }
2259
2260                 let prev_holder_signed_commitment_tx = match <u8 as Readable>::read(reader)? {
2261                         0 => None,
2262                         1 => {
2263                                 Some(read_holder_tx!())
2264                         },
2265                         _ => return Err(DecodeError::InvalidValue),
2266                 };
2267                 let current_holder_commitment_tx = read_holder_tx!();
2268
2269                 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
2270                 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
2271
2272                 let payment_preimages_len: u64 = Readable::read(reader)?;
2273                 let mut payment_preimages = HashMap::with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
2274                 for _ in 0..payment_preimages_len {
2275                         let preimage: PaymentPreimage = Readable::read(reader)?;
2276                         let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2277                         if let Some(_) = payment_preimages.insert(hash, preimage) {
2278                                 return Err(DecodeError::InvalidValue);
2279                         }
2280                 }
2281
2282                 let pending_monitor_events_len: u64 = Readable::read(reader)?;
2283                 let mut pending_monitor_events = Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3)));
2284                 for _ in 0..pending_monitor_events_len {
2285                         let ev = match <u8 as Readable>::read(reader)? {
2286                                 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
2287                                 1 => MonitorEvent::CommitmentTxBroadcasted(funding_info.0),
2288                                 _ => return Err(DecodeError::InvalidValue)
2289                         };
2290                         pending_monitor_events.push(ev);
2291                 }
2292
2293                 let pending_events_len: u64 = Readable::read(reader)?;
2294                 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
2295                 for _ in 0..pending_events_len {
2296                         if let Some(event) = MaybeReadable::read(reader)? {
2297                                 pending_events.push(event);
2298                         }
2299                 }
2300
2301                 let last_block_hash: BlockHash = Readable::read(reader)?;
2302
2303                 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
2304                 let mut onchain_events_waiting_threshold_conf = HashMap::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
2305                 for _ in 0..waiting_threshold_conf_len {
2306                         let height_target = Readable::read(reader)?;
2307                         let events_len: u64 = Readable::read(reader)?;
2308                         let mut events = Vec::with_capacity(cmp::min(events_len as usize, MAX_ALLOC_SIZE / 128));
2309                         for _ in 0..events_len {
2310                                 let ev = match <u8 as Readable>::read(reader)? {
2311                                         0 => {
2312                                                 let htlc_source = Readable::read(reader)?;
2313                                                 let hash = Readable::read(reader)?;
2314                                                 OnchainEvent::HTLCUpdate {
2315                                                         htlc_update: (htlc_source, hash)
2316                                                 }
2317                                         },
2318                                         1 => {
2319                                                 let descriptor = Readable::read(reader)?;
2320                                                 OnchainEvent::MaturingOutput {
2321                                                         descriptor
2322                                                 }
2323                                         },
2324                                         _ => return Err(DecodeError::InvalidValue),
2325                                 };
2326                                 events.push(ev);
2327                         }
2328                         onchain_events_waiting_threshold_conf.insert(height_target, events);
2329                 }
2330
2331                 let outputs_to_watch_len: u64 = Readable::read(reader)?;
2332                 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::<Vec<Script>>())));
2333                 for _ in 0..outputs_to_watch_len {
2334                         let txid = Readable::read(reader)?;
2335                         let outputs_len: u64 = Readable::read(reader)?;
2336                         let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Script>()));
2337                         for _ in 0..outputs_len {
2338                                 outputs.push(Readable::read(reader)?);
2339                         }
2340                         if let Some(_) = outputs_to_watch.insert(txid, outputs) {
2341                                 return Err(DecodeError::InvalidValue);
2342                         }
2343                 }
2344                 let onchain_tx_handler = Readable::read(reader)?;
2345
2346                 let lockdown_from_offchain = Readable::read(reader)?;
2347                 let holder_tx_signed = Readable::read(reader)?;
2348
2349                 Ok((last_block_hash.clone(), ChannelMonitor {
2350                         latest_update_id,
2351                         commitment_transaction_number_obscure_factor,
2352
2353                         destination_script,
2354                         broadcasted_holder_revokable_script,
2355                         counterparty_payment_script,
2356                         shutdown_script,
2357
2358                         keys,
2359                         funding_info,
2360                         current_counterparty_commitment_txid,
2361                         prev_counterparty_commitment_txid,
2362
2363                         counterparty_tx_cache,
2364                         funding_redeemscript,
2365                         channel_value_satoshis,
2366                         their_cur_revocation_points,
2367
2368                         on_holder_tx_csv,
2369
2370                         commitment_secrets,
2371                         counterparty_claimable_outpoints,
2372                         counterparty_commitment_txn_on_chain,
2373                         counterparty_hash_commitment_number,
2374
2375                         prev_holder_signed_commitment_tx,
2376                         current_holder_commitment_tx,
2377                         current_counterparty_commitment_number,
2378                         current_holder_commitment_number,
2379
2380                         payment_preimages,
2381                         pending_monitor_events,
2382                         pending_events,
2383
2384                         onchain_events_waiting_threshold_conf,
2385                         outputs_to_watch,
2386
2387                         onchain_tx_handler,
2388
2389                         lockdown_from_offchain,
2390                         holder_tx_signed,
2391
2392                         last_block_hash,
2393                         secp_ctx: Secp256k1::new(),
2394                 }))
2395         }
2396 }
2397
2398 #[cfg(test)]
2399 mod tests {
2400         use bitcoin::blockdata::script::{Script, Builder};
2401         use bitcoin::blockdata::opcodes;
2402         use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, SigHashType};
2403         use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
2404         use bitcoin::util::bip143;
2405         use bitcoin::hashes::Hash;
2406         use bitcoin::hashes::sha256::Hash as Sha256;
2407         use bitcoin::hashes::hex::FromHex;
2408         use bitcoin::hash_types::Txid;
2409         use hex;
2410         use chain::channelmonitor::ChannelMonitor;
2411         use chain::transaction::OutPoint;
2412         use ln::channelmanager::{PaymentPreimage, PaymentHash};
2413         use ln::onchaintx::{OnchainTxHandler, InputDescriptors};
2414         use ln::chan_utils;
2415         use ln::chan_utils::{HTLCOutputInCommitment, HolderCommitmentTransaction};
2416         use util::test_utils::TestLogger;
2417         use bitcoin::secp256k1::key::{SecretKey,PublicKey};
2418         use bitcoin::secp256k1::Secp256k1;
2419         use std::sync::Arc;
2420         use chain::keysinterface::InMemoryChannelKeys;
2421
2422         #[test]
2423         fn test_prune_preimages() {
2424                 let secp_ctx = Secp256k1::new();
2425                 let logger = Arc::new(TestLogger::new());
2426
2427                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
2428                 let dummy_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
2429
2430                 let mut preimages = Vec::new();
2431                 {
2432                         for i in 0..20 {
2433                                 let preimage = PaymentPreimage([i; 32]);
2434                                 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2435                                 preimages.push((preimage, hash));
2436                         }
2437                 }
2438
2439                 macro_rules! preimages_slice_to_htlc_outputs {
2440                         ($preimages_slice: expr) => {
2441                                 {
2442                                         let mut res = Vec::new();
2443                                         for (idx, preimage) in $preimages_slice.iter().enumerate() {
2444                                                 res.push((HTLCOutputInCommitment {
2445                                                         offered: true,
2446                                                         amount_msat: 0,
2447                                                         cltv_expiry: 0,
2448                                                         payment_hash: preimage.1.clone(),
2449                                                         transaction_output_index: Some(idx as u32),
2450                                                 }, None));
2451                                         }
2452                                         res
2453                                 }
2454                         }
2455                 }
2456                 macro_rules! preimages_to_holder_htlcs {
2457                         ($preimages_slice: expr) => {
2458                                 {
2459                                         let mut inp = preimages_slice_to_htlc_outputs!($preimages_slice);
2460                                         let res: Vec<_> = inp.drain(..).map(|e| { (e.0, None, e.1) }).collect();
2461                                         res
2462                                 }
2463                         }
2464                 }
2465
2466                 macro_rules! test_preimages_exist {
2467                         ($preimages_slice: expr, $monitor: expr) => {
2468                                 for preimage in $preimages_slice {
2469                                         assert!($monitor.payment_preimages.contains_key(&preimage.1));
2470                                 }
2471                         }
2472                 }
2473
2474                 let keys = InMemoryChannelKeys::new(
2475                         &secp_ctx,
2476                         SecretKey::from_slice(&[41; 32]).unwrap(),
2477                         SecretKey::from_slice(&[41; 32]).unwrap(),
2478                         SecretKey::from_slice(&[41; 32]).unwrap(),
2479                         SecretKey::from_slice(&[41; 32]).unwrap(),
2480                         SecretKey::from_slice(&[41; 32]).unwrap(),
2481                         [41; 32],
2482                         0,
2483                         (0, 0)
2484                 );
2485
2486                 // Prune with one old state and a holder commitment tx holding a few overlaps with the
2487                 // old state.
2488                 let mut monitor = ChannelMonitor::new(keys,
2489                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap()), 0, &Script::new(),
2490                         (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, Script::new()),
2491                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
2492                         &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap()),
2493                         10, Script::new(), 46, 0, HolderCommitmentTransaction::dummy());
2494
2495                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..10])).unwrap();
2496                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
2497                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
2498                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
2499                 monitor.provide_latest_counterparty_commitment_tx_info(&dummy_tx, preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
2500                 for &(ref preimage, ref hash) in preimages.iter() {
2501                         monitor.provide_payment_preimage(hash, preimage);
2502                 }
2503
2504                 // Now provide a secret, pruning preimages 10-15
2505                 let mut secret = [0; 32];
2506                 secret[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2507                 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
2508                 assert_eq!(monitor.payment_preimages.len(), 15);
2509                 test_preimages_exist!(&preimages[0..10], monitor);
2510                 test_preimages_exist!(&preimages[15..20], monitor);
2511
2512                 // Now provide a further secret, pruning preimages 15-17
2513                 secret[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2514                 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
2515                 assert_eq!(monitor.payment_preimages.len(), 13);
2516                 test_preimages_exist!(&preimages[0..10], monitor);
2517                 test_preimages_exist!(&preimages[17..20], monitor);
2518
2519                 // Now update holder commitment tx info, pruning only element 18 as we still care about the
2520                 // previous commitment tx's preimages too
2521                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..5])).unwrap();
2522                 secret[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2523                 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
2524                 assert_eq!(monitor.payment_preimages.len(), 12);
2525                 test_preimages_exist!(&preimages[0..10], monitor);
2526                 test_preimages_exist!(&preimages[18..20], monitor);
2527
2528                 // But if we do it again, we'll prune 5-10
2529                 monitor.provide_latest_holder_commitment_tx_info(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..3])).unwrap();
2530                 secret[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2531                 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
2532                 assert_eq!(monitor.payment_preimages.len(), 5);
2533                 test_preimages_exist!(&preimages[0..5], monitor);
2534         }
2535
2536         #[test]
2537         fn test_claim_txn_weight_computation() {
2538                 // We test Claim txn weight, knowing that we want expected weigth and
2539                 // not actual case to avoid sigs and time-lock delays hell variances.
2540
2541                 let secp_ctx = Secp256k1::new();
2542                 let privkey = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
2543                 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
2544                 let mut sum_actual_sigs = 0;
2545
2546                 macro_rules! sign_input {
2547                         ($sighash_parts: expr, $idx: expr, $amount: expr, $input_type: expr, $sum_actual_sigs: expr) => {
2548                                 let htlc = HTLCOutputInCommitment {
2549                                         offered: if *$input_type == InputDescriptors::RevokedOfferedHTLC || *$input_type == InputDescriptors::OfferedHTLC { true } else { false },
2550                                         amount_msat: 0,
2551                                         cltv_expiry: 2 << 16,
2552                                         payment_hash: PaymentHash([1; 32]),
2553                                         transaction_output_index: Some($idx as u32),
2554                                 };
2555                                 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) };
2556                                 let sighash = hash_to_message!(&$sighash_parts.signature_hash($idx, &redeem_script, $amount, SigHashType::All)[..]);
2557                                 let sig = secp_ctx.sign(&sighash, &privkey);
2558                                 $sighash_parts.access_witness($idx).push(sig.serialize_der().to_vec());
2559                                 $sighash_parts.access_witness($idx)[0].push(SigHashType::All as u8);
2560                                 sum_actual_sigs += $sighash_parts.access_witness($idx)[0].len();
2561                                 if *$input_type == InputDescriptors::RevokedOutput {
2562                                         $sighash_parts.access_witness($idx).push(vec!(1));
2563                                 } else if *$input_type == InputDescriptors::RevokedOfferedHTLC || *$input_type == InputDescriptors::RevokedReceivedHTLC {
2564                                         $sighash_parts.access_witness($idx).push(pubkey.clone().serialize().to_vec());
2565                                 } else if *$input_type == InputDescriptors::ReceivedHTLC {
2566                                         $sighash_parts.access_witness($idx).push(vec![0]);
2567                                 } else {
2568                                         $sighash_parts.access_witness($idx).push(PaymentPreimage([1; 32]).0.to_vec());
2569                                 }
2570                                 $sighash_parts.access_witness($idx).push(redeem_script.into_bytes());
2571                                 println!("witness[0] {}", $sighash_parts.access_witness($idx)[0].len());
2572                                 println!("witness[1] {}", $sighash_parts.access_witness($idx)[1].len());
2573                                 println!("witness[2] {}", $sighash_parts.access_witness($idx)[2].len());
2574                         }
2575                 }
2576
2577                 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
2578                 let txid = Txid::from_hex("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
2579
2580                 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
2581                 let mut claim_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
2582                 for i in 0..4 {
2583                         claim_tx.input.push(TxIn {
2584                                 previous_output: BitcoinOutPoint {
2585                                         txid,
2586                                         vout: i,
2587                                 },
2588                                 script_sig: Script::new(),
2589                                 sequence: 0xfffffffd,
2590                                 witness: Vec::new(),
2591                         });
2592                 }
2593                 claim_tx.output.push(TxOut {
2594                         script_pubkey: script_pubkey.clone(),
2595                         value: 0,
2596                 });
2597                 let base_weight = claim_tx.get_weight();
2598                 let inputs_des = vec![InputDescriptors::RevokedOutput, InputDescriptors::RevokedOfferedHTLC, InputDescriptors::RevokedOfferedHTLC, InputDescriptors::RevokedReceivedHTLC];
2599                 {
2600                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2601                         for (idx, inp) in inputs_des.iter().enumerate() {
2602                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2603                         }
2604                 }
2605                 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));
2606
2607                 // Claim tx with 1 offered HTLCs, 3 received HTLCs
2608                 claim_tx.input.clear();
2609                 sum_actual_sigs = 0;
2610                 for i in 0..4 {
2611                         claim_tx.input.push(TxIn {
2612                                 previous_output: BitcoinOutPoint {
2613                                         txid,
2614                                         vout: i,
2615                                 },
2616                                 script_sig: Script::new(),
2617                                 sequence: 0xfffffffd,
2618                                 witness: Vec::new(),
2619                         });
2620                 }
2621                 let base_weight = claim_tx.get_weight();
2622                 let inputs_des = vec![InputDescriptors::OfferedHTLC, InputDescriptors::ReceivedHTLC, InputDescriptors::ReceivedHTLC, InputDescriptors::ReceivedHTLC];
2623                 {
2624                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2625                         for (idx, inp) in inputs_des.iter().enumerate() {
2626                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2627                         }
2628                 }
2629                 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));
2630
2631                 // Justice tx with 1 revoked HTLC-Success tx output
2632                 claim_tx.input.clear();
2633                 sum_actual_sigs = 0;
2634                 claim_tx.input.push(TxIn {
2635                         previous_output: BitcoinOutPoint {
2636                                 txid,
2637                                 vout: 0,
2638                         },
2639                         script_sig: Script::new(),
2640                         sequence: 0xfffffffd,
2641                         witness: Vec::new(),
2642                 });
2643                 let base_weight = claim_tx.get_weight();
2644                 let inputs_des = vec![InputDescriptors::RevokedOutput];
2645                 {
2646                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
2647                         for (idx, inp) in inputs_des.iter().enumerate() {
2648                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
2649                         }
2650                 }
2651                 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));
2652         }
2653
2654         // Further testing is done in the ChannelManager integration tests.
2655 }