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