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