Generate a PaymentForwarded event when a forwarded HTLC is claimed
[rust-lightning] / lightning / src / chain / channelmonitor.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! The logic to monitor for on-chain transactions and create the relevant claim responses lives
11 //! here.
12 //!
13 //! ChannelMonitor objects are generated by ChannelManager in response to relevant
14 //! messages/actions, and MUST be persisted to disk (and, preferably, remotely) before progress can
15 //! be made in responding to certain messages, see [`chain::Watch`] for more.
16 //!
17 //! Note that ChannelMonitors are an important part of the lightning trust model and a copy of the
18 //! latest ChannelMonitor must always be actively monitoring for chain updates (and no out-of-date
19 //! ChannelMonitors should do so). Thus, if you're building rust-lightning into an HSM or other
20 //! security-domain-separated system design, you should consider having multiple paths for
21 //! ChannelMonitors to get out of the HSM and onto monitoring devices.
22
23 use bitcoin::blockdata::block::{Block, BlockHeader};
24 use bitcoin::blockdata::transaction::{TxOut,Transaction};
25 use bitcoin::blockdata::script::{Script, Builder};
26 use bitcoin::blockdata::opcodes;
27
28 use bitcoin::hashes::Hash;
29 use bitcoin::hashes::sha256::Hash as Sha256;
30 use bitcoin::hash_types::{Txid, BlockHash, WPubkeyHash};
31
32 use bitcoin::secp256k1::{Secp256k1,Signature};
33 use bitcoin::secp256k1::key::{SecretKey,PublicKey};
34 use bitcoin::secp256k1;
35
36 use ln::{PaymentHash, PaymentPreimage};
37 use ln::msgs::DecodeError;
38 use ln::chan_utils;
39 use ln::chan_utils::{CounterpartyCommitmentSecrets, HTLCOutputInCommitment, HTLCType, ChannelTransactionParameters, HolderCommitmentTransaction};
40 use ln::channelmanager::HTLCSource;
41 use chain;
42 use chain::{BestBlock, WatchedOutput};
43 use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
44 use chain::transaction::{OutPoint, TransactionData};
45 use chain::keysinterface::{SpendableOutputDescriptor, StaticPaymentOutputDescriptor, DelayedPaymentOutputDescriptor, Sign, KeysInterface};
46 use chain::onchaintx::OnchainTxHandler;
47 use chain::package::{CounterpartyOfferedHTLCOutput, CounterpartyReceivedHTLCOutput, HolderFundingOutput, HolderHTLCOutput, PackageSolvingData, PackageTemplate, RevokedOutput, RevokedHTLCOutput};
48 use chain::Filter;
49 use util::logger::Logger;
50 use util::ser::{Readable, ReadableArgs, MaybeReadable, Writer, Writeable, U48, OptionDeserWrapper};
51 use util::byte_utils;
52 use util::events::Event;
53
54 use prelude::*;
55 use core::{cmp, mem};
56 use std::io::Error;
57 use core::ops::Deref;
58 use sync::Mutex;
59
60 /// An update generated by the underlying Channel itself which contains some new information the
61 /// ChannelMonitor should be made aware of.
62 #[cfg_attr(any(test, feature = "fuzztarget", feature = "_test_utils"), derive(PartialEq))]
63 #[derive(Clone)]
64 #[must_use]
65 pub struct ChannelMonitorUpdate {
66         pub(crate) updates: Vec<ChannelMonitorUpdateStep>,
67         /// The sequence number of this update. Updates *must* be replayed in-order according to this
68         /// sequence number (and updates may panic if they are not). The update_id values are strictly
69         /// increasing and increase by one for each new update, with one exception specified below.
70         ///
71         /// This sequence number is also used to track up to which points updates which returned
72         /// ChannelMonitorUpdateErr::TemporaryFailure have been applied to all copies of a given
73         /// ChannelMonitor when ChannelManager::channel_monitor_updated is called.
74         ///
75         /// The only instance where update_id values are not strictly increasing is the case where we
76         /// allow post-force-close updates with a special update ID of [`CLOSED_CHANNEL_UPDATE_ID`]. See
77         /// its docs for more details.
78         pub update_id: u64,
79 }
80
81 /// If:
82 ///    (1) a channel has been force closed and
83 ///    (2) we receive a preimage from a forward link that allows us to spend an HTLC output on
84 ///        this channel's (the backward link's) broadcasted commitment transaction
85 /// then we allow the `ChannelManager` to send a `ChannelMonitorUpdate` with this update ID,
86 /// with the update providing said payment preimage. No other update types are allowed after
87 /// force-close.
88 pub const CLOSED_CHANNEL_UPDATE_ID: u64 = core::u64::MAX;
89
90 impl Writeable for ChannelMonitorUpdate {
91         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
92                 write_ver_prefix!(w, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
93                 self.update_id.write(w)?;
94                 (self.updates.len() as u64).write(w)?;
95                 for update_step in self.updates.iter() {
96                         update_step.write(w)?;
97                 }
98                 write_tlv_fields!(w, {});
99                 Ok(())
100         }
101 }
102 impl Readable for ChannelMonitorUpdate {
103         fn read<R: ::std::io::Read>(r: &mut R) -> Result<Self, DecodeError> {
104                 let _ver = read_ver_prefix!(r, SERIALIZATION_VERSION);
105                 let update_id: u64 = Readable::read(r)?;
106                 let len: u64 = Readable::read(r)?;
107                 let mut updates = Vec::with_capacity(cmp::min(len as usize, MAX_ALLOC_SIZE / ::core::mem::size_of::<ChannelMonitorUpdateStep>()));
108                 for _ in 0..len {
109                         updates.push(Readable::read(r)?);
110                 }
111                 read_tlv_fields!(r, {});
112                 Ok(Self { update_id, updates })
113         }
114 }
115
116 /// An error enum representing a failure to persist a channel monitor update.
117 #[derive(Clone, Copy, Debug, PartialEq)]
118 pub enum ChannelMonitorUpdateErr {
119         /// Used to indicate a temporary failure (eg connection to a watchtower or remote backup of
120         /// our state failed, but is expected to succeed at some point in the future).
121         ///
122         /// Such a failure will "freeze" a channel, preventing us from revoking old states or
123         /// submitting new commitment transactions to the counterparty. Once the update(s) which failed
124         /// have been successfully applied, ChannelManager::channel_monitor_updated can be used to
125         /// restore the channel to an operational state.
126         ///
127         /// Note that a given ChannelManager will *never* re-generate a given ChannelMonitorUpdate. If
128         /// you return a TemporaryFailure you must ensure that it is written to disk safely before
129         /// writing out the latest ChannelManager state.
130         ///
131         /// Even when a channel has been "frozen" updates to the ChannelMonitor can continue to occur
132         /// (eg if an inbound HTLC which we forwarded was claimed upstream resulting in us attempting
133         /// to claim it on this channel) and those updates must be applied wherever they can be. At
134         /// least one such updated ChannelMonitor must be persisted otherwise PermanentFailure should
135         /// be returned to get things on-chain ASAP using only the in-memory copy. Obviously updates to
136         /// the channel which would invalidate previous ChannelMonitors are not made when a channel has
137         /// been "frozen".
138         ///
139         /// Note that even if updates made after TemporaryFailure succeed you must still call
140         /// channel_monitor_updated to ensure you have the latest monitor and re-enable normal channel
141         /// operation.
142         ///
143         /// Note that the update being processed here will not be replayed for you when you call
144         /// ChannelManager::channel_monitor_updated, so you must store the update itself along
145         /// with the persisted ChannelMonitor on your own local disk prior to returning a
146         /// TemporaryFailure. You may, of course, employ a journaling approach, storing only the
147         /// ChannelMonitorUpdate on disk without updating the monitor itself, replaying the journal at
148         /// reload-time.
149         ///
150         /// For deployments where a copy of ChannelMonitors and other local state are backed up in a
151         /// remote location (with local copies persisted immediately), it is anticipated that all
152         /// updates will return TemporaryFailure until the remote copies could be updated.
153         TemporaryFailure,
154         /// Used to indicate no further channel monitor updates will be allowed (eg we've moved on to a
155         /// different watchtower and cannot update with all watchtowers that were previously informed
156         /// of this channel).
157         ///
158         /// At reception of this error, ChannelManager will force-close the channel and return at
159         /// least a final ChannelMonitorUpdate::ChannelForceClosed which must be delivered to at
160         /// least one ChannelMonitor copy. Revocation secret MUST NOT be released and offchain channel
161         /// update must be rejected.
162         ///
163         /// This failure may also signal a failure to update the local persisted copy of one of
164         /// the channel monitor instance.
165         ///
166         /// Note that even when you fail a holder commitment transaction update, you must store the
167         /// update to ensure you can claim from it in case of a duplicate copy of this ChannelMonitor
168         /// broadcasts it (e.g distributed channel-monitor deployment)
169         ///
170         /// In case of distributed watchtowers deployment, the new version must be written to disk, as
171         /// state may have been stored but rejected due to a block forcing a commitment broadcast. This
172         /// storage is used to claim outputs of rejected state confirmed onchain by another watchtower,
173         /// lagging behind on block processing.
174         PermanentFailure,
175 }
176
177 /// General Err type for ChannelMonitor actions. Generally, this implies that the data provided is
178 /// inconsistent with the ChannelMonitor being called. eg for ChannelMonitor::update_monitor this
179 /// means you tried to update a monitor for a different channel or the ChannelMonitorUpdate was
180 /// corrupted.
181 /// Contains a developer-readable error message.
182 #[derive(Clone, Debug)]
183 pub struct MonitorUpdateError(pub &'static str);
184
185 /// An event to be processed by the ChannelManager.
186 #[derive(Clone, PartialEq)]
187 pub enum MonitorEvent {
188         /// A monitor event containing an HTLCUpdate.
189         HTLCEvent(HTLCUpdate),
190
191         /// A monitor event that the Channel's commitment transaction was broadcasted.
192         CommitmentTxBroadcasted(OutPoint),
193 }
194
195 /// Simple structure sent back by `chain::Watch` when an HTLC from a forward channel is detected on
196 /// chain. Used to update the corresponding HTLC in the backward channel. Failing to pass the
197 /// preimage claim backward will lead to loss of funds.
198 #[derive(Clone, PartialEq)]
199 pub struct HTLCUpdate {
200         pub(crate) payment_hash: PaymentHash,
201         pub(crate) payment_preimage: Option<PaymentPreimage>,
202         pub(crate) source: HTLCSource,
203         pub(crate) onchain_value_satoshis: Option<u64>,
204 }
205 impl_writeable_tlv_based!(HTLCUpdate, {
206         (0, payment_hash, required),
207         (1, onchain_value_satoshis, option),
208         (2, source, required),
209         (4, payment_preimage, option),
210 });
211
212 /// If an HTLC expires within this many blocks, don't try to claim it in a shared transaction,
213 /// instead claiming it in its own individual transaction.
214 pub(crate) const CLTV_SHARED_CLAIM_BUFFER: u32 = 12;
215 /// If an HTLC expires within this many blocks, force-close the channel to broadcast the
216 /// HTLC-Success transaction.
217 /// In other words, this is an upper bound on how many blocks we think it can take us to get a
218 /// transaction confirmed (and we use it in a few more, equivalent, places).
219 pub(crate) const CLTV_CLAIM_BUFFER: u32 = 18;
220 /// Number of blocks by which point we expect our counterparty to have seen new blocks on the
221 /// network and done a full update_fail_htlc/commitment_signed dance (+ we've updated all our
222 /// copies of ChannelMonitors, including watchtowers). We could enforce the contract by failing
223 /// at CLTV expiration height but giving a grace period to our peer may be profitable for us if he
224 /// can provide an over-late preimage. Nevertheless, grace period has to be accounted in our
225 /// CLTV_EXPIRY_DELTA to be secure. Following this policy we may decrease the rate of channel failures
226 /// due to expiration but increase the cost of funds being locked longuer in case of failure.
227 /// This delay also cover a low-power peer being slow to process blocks and so being behind us on
228 /// accurate block height.
229 /// In case of onchain failure to be pass backward we may see the last block of ANTI_REORG_DELAY
230 /// with at worst this delay, so we are not only using this value as a mercy for them but also
231 /// us as a safeguard to delay with enough time.
232 pub(crate) const LATENCY_GRACE_PERIOD_BLOCKS: u32 = 3;
233 /// Number of blocks we wait on seeing a HTLC output being solved before we fail corresponding inbound
234 /// HTLCs. This prevents us from failing backwards and then getting a reorg resulting in us losing money.
235 // We also use this delay to be sure we can remove our in-flight claim txn from bump candidates buffer.
236 // It may cause spurious generation of bumped claim txn but that's alright given the outpoint is already
237 // solved by a previous claim tx. What we want to avoid is reorg evicting our claim tx and us not
238 // keep bumping another claim tx to solve the outpoint.
239 pub const ANTI_REORG_DELAY: u32 = 6;
240 /// Number of blocks before confirmation at which we fail back an un-relayed HTLC or at which we
241 /// refuse to accept a new HTLC.
242 ///
243 /// This is used for a few separate purposes:
244 /// 1) if we've received an MPP HTLC to us and it expires within this many blocks and we are
245 ///    waiting on additional parts (or waiting on the preimage for any HTLC from the user), we will
246 ///    fail this HTLC,
247 /// 2) if we receive an HTLC within this many blocks of its expiry (plus one to avoid a race
248 ///    condition with the above), we will fail this HTLC without telling the user we received it,
249 /// 3) if we are waiting on a connection or a channel state update to send an HTLC to a peer, and
250 ///    that HTLC expires within this many blocks, we will simply fail the HTLC instead.
251 ///
252 /// (1) is all about protecting us - we need enough time to update the channel state before we hit
253 /// CLTV_CLAIM_BUFFER, at which point we'd go on chain to claim the HTLC with the preimage.
254 ///
255 /// (2) is the same, but with an additional buffer to avoid accepting an HTLC which is immediately
256 /// in a race condition between the user connecting a block (which would fail it) and the user
257 /// providing us the preimage (which would claim it).
258 ///
259 /// (3) is about our counterparty - we don't want to relay an HTLC to a counterparty when they may
260 /// end up force-closing the channel on us to claim it.
261 pub(crate) const HTLC_FAIL_BACK_BUFFER: u32 = CLTV_CLAIM_BUFFER + LATENCY_GRACE_PERIOD_BLOCKS;
262
263 // TODO(devrandom) replace this with HolderCommitmentTransaction
264 #[derive(Clone, PartialEq)]
265 struct HolderSignedTx {
266         /// txid of the transaction in tx, just used to make comparison faster
267         txid: Txid,
268         revocation_key: PublicKey,
269         a_htlc_key: PublicKey,
270         b_htlc_key: PublicKey,
271         delayed_payment_key: PublicKey,
272         per_commitment_point: PublicKey,
273         feerate_per_kw: u32,
274         htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
275 }
276 impl_writeable_tlv_based!(HolderSignedTx, {
277         (0, txid, required),
278         (2, revocation_key, required),
279         (4, a_htlc_key, required),
280         (6, b_htlc_key, required),
281         (8, delayed_payment_key, required),
282         (10, per_commitment_point, required),
283         (12, feerate_per_kw, required),
284         (14, htlc_outputs, vec_type)
285 });
286
287 /// We use this to track counterparty commitment transactions and htlcs outputs and
288 /// use it to generate any justice or 2nd-stage preimage/timeout transactions.
289 #[derive(PartialEq)]
290 struct CounterpartyCommitmentTransaction {
291         counterparty_delayed_payment_base_key: PublicKey,
292         counterparty_htlc_base_key: PublicKey,
293         on_counterparty_tx_csv: u16,
294         per_htlc: HashMap<Txid, Vec<HTLCOutputInCommitment>>
295 }
296
297 impl Writeable for CounterpartyCommitmentTransaction {
298         fn write<W: Writer>(&self, w: &mut W) -> Result<(), ::std::io::Error> {
299                 w.write_all(&byte_utils::be64_to_array(self.per_htlc.len() as u64))?;
300                 for (ref txid, ref htlcs) in self.per_htlc.iter() {
301                         w.write_all(&txid[..])?;
302                         w.write_all(&byte_utils::be64_to_array(htlcs.len() as u64))?;
303                         for &ref htlc in htlcs.iter() {
304                                 htlc.write(w)?;
305                         }
306                 }
307                 write_tlv_fields!(w, {
308                         (0, self.counterparty_delayed_payment_base_key, required),
309                         (2, self.counterparty_htlc_base_key, required),
310                         (4, self.on_counterparty_tx_csv, required),
311                 });
312                 Ok(())
313         }
314 }
315 impl Readable for CounterpartyCommitmentTransaction {
316         fn read<R: ::std::io::Read>(r: &mut R) -> Result<Self, DecodeError> {
317                 let counterparty_commitment_transaction = {
318                         let per_htlc_len: u64 = Readable::read(r)?;
319                         let mut per_htlc = HashMap::with_capacity(cmp::min(per_htlc_len as usize, MAX_ALLOC_SIZE / 64));
320                         for _  in 0..per_htlc_len {
321                                 let txid: Txid = Readable::read(r)?;
322                                 let htlcs_count: u64 = Readable::read(r)?;
323                                 let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
324                                 for _ in 0..htlcs_count {
325                                         let htlc = Readable::read(r)?;
326                                         htlcs.push(htlc);
327                                 }
328                                 if let Some(_) = per_htlc.insert(txid, htlcs) {
329                                         return Err(DecodeError::InvalidValue);
330                                 }
331                         }
332                         let mut counterparty_delayed_payment_base_key = OptionDeserWrapper(None);
333                         let mut counterparty_htlc_base_key = OptionDeserWrapper(None);
334                         let mut on_counterparty_tx_csv: u16 = 0;
335                         read_tlv_fields!(r, {
336                                 (0, counterparty_delayed_payment_base_key, required),
337                                 (2, counterparty_htlc_base_key, required),
338                                 (4, on_counterparty_tx_csv, required),
339                         });
340                         CounterpartyCommitmentTransaction {
341                                 counterparty_delayed_payment_base_key: counterparty_delayed_payment_base_key.0.unwrap(),
342                                 counterparty_htlc_base_key: counterparty_htlc_base_key.0.unwrap(),
343                                 on_counterparty_tx_csv,
344                                 per_htlc,
345                         }
346                 };
347                 Ok(counterparty_commitment_transaction)
348         }
349 }
350
351 /// An entry for an [`OnchainEvent`], stating the block height when the event was observed and the
352 /// transaction causing it.
353 ///
354 /// Used to determine when the on-chain event can be considered safe from a chain reorganization.
355 #[derive(PartialEq)]
356 struct OnchainEventEntry {
357         txid: Txid,
358         height: u32,
359         event: OnchainEvent,
360 }
361
362 impl OnchainEventEntry {
363         fn confirmation_threshold(&self) -> u32 {
364                 let mut conf_threshold = self.height + ANTI_REORG_DELAY - 1;
365                 if let OnchainEvent::MaturingOutput {
366                         descriptor: SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor)
367                 } = self.event {
368                         // A CSV'd transaction is confirmable in block (input height) + CSV delay, which means
369                         // it's broadcastable when we see the previous block.
370                         conf_threshold = cmp::max(conf_threshold, self.height + descriptor.to_self_delay as u32 - 1);
371                 }
372                 conf_threshold
373         }
374
375         fn has_reached_confirmation_threshold(&self, best_block: &BestBlock) -> bool {
376                 best_block.height() >= self.confirmation_threshold()
377         }
378 }
379
380 /// Upon discovering of some classes of onchain tx by ChannelMonitor, we may have to take actions on it
381 /// once they mature to enough confirmations (ANTI_REORG_DELAY)
382 #[derive(PartialEq)]
383 enum OnchainEvent {
384         /// HTLC output getting solved by a timeout, at maturation we pass upstream payment source information to solve
385         /// inbound HTLC in backward channel. Note, in case of preimage, we pass info to upstream without delay as we can
386         /// only win from it, so it's never an OnchainEvent
387         HTLCUpdate {
388                 source: HTLCSource,
389                 payment_hash: PaymentHash,
390                 onchain_value_satoshis: Option<u64>,
391         },
392         MaturingOutput {
393                 descriptor: SpendableOutputDescriptor,
394         },
395 }
396
397 impl_writeable_tlv_based!(OnchainEventEntry, {
398         (0, txid, required),
399         (2, height, required),
400         (4, event, required),
401 });
402
403 impl_writeable_tlv_based_enum!(OnchainEvent,
404         (0, HTLCUpdate) => {
405                 (0, source, required),
406                 (1, onchain_value_satoshis, option),
407                 (2, payment_hash, required),
408         },
409         (1, MaturingOutput) => {
410                 (0, descriptor, required),
411         },
412 ;);
413
414 #[cfg_attr(any(test, feature = "fuzztarget", feature = "_test_utils"), derive(PartialEq))]
415 #[derive(Clone)]
416 pub(crate) enum ChannelMonitorUpdateStep {
417         LatestHolderCommitmentTXInfo {
418                 commitment_tx: HolderCommitmentTransaction,
419                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
420         },
421         LatestCounterpartyCommitmentTXInfo {
422                 commitment_txid: Txid,
423                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
424                 commitment_number: u64,
425                 their_revocation_point: PublicKey,
426         },
427         PaymentPreimage {
428                 payment_preimage: PaymentPreimage,
429         },
430         CommitmentSecret {
431                 idx: u64,
432                 secret: [u8; 32],
433         },
434         /// Used to indicate that the no future updates will occur, and likely that the latest holder
435         /// commitment transaction(s) should be broadcast, as the channel has been force-closed.
436         ChannelForceClosed {
437                 /// If set to false, we shouldn't broadcast the latest holder commitment transaction as we
438                 /// think we've fallen behind!
439                 should_broadcast: bool,
440         },
441 }
442
443 impl_writeable_tlv_based_enum!(ChannelMonitorUpdateStep,
444         (0, LatestHolderCommitmentTXInfo) => {
445                 (0, commitment_tx, required),
446                 (2, htlc_outputs, vec_type),
447         },
448         (1, LatestCounterpartyCommitmentTXInfo) => {
449                 (0, commitment_txid, required),
450                 (2, commitment_number, required),
451                 (4, their_revocation_point, required),
452                 (6, htlc_outputs, vec_type),
453         },
454         (2, PaymentPreimage) => {
455                 (0, payment_preimage, required),
456         },
457         (3, CommitmentSecret) => {
458                 (0, idx, required),
459                 (2, secret, required),
460         },
461         (4, ChannelForceClosed) => {
462                 (0, should_broadcast, required),
463         },
464 ;);
465
466 /// A ChannelMonitor handles chain events (blocks connected and disconnected) and generates
467 /// on-chain transactions to ensure no loss of funds occurs.
468 ///
469 /// You MUST ensure that no ChannelMonitors for a given channel anywhere contain out-of-date
470 /// information and are actively monitoring the chain.
471 ///
472 /// Pending Events or updated HTLCs which have not yet been read out by
473 /// get_and_clear_pending_monitor_events or get_and_clear_pending_events are serialized to disk and
474 /// reloaded at deserialize-time. Thus, you must ensure that, when handling events, all events
475 /// gotten are fully handled before re-serializing the new state.
476 ///
477 /// Note that the deserializer is only implemented for (BlockHash, ChannelMonitor), which
478 /// tells you the last block hash which was block_connect()ed. You MUST rescan any blocks along
479 /// the "reorg path" (ie disconnecting blocks until you find a common ancestor from both the
480 /// returned block hash and the the current chain and then reconnecting blocks to get to the
481 /// best chain) upon deserializing the object!
482 pub struct ChannelMonitor<Signer: Sign> {
483         #[cfg(test)]
484         pub(crate) inner: Mutex<ChannelMonitorImpl<Signer>>,
485         #[cfg(not(test))]
486         inner: Mutex<ChannelMonitorImpl<Signer>>,
487 }
488
489 pub(crate) struct ChannelMonitorImpl<Signer: Sign> {
490         latest_update_id: u64,
491         commitment_transaction_number_obscure_factor: u64,
492
493         destination_script: Script,
494         broadcasted_holder_revokable_script: Option<(Script, PublicKey, PublicKey)>,
495         counterparty_payment_script: Script,
496         shutdown_script: Script,
497
498         channel_keys_id: [u8; 32],
499         holder_revocation_basepoint: PublicKey,
500         funding_info: (OutPoint, Script),
501         current_counterparty_commitment_txid: Option<Txid>,
502         prev_counterparty_commitment_txid: Option<Txid>,
503
504         counterparty_tx_cache: CounterpartyCommitmentTransaction,
505         funding_redeemscript: Script,
506         channel_value_satoshis: u64,
507         // first is the idx of the first of the two revocation points
508         their_cur_revocation_points: Option<(u64, PublicKey, Option<PublicKey>)>,
509
510         on_holder_tx_csv: u16,
511
512         commitment_secrets: CounterpartyCommitmentSecrets,
513         counterparty_claimable_outpoints: HashMap<Txid, Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>>,
514         /// We cannot identify HTLC-Success or HTLC-Timeout transactions by themselves on the chain.
515         /// Nor can we figure out their commitment numbers without the commitment transaction they are
516         /// spending. Thus, in order to claim them via revocation key, we track all the counterparty
517         /// commitment transactions which we find on-chain, mapping them to the commitment number which
518         /// can be used to derive the revocation key and claim the transactions.
519         counterparty_commitment_txn_on_chain: HashMap<Txid, u64>,
520         /// Cache used to make pruning of payment_preimages faster.
521         /// Maps payment_hash values to commitment numbers for counterparty transactions for non-revoked
522         /// counterparty transactions (ie should remain pretty small).
523         /// Serialized to disk but should generally not be sent to Watchtowers.
524         counterparty_hash_commitment_number: HashMap<PaymentHash, u64>,
525
526         // We store two holder commitment transactions to avoid any race conditions where we may update
527         // some monitors (potentially on watchtowers) but then fail to update others, resulting in the
528         // various monitors for one channel being out of sync, and us broadcasting a holder
529         // transaction for which we have deleted claim information on some watchtowers.
530         prev_holder_signed_commitment_tx: Option<HolderSignedTx>,
531         current_holder_commitment_tx: HolderSignedTx,
532
533         // Used just for ChannelManager to make sure it has the latest channel data during
534         // deserialization
535         current_counterparty_commitment_number: u64,
536         // Used just for ChannelManager to make sure it has the latest channel data during
537         // deserialization
538         current_holder_commitment_number: u64,
539
540         payment_preimages: HashMap<PaymentHash, PaymentPreimage>,
541
542         pending_monitor_events: Vec<MonitorEvent>,
543         pending_events: Vec<Event>,
544
545         // Used to track on-chain events (i.e., transactions part of channels confirmed on chain) on
546         // which to take actions once they reach enough confirmations. Each entry includes the
547         // transaction's id and the height when the transaction was confirmed on chain.
548         onchain_events_awaiting_threshold_conf: Vec<OnchainEventEntry>,
549
550         // If we get serialized out and re-read, we need to make sure that the chain monitoring
551         // interface knows about the TXOs that we want to be notified of spends of. We could probably
552         // be smart and derive them from the above storage fields, but its much simpler and more
553         // Obviously Correct (tm) if we just keep track of them explicitly.
554         outputs_to_watch: HashMap<Txid, Vec<(u32, Script)>>,
555
556         #[cfg(test)]
557         pub onchain_tx_handler: OnchainTxHandler<Signer>,
558         #[cfg(not(test))]
559         onchain_tx_handler: OnchainTxHandler<Signer>,
560
561         // This is set when the Channel[Manager] generated a ChannelMonitorUpdate which indicated the
562         // channel has been force-closed. After this is set, no further holder commitment transaction
563         // updates may occur, and we panic!() if one is provided.
564         lockdown_from_offchain: bool,
565
566         // Set once we've signed a holder commitment transaction and handed it over to our
567         // OnchainTxHandler. After this is set, no future updates to our holder commitment transactions
568         // may occur, and we fail any such monitor updates.
569         //
570         // In case of update rejection due to a locally already signed commitment transaction, we
571         // nevertheless store update content to track in case of concurrent broadcast by another
572         // remote monitor out-of-order with regards to the block view.
573         holder_tx_signed: bool,
574
575         // We simply modify best_block in Channel's block_connected so that serialization is
576         // consistent but hopefully the users' copy handles block_connected in a consistent way.
577         // (we do *not*, however, update them in update_monitor to ensure any local user copies keep
578         // their best_block from its state and not based on updated copies that didn't run through
579         // the full block_connected).
580         best_block: BestBlock,
581
582         secp_ctx: Secp256k1<secp256k1::All>, //TODO: dedup this a bit...
583 }
584
585 /// Transaction outputs to watch for on-chain spends.
586 pub type TransactionOutputs = (Txid, Vec<(u32, TxOut)>);
587
588 #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))]
589 /// Used only in testing and fuzztarget to check serialization roundtrips don't change the
590 /// underlying object
591 impl<Signer: Sign> PartialEq for ChannelMonitor<Signer> {
592         fn eq(&self, other: &Self) -> bool {
593                 let inner = self.inner.lock().unwrap();
594                 let other = other.inner.lock().unwrap();
595                 inner.eq(&other)
596         }
597 }
598
599 #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))]
600 /// Used only in testing and fuzztarget to check serialization roundtrips don't change the
601 /// underlying object
602 impl<Signer: Sign> PartialEq for ChannelMonitorImpl<Signer> {
603         fn eq(&self, other: &Self) -> bool {
604                 if self.latest_update_id != other.latest_update_id ||
605                         self.commitment_transaction_number_obscure_factor != other.commitment_transaction_number_obscure_factor ||
606                         self.destination_script != other.destination_script ||
607                         self.broadcasted_holder_revokable_script != other.broadcasted_holder_revokable_script ||
608                         self.counterparty_payment_script != other.counterparty_payment_script ||
609                         self.channel_keys_id != other.channel_keys_id ||
610                         self.holder_revocation_basepoint != other.holder_revocation_basepoint ||
611                         self.funding_info != other.funding_info ||
612                         self.current_counterparty_commitment_txid != other.current_counterparty_commitment_txid ||
613                         self.prev_counterparty_commitment_txid != other.prev_counterparty_commitment_txid ||
614                         self.counterparty_tx_cache != other.counterparty_tx_cache ||
615                         self.funding_redeemscript != other.funding_redeemscript ||
616                         self.channel_value_satoshis != other.channel_value_satoshis ||
617                         self.their_cur_revocation_points != other.their_cur_revocation_points ||
618                         self.on_holder_tx_csv != other.on_holder_tx_csv ||
619                         self.commitment_secrets != other.commitment_secrets ||
620                         self.counterparty_claimable_outpoints != other.counterparty_claimable_outpoints ||
621                         self.counterparty_commitment_txn_on_chain != other.counterparty_commitment_txn_on_chain ||
622                         self.counterparty_hash_commitment_number != other.counterparty_hash_commitment_number ||
623                         self.prev_holder_signed_commitment_tx != other.prev_holder_signed_commitment_tx ||
624                         self.current_counterparty_commitment_number != other.current_counterparty_commitment_number ||
625                         self.current_holder_commitment_number != other.current_holder_commitment_number ||
626                         self.current_holder_commitment_tx != other.current_holder_commitment_tx ||
627                         self.payment_preimages != other.payment_preimages ||
628                         self.pending_monitor_events != other.pending_monitor_events ||
629                         self.pending_events.len() != other.pending_events.len() || // We trust events to round-trip properly
630                         self.onchain_events_awaiting_threshold_conf != other.onchain_events_awaiting_threshold_conf ||
631                         self.outputs_to_watch != other.outputs_to_watch ||
632                         self.lockdown_from_offchain != other.lockdown_from_offchain ||
633                         self.holder_tx_signed != other.holder_tx_signed
634                 {
635                         false
636                 } else {
637                         true
638                 }
639         }
640 }
641
642 impl<Signer: Sign> Writeable for ChannelMonitor<Signer> {
643         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
644                 self.inner.lock().unwrap().write(writer)
645         }
646 }
647
648 // These are also used for ChannelMonitorUpdate, above.
649 const SERIALIZATION_VERSION: u8 = 1;
650 const MIN_SERIALIZATION_VERSION: u8 = 1;
651
652 impl<Signer: Sign> Writeable for ChannelMonitorImpl<Signer> {
653         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
654                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
655
656                 self.latest_update_id.write(writer)?;
657
658                 // Set in initial Channel-object creation, so should always be set by now:
659                 U48(self.commitment_transaction_number_obscure_factor).write(writer)?;
660
661                 self.destination_script.write(writer)?;
662                 if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
663                         writer.write_all(&[0; 1])?;
664                         broadcasted_holder_revokable_script.0.write(writer)?;
665                         broadcasted_holder_revokable_script.1.write(writer)?;
666                         broadcasted_holder_revokable_script.2.write(writer)?;
667                 } else {
668                         writer.write_all(&[1; 1])?;
669                 }
670
671                 self.counterparty_payment_script.write(writer)?;
672                 self.shutdown_script.write(writer)?;
673
674                 self.channel_keys_id.write(writer)?;
675                 self.holder_revocation_basepoint.write(writer)?;
676                 writer.write_all(&self.funding_info.0.txid[..])?;
677                 writer.write_all(&byte_utils::be16_to_array(self.funding_info.0.index))?;
678                 self.funding_info.1.write(writer)?;
679                 self.current_counterparty_commitment_txid.write(writer)?;
680                 self.prev_counterparty_commitment_txid.write(writer)?;
681
682                 self.counterparty_tx_cache.write(writer)?;
683                 self.funding_redeemscript.write(writer)?;
684                 self.channel_value_satoshis.write(writer)?;
685
686                 match self.their_cur_revocation_points {
687                         Some((idx, pubkey, second_option)) => {
688                                 writer.write_all(&byte_utils::be48_to_array(idx))?;
689                                 writer.write_all(&pubkey.serialize())?;
690                                 match second_option {
691                                         Some(second_pubkey) => {
692                                                 writer.write_all(&second_pubkey.serialize())?;
693                                         },
694                                         None => {
695                                                 writer.write_all(&[0; 33])?;
696                                         },
697                                 }
698                         },
699                         None => {
700                                 writer.write_all(&byte_utils::be48_to_array(0))?;
701                         },
702                 }
703
704                 writer.write_all(&byte_utils::be16_to_array(self.on_holder_tx_csv))?;
705
706                 self.commitment_secrets.write(writer)?;
707
708                 macro_rules! serialize_htlc_in_commitment {
709                         ($htlc_output: expr) => {
710                                 writer.write_all(&[$htlc_output.offered as u8; 1])?;
711                                 writer.write_all(&byte_utils::be64_to_array($htlc_output.amount_msat))?;
712                                 writer.write_all(&byte_utils::be32_to_array($htlc_output.cltv_expiry))?;
713                                 writer.write_all(&$htlc_output.payment_hash.0[..])?;
714                                 $htlc_output.transaction_output_index.write(writer)?;
715                         }
716                 }
717
718                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_claimable_outpoints.len() as u64))?;
719                 for (ref txid, ref htlc_infos) in self.counterparty_claimable_outpoints.iter() {
720                         writer.write_all(&txid[..])?;
721                         writer.write_all(&byte_utils::be64_to_array(htlc_infos.len() as u64))?;
722                         for &(ref htlc_output, ref htlc_source) in htlc_infos.iter() {
723                                 serialize_htlc_in_commitment!(htlc_output);
724                                 htlc_source.as_ref().map(|b| b.as_ref()).write(writer)?;
725                         }
726                 }
727
728                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_commitment_txn_on_chain.len() as u64))?;
729                 for (ref txid, commitment_number) in self.counterparty_commitment_txn_on_chain.iter() {
730                         writer.write_all(&txid[..])?;
731                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
732                 }
733
734                 writer.write_all(&byte_utils::be64_to_array(self.counterparty_hash_commitment_number.len() as u64))?;
735                 for (ref payment_hash, commitment_number) in self.counterparty_hash_commitment_number.iter() {
736                         writer.write_all(&payment_hash.0[..])?;
737                         writer.write_all(&byte_utils::be48_to_array(*commitment_number))?;
738                 }
739
740                 if let Some(ref prev_holder_tx) = self.prev_holder_signed_commitment_tx {
741                         writer.write_all(&[1; 1])?;
742                         prev_holder_tx.write(writer)?;
743                 } else {
744                         writer.write_all(&[0; 1])?;
745                 }
746
747                 self.current_holder_commitment_tx.write(writer)?;
748
749                 writer.write_all(&byte_utils::be48_to_array(self.current_counterparty_commitment_number))?;
750                 writer.write_all(&byte_utils::be48_to_array(self.current_holder_commitment_number))?;
751
752                 writer.write_all(&byte_utils::be64_to_array(self.payment_preimages.len() as u64))?;
753                 for payment_preimage in self.payment_preimages.values() {
754                         writer.write_all(&payment_preimage.0[..])?;
755                 }
756
757                 writer.write_all(&byte_utils::be64_to_array(self.pending_monitor_events.len() as u64))?;
758                 for event in self.pending_monitor_events.iter() {
759                         match event {
760                                 MonitorEvent::HTLCEvent(upd) => {
761                                         0u8.write(writer)?;
762                                         upd.write(writer)?;
763                                 },
764                                 MonitorEvent::CommitmentTxBroadcasted(_) => 1u8.write(writer)?
765                         }
766                 }
767
768                 writer.write_all(&byte_utils::be64_to_array(self.pending_events.len() as u64))?;
769                 for event in self.pending_events.iter() {
770                         event.write(writer)?;
771                 }
772
773                 self.best_block.block_hash().write(writer)?;
774                 writer.write_all(&byte_utils::be32_to_array(self.best_block.height()))?;
775
776                 writer.write_all(&byte_utils::be64_to_array(self.onchain_events_awaiting_threshold_conf.len() as u64))?;
777                 for ref entry in self.onchain_events_awaiting_threshold_conf.iter() {
778                         entry.write(writer)?;
779                 }
780
781                 (self.outputs_to_watch.len() as u64).write(writer)?;
782                 for (txid, idx_scripts) in self.outputs_to_watch.iter() {
783                         txid.write(writer)?;
784                         (idx_scripts.len() as u64).write(writer)?;
785                         for (idx, script) in idx_scripts.iter() {
786                                 idx.write(writer)?;
787                                 script.write(writer)?;
788                         }
789                 }
790                 self.onchain_tx_handler.write(writer)?;
791
792                 self.lockdown_from_offchain.write(writer)?;
793                 self.holder_tx_signed.write(writer)?;
794
795                 write_tlv_fields!(writer, {});
796
797                 Ok(())
798         }
799 }
800
801 impl<Signer: Sign> ChannelMonitor<Signer> {
802         pub(crate) fn new(secp_ctx: Secp256k1<secp256k1::All>, keys: Signer, shutdown_pubkey: &PublicKey,
803                           on_counterparty_tx_csv: u16, destination_script: &Script, funding_info: (OutPoint, Script),
804                           channel_parameters: &ChannelTransactionParameters,
805                           funding_redeemscript: Script, channel_value_satoshis: u64,
806                           commitment_transaction_number_obscure_factor: u64,
807                           initial_holder_commitment_tx: HolderCommitmentTransaction,
808                           best_block: BestBlock) -> ChannelMonitor<Signer> {
809
810                 assert!(commitment_transaction_number_obscure_factor <= (1 << 48));
811                 let our_channel_close_key_hash = WPubkeyHash::hash(&shutdown_pubkey.serialize());
812                 let shutdown_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&our_channel_close_key_hash[..]).into_script();
813                 let payment_key_hash = WPubkeyHash::hash(&keys.pubkeys().payment_point.serialize());
814                 let counterparty_payment_script = Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0).push_slice(&payment_key_hash[..]).into_script();
815
816                 let counterparty_channel_parameters = channel_parameters.counterparty_parameters.as_ref().unwrap();
817                 let counterparty_delayed_payment_base_key = counterparty_channel_parameters.pubkeys.delayed_payment_basepoint;
818                 let counterparty_htlc_base_key = counterparty_channel_parameters.pubkeys.htlc_basepoint;
819                 let counterparty_tx_cache = CounterpartyCommitmentTransaction { counterparty_delayed_payment_base_key, counterparty_htlc_base_key, on_counterparty_tx_csv, per_htlc: HashMap::new() };
820
821                 let channel_keys_id = keys.channel_keys_id();
822                 let holder_revocation_basepoint = keys.pubkeys().revocation_basepoint;
823
824                 // block for Rust 1.34 compat
825                 let (holder_commitment_tx, current_holder_commitment_number) = {
826                         let trusted_tx = initial_holder_commitment_tx.trust();
827                         let txid = trusted_tx.txid();
828
829                         let tx_keys = trusted_tx.keys();
830                         let holder_commitment_tx = HolderSignedTx {
831                                 txid,
832                                 revocation_key: tx_keys.revocation_key,
833                                 a_htlc_key: tx_keys.broadcaster_htlc_key,
834                                 b_htlc_key: tx_keys.countersignatory_htlc_key,
835                                 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
836                                 per_commitment_point: tx_keys.per_commitment_point,
837                                 feerate_per_kw: trusted_tx.feerate_per_kw(),
838                                 htlc_outputs: Vec::new(), // There are never any HTLCs in the initial commitment transactions
839                         };
840                         (holder_commitment_tx, trusted_tx.commitment_number())
841                 };
842
843                 let onchain_tx_handler =
844                         OnchainTxHandler::new(destination_script.clone(), keys,
845                         channel_parameters.clone(), initial_holder_commitment_tx, secp_ctx.clone());
846
847                 let mut outputs_to_watch = HashMap::new();
848                 outputs_to_watch.insert(funding_info.0.txid, vec![(funding_info.0.index as u32, funding_info.1.clone())]);
849
850                 ChannelMonitor {
851                         inner: Mutex::new(ChannelMonitorImpl {
852                                 latest_update_id: 0,
853                                 commitment_transaction_number_obscure_factor,
854
855                                 destination_script: destination_script.clone(),
856                                 broadcasted_holder_revokable_script: None,
857                                 counterparty_payment_script,
858                                 shutdown_script,
859
860                                 channel_keys_id,
861                                 holder_revocation_basepoint,
862                                 funding_info,
863                                 current_counterparty_commitment_txid: None,
864                                 prev_counterparty_commitment_txid: None,
865
866                                 counterparty_tx_cache,
867                                 funding_redeemscript,
868                                 channel_value_satoshis,
869                                 their_cur_revocation_points: None,
870
871                                 on_holder_tx_csv: counterparty_channel_parameters.selected_contest_delay,
872
873                                 commitment_secrets: CounterpartyCommitmentSecrets::new(),
874                                 counterparty_claimable_outpoints: HashMap::new(),
875                                 counterparty_commitment_txn_on_chain: HashMap::new(),
876                                 counterparty_hash_commitment_number: HashMap::new(),
877
878                                 prev_holder_signed_commitment_tx: None,
879                                 current_holder_commitment_tx: holder_commitment_tx,
880                                 current_counterparty_commitment_number: 1 << 48,
881                                 current_holder_commitment_number,
882
883                                 payment_preimages: HashMap::new(),
884                                 pending_monitor_events: Vec::new(),
885                                 pending_events: Vec::new(),
886
887                                 onchain_events_awaiting_threshold_conf: Vec::new(),
888                                 outputs_to_watch,
889
890                                 onchain_tx_handler,
891
892                                 lockdown_from_offchain: false,
893                                 holder_tx_signed: false,
894
895                                 best_block,
896
897                                 secp_ctx,
898                         }),
899                 }
900         }
901
902         #[cfg(test)]
903         fn provide_secret(&self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
904                 self.inner.lock().unwrap().provide_secret(idx, secret)
905         }
906
907         /// Informs this monitor of the latest counterparty (ie non-broadcastable) commitment transaction.
908         /// The monitor watches for it to be broadcasted and then uses the HTLC information (and
909         /// possibly future revocation/preimage information) to claim outputs where possible.
910         /// We cache also the mapping hash:commitment number to lighten pruning of old preimages by watchtowers.
911         pub(crate) fn provide_latest_counterparty_commitment_tx<L: Deref>(
912                 &self,
913                 txid: Txid,
914                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>,
915                 commitment_number: u64,
916                 their_revocation_point: PublicKey,
917                 logger: &L,
918         ) where L::Target: Logger {
919                 self.inner.lock().unwrap().provide_latest_counterparty_commitment_tx(
920                         txid, htlc_outputs, commitment_number, their_revocation_point, logger)
921         }
922
923         #[cfg(test)]
924         fn provide_latest_holder_commitment_tx(
925                 &self,
926                 holder_commitment_tx: HolderCommitmentTransaction,
927                 htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>,
928         ) -> Result<(), MonitorUpdateError> {
929                 self.inner.lock().unwrap().provide_latest_holder_commitment_tx(
930                         holder_commitment_tx, htlc_outputs)
931         }
932
933         #[cfg(test)]
934         pub(crate) fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(
935                 &self,
936                 payment_hash: &PaymentHash,
937                 payment_preimage: &PaymentPreimage,
938                 broadcaster: &B,
939                 fee_estimator: &F,
940                 logger: &L,
941         ) where
942                 B::Target: BroadcasterInterface,
943                 F::Target: FeeEstimator,
944                 L::Target: Logger,
945         {
946                 self.inner.lock().unwrap().provide_payment_preimage(
947                         payment_hash, payment_preimage, broadcaster, fee_estimator, logger)
948         }
949
950         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(
951                 &self,
952                 broadcaster: &B,
953                 logger: &L,
954         ) where
955                 B::Target: BroadcasterInterface,
956                 L::Target: Logger,
957         {
958                 self.inner.lock().unwrap().broadcast_latest_holder_commitment_txn(broadcaster, logger)
959         }
960
961         /// Updates a ChannelMonitor on the basis of some new information provided by the Channel
962         /// itself.
963         ///
964         /// panics if the given update is not the next update by update_id.
965         pub fn update_monitor<B: Deref, F: Deref, L: Deref>(
966                 &self,
967                 updates: &ChannelMonitorUpdate,
968                 broadcaster: &B,
969                 fee_estimator: &F,
970                 logger: &L,
971         ) -> Result<(), MonitorUpdateError>
972         where
973                 B::Target: BroadcasterInterface,
974                 F::Target: FeeEstimator,
975                 L::Target: Logger,
976         {
977                 self.inner.lock().unwrap().update_monitor(updates, broadcaster, fee_estimator, logger)
978         }
979
980         /// Gets the update_id from the latest ChannelMonitorUpdate which was applied to this
981         /// ChannelMonitor.
982         pub fn get_latest_update_id(&self) -> u64 {
983                 self.inner.lock().unwrap().get_latest_update_id()
984         }
985
986         /// Gets the funding transaction outpoint of the channel this ChannelMonitor is monitoring for.
987         pub fn get_funding_txo(&self) -> (OutPoint, Script) {
988                 self.inner.lock().unwrap().get_funding_txo().clone()
989         }
990
991         /// Gets a list of txids, with their output scripts (in the order they appear in the
992         /// transaction), which we must learn about spends of via block_connected().
993         pub fn get_outputs_to_watch(&self) -> Vec<(Txid, Vec<(u32, Script)>)> {
994                 self.inner.lock().unwrap().get_outputs_to_watch()
995                         .iter().map(|(txid, outputs)| (*txid, outputs.clone())).collect()
996         }
997
998         /// Loads the funding txo and outputs to watch into the given `chain::Filter` by repeatedly
999         /// calling `chain::Filter::register_output` and `chain::Filter::register_tx` until all outputs
1000         /// have been registered.
1001         pub fn load_outputs_to_watch<F: Deref>(&self, filter: &F) where F::Target: chain::Filter {
1002                 let lock = self.inner.lock().unwrap();
1003                 filter.register_tx(&lock.get_funding_txo().0.txid, &lock.get_funding_txo().1);
1004                 for (txid, outputs) in lock.get_outputs_to_watch().iter() {
1005                         for (index, script_pubkey) in outputs.iter() {
1006                                 assert!(*index <= u16::max_value() as u32);
1007                                 filter.register_output(WatchedOutput {
1008                                         block_hash: None,
1009                                         outpoint: OutPoint { txid: *txid, index: *index as u16 },
1010                                         script_pubkey: script_pubkey.clone(),
1011                                 });
1012                         }
1013                 }
1014         }
1015
1016         /// Get the list of HTLCs who's status has been updated on chain. This should be called by
1017         /// ChannelManager via [`chain::Watch::release_pending_monitor_events`].
1018         pub fn get_and_clear_pending_monitor_events(&self) -> Vec<MonitorEvent> {
1019                 self.inner.lock().unwrap().get_and_clear_pending_monitor_events()
1020         }
1021
1022         /// Gets the list of pending events which were generated by previous actions, clearing the list
1023         /// in the process.
1024         ///
1025         /// This is called by ChainMonitor::get_and_clear_pending_events() and is equivalent to
1026         /// EventsProvider::get_and_clear_pending_events() except that it requires &mut self as we do
1027         /// no internal locking in ChannelMonitors.
1028         pub fn get_and_clear_pending_events(&self) -> Vec<Event> {
1029                 self.inner.lock().unwrap().get_and_clear_pending_events()
1030         }
1031
1032         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1033                 self.inner.lock().unwrap().get_min_seen_secret()
1034         }
1035
1036         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1037                 self.inner.lock().unwrap().get_cur_counterparty_commitment_number()
1038         }
1039
1040         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1041                 self.inner.lock().unwrap().get_cur_holder_commitment_number()
1042         }
1043
1044         /// Used by ChannelManager deserialization to broadcast the latest holder state if its copy of
1045         /// the Channel was out-of-date. You may use it to get a broadcastable holder toxic tx in case of
1046         /// fallen-behind, i.e when receiving a channel_reestablish with a proof that our counterparty side knows
1047         /// a higher revocation secret than the holder commitment number we are aware of. Broadcasting these
1048         /// transactions are UNSAFE, as they allow counterparty side to punish you. Nevertheless you may want to
1049         /// broadcast them if counterparty don't close channel with his higher commitment transaction after a
1050         /// substantial amount of time (a month or even a year) to get back funds. Best may be to contact
1051         /// out-of-band the other node operator to coordinate with him if option is available to you.
1052         /// In any-case, choice is up to the user.
1053         pub fn get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1054         where L::Target: Logger {
1055                 self.inner.lock().unwrap().get_latest_holder_commitment_txn(logger)
1056         }
1057
1058         /// Unsafe test-only version of get_latest_holder_commitment_txn used by our test framework
1059         /// to bypass HolderCommitmentTransaction state update lockdown after signature and generate
1060         /// revoked commitment transaction.
1061         #[cfg(any(test, feature = "unsafe_revoked_tx_signing"))]
1062         pub fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&self, logger: &L) -> Vec<Transaction>
1063         where L::Target: Logger {
1064                 self.inner.lock().unwrap().unsafe_get_latest_holder_commitment_txn(logger)
1065         }
1066
1067         /// Processes transactions in a newly connected block, which may result in any of the following:
1068         /// - update the monitor's state against resolved HTLCs
1069         /// - punish the counterparty in the case of seeing a revoked commitment transaction
1070         /// - force close the channel and claim/timeout incoming/outgoing HTLCs if near expiration
1071         /// - detect settled outputs for later spending
1072         /// - schedule and bump any in-flight claims
1073         ///
1074         /// Returns any new outputs to watch from `txdata`; after called, these are also included in
1075         /// [`get_outputs_to_watch`].
1076         ///
1077         /// [`get_outputs_to_watch`]: #method.get_outputs_to_watch
1078         pub fn block_connected<B: Deref, F: Deref, L: Deref>(
1079                 &self,
1080                 header: &BlockHeader,
1081                 txdata: &TransactionData,
1082                 height: u32,
1083                 broadcaster: B,
1084                 fee_estimator: F,
1085                 logger: L,
1086         ) -> Vec<TransactionOutputs>
1087         where
1088                 B::Target: BroadcasterInterface,
1089                 F::Target: FeeEstimator,
1090                 L::Target: Logger,
1091         {
1092                 self.inner.lock().unwrap().block_connected(
1093                         header, txdata, height, broadcaster, fee_estimator, logger)
1094         }
1095
1096         /// Determines if the disconnected block contained any transactions of interest and updates
1097         /// appropriately.
1098         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(
1099                 &self,
1100                 header: &BlockHeader,
1101                 height: u32,
1102                 broadcaster: B,
1103                 fee_estimator: F,
1104                 logger: L,
1105         ) where
1106                 B::Target: BroadcasterInterface,
1107                 F::Target: FeeEstimator,
1108                 L::Target: Logger,
1109         {
1110                 self.inner.lock().unwrap().block_disconnected(
1111                         header, height, broadcaster, fee_estimator, logger)
1112         }
1113
1114         /// Processes transactions confirmed in a block with the given header and height, returning new
1115         /// outputs to watch. See [`block_connected`] for details.
1116         ///
1117         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1118         /// blocks. See [`chain::Confirm`] for calling expectations.
1119         ///
1120         /// [`block_connected`]: Self::block_connected
1121         pub fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
1122                 &self,
1123                 header: &BlockHeader,
1124                 txdata: &TransactionData,
1125                 height: u32,
1126                 broadcaster: B,
1127                 fee_estimator: F,
1128                 logger: L,
1129         ) -> Vec<TransactionOutputs>
1130         where
1131                 B::Target: BroadcasterInterface,
1132                 F::Target: FeeEstimator,
1133                 L::Target: Logger,
1134         {
1135                 self.inner.lock().unwrap().transactions_confirmed(
1136                         header, txdata, height, broadcaster, fee_estimator, logger)
1137         }
1138
1139         /// Processes a transaction that was reorganized out of the chain.
1140         ///
1141         /// Used instead of [`block_disconnected`] by clients that are notified of transactions rather
1142         /// than blocks. See [`chain::Confirm`] for calling expectations.
1143         ///
1144         /// [`block_disconnected`]: Self::block_disconnected
1145         pub fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
1146                 &self,
1147                 txid: &Txid,
1148                 broadcaster: B,
1149                 fee_estimator: F,
1150                 logger: L,
1151         ) where
1152                 B::Target: BroadcasterInterface,
1153                 F::Target: FeeEstimator,
1154                 L::Target: Logger,
1155         {
1156                 self.inner.lock().unwrap().transaction_unconfirmed(
1157                         txid, broadcaster, fee_estimator, logger);
1158         }
1159
1160         /// Updates the monitor with the current best chain tip, returning new outputs to watch. See
1161         /// [`block_connected`] for details.
1162         ///
1163         /// Used instead of [`block_connected`] by clients that are notified of transactions rather than
1164         /// blocks. See [`chain::Confirm`] for calling expectations.
1165         ///
1166         /// [`block_connected`]: Self::block_connected
1167         pub fn best_block_updated<B: Deref, F: Deref, L: Deref>(
1168                 &self,
1169                 header: &BlockHeader,
1170                 height: u32,
1171                 broadcaster: B,
1172                 fee_estimator: F,
1173                 logger: L,
1174         ) -> Vec<TransactionOutputs>
1175         where
1176                 B::Target: BroadcasterInterface,
1177                 F::Target: FeeEstimator,
1178                 L::Target: Logger,
1179         {
1180                 self.inner.lock().unwrap().best_block_updated(
1181                         header, height, broadcaster, fee_estimator, logger)
1182         }
1183
1184         /// Returns the set of txids that should be monitored for re-organization out of the chain.
1185         pub fn get_relevant_txids(&self) -> Vec<Txid> {
1186                 let inner = self.inner.lock().unwrap();
1187                 let mut txids: Vec<Txid> = inner.onchain_events_awaiting_threshold_conf
1188                         .iter()
1189                         .map(|entry| entry.txid)
1190                         .chain(inner.onchain_tx_handler.get_relevant_txids().into_iter())
1191                         .collect();
1192                 txids.sort_unstable();
1193                 txids.dedup();
1194                 txids
1195         }
1196
1197         /// Gets the latest best block which was connected either via the [`chain::Listen`] or
1198         /// [`chain::Confirm`] interfaces.
1199         pub fn current_best_block(&self) -> BestBlock {
1200                 self.inner.lock().unwrap().best_block.clone()
1201         }
1202 }
1203
1204 impl<Signer: Sign> ChannelMonitorImpl<Signer> {
1205         /// Inserts a revocation secret into this channel monitor. Prunes old preimages if neither
1206         /// needed by holder commitment transactions HTCLs nor by counterparty ones. Unless we haven't already seen
1207         /// counterparty commitment transaction's secret, they are de facto pruned (we can use revocation key).
1208         fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), MonitorUpdateError> {
1209                 if let Err(()) = self.commitment_secrets.provide_secret(idx, secret) {
1210                         return Err(MonitorUpdateError("Previous secret did not match new one"));
1211                 }
1212
1213                 // Prune HTLCs from the previous counterparty commitment tx so we don't generate failure/fulfill
1214                 // events for now-revoked/fulfilled HTLCs.
1215                 if let Some(txid) = self.prev_counterparty_commitment_txid.take() {
1216                         for &mut (_, ref mut source) in self.counterparty_claimable_outpoints.get_mut(&txid).unwrap() {
1217                                 *source = None;
1218                         }
1219                 }
1220
1221                 if !self.payment_preimages.is_empty() {
1222                         let cur_holder_signed_commitment_tx = &self.current_holder_commitment_tx;
1223                         let prev_holder_signed_commitment_tx = self.prev_holder_signed_commitment_tx.as_ref();
1224                         let min_idx = self.get_min_seen_secret();
1225                         let counterparty_hash_commitment_number = &mut self.counterparty_hash_commitment_number;
1226
1227                         self.payment_preimages.retain(|&k, _| {
1228                                 for &(ref htlc, _, _) in cur_holder_signed_commitment_tx.htlc_outputs.iter() {
1229                                         if k == htlc.payment_hash {
1230                                                 return true
1231                                         }
1232                                 }
1233                                 if let Some(prev_holder_commitment_tx) = prev_holder_signed_commitment_tx {
1234                                         for &(ref htlc, _, _) in prev_holder_commitment_tx.htlc_outputs.iter() {
1235                                                 if k == htlc.payment_hash {
1236                                                         return true
1237                                                 }
1238                                         }
1239                                 }
1240                                 let contains = if let Some(cn) = counterparty_hash_commitment_number.get(&k) {
1241                                         if *cn < min_idx {
1242                                                 return true
1243                                         }
1244                                         true
1245                                 } else { false };
1246                                 if contains {
1247                                         counterparty_hash_commitment_number.remove(&k);
1248                                 }
1249                                 false
1250                         });
1251                 }
1252
1253                 Ok(())
1254         }
1255
1256         pub(crate) fn provide_latest_counterparty_commitment_tx<L: Deref>(&mut self, txid: Txid, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Box<HTLCSource>>)>, commitment_number: u64, their_revocation_point: PublicKey, logger: &L) where L::Target: Logger {
1257                 // TODO: Encrypt the htlc_outputs data with the single-hash of the commitment transaction
1258                 // so that a remote monitor doesn't learn anything unless there is a malicious close.
1259                 // (only maybe, sadly we cant do the same for local info, as we need to be aware of
1260                 // timeouts)
1261                 for &(ref htlc, _) in &htlc_outputs {
1262                         self.counterparty_hash_commitment_number.insert(htlc.payment_hash, commitment_number);
1263                 }
1264
1265                 log_trace!(logger, "Tracking new counterparty commitment transaction with txid {} at commitment number {} with {} HTLC outputs", txid, commitment_number, htlc_outputs.len());
1266                 self.prev_counterparty_commitment_txid = self.current_counterparty_commitment_txid.take();
1267                 self.current_counterparty_commitment_txid = Some(txid);
1268                 self.counterparty_claimable_outpoints.insert(txid, htlc_outputs.clone());
1269                 self.current_counterparty_commitment_number = commitment_number;
1270                 //TODO: Merge this into the other per-counterparty-transaction output storage stuff
1271                 match self.their_cur_revocation_points {
1272                         Some(old_points) => {
1273                                 if old_points.0 == commitment_number + 1 {
1274                                         self.their_cur_revocation_points = Some((old_points.0, old_points.1, Some(their_revocation_point)));
1275                                 } else if old_points.0 == commitment_number + 2 {
1276                                         if let Some(old_second_point) = old_points.2 {
1277                                                 self.their_cur_revocation_points = Some((old_points.0 - 1, old_second_point, Some(their_revocation_point)));
1278                                         } else {
1279                                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1280                                         }
1281                                 } else {
1282                                         self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1283                                 }
1284                         },
1285                         None => {
1286                                 self.their_cur_revocation_points = Some((commitment_number, their_revocation_point, None));
1287                         }
1288                 }
1289                 let mut htlcs = Vec::with_capacity(htlc_outputs.len());
1290                 for htlc in htlc_outputs {
1291                         if htlc.0.transaction_output_index.is_some() {
1292                                 htlcs.push(htlc.0);
1293                         }
1294                 }
1295                 self.counterparty_tx_cache.per_htlc.insert(txid, htlcs);
1296         }
1297
1298         /// Informs this monitor of the latest holder (ie broadcastable) commitment transaction. The
1299         /// monitor watches for timeouts and may broadcast it if we approach such a timeout. Thus, it
1300         /// is important that any clones of this channel monitor (including remote clones) by kept
1301         /// up-to-date as our holder commitment transaction is updated.
1302         /// Panics if set_on_holder_tx_csv has never been called.
1303         fn provide_latest_holder_commitment_tx(&mut self, holder_commitment_tx: HolderCommitmentTransaction, htlc_outputs: Vec<(HTLCOutputInCommitment, Option<Signature>, Option<HTLCSource>)>) -> Result<(), MonitorUpdateError> {
1304                 // block for Rust 1.34 compat
1305                 let mut new_holder_commitment_tx = {
1306                         let trusted_tx = holder_commitment_tx.trust();
1307                         let txid = trusted_tx.txid();
1308                         let tx_keys = trusted_tx.keys();
1309                         self.current_holder_commitment_number = trusted_tx.commitment_number();
1310                         HolderSignedTx {
1311                                 txid,
1312                                 revocation_key: tx_keys.revocation_key,
1313                                 a_htlc_key: tx_keys.broadcaster_htlc_key,
1314                                 b_htlc_key: tx_keys.countersignatory_htlc_key,
1315                                 delayed_payment_key: tx_keys.broadcaster_delayed_payment_key,
1316                                 per_commitment_point: tx_keys.per_commitment_point,
1317                                 feerate_per_kw: trusted_tx.feerate_per_kw(),
1318                                 htlc_outputs,
1319                         }
1320                 };
1321                 self.onchain_tx_handler.provide_latest_holder_tx(holder_commitment_tx);
1322                 mem::swap(&mut new_holder_commitment_tx, &mut self.current_holder_commitment_tx);
1323                 self.prev_holder_signed_commitment_tx = Some(new_holder_commitment_tx);
1324                 if self.holder_tx_signed {
1325                         return Err(MonitorUpdateError("Latest holder commitment signed has already been signed, update is rejected"));
1326                 }
1327                 Ok(())
1328         }
1329
1330         /// Provides a payment_hash->payment_preimage mapping. Will be automatically pruned when all
1331         /// commitment_tx_infos which contain the payment hash have been revoked.
1332         fn provide_payment_preimage<B: Deref, F: Deref, L: Deref>(&mut self, payment_hash: &PaymentHash, payment_preimage: &PaymentPreimage, broadcaster: &B, fee_estimator: &F, logger: &L)
1333         where B::Target: BroadcasterInterface,
1334                     F::Target: FeeEstimator,
1335                     L::Target: Logger,
1336         {
1337                 self.payment_preimages.insert(payment_hash.clone(), payment_preimage.clone());
1338
1339                 // If the channel is force closed, try to claim the output from this preimage.
1340                 // First check if a counterparty commitment transaction has been broadcasted:
1341                 macro_rules! claim_htlcs {
1342                         ($commitment_number: expr, $txid: expr) => {
1343                                 let htlc_claim_reqs = self.get_counterparty_htlc_output_claim_reqs($commitment_number, $txid, None);
1344                                 self.onchain_tx_handler.update_claims_view(&Vec::new(), htlc_claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1345                         }
1346                 }
1347                 if let Some(txid) = self.current_counterparty_commitment_txid {
1348                         if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
1349                                 claim_htlcs!(*commitment_number, txid);
1350                                 return;
1351                         }
1352                 }
1353                 if let Some(txid) = self.prev_counterparty_commitment_txid {
1354                         if let Some(commitment_number) = self.counterparty_commitment_txn_on_chain.get(&txid) {
1355                                 claim_htlcs!(*commitment_number, txid);
1356                                 return;
1357                         }
1358                 }
1359
1360                 // Then if a holder commitment transaction has been seen on-chain, broadcast transactions
1361                 // claiming the HTLC output from each of the holder commitment transactions.
1362                 // Note that we can't just use `self.holder_tx_signed`, because that only covers the case where
1363                 // *we* sign a holder commitment transaction, not when e.g. a watchtower broadcasts one of our
1364                 // holder commitment transactions.
1365                 if self.broadcasted_holder_revokable_script.is_some() {
1366                         // Assume that the broadcasted commitment transaction confirmed in the current best
1367                         // block. Even if not, its a reasonable metric for the bump criteria on the HTLC
1368                         // transactions.
1369                         let (claim_reqs, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
1370                         self.onchain_tx_handler.update_claims_view(&Vec::new(), claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1371                         if let Some(ref tx) = self.prev_holder_signed_commitment_tx {
1372                                 let (claim_reqs, _) = self.get_broadcasted_holder_claims(&tx, self.best_block.height());
1373                                 self.onchain_tx_handler.update_claims_view(&Vec::new(), claim_reqs, self.best_block.height(), self.best_block.height(), broadcaster, fee_estimator, logger);
1374                         }
1375                 }
1376         }
1377
1378         pub(crate) fn broadcast_latest_holder_commitment_txn<B: Deref, L: Deref>(&mut self, broadcaster: &B, logger: &L)
1379                 where B::Target: BroadcasterInterface,
1380                                         L::Target: Logger,
1381         {
1382                 for tx in self.get_latest_holder_commitment_txn(logger).iter() {
1383                         log_info!(logger, "Broadcasting local {}", log_tx!(tx));
1384                         broadcaster.broadcast_transaction(tx);
1385                 }
1386                 self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
1387         }
1388
1389         pub fn update_monitor<B: Deref, F: Deref, L: Deref>(&mut self, updates: &ChannelMonitorUpdate, broadcaster: &B, fee_estimator: &F, logger: &L) -> Result<(), MonitorUpdateError>
1390         where B::Target: BroadcasterInterface,
1391                     F::Target: FeeEstimator,
1392                     L::Target: Logger,
1393         {
1394                 // ChannelMonitor updates may be applied after force close if we receive a
1395                 // preimage for a broadcasted commitment transaction HTLC output that we'd
1396                 // like to claim on-chain. If this is the case, we no longer have guaranteed
1397                 // access to the monitor's update ID, so we use a sentinel value instead.
1398                 if updates.update_id == CLOSED_CHANNEL_UPDATE_ID {
1399                         match updates.updates[0] {
1400                                 ChannelMonitorUpdateStep::PaymentPreimage { .. } => {},
1401                                 _ => panic!("Attempted to apply post-force-close ChannelMonitorUpdate that wasn't providing a payment preimage"),
1402                         }
1403                         assert_eq!(updates.updates.len(), 1);
1404                 } else if self.latest_update_id + 1 != updates.update_id {
1405                         panic!("Attempted to apply ChannelMonitorUpdates out of order, check the update_id before passing an update to update_monitor!");
1406                 }
1407                 for update in updates.updates.iter() {
1408                         match update {
1409                                 ChannelMonitorUpdateStep::LatestHolderCommitmentTXInfo { commitment_tx, htlc_outputs } => {
1410                                         log_trace!(logger, "Updating ChannelMonitor with latest holder commitment transaction info");
1411                                         if self.lockdown_from_offchain { panic!(); }
1412                                         self.provide_latest_holder_commitment_tx(commitment_tx.clone(), htlc_outputs.clone())?
1413                                 }
1414                                 ChannelMonitorUpdateStep::LatestCounterpartyCommitmentTXInfo { commitment_txid, htlc_outputs, commitment_number, their_revocation_point } => {
1415                                         log_trace!(logger, "Updating ChannelMonitor with latest counterparty commitment transaction info");
1416                                         self.provide_latest_counterparty_commitment_tx(*commitment_txid, htlc_outputs.clone(), *commitment_number, *their_revocation_point, logger)
1417                                 },
1418                                 ChannelMonitorUpdateStep::PaymentPreimage { payment_preimage } => {
1419                                         log_trace!(logger, "Updating ChannelMonitor with payment preimage");
1420                                         self.provide_payment_preimage(&PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner()), &payment_preimage, broadcaster, fee_estimator, logger)
1421                                 },
1422                                 ChannelMonitorUpdateStep::CommitmentSecret { idx, secret } => {
1423                                         log_trace!(logger, "Updating ChannelMonitor with commitment secret");
1424                                         self.provide_secret(*idx, *secret)?
1425                                 },
1426                                 ChannelMonitorUpdateStep::ChannelForceClosed { should_broadcast } => {
1427                                         log_trace!(logger, "Updating ChannelMonitor: channel force closed, should broadcast: {}", should_broadcast);
1428                                         self.lockdown_from_offchain = true;
1429                                         if *should_broadcast {
1430                                                 self.broadcast_latest_holder_commitment_txn(broadcaster, logger);
1431                                         } else if !self.holder_tx_signed {
1432                                                 log_error!(logger, "You have a toxic holder commitment transaction avaible in channel monitor, read comment in ChannelMonitor::get_latest_holder_commitment_txn to be informed of manual action to take");
1433                                         } else {
1434                                                 // If we generated a MonitorEvent::CommitmentTxBroadcasted, the ChannelManager
1435                                                 // will still give us a ChannelForceClosed event with !should_broadcast, but we
1436                                                 // shouldn't print the scary warning above.
1437                                                 log_info!(logger, "Channel off-chain state closed after we broadcasted our latest commitment transaction.");
1438                                         }
1439                                 }
1440                         }
1441                 }
1442                 self.latest_update_id = updates.update_id;
1443                 Ok(())
1444         }
1445
1446         pub fn get_latest_update_id(&self) -> u64 {
1447                 self.latest_update_id
1448         }
1449
1450         pub fn get_funding_txo(&self) -> &(OutPoint, Script) {
1451                 &self.funding_info
1452         }
1453
1454         pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, Script)>> {
1455                 // If we've detected a counterparty commitment tx on chain, we must include it in the set
1456                 // of outputs to watch for spends of, otherwise we're likely to lose user funds. Because
1457                 // its trivial to do, double-check that here.
1458                 for (txid, _) in self.counterparty_commitment_txn_on_chain.iter() {
1459                         self.outputs_to_watch.get(txid).expect("Counterparty commitment txn which have been broadcast should have outputs registered");
1460                 }
1461                 &self.outputs_to_watch
1462         }
1463
1464         pub fn get_and_clear_pending_monitor_events(&mut self) -> Vec<MonitorEvent> {
1465                 let mut ret = Vec::new();
1466                 mem::swap(&mut ret, &mut self.pending_monitor_events);
1467                 ret
1468         }
1469
1470         pub fn get_and_clear_pending_events(&mut self) -> Vec<Event> {
1471                 let mut ret = Vec::new();
1472                 mem::swap(&mut ret, &mut self.pending_events);
1473                 ret
1474         }
1475
1476         /// Can only fail if idx is < get_min_seen_secret
1477         fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
1478                 self.commitment_secrets.get_secret(idx)
1479         }
1480
1481         pub(crate) fn get_min_seen_secret(&self) -> u64 {
1482                 self.commitment_secrets.get_min_seen_secret()
1483         }
1484
1485         pub(crate) fn get_cur_counterparty_commitment_number(&self) -> u64 {
1486                 self.current_counterparty_commitment_number
1487         }
1488
1489         pub(crate) fn get_cur_holder_commitment_number(&self) -> u64 {
1490                 self.current_holder_commitment_number
1491         }
1492
1493         /// Attempts to claim a counterparty commitment transaction's outputs using the revocation key and
1494         /// data in counterparty_claimable_outpoints. Will directly claim any HTLC outputs which expire at a
1495         /// height > height + CLTV_SHARED_CLAIM_BUFFER. In any case, will install monitoring for
1496         /// HTLC-Success/HTLC-Timeout transactions.
1497         /// Return updates for HTLC pending in the channel and failed automatically by the broadcast of
1498         /// revoked counterparty commitment tx
1499         fn check_spend_counterparty_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<PackageTemplate>, TransactionOutputs) where L::Target: Logger {
1500                 // Most secp and related errors trying to create keys means we have no hope of constructing
1501                 // a spend transaction...so we return no transactions to broadcast
1502                 let mut claimable_outpoints = Vec::new();
1503                 let mut watch_outputs = Vec::new();
1504
1505                 let commitment_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
1506                 let per_commitment_option = self.counterparty_claimable_outpoints.get(&commitment_txid);
1507
1508                 macro_rules! ignore_error {
1509                         ( $thing : expr ) => {
1510                                 match $thing {
1511                                         Ok(a) => a,
1512                                         Err(_) => return (claimable_outpoints, (commitment_txid, watch_outputs))
1513                                 }
1514                         };
1515                 }
1516
1517                 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);
1518                 if commitment_number >= self.get_min_seen_secret() {
1519                         let secret = self.get_secret(commitment_number).unwrap();
1520                         let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1521                         let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1522                         let revocation_pubkey = ignore_error!(chan_utils::derive_public_revocation_key(&self.secp_ctx, &per_commitment_point, &self.holder_revocation_basepoint));
1523                         let delayed_key = ignore_error!(chan_utils::derive_public_key(&self.secp_ctx, &PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key), &self.counterparty_tx_cache.counterparty_delayed_payment_base_key));
1524
1525                         let revokeable_redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.counterparty_tx_cache.on_counterparty_tx_csv, &delayed_key);
1526                         let revokeable_p2wsh = revokeable_redeemscript.to_v0_p2wsh();
1527
1528                         // First, process non-htlc outputs (to_holder & to_counterparty)
1529                         for (idx, outp) in tx.output.iter().enumerate() {
1530                                 if outp.script_pubkey == revokeable_p2wsh {
1531                                         let revk_outp = RevokedOutput::build(per_commitment_point, self.counterparty_tx_cache.counterparty_delayed_payment_base_key, self.counterparty_tx_cache.counterparty_htlc_base_key, per_commitment_key, outp.value, self.counterparty_tx_cache.on_counterparty_tx_csv);
1532                                         let justice_package = PackageTemplate::build_package(commitment_txid, idx as u32, PackageSolvingData::RevokedOutput(revk_outp), height + self.counterparty_tx_cache.on_counterparty_tx_csv as u32, true, height);
1533                                         claimable_outpoints.push(justice_package);
1534                                 }
1535                         }
1536
1537                         // Then, try to find revoked htlc outputs
1538                         if let Some(ref per_commitment_data) = per_commitment_option {
1539                                 for (_, &(ref htlc, _)) in per_commitment_data.iter().enumerate() {
1540                                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1541                                                 if transaction_output_index as usize >= tx.output.len() ||
1542                                                                 tx.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1543                                                         return (claimable_outpoints, (commitment_txid, watch_outputs)); // Corrupted per_commitment_data, fuck this user
1544                                                 }
1545                                                 let revk_htlc_outp = RevokedHTLCOutput::build(per_commitment_point, self.counterparty_tx_cache.counterparty_delayed_payment_base_key, self.counterparty_tx_cache.counterparty_htlc_base_key, per_commitment_key, htlc.amount_msat / 1000, htlc.clone());
1546                                                 let justice_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, PackageSolvingData::RevokedHTLCOutput(revk_htlc_outp), htlc.cltv_expiry, true, height);
1547                                                 claimable_outpoints.push(justice_package);
1548                                         }
1549                                 }
1550                         }
1551
1552                         // Last, track onchain revoked commitment transaction and fail backward outgoing HTLCs as payment path is broken
1553                         if !claimable_outpoints.is_empty() || per_commitment_option.is_some() { // ie we're confident this is actually ours
1554                                 // We're definitely a counterparty commitment transaction!
1555                                 log_error!(logger, "Got broadcast of revoked counterparty commitment transaction, going to generate general spend tx with {} inputs", claimable_outpoints.len());
1556                                 for (idx, outp) in tx.output.iter().enumerate() {
1557                                         watch_outputs.push((idx as u32, outp.clone()));
1558                                 }
1559                                 self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1560
1561                                 macro_rules! check_htlc_fails {
1562                                         ($txid: expr, $commitment_tx: expr) => {
1563                                                 if let Some(ref outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1564                                                         for &(ref htlc, ref source_option) in outpoints.iter() {
1565                                                                 if let &Some(ref source) = source_option {
1566                                                                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
1567                                                                                 if entry.height != height { return true; }
1568                                                                                 match entry.event {
1569                                                                                         OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
1570                                                                                                 *update_source != **source
1571                                                                                         },
1572                                                                                         _ => true,
1573                                                                                 }
1574                                                                         });
1575                                                                         let entry = OnchainEventEntry {
1576                                                                                 txid: *$txid,
1577                                                                                 height,
1578                                                                                 event: OnchainEvent::HTLCUpdate {
1579                                                                                         source: (**source).clone(),
1580                                                                                         payment_hash: htlc.payment_hash.clone(),
1581                                                                                         onchain_value_satoshis: Some(htlc.amount_msat / 1000),
1582                                                                                 },
1583                                                                         };
1584                                                                         log_info!(logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of revoked counterparty commitment transaction, waiting for confirmation (at height {})", log_bytes!(htlc.payment_hash.0), $commitment_tx, entry.confirmation_threshold());
1585                                                                         self.onchain_events_awaiting_threshold_conf.push(entry);
1586                                                                 }
1587                                                         }
1588                                                 }
1589                                         }
1590                                 }
1591                                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
1592                                         check_htlc_fails!(txid, "current");
1593                                 }
1594                                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1595                                         check_htlc_fails!(txid, "counterparty");
1596                                 }
1597                                 // No need to check holder commitment txn, symmetric HTLCSource must be present as per-htlc data on counterparty commitment tx
1598                         }
1599                 } else if let Some(per_commitment_data) = per_commitment_option {
1600                         // While this isn't useful yet, there is a potential race where if a counterparty
1601                         // revokes a state at the same time as the commitment transaction for that state is
1602                         // confirmed, and the watchtower receives the block before the user, the user could
1603                         // upload a new ChannelMonitor with the revocation secret but the watchtower has
1604                         // already processed the block, resulting in the counterparty_commitment_txn_on_chain entry
1605                         // not being generated by the above conditional. Thus, to be safe, we go ahead and
1606                         // insert it here.
1607                         for (idx, outp) in tx.output.iter().enumerate() {
1608                                 watch_outputs.push((idx as u32, outp.clone()));
1609                         }
1610                         self.counterparty_commitment_txn_on_chain.insert(commitment_txid, commitment_number);
1611
1612                         log_info!(logger, "Got broadcast of non-revoked counterparty commitment transaction {}", commitment_txid);
1613
1614                         macro_rules! check_htlc_fails {
1615                                 ($txid: expr, $commitment_tx: expr, $id: tt) => {
1616                                         if let Some(ref latest_outpoints) = self.counterparty_claimable_outpoints.get($txid) {
1617                                                 $id: for &(ref htlc, ref source_option) in latest_outpoints.iter() {
1618                                                         if let &Some(ref source) = source_option {
1619                                                                 // Check if the HTLC is present in the commitment transaction that was
1620                                                                 // broadcast, but not if it was below the dust limit, which we should
1621                                                                 // fail backwards immediately as there is no way for us to learn the
1622                                                                 // payment_preimage.
1623                                                                 // Note that if the dust limit were allowed to change between
1624                                                                 // commitment transactions we'd want to be check whether *any*
1625                                                                 // broadcastable commitment transaction has the HTLC in it, but it
1626                                                                 // cannot currently change after channel initialization, so we don't
1627                                                                 // need to here.
1628                                                                 for &(ref broadcast_htlc, ref broadcast_source) in per_commitment_data.iter() {
1629                                                                         if broadcast_htlc.transaction_output_index.is_some() && Some(source) == broadcast_source.as_ref() {
1630                                                                                 continue $id;
1631                                                                         }
1632                                                                 }
1633                                                                 log_trace!(logger, "Failing HTLC with payment_hash {} from {} counterparty commitment tx due to broadcast of counterparty commitment transaction", log_bytes!(htlc.payment_hash.0), $commitment_tx);
1634                                                                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
1635                                                                         if entry.height != height { return true; }
1636                                                                         match entry.event {
1637                                                                                 OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
1638                                                                                         *update_source != **source
1639                                                                                 },
1640                                                                                 _ => true,
1641                                                                         }
1642                                                                 });
1643                                                                 self.onchain_events_awaiting_threshold_conf.push(OnchainEventEntry {
1644                                                                         txid: *$txid,
1645                                                                         height,
1646                                                                         event: OnchainEvent::HTLCUpdate {
1647                                                                                 source: (**source).clone(),
1648                                                                                 payment_hash: htlc.payment_hash.clone(),
1649                                                                                 onchain_value_satoshis: Some(htlc.amount_msat / 1000),
1650                                                                         },
1651                                                                 });
1652                                                         }
1653                                                 }
1654                                         }
1655                                 }
1656                         }
1657                         if let Some(ref txid) = self.current_counterparty_commitment_txid {
1658                                 check_htlc_fails!(txid, "current", 'current_loop);
1659                         }
1660                         if let Some(ref txid) = self.prev_counterparty_commitment_txid {
1661                                 check_htlc_fails!(txid, "previous", 'prev_loop);
1662                         }
1663
1664                         let htlc_claim_reqs = self.get_counterparty_htlc_output_claim_reqs(commitment_number, commitment_txid, Some(tx));
1665                         for req in htlc_claim_reqs {
1666                                 claimable_outpoints.push(req);
1667                         }
1668
1669                 }
1670                 (claimable_outpoints, (commitment_txid, watch_outputs))
1671         }
1672
1673         fn get_counterparty_htlc_output_claim_reqs(&self, commitment_number: u64, commitment_txid: Txid, tx: Option<&Transaction>) -> Vec<PackageTemplate> {
1674                 let mut claimable_outpoints = Vec::new();
1675                 if let Some(htlc_outputs) = self.counterparty_claimable_outpoints.get(&commitment_txid) {
1676                         if let Some(revocation_points) = self.their_cur_revocation_points {
1677                                 let revocation_point_option =
1678                                         // If the counterparty commitment tx is the latest valid state, use their latest
1679                                         // per-commitment point
1680                                         if revocation_points.0 == commitment_number { Some(&revocation_points.1) }
1681                                         else if let Some(point) = revocation_points.2.as_ref() {
1682                                                 // If counterparty commitment tx is the state previous to the latest valid state, use
1683                                                 // their previous per-commitment point (non-atomicity of revocation means it's valid for
1684                                                 // them to temporarily have two valid commitment txns from our viewpoint)
1685                                                 if revocation_points.0 == commitment_number + 1 { Some(point) } else { None }
1686                                         } else { None };
1687                                 if let Some(revocation_point) = revocation_point_option {
1688                                         for (_, &(ref htlc, _)) in htlc_outputs.iter().enumerate() {
1689                                                 if let Some(transaction_output_index) = htlc.transaction_output_index {
1690                                                         if let Some(transaction) = tx {
1691                                                                 if transaction_output_index as usize >= transaction.output.len() ||
1692                                                                         transaction.output[transaction_output_index as usize].value != htlc.amount_msat / 1000 {
1693                                                                                 return claimable_outpoints; // Corrupted per_commitment_data, fuck this user
1694                                                                         }
1695                                                         }
1696                                                         let preimage = if htlc.offered { if let Some(p) = self.payment_preimages.get(&htlc.payment_hash) { Some(*p) } else { None } } else { None };
1697                                                         if preimage.is_some() || !htlc.offered {
1698                                                                 let counterparty_htlc_outp = if htlc.offered { PackageSolvingData::CounterpartyOfferedHTLCOutput(CounterpartyOfferedHTLCOutput::build(*revocation_point, self.counterparty_tx_cache.counterparty_delayed_payment_base_key, self.counterparty_tx_cache.counterparty_htlc_base_key, preimage.unwrap(), htlc.clone())) } else { PackageSolvingData::CounterpartyReceivedHTLCOutput(CounterpartyReceivedHTLCOutput::build(*revocation_point, self.counterparty_tx_cache.counterparty_delayed_payment_base_key, self.counterparty_tx_cache.counterparty_htlc_base_key, htlc.clone())) };
1699                                                                 let aggregation = if !htlc.offered { false } else { true };
1700                                                                 let counterparty_package = PackageTemplate::build_package(commitment_txid, transaction_output_index, counterparty_htlc_outp, htlc.cltv_expiry,aggregation, 0);
1701                                                                 claimable_outpoints.push(counterparty_package);
1702                                                         }
1703                                                 }
1704                                         }
1705                                 }
1706                         }
1707                 }
1708                 claimable_outpoints
1709         }
1710
1711         /// Attempts to claim a counterparty HTLC-Success/HTLC-Timeout's outputs using the revocation key
1712         fn check_spend_counterparty_htlc<L: Deref>(&mut self, tx: &Transaction, commitment_number: u64, height: u32, logger: &L) -> (Vec<PackageTemplate>, Option<TransactionOutputs>) where L::Target: Logger {
1713                 let htlc_txid = tx.txid();
1714                 if tx.input.len() != 1 || tx.output.len() != 1 || tx.input[0].witness.len() != 5 {
1715                         return (Vec::new(), None)
1716                 }
1717
1718                 macro_rules! ignore_error {
1719                         ( $thing : expr ) => {
1720                                 match $thing {
1721                                         Ok(a) => a,
1722                                         Err(_) => return (Vec::new(), None)
1723                                 }
1724                         };
1725                 }
1726
1727                 let secret = if let Some(secret) = self.get_secret(commitment_number) { secret } else { return (Vec::new(), None); };
1728                 let per_commitment_key = ignore_error!(SecretKey::from_slice(&secret));
1729                 let per_commitment_point = PublicKey::from_secret_key(&self.secp_ctx, &per_commitment_key);
1730
1731                 log_error!(logger, "Got broadcast of revoked counterparty HTLC transaction, spending {}:{}", htlc_txid, 0);
1732                 let revk_outp = RevokedOutput::build(per_commitment_point, self.counterparty_tx_cache.counterparty_delayed_payment_base_key, self.counterparty_tx_cache.counterparty_htlc_base_key, per_commitment_key, tx.output[0].value, self.counterparty_tx_cache.on_counterparty_tx_csv);
1733                 let justice_package = PackageTemplate::build_package(htlc_txid, 0, PackageSolvingData::RevokedOutput(revk_outp), height + self.counterparty_tx_cache.on_counterparty_tx_csv as u32, true, height);
1734                 let claimable_outpoints = vec!(justice_package);
1735                 let outputs = vec![(0, tx.output[0].clone())];
1736                 (claimable_outpoints, Some((htlc_txid, outputs)))
1737         }
1738
1739         // Returns (1) `PackageTemplate`s that can be given to the OnChainTxHandler, so that the handler can
1740         // broadcast transactions claiming holder HTLC commitment outputs and (2) a holder revokable
1741         // script so we can detect whether a holder transaction has been seen on-chain.
1742         fn get_broadcasted_holder_claims(&self, holder_tx: &HolderSignedTx, conf_height: u32) -> (Vec<PackageTemplate>, Option<(Script, PublicKey, PublicKey)>) {
1743                 let mut claim_requests = Vec::with_capacity(holder_tx.htlc_outputs.len());
1744
1745                 let redeemscript = chan_utils::get_revokeable_redeemscript(&holder_tx.revocation_key, self.on_holder_tx_csv, &holder_tx.delayed_payment_key);
1746                 let broadcasted_holder_revokable_script = Some((redeemscript.to_v0_p2wsh(), holder_tx.per_commitment_point.clone(), holder_tx.revocation_key.clone()));
1747
1748                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
1749                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1750                                 let htlc_output = if htlc.offered {
1751                                                 HolderHTLCOutput::build_offered(htlc.amount_msat, htlc.cltv_expiry)
1752                                         } else {
1753                                                 let payment_preimage = if let Some(preimage) = self.payment_preimages.get(&htlc.payment_hash) {
1754                                                         preimage.clone()
1755                                                 } else {
1756                                                         // We can't build an HTLC-Success transaction without the preimage
1757                                                         continue;
1758                                                 };
1759                                                 HolderHTLCOutput::build_accepted(payment_preimage, htlc.amount_msat)
1760                                         };
1761                                 let htlc_package = PackageTemplate::build_package(holder_tx.txid, transaction_output_index, PackageSolvingData::HolderHTLCOutput(htlc_output), htlc.cltv_expiry, false, conf_height);
1762                                 claim_requests.push(htlc_package);
1763                         }
1764                 }
1765
1766                 (claim_requests, broadcasted_holder_revokable_script)
1767         }
1768
1769         // Returns holder HTLC outputs to watch and react to in case of spending.
1770         fn get_broadcasted_holder_watch_outputs(&self, holder_tx: &HolderSignedTx, commitment_tx: &Transaction) -> Vec<(u32, TxOut)> {
1771                 let mut watch_outputs = Vec::with_capacity(holder_tx.htlc_outputs.len());
1772                 for &(ref htlc, _, _) in holder_tx.htlc_outputs.iter() {
1773                         if let Some(transaction_output_index) = htlc.transaction_output_index {
1774                                 watch_outputs.push((transaction_output_index, commitment_tx.output[transaction_output_index as usize].clone()));
1775                         }
1776                 }
1777                 watch_outputs
1778         }
1779
1780         /// Attempts to claim any claimable HTLCs in a commitment transaction which was not (yet)
1781         /// revoked using data in holder_claimable_outpoints.
1782         /// Should not be used if check_spend_revoked_transaction succeeds.
1783         fn check_spend_holder_transaction<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) -> (Vec<PackageTemplate>, TransactionOutputs) where L::Target: Logger {
1784                 let commitment_txid = tx.txid();
1785                 let mut claim_requests = Vec::new();
1786                 let mut watch_outputs = Vec::new();
1787
1788                 macro_rules! append_onchain_update {
1789                         ($updates: expr, $to_watch: expr) => {
1790                                 claim_requests = $updates.0;
1791                                 self.broadcasted_holder_revokable_script = $updates.1;
1792                                 watch_outputs.append(&mut $to_watch);
1793                         }
1794                 }
1795
1796                 // HTLCs set may differ between last and previous holder commitment txn, in case of one them hitting chain, ensure we cancel all HTLCs backward
1797                 let mut is_holder_tx = false;
1798
1799                 if self.current_holder_commitment_tx.txid == commitment_txid {
1800                         is_holder_tx = true;
1801                         log_info!(logger, "Got broadcast of latest holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
1802                         let res = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, height);
1803                         let mut to_watch = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, tx);
1804                         append_onchain_update!(res, to_watch);
1805                 } else if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1806                         if holder_tx.txid == commitment_txid {
1807                                 is_holder_tx = true;
1808                                 log_info!(logger, "Got broadcast of previous holder commitment tx {}, searching for available HTLCs to claim", commitment_txid);
1809                                 let res = self.get_broadcasted_holder_claims(holder_tx, height);
1810                                 let mut to_watch = self.get_broadcasted_holder_watch_outputs(holder_tx, tx);
1811                                 append_onchain_update!(res, to_watch);
1812                         }
1813                 }
1814
1815                 macro_rules! fail_dust_htlcs_after_threshold_conf {
1816                         ($holder_tx: expr, $commitment_tx: expr) => {
1817                                 for &(ref htlc, _, ref source) in &$holder_tx.htlc_outputs {
1818                                         if htlc.transaction_output_index.is_none() {
1819                                                 if let &Some(ref source) = source {
1820                                                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
1821                                                                 if entry.height != height { return true; }
1822                                                                 match entry.event {
1823                                                                         OnchainEvent::HTLCUpdate { source: ref update_source, .. } => {
1824                                                                                 update_source != source
1825                                                                         },
1826                                                                         _ => true,
1827                                                                 }
1828                                                         });
1829                                                         let entry = OnchainEventEntry {
1830                                                                 txid: commitment_txid,
1831                                                                 height,
1832                                                                 event: OnchainEvent::HTLCUpdate {
1833                                                                         source: source.clone(), payment_hash: htlc.payment_hash,
1834                                                                         onchain_value_satoshis: Some(htlc.amount_msat / 1000)
1835                                                                 },
1836                                                         };
1837                                                         log_trace!(logger, "Failing HTLC with payment_hash {} from {} holder commitment tx due to broadcast of transaction, waiting confirmation (at height{})",
1838                                                                 log_bytes!(htlc.payment_hash.0), $commitment_tx, entry.confirmation_threshold());
1839                                                         self.onchain_events_awaiting_threshold_conf.push(entry);
1840                                                 }
1841                                         }
1842                                 }
1843                         }
1844                 }
1845
1846                 if is_holder_tx {
1847                         fail_dust_htlcs_after_threshold_conf!(self.current_holder_commitment_tx, "latest");
1848                         if let &Some(ref holder_tx) = &self.prev_holder_signed_commitment_tx {
1849                                 fail_dust_htlcs_after_threshold_conf!(holder_tx, "previous");
1850                         }
1851                 }
1852
1853                 (claim_requests, (commitment_txid, watch_outputs))
1854         }
1855
1856         pub fn get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1857                 log_debug!(logger, "Getting signed latest holder commitment transaction!");
1858                 self.holder_tx_signed = true;
1859                 let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
1860                 let txid = commitment_tx.txid();
1861                 let mut holder_transactions = vec![commitment_tx];
1862                 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1863                         if let Some(vout) = htlc.0.transaction_output_index {
1864                                 let preimage = if !htlc.0.offered {
1865                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1866                                                 // We can't build an HTLC-Success transaction without the preimage
1867                                                 continue;
1868                                         }
1869                                 } else if htlc.0.cltv_expiry > self.best_block.height() + 1 {
1870                                         // Don't broadcast HTLC-Timeout transactions immediately as they don't meet the
1871                                         // current locktime requirements on-chain. We will broadcast them in
1872                                         // `block_confirmed` when `should_broadcast_holder_commitment_txn` returns true.
1873                                         // Note that we add + 1 as transactions are broadcastable when they can be
1874                                         // confirmed in the next block.
1875                                         continue;
1876                                 } else { None };
1877                                 if let Some(htlc_tx) = self.onchain_tx_handler.get_fully_signed_htlc_tx(
1878                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1879                                         holder_transactions.push(htlc_tx);
1880                                 }
1881                         }
1882                 }
1883                 // 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.
1884                 // The data will be re-generated and tracked in check_spend_holder_transaction if we get a confirmation.
1885                 holder_transactions
1886         }
1887
1888         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
1889         /// Note that this includes possibly-locktimed-in-the-future transactions!
1890         fn unsafe_get_latest_holder_commitment_txn<L: Deref>(&mut self, logger: &L) -> Vec<Transaction> where L::Target: Logger {
1891                 log_debug!(logger, "Getting signed copy of latest holder commitment transaction!");
1892                 let commitment_tx = self.onchain_tx_handler.get_fully_signed_copy_holder_tx(&self.funding_redeemscript);
1893                 let txid = commitment_tx.txid();
1894                 let mut holder_transactions = vec![commitment_tx];
1895                 for htlc in self.current_holder_commitment_tx.htlc_outputs.iter() {
1896                         if let Some(vout) = htlc.0.transaction_output_index {
1897                                 let preimage = if !htlc.0.offered {
1898                                         if let Some(preimage) = self.payment_preimages.get(&htlc.0.payment_hash) { Some(preimage.clone()) } else {
1899                                                 // We can't build an HTLC-Success transaction without the preimage
1900                                                 continue;
1901                                         }
1902                                 } else { None };
1903                                 if let Some(htlc_tx) = self.onchain_tx_handler.unsafe_get_fully_signed_htlc_tx(
1904                                         &::bitcoin::OutPoint { txid, vout }, &preimage) {
1905                                         holder_transactions.push(htlc_tx);
1906                                 }
1907                         }
1908                 }
1909                 holder_transactions
1910         }
1911
1912         pub fn block_connected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, txdata: &TransactionData, height: u32, broadcaster: B, fee_estimator: F, logger: L) -> Vec<TransactionOutputs>
1913                 where B::Target: BroadcasterInterface,
1914                       F::Target: FeeEstimator,
1915                                         L::Target: Logger,
1916         {
1917                 let block_hash = header.block_hash();
1918                 log_trace!(logger, "New best block {} at height {}", block_hash, height);
1919                 self.best_block = BestBlock::new(block_hash, height);
1920
1921                 self.transactions_confirmed(header, txdata, height, broadcaster, fee_estimator, logger)
1922         }
1923
1924         fn best_block_updated<B: Deref, F: Deref, L: Deref>(
1925                 &mut self,
1926                 header: &BlockHeader,
1927                 height: u32,
1928                 broadcaster: B,
1929                 fee_estimator: F,
1930                 logger: L,
1931         ) -> Vec<TransactionOutputs>
1932         where
1933                 B::Target: BroadcasterInterface,
1934                 F::Target: FeeEstimator,
1935                 L::Target: Logger,
1936         {
1937                 let block_hash = header.block_hash();
1938                 log_trace!(logger, "New best block {} at height {}", block_hash, height);
1939
1940                 if height > self.best_block.height() {
1941                         self.best_block = BestBlock::new(block_hash, height);
1942                         self.block_confirmed(height, vec![], vec![], vec![], &broadcaster, &fee_estimator, &logger)
1943                 } else if block_hash != self.best_block.block_hash() {
1944                         self.best_block = BestBlock::new(block_hash, height);
1945                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height <= height);
1946                         self.onchain_tx_handler.block_disconnected(height + 1, broadcaster, fee_estimator, logger);
1947                         Vec::new()
1948                 } else { Vec::new() }
1949         }
1950
1951         fn transactions_confirmed<B: Deref, F: Deref, L: Deref>(
1952                 &mut self,
1953                 header: &BlockHeader,
1954                 txdata: &TransactionData,
1955                 height: u32,
1956                 broadcaster: B,
1957                 fee_estimator: F,
1958                 logger: L,
1959         ) -> Vec<TransactionOutputs>
1960         where
1961                 B::Target: BroadcasterInterface,
1962                 F::Target: FeeEstimator,
1963                 L::Target: Logger,
1964         {
1965                 let txn_matched = self.filter_block(txdata);
1966                 for tx in &txn_matched {
1967                         let mut output_val = 0;
1968                         for out in tx.output.iter() {
1969                                 if out.value > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1970                                 output_val += out.value;
1971                                 if output_val > 21_000_000_0000_0000 { panic!("Value-overflowing transaction provided to block connected"); }
1972                         }
1973                 }
1974
1975                 let block_hash = header.block_hash();
1976                 log_trace!(logger, "Block {} at height {} connected with {} txn matched", block_hash, height, txn_matched.len());
1977
1978                 let mut watch_outputs = Vec::new();
1979                 let mut claimable_outpoints = Vec::new();
1980                 for tx in &txn_matched {
1981                         if tx.input.len() == 1 {
1982                                 // Assuming our keys were not leaked (in which case we're screwed no matter what),
1983                                 // commitment transactions and HTLC transactions will all only ever have one input,
1984                                 // which is an easy way to filter out any potential non-matching txn for lazy
1985                                 // filters.
1986                                 let prevout = &tx.input[0].previous_output;
1987                                 if prevout.txid == self.funding_info.0.txid && prevout.vout == self.funding_info.0.index as u32 {
1988                                         if (tx.input[0].sequence >> 8*3) as u8 == 0x80 && (tx.lock_time >> 8*3) as u8 == 0x20 {
1989                                                 let (mut new_outpoints, new_outputs) = self.check_spend_counterparty_transaction(&tx, height, &logger);
1990                                                 if !new_outputs.1.is_empty() {
1991                                                         watch_outputs.push(new_outputs);
1992                                                 }
1993                                                 if new_outpoints.is_empty() {
1994                                                         let (mut new_outpoints, new_outputs) = self.check_spend_holder_transaction(&tx, height, &logger);
1995                                                         if !new_outputs.1.is_empty() {
1996                                                                 watch_outputs.push(new_outputs);
1997                                                         }
1998                                                         claimable_outpoints.append(&mut new_outpoints);
1999                                                 }
2000                                                 claimable_outpoints.append(&mut new_outpoints);
2001                                         }
2002                                 } else {
2003                                         if let Some(&commitment_number) = self.counterparty_commitment_txn_on_chain.get(&prevout.txid) {
2004                                                 let (mut new_outpoints, new_outputs_option) = self.check_spend_counterparty_htlc(&tx, commitment_number, height, &logger);
2005                                                 claimable_outpoints.append(&mut new_outpoints);
2006                                                 if let Some(new_outputs) = new_outputs_option {
2007                                                         watch_outputs.push(new_outputs);
2008                                                 }
2009                                         }
2010                                 }
2011                         }
2012                         // While all commitment/HTLC-Success/HTLC-Timeout transactions have one input, HTLCs
2013                         // can also be resolved in a few other ways which can have more than one output. Thus,
2014                         // we call is_resolving_htlc_output here outside of the tx.input.len() == 1 check.
2015                         self.is_resolving_htlc_output(&tx, height, &logger);
2016
2017                         self.is_paying_spendable_output(&tx, height, &logger);
2018                 }
2019
2020                 if height > self.best_block.height() {
2021                         self.best_block = BestBlock::new(block_hash, height);
2022                 }
2023
2024                 self.block_confirmed(height, txn_matched, watch_outputs, claimable_outpoints, &broadcaster, &fee_estimator, &logger)
2025         }
2026
2027         /// Update state for new block(s)/transaction(s) confirmed. Note that the caller must update
2028         /// `self.best_block` before calling if a new best blockchain tip is available. More
2029         /// concretely, `self.best_block` must never be at a lower height than `conf_height`, avoiding
2030         /// complexity especially in `OnchainTx::update_claims_view`.
2031         ///
2032         /// `conf_height` should be set to the height at which any new transaction(s)/block(s) were
2033         /// confirmed at, even if it is not the current best height.
2034         fn block_confirmed<B: Deref, F: Deref, L: Deref>(
2035                 &mut self,
2036                 conf_height: u32,
2037                 txn_matched: Vec<&Transaction>,
2038                 mut watch_outputs: Vec<TransactionOutputs>,
2039                 mut claimable_outpoints: Vec<PackageTemplate>,
2040                 broadcaster: &B,
2041                 fee_estimator: &F,
2042                 logger: &L,
2043         ) -> Vec<TransactionOutputs>
2044         where
2045                 B::Target: BroadcasterInterface,
2046                 F::Target: FeeEstimator,
2047                 L::Target: Logger,
2048         {
2049                 debug_assert!(self.best_block.height() >= conf_height);
2050
2051                 let should_broadcast = self.should_broadcast_holder_commitment_txn(logger);
2052                 if should_broadcast {
2053                         let funding_outp = HolderFundingOutput::build(self.funding_redeemscript.clone());
2054                         let commitment_package = PackageTemplate::build_package(self.funding_info.0.txid.clone(), self.funding_info.0.index as u32, PackageSolvingData::HolderFundingOutput(funding_outp), self.best_block.height(), false, self.best_block.height());
2055                         claimable_outpoints.push(commitment_package);
2056                         self.pending_monitor_events.push(MonitorEvent::CommitmentTxBroadcasted(self.funding_info.0));
2057                         let commitment_tx = self.onchain_tx_handler.get_fully_signed_holder_tx(&self.funding_redeemscript);
2058                         self.holder_tx_signed = true;
2059                         // Because we're broadcasting a commitment transaction, we should construct the package
2060                         // assuming it gets confirmed in the next block. Sadly, we have code which considers
2061                         // "not yet confirmed" things as discardable, so we cannot do that here.
2062                         let (mut new_outpoints, _) = self.get_broadcasted_holder_claims(&self.current_holder_commitment_tx, self.best_block.height());
2063                         let new_outputs = self.get_broadcasted_holder_watch_outputs(&self.current_holder_commitment_tx, &commitment_tx);
2064                         if !new_outputs.is_empty() {
2065                                 watch_outputs.push((self.current_holder_commitment_tx.txid.clone(), new_outputs));
2066                         }
2067                         claimable_outpoints.append(&mut new_outpoints);
2068                 }
2069
2070                 // Find which on-chain events have reached their confirmation threshold.
2071                 let onchain_events_awaiting_threshold_conf =
2072                         self.onchain_events_awaiting_threshold_conf.drain(..).collect::<Vec<_>>();
2073                 let mut onchain_events_reaching_threshold_conf = Vec::new();
2074                 for entry in onchain_events_awaiting_threshold_conf {
2075                         if entry.has_reached_confirmation_threshold(&self.best_block) {
2076                                 onchain_events_reaching_threshold_conf.push(entry);
2077                         } else {
2078                                 self.onchain_events_awaiting_threshold_conf.push(entry);
2079                         }
2080                 }
2081
2082                 // Used to check for duplicate HTLC resolutions.
2083                 #[cfg(debug_assertions)]
2084                 let unmatured_htlcs: Vec<_> = self.onchain_events_awaiting_threshold_conf
2085                         .iter()
2086                         .filter_map(|entry| match &entry.event {
2087                                 OnchainEvent::HTLCUpdate { source, .. } => Some(source),
2088                                 OnchainEvent::MaturingOutput { .. } => None,
2089                         })
2090                         .collect();
2091                 #[cfg(debug_assertions)]
2092                 let mut matured_htlcs = Vec::new();
2093
2094                 // Produce actionable events from on-chain events having reached their threshold.
2095                 for entry in onchain_events_reaching_threshold_conf.drain(..) {
2096                         match entry.event {
2097                                 OnchainEvent::HTLCUpdate { ref source, payment_hash, onchain_value_satoshis } => {
2098                                         // Check for duplicate HTLC resolutions.
2099                                         #[cfg(debug_assertions)]
2100                                         {
2101                                                 debug_assert!(
2102                                                         unmatured_htlcs.iter().find(|&htlc| htlc == &source).is_none(),
2103                                                         "An unmature HTLC transaction conflicts with a maturing one; failed to \
2104                                                          call either transaction_unconfirmed for the conflicting transaction \
2105                                                          or block_disconnected for a block containing it.");
2106                                                 debug_assert!(
2107                                                         matured_htlcs.iter().find(|&htlc| htlc == source).is_none(),
2108                                                         "A matured HTLC transaction conflicts with a maturing one; failed to \
2109                                                          call either transaction_unconfirmed for the conflicting transaction \
2110                                                          or block_disconnected for a block containing it.");
2111                                                 matured_htlcs.push(source.clone());
2112                                         }
2113
2114                                         log_debug!(logger, "HTLC {} failure update has got enough confirmations to be passed upstream", log_bytes!(payment_hash.0));
2115                                         self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2116                                                 payment_hash,
2117                                                 payment_preimage: None,
2118                                                 source: source.clone(),
2119                                                 onchain_value_satoshis,
2120                                         }));
2121                                 },
2122                                 OnchainEvent::MaturingOutput { descriptor } => {
2123                                         log_debug!(logger, "Descriptor {} has got enough confirmations to be passed upstream", log_spendable!(descriptor));
2124                                         self.pending_events.push(Event::SpendableOutputs {
2125                                                 outputs: vec![descriptor]
2126                                         });
2127                                 }
2128                         }
2129                 }
2130
2131                 self.onchain_tx_handler.update_claims_view(&txn_matched, claimable_outpoints, conf_height, self.best_block.height(), broadcaster, fee_estimator, logger);
2132
2133                 // Determine new outputs to watch by comparing against previously known outputs to watch,
2134                 // updating the latter in the process.
2135                 watch_outputs.retain(|&(ref txid, ref txouts)| {
2136                         let idx_and_scripts = txouts.iter().map(|o| (o.0, o.1.script_pubkey.clone())).collect();
2137                         self.outputs_to_watch.insert(txid.clone(), idx_and_scripts).is_none()
2138                 });
2139                 #[cfg(test)]
2140                 {
2141                         // If we see a transaction for which we registered outputs previously,
2142                         // make sure the registered scriptpubkey at the expected index match
2143                         // the actual transaction output one. We failed this case before #653.
2144                         for tx in &txn_matched {
2145                                 if let Some(outputs) = self.get_outputs_to_watch().get(&tx.txid()) {
2146                                         for idx_and_script in outputs.iter() {
2147                                                 assert!((idx_and_script.0 as usize) < tx.output.len());
2148                                                 assert_eq!(tx.output[idx_and_script.0 as usize].script_pubkey, idx_and_script.1);
2149                                         }
2150                                 }
2151                         }
2152                 }
2153                 watch_outputs
2154         }
2155
2156         pub fn block_disconnected<B: Deref, F: Deref, L: Deref>(&mut self, header: &BlockHeader, height: u32, broadcaster: B, fee_estimator: F, logger: L)
2157                 where B::Target: BroadcasterInterface,
2158                       F::Target: FeeEstimator,
2159                       L::Target: Logger,
2160         {
2161                 log_trace!(logger, "Block {} at height {} disconnected", header.block_hash(), height);
2162
2163                 //We may discard:
2164                 //- htlc update there as failure-trigger tx (revoked commitment tx, non-revoked commitment tx, HTLC-timeout tx) has been disconnected
2165                 //- maturing spendable output has transaction paying us has been disconnected
2166                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.height < height);
2167
2168                 self.onchain_tx_handler.block_disconnected(height, broadcaster, fee_estimator, logger);
2169
2170                 self.best_block = BestBlock::new(header.prev_blockhash, height - 1);
2171         }
2172
2173         fn transaction_unconfirmed<B: Deref, F: Deref, L: Deref>(
2174                 &mut self,
2175                 txid: &Txid,
2176                 broadcaster: B,
2177                 fee_estimator: F,
2178                 logger: L,
2179         ) where
2180                 B::Target: BroadcasterInterface,
2181                 F::Target: FeeEstimator,
2182                 L::Target: Logger,
2183         {
2184                 self.onchain_events_awaiting_threshold_conf.retain(|ref entry| entry.txid != *txid);
2185                 self.onchain_tx_handler.transaction_unconfirmed(txid, broadcaster, fee_estimator, logger);
2186         }
2187
2188         /// Filters a block's `txdata` for transactions spending watched outputs or for any child
2189         /// transactions thereof.
2190         fn filter_block<'a>(&self, txdata: &TransactionData<'a>) -> Vec<&'a Transaction> {
2191                 let mut matched_txn = HashSet::new();
2192                 txdata.iter().filter(|&&(_, tx)| {
2193                         let mut matches = self.spends_watched_output(tx);
2194                         for input in tx.input.iter() {
2195                                 if matches { break; }
2196                                 if matched_txn.contains(&input.previous_output.txid) {
2197                                         matches = true;
2198                                 }
2199                         }
2200                         if matches {
2201                                 matched_txn.insert(tx.txid());
2202                         }
2203                         matches
2204                 }).map(|(_, tx)| *tx).collect()
2205         }
2206
2207         /// Checks if a given transaction spends any watched outputs.
2208         fn spends_watched_output(&self, tx: &Transaction) -> bool {
2209                 for input in tx.input.iter() {
2210                         if let Some(outputs) = self.get_outputs_to_watch().get(&input.previous_output.txid) {
2211                                 for (idx, _script_pubkey) in outputs.iter() {
2212                                         if *idx == input.previous_output.vout {
2213                                                 #[cfg(test)]
2214                                                 {
2215                                                         // If the expected script is a known type, check that the witness
2216                                                         // appears to be spending the correct type (ie that the match would
2217                                                         // actually succeed in BIP 158/159-style filters).
2218                                                         if _script_pubkey.is_v0_p2wsh() {
2219                                                                 assert_eq!(&bitcoin::Address::p2wsh(&Script::from(input.witness.last().unwrap().clone()), bitcoin::Network::Bitcoin).script_pubkey(), _script_pubkey);
2220                                                         } else if _script_pubkey.is_v0_p2wpkh() {
2221                                                                 assert_eq!(&bitcoin::Address::p2wpkh(&bitcoin::PublicKey::from_slice(&input.witness.last().unwrap()).unwrap(), bitcoin::Network::Bitcoin).unwrap().script_pubkey(), _script_pubkey);
2222                                                         } else { panic!(); }
2223                                                 }
2224                                                 return true;
2225                                         }
2226                                 }
2227                         }
2228                 }
2229
2230                 false
2231         }
2232
2233         fn should_broadcast_holder_commitment_txn<L: Deref>(&self, logger: &L) -> bool where L::Target: Logger {
2234                 // We need to consider all HTLCs which are:
2235                 //  * in any unrevoked counterparty commitment transaction, as they could broadcast said
2236                 //    transactions and we'd end up in a race, or
2237                 //  * are in our latest holder commitment transaction, as this is the thing we will
2238                 //    broadcast if we go on-chain.
2239                 // Note that we consider HTLCs which were below dust threshold here - while they don't
2240                 // strictly imply that we need to fail the channel, we need to go ahead and fail them back
2241                 // to the source, and if we don't fail the channel we will have to ensure that the next
2242                 // updates that peer sends us are update_fails, failing the channel if not. It's probably
2243                 // easier to just fail the channel as this case should be rare enough anyway.
2244                 let height = self.best_block.height();
2245                 macro_rules! scan_commitment {
2246                         ($htlcs: expr, $holder_tx: expr) => {
2247                                 for ref htlc in $htlcs {
2248                                         // For inbound HTLCs which we know the preimage for, we have to ensure we hit the
2249                                         // chain with enough room to claim the HTLC without our counterparty being able to
2250                                         // time out the HTLC first.
2251                                         // For outbound HTLCs which our counterparty hasn't failed/claimed, our primary
2252                                         // concern is being able to claim the corresponding inbound HTLC (on another
2253                                         // channel) before it expires. In fact, we don't even really care if our
2254                                         // counterparty here claims such an outbound HTLC after it expired as long as we
2255                                         // can still claim the corresponding HTLC. Thus, to avoid needlessly hitting the
2256                                         // chain when our counterparty is waiting for expiration to off-chain fail an HTLC
2257                                         // we give ourselves a few blocks of headroom after expiration before going
2258                                         // on-chain for an expired HTLC.
2259                                         // Note that, to avoid a potential attack whereby a node delays claiming an HTLC
2260                                         // from us until we've reached the point where we go on-chain with the
2261                                         // corresponding inbound HTLC, we must ensure that outbound HTLCs go on chain at
2262                                         // least CLTV_CLAIM_BUFFER blocks prior to the inbound HTLC.
2263                                         //  aka outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS == height - CLTV_CLAIM_BUFFER
2264                                         //      inbound_cltv == height + CLTV_CLAIM_BUFFER
2265                                         //      outbound_cltv + LATENCY_GRACE_PERIOD_BLOCKS + CLTV_CLAIM_BUFFER <= inbound_cltv - CLTV_CLAIM_BUFFER
2266                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= inbound_cltv - outbound_cltv
2267                                         //      CLTV_EXPIRY_DELTA <= inbound_cltv - outbound_cltv (by check in ChannelManager::decode_update_add_htlc_onion)
2268                                         //      LATENCY_GRACE_PERIOD_BLOCKS + 2*CLTV_CLAIM_BUFFER <= CLTV_EXPIRY_DELTA
2269                                         //  The final, above, condition is checked for statically in channelmanager
2270                                         //  with CHECK_CLTV_EXPIRY_SANITY_2.
2271                                         let htlc_outbound = $holder_tx == htlc.offered;
2272                                         if ( htlc_outbound && htlc.cltv_expiry + LATENCY_GRACE_PERIOD_BLOCKS <= height) ||
2273                                            (!htlc_outbound && htlc.cltv_expiry <= height + CLTV_CLAIM_BUFFER && self.payment_preimages.contains_key(&htlc.payment_hash)) {
2274                                                 log_info!(logger, "Force-closing channel due to {} HTLC timeout, HTLC expiry is {}", if htlc_outbound { "outbound" } else { "inbound "}, htlc.cltv_expiry);
2275                                                 return true;
2276                                         }
2277                                 }
2278                         }
2279                 }
2280
2281                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, _)| a), true);
2282
2283                 if let Some(ref txid) = self.current_counterparty_commitment_txid {
2284                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
2285                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
2286                         }
2287                 }
2288                 if let Some(ref txid) = self.prev_counterparty_commitment_txid {
2289                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(txid) {
2290                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, _)| a), false);
2291                         }
2292                 }
2293
2294                 false
2295         }
2296
2297         /// Check if any transaction broadcasted is resolving HTLC output by a success or timeout on a holder
2298         /// or counterparty commitment tx, if so send back the source, preimage if found and payment_hash of resolved HTLC
2299         fn is_resolving_htlc_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2300                 'outer_loop: for input in &tx.input {
2301                         let mut payment_data = None;
2302                         let revocation_sig_claim = (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC) && input.witness[1].len() == 33)
2303                                 || (input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::AcceptedHTLC) && input.witness[1].len() == 33);
2304                         let accepted_preimage_claim = input.witness.len() == 5 && HTLCType::scriptlen_to_htlctype(input.witness[4].len()) == Some(HTLCType::AcceptedHTLC);
2305                         let offered_preimage_claim = input.witness.len() == 3 && HTLCType::scriptlen_to_htlctype(input.witness[2].len()) == Some(HTLCType::OfferedHTLC);
2306
2307                         macro_rules! log_claim {
2308                                 ($tx_info: expr, $holder_tx: expr, $htlc: expr, $source_avail: expr) => {
2309                                         // We found the output in question, but aren't failing it backwards
2310                                         // as we have no corresponding source and no valid counterparty commitment txid
2311                                         // to try a weak source binding with same-hash, same-value still-valid offered HTLC.
2312                                         // This implies either it is an inbound HTLC or an outbound HTLC on a revoked transaction.
2313                                         let outbound_htlc = $holder_tx == $htlc.offered;
2314                                         if ($holder_tx && revocation_sig_claim) ||
2315                                                         (outbound_htlc && !$source_avail && (accepted_preimage_claim || offered_preimage_claim)) {
2316                                                 log_error!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}!",
2317                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
2318                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
2319                                                         if revocation_sig_claim { "revocation sig" } else { "preimage claim after we'd passed the HTLC resolution back" });
2320                                         } else {
2321                                                 log_info!(logger, "Input spending {} ({}:{}) in {} resolves {} HTLC with payment hash {} with {}",
2322                                                         $tx_info, input.previous_output.txid, input.previous_output.vout, tx.txid(),
2323                                                         if outbound_htlc { "outbound" } else { "inbound" }, log_bytes!($htlc.payment_hash.0),
2324                                                         if revocation_sig_claim { "revocation sig" } else if accepted_preimage_claim || offered_preimage_claim { "preimage" } else { "timeout" });
2325                                         }
2326                                 }
2327                         }
2328
2329                         macro_rules! check_htlc_valid_counterparty {
2330                                 ($counterparty_txid: expr, $htlc_output: expr) => {
2331                                         if let Some(txid) = $counterparty_txid {
2332                                                 for &(ref pending_htlc, ref pending_source) in self.counterparty_claimable_outpoints.get(&txid).unwrap() {
2333                                                         if pending_htlc.payment_hash == $htlc_output.payment_hash && pending_htlc.amount_msat == $htlc_output.amount_msat {
2334                                                                 if let &Some(ref source) = pending_source {
2335                                                                         log_claim!("revoked counterparty commitment tx", false, pending_htlc, true);
2336                                                                         payment_data = Some(((**source).clone(), $htlc_output.payment_hash, $htlc_output.amount_msat));
2337                                                                         break;
2338                                                                 }
2339                                                         }
2340                                                 }
2341                                         }
2342                                 }
2343                         }
2344
2345                         macro_rules! scan_commitment {
2346                                 ($htlcs: expr, $tx_info: expr, $holder_tx: expr) => {
2347                                         for (ref htlc_output, source_option) in $htlcs {
2348                                                 if Some(input.previous_output.vout) == htlc_output.transaction_output_index {
2349                                                         if let Some(ref source) = source_option {
2350                                                                 log_claim!($tx_info, $holder_tx, htlc_output, true);
2351                                                                 // We have a resolution of an HTLC either from one of our latest
2352                                                                 // holder commitment transactions or an unrevoked counterparty commitment
2353                                                                 // transaction. This implies we either learned a preimage, the HTLC
2354                                                                 // has timed out, or we screwed up. In any case, we should now
2355                                                                 // resolve the source HTLC with the original sender.
2356                                                                 payment_data = Some(((*source).clone(), htlc_output.payment_hash, htlc_output.amount_msat));
2357                                                         } else if !$holder_tx {
2358                                                                         check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output);
2359                                                                 if payment_data.is_none() {
2360                                                                         check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output);
2361                                                                 }
2362                                                         }
2363                                                         if payment_data.is_none() {
2364                                                                 log_claim!($tx_info, $holder_tx, htlc_output, false);
2365                                                                 continue 'outer_loop;
2366                                                         }
2367                                                 }
2368                                         }
2369                                 }
2370                         }
2371
2372                         if input.previous_output.txid == self.current_holder_commitment_tx.txid {
2373                                 scan_commitment!(self.current_holder_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
2374                                         "our latest holder commitment tx", true);
2375                         }
2376                         if let Some(ref prev_holder_signed_commitment_tx) = self.prev_holder_signed_commitment_tx {
2377                                 if input.previous_output.txid == prev_holder_signed_commitment_tx.txid {
2378                                         scan_commitment!(prev_holder_signed_commitment_tx.htlc_outputs.iter().map(|&(ref a, _, ref b)| (a, b.as_ref())),
2379                                                 "our previous holder commitment tx", true);
2380                                 }
2381                         }
2382                         if let Some(ref htlc_outputs) = self.counterparty_claimable_outpoints.get(&input.previous_output.txid) {
2383                                 scan_commitment!(htlc_outputs.iter().map(|&(ref a, ref b)| (a, (b.as_ref().clone()).map(|boxed| &**boxed))),
2384                                         "counterparty commitment tx", false);
2385                         }
2386
2387                         // Check that scan_commitment, above, decided there is some source worth relaying an
2388                         // HTLC resolution backwards to and figure out whether we learned a preimage from it.
2389                         if let Some((source, payment_hash, amount_msat)) = payment_data {
2390                                 let mut payment_preimage = PaymentPreimage([0; 32]);
2391                                 if accepted_preimage_claim {
2392                                         if !self.pending_monitor_events.iter().any(
2393                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update { upd.source == source } else { false }) {
2394                                                 payment_preimage.0.copy_from_slice(&input.witness[3]);
2395                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2396                                                         source,
2397                                                         payment_preimage: Some(payment_preimage),
2398                                                         payment_hash,
2399                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2400                                                 }));
2401                                         }
2402                                 } else if offered_preimage_claim {
2403                                         if !self.pending_monitor_events.iter().any(
2404                                                 |update| if let &MonitorEvent::HTLCEvent(ref upd) = update {
2405                                                         upd.source == source
2406                                                 } else { false }) {
2407                                                 payment_preimage.0.copy_from_slice(&input.witness[1]);
2408                                                 self.pending_monitor_events.push(MonitorEvent::HTLCEvent(HTLCUpdate {
2409                                                         source,
2410                                                         payment_preimage: Some(payment_preimage),
2411                                                         payment_hash,
2412                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2413                                                 }));
2414                                         }
2415                                 } else {
2416                                         self.onchain_events_awaiting_threshold_conf.retain(|ref entry| {
2417                                                 if entry.height != height { return true; }
2418                                                 match entry.event {
2419                                                         OnchainEvent::HTLCUpdate { source: ref htlc_source, .. } => {
2420                                                                 *htlc_source != source
2421                                                         },
2422                                                         _ => true,
2423                                                 }
2424                                         });
2425                                         let entry = OnchainEventEntry {
2426                                                 txid: tx.txid(),
2427                                                 height,
2428                                                 event: OnchainEvent::HTLCUpdate {
2429                                                         source, payment_hash,
2430                                                         onchain_value_satoshis: Some(amount_msat / 1000),
2431                                                 },
2432                                         };
2433                                         log_info!(logger, "Failing HTLC with payment_hash {} timeout by a spend tx, waiting for confirmation (at height {})", log_bytes!(payment_hash.0), entry.confirmation_threshold());
2434                                         self.onchain_events_awaiting_threshold_conf.push(entry);
2435                                 }
2436                         }
2437                 }
2438         }
2439
2440         /// Check if any transaction broadcasted is paying fund back to some address we can assume to own
2441         fn is_paying_spendable_output<L: Deref>(&mut self, tx: &Transaction, height: u32, logger: &L) where L::Target: Logger {
2442                 let mut spendable_output = None;
2443                 for (i, outp) in tx.output.iter().enumerate() { // There is max one spendable output for any channel tx, including ones generated by us
2444                         if i > ::core::u16::MAX as usize {
2445                                 // While it is possible that an output exists on chain which is greater than the
2446                                 // 2^16th output in a given transaction, this is only possible if the output is not
2447                                 // in a lightning transaction and was instead placed there by some third party who
2448                                 // wishes to give us money for no reason.
2449                                 // Namely, any lightning transactions which we pre-sign will never have anywhere
2450                                 // near 2^16 outputs both because such transactions must have ~2^16 outputs who's
2451                                 // scripts are not longer than one byte in length and because they are inherently
2452                                 // non-standard due to their size.
2453                                 // Thus, it is completely safe to ignore such outputs, and while it may result in
2454                                 // us ignoring non-lightning fund to us, that is only possible if someone fills
2455                                 // nearly a full block with garbage just to hit this case.
2456                                 continue;
2457                         }
2458                         if outp.script_pubkey == self.destination_script {
2459                                 spendable_output =  Some(SpendableOutputDescriptor::StaticOutput {
2460                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2461                                         output: outp.clone(),
2462                                 });
2463                                 break;
2464                         } else if let Some(ref broadcasted_holder_revokable_script) = self.broadcasted_holder_revokable_script {
2465                                 if broadcasted_holder_revokable_script.0 == outp.script_pubkey {
2466                                         spendable_output =  Some(SpendableOutputDescriptor::DelayedPaymentOutput(DelayedPaymentOutputDescriptor {
2467                                                 outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2468                                                 per_commitment_point: broadcasted_holder_revokable_script.1,
2469                                                 to_self_delay: self.on_holder_tx_csv,
2470                                                 output: outp.clone(),
2471                                                 revocation_pubkey: broadcasted_holder_revokable_script.2.clone(),
2472                                                 channel_keys_id: self.channel_keys_id,
2473                                                 channel_value_satoshis: self.channel_value_satoshis,
2474                                         }));
2475                                         break;
2476                                 }
2477                         } else if self.counterparty_payment_script == outp.script_pubkey {
2478                                 spendable_output = Some(SpendableOutputDescriptor::StaticPaymentOutput(StaticPaymentOutputDescriptor {
2479                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2480                                         output: outp.clone(),
2481                                         channel_keys_id: self.channel_keys_id,
2482                                         channel_value_satoshis: self.channel_value_satoshis,
2483                                 }));
2484                                 break;
2485                         } else if outp.script_pubkey == self.shutdown_script {
2486                                 spendable_output = Some(SpendableOutputDescriptor::StaticOutput {
2487                                         outpoint: OutPoint { txid: tx.txid(), index: i as u16 },
2488                                         output: outp.clone(),
2489                                 });
2490                         }
2491                 }
2492                 if let Some(spendable_output) = spendable_output {
2493                         let entry = OnchainEventEntry {
2494                                 txid: tx.txid(),
2495                                 height: height,
2496                                 event: OnchainEvent::MaturingOutput { descriptor: spendable_output.clone() },
2497                         };
2498                         log_info!(logger, "Received spendable output {}, spendable at height {}", log_spendable!(spendable_output), entry.confirmation_threshold());
2499                         self.onchain_events_awaiting_threshold_conf.push(entry);
2500                 }
2501         }
2502 }
2503
2504 /// `Persist` defines behavior for persisting channel monitors: this could mean
2505 /// writing once to disk, and/or uploading to one or more backup services.
2506 ///
2507 /// Note that for every new monitor, you **must** persist the new `ChannelMonitor`
2508 /// to disk/backups. And, on every update, you **must** persist either the
2509 /// `ChannelMonitorUpdate` or the updated monitor itself. Otherwise, there is risk
2510 /// of situations such as revoking a transaction, then crashing before this
2511 /// revocation can be persisted, then unintentionally broadcasting a revoked
2512 /// transaction and losing money. This is a risk because previous channel states
2513 /// are toxic, so it's important that whatever channel state is persisted is
2514 /// kept up-to-date.
2515 pub trait Persist<ChannelSigner: Sign> {
2516         /// Persist a new channel's data. The data can be stored any way you want, but
2517         /// the identifier provided by Rust-Lightning is the channel's outpoint (and
2518         /// it is up to you to maintain a correct mapping between the outpoint and the
2519         /// stored channel data). Note that you **must** persist every new monitor to
2520         /// disk. See the `Persist` trait documentation for more details.
2521         ///
2522         /// See [`ChannelMonitor::write`] for writing out a `ChannelMonitor`,
2523         /// and [`ChannelMonitorUpdateErr`] for requirements when returning errors.
2524         fn persist_new_channel(&self, id: OutPoint, data: &ChannelMonitor<ChannelSigner>) -> Result<(), ChannelMonitorUpdateErr>;
2525
2526         /// Update one channel's data. The provided `ChannelMonitor` has already
2527         /// applied the given update.
2528         ///
2529         /// Note that on every update, you **must** persist either the
2530         /// `ChannelMonitorUpdate` or the updated monitor itself to disk/backups. See
2531         /// the `Persist` trait documentation for more details.
2532         ///
2533         /// If an implementer chooses to persist the updates only, they need to make
2534         /// sure that all the updates are applied to the `ChannelMonitors` *before*
2535         /// the set of channel monitors is given to the `ChannelManager`
2536         /// deserialization routine. See [`ChannelMonitor::update_monitor`] for
2537         /// applying a monitor update to a monitor. If full `ChannelMonitors` are
2538         /// persisted, then there is no need to persist individual updates.
2539         ///
2540         /// Note that there could be a performance tradeoff between persisting complete
2541         /// channel monitors on every update vs. persisting only updates and applying
2542         /// them in batches. The size of each monitor grows `O(number of state updates)`
2543         /// whereas updates are small and `O(1)`.
2544         ///
2545         /// See [`ChannelMonitor::write`] for writing out a `ChannelMonitor`,
2546         /// [`ChannelMonitorUpdate::write`] for writing out an update, and
2547         /// [`ChannelMonitorUpdateErr`] for requirements when returning errors.
2548         fn update_persisted_channel(&self, id: OutPoint, update: &ChannelMonitorUpdate, data: &ChannelMonitor<ChannelSigner>) -> Result<(), ChannelMonitorUpdateErr>;
2549 }
2550
2551 impl<Signer: Sign, T: Deref, F: Deref, L: Deref> chain::Listen for (ChannelMonitor<Signer>, T, F, L)
2552 where
2553         T::Target: BroadcasterInterface,
2554         F::Target: FeeEstimator,
2555         L::Target: Logger,
2556 {
2557         fn block_connected(&self, block: &Block, height: u32) {
2558                 let txdata: Vec<_> = block.txdata.iter().enumerate().collect();
2559                 self.0.block_connected(&block.header, &txdata, height, &*self.1, &*self.2, &*self.3);
2560         }
2561
2562         fn block_disconnected(&self, header: &BlockHeader, height: u32) {
2563                 self.0.block_disconnected(header, height, &*self.1, &*self.2, &*self.3);
2564         }
2565 }
2566
2567 impl<Signer: Sign, T: Deref, F: Deref, L: Deref> chain::Confirm for (ChannelMonitor<Signer>, T, F, L)
2568 where
2569         T::Target: BroadcasterInterface,
2570         F::Target: FeeEstimator,
2571         L::Target: Logger,
2572 {
2573         fn transactions_confirmed(&self, header: &BlockHeader, txdata: &TransactionData, height: u32) {
2574                 self.0.transactions_confirmed(header, txdata, height, &*self.1, &*self.2, &*self.3);
2575         }
2576
2577         fn transaction_unconfirmed(&self, txid: &Txid) {
2578                 self.0.transaction_unconfirmed(txid, &*self.1, &*self.2, &*self.3);
2579         }
2580
2581         fn best_block_updated(&self, header: &BlockHeader, height: u32) {
2582                 self.0.best_block_updated(header, height, &*self.1, &*self.2, &*self.3);
2583         }
2584
2585         fn get_relevant_txids(&self) -> Vec<Txid> {
2586                 self.0.get_relevant_txids()
2587         }
2588 }
2589
2590 const MAX_ALLOC_SIZE: usize = 64*1024;
2591
2592 impl<'a, Signer: Sign, K: KeysInterface<Signer = Signer>> ReadableArgs<&'a K>
2593                 for (BlockHash, ChannelMonitor<Signer>) {
2594         fn read<R: ::std::io::Read>(reader: &mut R, keys_manager: &'a K) -> Result<Self, DecodeError> {
2595                 macro_rules! unwrap_obj {
2596                         ($key: expr) => {
2597                                 match $key {
2598                                         Ok(res) => res,
2599                                         Err(_) => return Err(DecodeError::InvalidValue),
2600                                 }
2601                         }
2602                 }
2603
2604                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
2605
2606                 let latest_update_id: u64 = Readable::read(reader)?;
2607                 let commitment_transaction_number_obscure_factor = <U48 as Readable>::read(reader)?.0;
2608
2609                 let destination_script = Readable::read(reader)?;
2610                 let broadcasted_holder_revokable_script = match <u8 as Readable>::read(reader)? {
2611                         0 => {
2612                                 let revokable_address = Readable::read(reader)?;
2613                                 let per_commitment_point = Readable::read(reader)?;
2614                                 let revokable_script = Readable::read(reader)?;
2615                                 Some((revokable_address, per_commitment_point, revokable_script))
2616                         },
2617                         1 => { None },
2618                         _ => return Err(DecodeError::InvalidValue),
2619                 };
2620                 let counterparty_payment_script = Readable::read(reader)?;
2621                 let shutdown_script = Readable::read(reader)?;
2622
2623                 let channel_keys_id = Readable::read(reader)?;
2624                 let holder_revocation_basepoint = Readable::read(reader)?;
2625                 // Technically this can fail and serialize fail a round-trip, but only for serialization of
2626                 // barely-init'd ChannelMonitors that we can't do anything with.
2627                 let outpoint = OutPoint {
2628                         txid: Readable::read(reader)?,
2629                         index: Readable::read(reader)?,
2630                 };
2631                 let funding_info = (outpoint, Readable::read(reader)?);
2632                 let current_counterparty_commitment_txid = Readable::read(reader)?;
2633                 let prev_counterparty_commitment_txid = Readable::read(reader)?;
2634
2635                 let counterparty_tx_cache = Readable::read(reader)?;
2636                 let funding_redeemscript = Readable::read(reader)?;
2637                 let channel_value_satoshis = Readable::read(reader)?;
2638
2639                 let their_cur_revocation_points = {
2640                         let first_idx = <U48 as Readable>::read(reader)?.0;
2641                         if first_idx == 0 {
2642                                 None
2643                         } else {
2644                                 let first_point = Readable::read(reader)?;
2645                                 let second_point_slice: [u8; 33] = Readable::read(reader)?;
2646                                 if second_point_slice[0..32] == [0; 32] && second_point_slice[32] == 0 {
2647                                         Some((first_idx, first_point, None))
2648                                 } else {
2649                                         Some((first_idx, first_point, Some(unwrap_obj!(PublicKey::from_slice(&second_point_slice)))))
2650                                 }
2651                         }
2652                 };
2653
2654                 let on_holder_tx_csv: u16 = Readable::read(reader)?;
2655
2656                 let commitment_secrets = Readable::read(reader)?;
2657
2658                 macro_rules! read_htlc_in_commitment {
2659                         () => {
2660                                 {
2661                                         let offered: bool = Readable::read(reader)?;
2662                                         let amount_msat: u64 = Readable::read(reader)?;
2663                                         let cltv_expiry: u32 = Readable::read(reader)?;
2664                                         let payment_hash: PaymentHash = Readable::read(reader)?;
2665                                         let transaction_output_index: Option<u32> = Readable::read(reader)?;
2666
2667                                         HTLCOutputInCommitment {
2668                                                 offered, amount_msat, cltv_expiry, payment_hash, transaction_output_index
2669                                         }
2670                                 }
2671                         }
2672                 }
2673
2674                 let counterparty_claimable_outpoints_len: u64 = Readable::read(reader)?;
2675                 let mut counterparty_claimable_outpoints = HashMap::with_capacity(cmp::min(counterparty_claimable_outpoints_len as usize, MAX_ALLOC_SIZE / 64));
2676                 for _ in 0..counterparty_claimable_outpoints_len {
2677                         let txid: Txid = Readable::read(reader)?;
2678                         let htlcs_count: u64 = Readable::read(reader)?;
2679                         let mut htlcs = Vec::with_capacity(cmp::min(htlcs_count as usize, MAX_ALLOC_SIZE / 32));
2680                         for _ in 0..htlcs_count {
2681                                 htlcs.push((read_htlc_in_commitment!(), <Option<HTLCSource> as Readable>::read(reader)?.map(|o: HTLCSource| Box::new(o))));
2682                         }
2683                         if let Some(_) = counterparty_claimable_outpoints.insert(txid, htlcs) {
2684                                 return Err(DecodeError::InvalidValue);
2685                         }
2686                 }
2687
2688                 let counterparty_commitment_txn_on_chain_len: u64 = Readable::read(reader)?;
2689                 let mut counterparty_commitment_txn_on_chain = HashMap::with_capacity(cmp::min(counterparty_commitment_txn_on_chain_len as usize, MAX_ALLOC_SIZE / 32));
2690                 for _ in 0..counterparty_commitment_txn_on_chain_len {
2691                         let txid: Txid = Readable::read(reader)?;
2692                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2693                         if let Some(_) = counterparty_commitment_txn_on_chain.insert(txid, commitment_number) {
2694                                 return Err(DecodeError::InvalidValue);
2695                         }
2696                 }
2697
2698                 let counterparty_hash_commitment_number_len: u64 = Readable::read(reader)?;
2699                 let mut counterparty_hash_commitment_number = HashMap::with_capacity(cmp::min(counterparty_hash_commitment_number_len as usize, MAX_ALLOC_SIZE / 32));
2700                 for _ in 0..counterparty_hash_commitment_number_len {
2701                         let payment_hash: PaymentHash = Readable::read(reader)?;
2702                         let commitment_number = <U48 as Readable>::read(reader)?.0;
2703                         if let Some(_) = counterparty_hash_commitment_number.insert(payment_hash, commitment_number) {
2704                                 return Err(DecodeError::InvalidValue);
2705                         }
2706                 }
2707
2708                 let prev_holder_signed_commitment_tx = match <u8 as Readable>::read(reader)? {
2709                         0 => None,
2710                         1 => {
2711                                 Some(Readable::read(reader)?)
2712                         },
2713                         _ => return Err(DecodeError::InvalidValue),
2714                 };
2715                 let current_holder_commitment_tx = Readable::read(reader)?;
2716
2717                 let current_counterparty_commitment_number = <U48 as Readable>::read(reader)?.0;
2718                 let current_holder_commitment_number = <U48 as Readable>::read(reader)?.0;
2719
2720                 let payment_preimages_len: u64 = Readable::read(reader)?;
2721                 let mut payment_preimages = HashMap::with_capacity(cmp::min(payment_preimages_len as usize, MAX_ALLOC_SIZE / 32));
2722                 for _ in 0..payment_preimages_len {
2723                         let preimage: PaymentPreimage = Readable::read(reader)?;
2724                         let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2725                         if let Some(_) = payment_preimages.insert(hash, preimage) {
2726                                 return Err(DecodeError::InvalidValue);
2727                         }
2728                 }
2729
2730                 let pending_monitor_events_len: u64 = Readable::read(reader)?;
2731                 let mut pending_monitor_events = Vec::with_capacity(cmp::min(pending_monitor_events_len as usize, MAX_ALLOC_SIZE / (32 + 8*3)));
2732                 for _ in 0..pending_monitor_events_len {
2733                         let ev = match <u8 as Readable>::read(reader)? {
2734                                 0 => MonitorEvent::HTLCEvent(Readable::read(reader)?),
2735                                 1 => MonitorEvent::CommitmentTxBroadcasted(funding_info.0),
2736                                 _ => return Err(DecodeError::InvalidValue)
2737                         };
2738                         pending_monitor_events.push(ev);
2739                 }
2740
2741                 let pending_events_len: u64 = Readable::read(reader)?;
2742                 let mut pending_events = Vec::with_capacity(cmp::min(pending_events_len as usize, MAX_ALLOC_SIZE / mem::size_of::<Event>()));
2743                 for _ in 0..pending_events_len {
2744                         if let Some(event) = MaybeReadable::read(reader)? {
2745                                 pending_events.push(event);
2746                         }
2747                 }
2748
2749                 let best_block = BestBlock::new(Readable::read(reader)?, Readable::read(reader)?);
2750
2751                 let waiting_threshold_conf_len: u64 = Readable::read(reader)?;
2752                 let mut onchain_events_awaiting_threshold_conf = Vec::with_capacity(cmp::min(waiting_threshold_conf_len as usize, MAX_ALLOC_SIZE / 128));
2753                 for _ in 0..waiting_threshold_conf_len {
2754                         onchain_events_awaiting_threshold_conf.push(Readable::read(reader)?);
2755                 }
2756
2757                 let outputs_to_watch_len: u64 = Readable::read(reader)?;
2758                 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::<u32>() + mem::size_of::<Vec<Script>>())));
2759                 for _ in 0..outputs_to_watch_len {
2760                         let txid = Readable::read(reader)?;
2761                         let outputs_len: u64 = Readable::read(reader)?;
2762                         let mut outputs = Vec::with_capacity(cmp::min(outputs_len as usize, MAX_ALLOC_SIZE / (mem::size_of::<u32>() + mem::size_of::<Script>())));
2763                         for _ in 0..outputs_len {
2764                                 outputs.push((Readable::read(reader)?, Readable::read(reader)?));
2765                         }
2766                         if let Some(_) = outputs_to_watch.insert(txid, outputs) {
2767                                 return Err(DecodeError::InvalidValue);
2768                         }
2769                 }
2770                 let onchain_tx_handler = ReadableArgs::read(reader, keys_manager)?;
2771
2772                 let lockdown_from_offchain = Readable::read(reader)?;
2773                 let holder_tx_signed = Readable::read(reader)?;
2774
2775                 read_tlv_fields!(reader, {});
2776
2777                 let mut secp_ctx = Secp256k1::new();
2778                 secp_ctx.seeded_randomize(&keys_manager.get_secure_random_bytes());
2779
2780                 Ok((best_block.block_hash(), ChannelMonitor {
2781                         inner: Mutex::new(ChannelMonitorImpl {
2782                                 latest_update_id,
2783                                 commitment_transaction_number_obscure_factor,
2784
2785                                 destination_script,
2786                                 broadcasted_holder_revokable_script,
2787                                 counterparty_payment_script,
2788                                 shutdown_script,
2789
2790                                 channel_keys_id,
2791                                 holder_revocation_basepoint,
2792                                 funding_info,
2793                                 current_counterparty_commitment_txid,
2794                                 prev_counterparty_commitment_txid,
2795
2796                                 counterparty_tx_cache,
2797                                 funding_redeemscript,
2798                                 channel_value_satoshis,
2799                                 their_cur_revocation_points,
2800
2801                                 on_holder_tx_csv,
2802
2803                                 commitment_secrets,
2804                                 counterparty_claimable_outpoints,
2805                                 counterparty_commitment_txn_on_chain,
2806                                 counterparty_hash_commitment_number,
2807
2808                                 prev_holder_signed_commitment_tx,
2809                                 current_holder_commitment_tx,
2810                                 current_counterparty_commitment_number,
2811                                 current_holder_commitment_number,
2812
2813                                 payment_preimages,
2814                                 pending_monitor_events,
2815                                 pending_events,
2816
2817                                 onchain_events_awaiting_threshold_conf,
2818                                 outputs_to_watch,
2819
2820                                 onchain_tx_handler,
2821
2822                                 lockdown_from_offchain,
2823                                 holder_tx_signed,
2824
2825                                 best_block,
2826
2827                                 secp_ctx,
2828                         }),
2829                 }))
2830         }
2831 }
2832
2833 #[cfg(test)]
2834 mod tests {
2835         use bitcoin::blockdata::script::{Script, Builder};
2836         use bitcoin::blockdata::opcodes;
2837         use bitcoin::blockdata::transaction::{Transaction, TxIn, TxOut, SigHashType};
2838         use bitcoin::blockdata::transaction::OutPoint as BitcoinOutPoint;
2839         use bitcoin::util::bip143;
2840         use bitcoin::hashes::Hash;
2841         use bitcoin::hashes::sha256::Hash as Sha256;
2842         use bitcoin::hashes::hex::FromHex;
2843         use bitcoin::hash_types::Txid;
2844         use bitcoin::network::constants::Network;
2845         use hex;
2846         use chain::BestBlock;
2847         use chain::channelmonitor::ChannelMonitor;
2848         use chain::package::{WEIGHT_OFFERED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_RECEIVED_HTLC, WEIGHT_REVOKED_OUTPUT};
2849         use chain::transaction::OutPoint;
2850         use ln::{PaymentPreimage, PaymentHash};
2851         use ln::chan_utils;
2852         use ln::chan_utils::{HTLCOutputInCommitment, ChannelPublicKeys, ChannelTransactionParameters, HolderCommitmentTransaction, CounterpartyChannelTransactionParameters};
2853         use util::test_utils::{TestLogger, TestBroadcaster, TestFeeEstimator};
2854         use bitcoin::secp256k1::key::{SecretKey,PublicKey};
2855         use bitcoin::secp256k1::Secp256k1;
2856         use sync::{Arc, Mutex};
2857         use chain::keysinterface::InMemorySigner;
2858         use prelude::*;
2859
2860         #[test]
2861         fn test_prune_preimages() {
2862                 let secp_ctx = Secp256k1::new();
2863                 let logger = Arc::new(TestLogger::new());
2864                 let broadcaster = Arc::new(TestBroadcaster{txn_broadcasted: Mutex::new(Vec::new()), blocks: Arc::new(Mutex::new(Vec::new()))});
2865                 let fee_estimator = Arc::new(TestFeeEstimator { sat_per_kw: Mutex::new(253) });
2866
2867                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
2868                 let dummy_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
2869
2870                 let mut preimages = Vec::new();
2871                 {
2872                         for i in 0..20 {
2873                                 let preimage = PaymentPreimage([i; 32]);
2874                                 let hash = PaymentHash(Sha256::hash(&preimage.0[..]).into_inner());
2875                                 preimages.push((preimage, hash));
2876                         }
2877                 }
2878
2879                 macro_rules! preimages_slice_to_htlc_outputs {
2880                         ($preimages_slice: expr) => {
2881                                 {
2882                                         let mut res = Vec::new();
2883                                         for (idx, preimage) in $preimages_slice.iter().enumerate() {
2884                                                 res.push((HTLCOutputInCommitment {
2885                                                         offered: true,
2886                                                         amount_msat: 0,
2887                                                         cltv_expiry: 0,
2888                                                         payment_hash: preimage.1.clone(),
2889                                                         transaction_output_index: Some(idx as u32),
2890                                                 }, None));
2891                                         }
2892                                         res
2893                                 }
2894                         }
2895                 }
2896                 macro_rules! preimages_to_holder_htlcs {
2897                         ($preimages_slice: expr) => {
2898                                 {
2899                                         let mut inp = preimages_slice_to_htlc_outputs!($preimages_slice);
2900                                         let res: Vec<_> = inp.drain(..).map(|e| { (e.0, None, e.1) }).collect();
2901                                         res
2902                                 }
2903                         }
2904                 }
2905
2906                 macro_rules! test_preimages_exist {
2907                         ($preimages_slice: expr, $monitor: expr) => {
2908                                 for preimage in $preimages_slice {
2909                                         assert!($monitor.inner.lock().unwrap().payment_preimages.contains_key(&preimage.1));
2910                                 }
2911                         }
2912                 }
2913
2914                 let keys = InMemorySigner::new(
2915                         &secp_ctx,
2916                         SecretKey::from_slice(&[41; 32]).unwrap(),
2917                         SecretKey::from_slice(&[41; 32]).unwrap(),
2918                         SecretKey::from_slice(&[41; 32]).unwrap(),
2919                         SecretKey::from_slice(&[41; 32]).unwrap(),
2920                         SecretKey::from_slice(&[41; 32]).unwrap(),
2921                         [41; 32],
2922                         0,
2923                         [0; 32]
2924                 );
2925
2926                 let counterparty_pubkeys = ChannelPublicKeys {
2927                         funding_pubkey: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[44; 32]).unwrap()),
2928                         revocation_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[45; 32]).unwrap()),
2929                         payment_point: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[46; 32]).unwrap()),
2930                         delayed_payment_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[47; 32]).unwrap()),
2931                         htlc_basepoint: PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[48; 32]).unwrap())
2932                 };
2933                 let funding_outpoint = OutPoint { txid: Default::default(), index: u16::max_value() };
2934                 let channel_parameters = ChannelTransactionParameters {
2935                         holder_pubkeys: keys.holder_channel_pubkeys.clone(),
2936                         holder_selected_contest_delay: 66,
2937                         is_outbound_from_holder: true,
2938                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters {
2939                                 pubkeys: counterparty_pubkeys,
2940                                 selected_contest_delay: 67,
2941                         }),
2942                         funding_outpoint: Some(funding_outpoint),
2943                 };
2944                 // Prune with one old state and a holder commitment tx holding a few overlaps with the
2945                 // old state.
2946                 let best_block = BestBlock::from_genesis(Network::Testnet);
2947                 let monitor = ChannelMonitor::new(Secp256k1::new(), keys,
2948                                                   &PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap()), 0, &Script::new(),
2949                                                   (OutPoint { txid: Txid::from_slice(&[43; 32]).unwrap(), index: 0 }, Script::new()),
2950                                                   &channel_parameters,
2951                                                   Script::new(), 46, 0,
2952                                                   HolderCommitmentTransaction::dummy(), best_block);
2953
2954                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..10])).unwrap();
2955                 let dummy_txid = dummy_tx.txid();
2956                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[5..15]), 281474976710655, dummy_key, &logger);
2957                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[15..20]), 281474976710654, dummy_key, &logger);
2958                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[17..20]), 281474976710653, dummy_key, &logger);
2959                 monitor.provide_latest_counterparty_commitment_tx(dummy_txid, preimages_slice_to_htlc_outputs!(preimages[18..20]), 281474976710652, dummy_key, &logger);
2960                 for &(ref preimage, ref hash) in preimages.iter() {
2961                         monitor.provide_payment_preimage(hash, preimage, &broadcaster, &fee_estimator, &logger);
2962                 }
2963
2964                 // Now provide a secret, pruning preimages 10-15
2965                 let mut secret = [0; 32];
2966                 secret[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2967                 monitor.provide_secret(281474976710655, secret.clone()).unwrap();
2968                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 15);
2969                 test_preimages_exist!(&preimages[0..10], monitor);
2970                 test_preimages_exist!(&preimages[15..20], monitor);
2971
2972                 // Now provide a further secret, pruning preimages 15-17
2973                 secret[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2974                 monitor.provide_secret(281474976710654, secret.clone()).unwrap();
2975                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 13);
2976                 test_preimages_exist!(&preimages[0..10], monitor);
2977                 test_preimages_exist!(&preimages[17..20], monitor);
2978
2979                 // Now update holder commitment tx info, pruning only element 18 as we still care about the
2980                 // previous commitment tx's preimages too
2981                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..5])).unwrap();
2982                 secret[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2983                 monitor.provide_secret(281474976710653, secret.clone()).unwrap();
2984                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 12);
2985                 test_preimages_exist!(&preimages[0..10], monitor);
2986                 test_preimages_exist!(&preimages[18..20], monitor);
2987
2988                 // But if we do it again, we'll prune 5-10
2989                 monitor.provide_latest_holder_commitment_tx(HolderCommitmentTransaction::dummy(), preimages_to_holder_htlcs!(preimages[0..3])).unwrap();
2990                 secret[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2991                 monitor.provide_secret(281474976710652, secret.clone()).unwrap();
2992                 assert_eq!(monitor.inner.lock().unwrap().payment_preimages.len(), 5);
2993                 test_preimages_exist!(&preimages[0..5], monitor);
2994         }
2995
2996         #[test]
2997         fn test_claim_txn_weight_computation() {
2998                 // We test Claim txn weight, knowing that we want expected weigth and
2999                 // not actual case to avoid sigs and time-lock delays hell variances.
3000
3001                 let secp_ctx = Secp256k1::new();
3002                 let privkey = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
3003                 let pubkey = PublicKey::from_secret_key(&secp_ctx, &privkey);
3004                 let mut sum_actual_sigs = 0;
3005
3006                 macro_rules! sign_input {
3007                         ($sighash_parts: expr, $idx: expr, $amount: expr, $weight: expr, $sum_actual_sigs: expr) => {
3008                                 let htlc = HTLCOutputInCommitment {
3009                                         offered: if *$weight == WEIGHT_REVOKED_OFFERED_HTLC || *$weight == WEIGHT_OFFERED_HTLC { true } else { false },
3010                                         amount_msat: 0,
3011                                         cltv_expiry: 2 << 16,
3012                                         payment_hash: PaymentHash([1; 32]),
3013                                         transaction_output_index: Some($idx as u32),
3014                                 };
3015                                 let redeem_script = if *$weight == WEIGHT_REVOKED_OUTPUT { chan_utils::get_revokeable_redeemscript(&pubkey, 256, &pubkey) } else { chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, &pubkey, &pubkey, &pubkey) };
3016                                 let sighash = hash_to_message!(&$sighash_parts.signature_hash($idx, &redeem_script, $amount, SigHashType::All)[..]);
3017                                 let sig = secp_ctx.sign(&sighash, &privkey);
3018                                 $sighash_parts.access_witness($idx).push(sig.serialize_der().to_vec());
3019                                 $sighash_parts.access_witness($idx)[0].push(SigHashType::All as u8);
3020                                 sum_actual_sigs += $sighash_parts.access_witness($idx)[0].len();
3021                                 if *$weight == WEIGHT_REVOKED_OUTPUT {
3022                                         $sighash_parts.access_witness($idx).push(vec!(1));
3023                                 } else if *$weight == WEIGHT_REVOKED_OFFERED_HTLC || *$weight == WEIGHT_REVOKED_RECEIVED_HTLC {
3024                                         $sighash_parts.access_witness($idx).push(pubkey.clone().serialize().to_vec());
3025                                 } else if *$weight == WEIGHT_RECEIVED_HTLC {
3026                                         $sighash_parts.access_witness($idx).push(vec![0]);
3027                                 } else {
3028                                         $sighash_parts.access_witness($idx).push(PaymentPreimage([1; 32]).0.to_vec());
3029                                 }
3030                                 $sighash_parts.access_witness($idx).push(redeem_script.into_bytes());
3031                                 println!("witness[0] {}", $sighash_parts.access_witness($idx)[0].len());
3032                                 println!("witness[1] {}", $sighash_parts.access_witness($idx)[1].len());
3033                                 println!("witness[2] {}", $sighash_parts.access_witness($idx)[2].len());
3034                         }
3035                 }
3036
3037                 let script_pubkey = Builder::new().push_opcode(opcodes::all::OP_RETURN).into_script();
3038                 let txid = Txid::from_hex("56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d").unwrap();
3039
3040                 // Justice tx with 1 to_holder, 2 revoked offered HTLCs, 1 revoked received HTLCs
3041                 let mut claim_tx = Transaction { version: 0, lock_time: 0, input: Vec::new(), output: Vec::new() };
3042                 for i in 0..4 {
3043                         claim_tx.input.push(TxIn {
3044                                 previous_output: BitcoinOutPoint {
3045                                         txid,
3046                                         vout: i,
3047                                 },
3048                                 script_sig: Script::new(),
3049                                 sequence: 0xfffffffd,
3050                                 witness: Vec::new(),
3051                         });
3052                 }
3053                 claim_tx.output.push(TxOut {
3054                         script_pubkey: script_pubkey.clone(),
3055                         value: 0,
3056                 });
3057                 let base_weight = claim_tx.get_weight();
3058                 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_OFFERED_HTLC, WEIGHT_REVOKED_RECEIVED_HTLC];
3059                 let mut inputs_total_weight = 2; // count segwit flags
3060                 {
3061                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3062                         for (idx, inp) in inputs_weight.iter().enumerate() {
3063                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3064                                 inputs_total_weight += inp;
3065                         }
3066                 }
3067                 assert_eq!(base_weight + inputs_total_weight as usize,  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
3068
3069                 // Claim tx with 1 offered HTLCs, 3 received HTLCs
3070                 claim_tx.input.clear();
3071                 sum_actual_sigs = 0;
3072                 for i in 0..4 {
3073                         claim_tx.input.push(TxIn {
3074                                 previous_output: BitcoinOutPoint {
3075                                         txid,
3076                                         vout: i,
3077                                 },
3078                                 script_sig: Script::new(),
3079                                 sequence: 0xfffffffd,
3080                                 witness: Vec::new(),
3081                         });
3082                 }
3083                 let base_weight = claim_tx.get_weight();
3084                 let inputs_weight = vec![WEIGHT_OFFERED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_RECEIVED_HTLC, WEIGHT_RECEIVED_HTLC];
3085                 let mut inputs_total_weight = 2; // count segwit flags
3086                 {
3087                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3088                         for (idx, inp) in inputs_weight.iter().enumerate() {
3089                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3090                                 inputs_total_weight += inp;
3091                         }
3092                 }
3093                 assert_eq!(base_weight + inputs_total_weight as usize,  claim_tx.get_weight() + /* max_length_sig */ (73 * inputs_weight.len() - sum_actual_sigs));
3094
3095                 // Justice tx with 1 revoked HTLC-Success tx output
3096                 claim_tx.input.clear();
3097                 sum_actual_sigs = 0;
3098                 claim_tx.input.push(TxIn {
3099                         previous_output: BitcoinOutPoint {
3100                                 txid,
3101                                 vout: 0,
3102                         },
3103                         script_sig: Script::new(),
3104                         sequence: 0xfffffffd,
3105                         witness: Vec::new(),
3106                 });
3107                 let base_weight = claim_tx.get_weight();
3108                 let inputs_weight = vec![WEIGHT_REVOKED_OUTPUT];
3109                 let mut inputs_total_weight = 2; // count segwit flags
3110                 {
3111                         let mut sighash_parts = bip143::SigHashCache::new(&mut claim_tx);
3112                         for (idx, inp) in inputs_weight.iter().enumerate() {
3113                                 sign_input!(sighash_parts, idx, 0, inp, sum_actual_sigs);
3114                                 inputs_total_weight += inp;
3115                         }
3116                 }
3117                 assert_eq!(base_weight + inputs_total_weight as usize, claim_tx.get_weight() + /* max_length_isg */ (73 * inputs_weight.len() - sum_actual_sigs));
3118         }
3119
3120         // Further testing is done in the ChannelManager integration tests.
3121 }