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