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