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