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