Merge pull request #1893 from valentinewallace/2022-12-jit-forwards-followup
[rust-lightning] / lightning / src / ln / chan_utils.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 //! Various utilities for building scripts and deriving keys related to channels. These are
11 //! largely of interest for those implementing chain::keysinterface::Sign message signing by hand.
12
13 use bitcoin::blockdata::script::{Script,Builder};
14 use bitcoin::blockdata::opcodes;
15 use bitcoin::blockdata::transaction::{TxIn,TxOut,OutPoint,Transaction, EcdsaSighashType};
16 use bitcoin::util::sighash;
17 use bitcoin::util::address::Payload;
18
19 use bitcoin::hashes::{Hash, HashEngine};
20 use bitcoin::hashes::sha256::Hash as Sha256;
21 use bitcoin::hashes::ripemd160::Hash as Ripemd160;
22 use bitcoin::hash_types::{Txid, PubkeyHash};
23
24 use crate::ln::{PaymentHash, PaymentPreimage};
25 use crate::ln::msgs::DecodeError;
26 use crate::util::ser::{Readable, Writeable, Writer};
27 use crate::util::{byte_utils, transaction_utils};
28
29 use bitcoin::secp256k1::{SecretKey, PublicKey, Scalar};
30 use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature, Message};
31 use bitcoin::secp256k1::Error as SecpError;
32 use bitcoin::{PackedLockTime, secp256k1, Sequence, Witness};
33 use bitcoin::PublicKey as BitcoinPublicKey;
34
35 use crate::io;
36 use crate::prelude::*;
37 use core::cmp;
38 use crate::ln::chan_utils;
39 use crate::util::transaction_utils::sort_outputs;
40 use crate::ln::channel::{INITIAL_COMMITMENT_NUMBER, ANCHOR_OUTPUT_VALUE_SATOSHI};
41 use core::ops::Deref;
42 use crate::chain;
43 use crate::util::crypto::sign;
44
45 /// Maximum number of one-way in-flight HTLC (protocol-level value).
46 pub const MAX_HTLCS: u16 = 483;
47 /// The weight of a BIP141 witnessScript for a BOLT3's "offered HTLC output" on a commitment transaction, non-anchor variant.
48 pub const OFFERED_HTLC_SCRIPT_WEIGHT: usize = 133;
49 /// The weight of a BIP141 witnessScript for a BOLT3's "offered HTLC output" on a commitment transaction, anchor variant.
50 pub const OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS: usize = 136;
51
52 /// The weight of a BIP141 witnessScript for a BOLT3's "received HTLC output" can vary in function of its CLTV argument value.
53 /// We define a range that encompasses both its non-anchors and anchors variants.
54 pub(crate) const MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 136;
55 /// The weight of a BIP141 witnessScript for a BOLT3's "received HTLC output" can vary in function of its CLTV argument value.
56 /// We define a range that encompasses both its non-anchors and anchors variants.
57 /// This is the maximum post-anchor value.
58 pub const MAX_ACCEPTED_HTLC_SCRIPT_WEIGHT: usize = 143;
59
60 /// Gets the weight for an HTLC-Success transaction.
61 #[inline]
62 pub fn htlc_success_tx_weight(opt_anchors: bool) -> u64 {
63         const HTLC_SUCCESS_TX_WEIGHT: u64 = 703;
64         const HTLC_SUCCESS_ANCHOR_TX_WEIGHT: u64 = 706;
65         if opt_anchors { HTLC_SUCCESS_ANCHOR_TX_WEIGHT } else { HTLC_SUCCESS_TX_WEIGHT }
66 }
67
68 /// Gets the weight for an HTLC-Timeout transaction.
69 #[inline]
70 pub fn htlc_timeout_tx_weight(opt_anchors: bool) -> u64 {
71         const HTLC_TIMEOUT_TX_WEIGHT: u64 = 663;
72         const HTLC_TIMEOUT_ANCHOR_TX_WEIGHT: u64 = 666;
73         if opt_anchors { HTLC_TIMEOUT_ANCHOR_TX_WEIGHT } else { HTLC_TIMEOUT_TX_WEIGHT }
74 }
75
76 /// Describes the type of HTLC claim as determined by analyzing the witness.
77 #[derive(PartialEq, Eq)]
78 pub enum HTLCClaim {
79         /// Claims an offered output on a commitment transaction through the timeout path.
80         OfferedTimeout,
81         /// Claims an offered output on a commitment transaction through the success path.
82         OfferedPreimage,
83         /// Claims an accepted output on a commitment transaction through the timeout path.
84         AcceptedTimeout,
85         /// Claims an accepted output on a commitment transaction through the success path.
86         AcceptedPreimage,
87         /// Claims an offered/accepted output on a commitment transaction through the revocation path.
88         Revocation,
89 }
90
91 impl HTLCClaim {
92         /// Check if a given input witness attempts to claim a HTLC.
93         pub fn from_witness(witness: &Witness) -> Option<Self> {
94                 debug_assert_eq!(OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS, MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT);
95                 if witness.len() < 2 {
96                         return None;
97                 }
98                 let witness_script = witness.last().unwrap();
99                 let second_to_last = witness.second_to_last().unwrap();
100                 if witness_script.len() == OFFERED_HTLC_SCRIPT_WEIGHT {
101                         if witness.len() == 3 && second_to_last.len() == 33 {
102                                 // <revocation sig> <revocationpubkey> <witness_script>
103                                 Some(Self::Revocation)
104                         } else if witness.len() == 3 && second_to_last.len() == 32 {
105                                 // <remotehtlcsig> <payment_preimage> <witness_script>
106                                 Some(Self::OfferedPreimage)
107                         } else if witness.len() == 5 && second_to_last.len() == 0 {
108                                 // 0 <remotehtlcsig> <localhtlcsig> <> <witness_script>
109                                 Some(Self::OfferedTimeout)
110                         } else {
111                                 None
112                         }
113                 } else if witness_script.len() == OFFERED_HTLC_SCRIPT_WEIGHT_ANCHORS {
114                         // It's possible for the weight of `offered_htlc_script` and `accepted_htlc_script` to
115                         // match so we check for both here.
116                         if witness.len() == 3 && second_to_last.len() == 33 {
117                                 // <revocation sig> <revocationpubkey> <witness_script>
118                                 Some(Self::Revocation)
119                         } else if witness.len() == 3 && second_to_last.len() == 32 {
120                                 // <remotehtlcsig> <payment_preimage> <witness_script>
121                                 Some(Self::OfferedPreimage)
122                         } else if witness.len() == 5 && second_to_last.len() == 0 {
123                                 // 0 <remotehtlcsig> <localhtlcsig> <> <witness_script>
124                                 Some(Self::OfferedTimeout)
125                         } else if witness.len() == 3 && second_to_last.len() == 0 {
126                                 // <remotehtlcsig> <> <witness_script>
127                                 Some(Self::AcceptedTimeout)
128                         } else if witness.len() == 5 && second_to_last.len() == 32 {
129                                 // 0 <remotehtlcsig> <localhtlcsig> <payment_preimage> <witness_script>
130                                 Some(Self::AcceptedPreimage)
131                         } else {
132                                 None
133                         }
134                 } else if witness_script.len() > MIN_ACCEPTED_HTLC_SCRIPT_WEIGHT &&
135                         witness_script.len() <= MAX_ACCEPTED_HTLC_SCRIPT_WEIGHT {
136                         // Handle remaining range of ACCEPTED_HTLC_SCRIPT_WEIGHT.
137                         if witness.len() == 3 && second_to_last.len() == 33 {
138                                 // <revocation sig> <revocationpubkey> <witness_script>
139                                 Some(Self::Revocation)
140                         } else if witness.len() == 3 && second_to_last.len() == 0 {
141                                 // <remotehtlcsig> <> <witness_script>
142                                 Some(Self::AcceptedTimeout)
143                         } else if witness.len() == 5 && second_to_last.len() == 32 {
144                                 // 0 <remotehtlcsig> <localhtlcsig> <payment_preimage> <witness_script>
145                                 Some(Self::AcceptedPreimage)
146                         } else {
147                                 None
148                         }
149                 } else {
150                         None
151                 }
152         }
153 }
154
155 // Various functions for key derivation and transaction creation for use within channels. Primarily
156 // used in Channel and ChannelMonitor.
157
158 /// Build the commitment secret from the seed and the commitment number
159 pub fn build_commitment_secret(commitment_seed: &[u8; 32], idx: u64) -> [u8; 32] {
160         let mut res: [u8; 32] = commitment_seed.clone();
161         for i in 0..48 {
162                 let bitpos = 47 - i;
163                 if idx & (1 << bitpos) == (1 << bitpos) {
164                         res[bitpos / 8] ^= 1 << (bitpos & 7);
165                         res = Sha256::hash(&res).into_inner();
166                 }
167         }
168         res
169 }
170
171 /// Build a closing transaction
172 pub fn build_closing_transaction(to_holder_value_sat: u64, to_counterparty_value_sat: u64, to_holder_script: Script, to_counterparty_script: Script, funding_outpoint: OutPoint) -> Transaction {
173         let txins = {
174                 let mut ins: Vec<TxIn> = Vec::new();
175                 ins.push(TxIn {
176                         previous_output: funding_outpoint,
177                         script_sig: Script::new(),
178                         sequence: Sequence::MAX,
179                         witness: Witness::new(),
180                 });
181                 ins
182         };
183
184         let mut txouts: Vec<(TxOut, ())> = Vec::new();
185
186         if to_counterparty_value_sat > 0 {
187                 txouts.push((TxOut {
188                         script_pubkey: to_counterparty_script,
189                         value: to_counterparty_value_sat
190                 }, ()));
191         }
192
193         if to_holder_value_sat > 0 {
194                 txouts.push((TxOut {
195                         script_pubkey: to_holder_script,
196                         value: to_holder_value_sat
197                 }, ()));
198         }
199
200         transaction_utils::sort_outputs(&mut txouts, |_, _| { cmp::Ordering::Equal }); // Ordering doesnt matter if they used our pubkey...
201
202         let mut outputs: Vec<TxOut> = Vec::new();
203         for out in txouts.drain(..) {
204                 outputs.push(out.0);
205         }
206
207         Transaction {
208                 version: 2,
209                 lock_time: PackedLockTime::ZERO,
210                 input: txins,
211                 output: outputs,
212         }
213 }
214
215 /// Implements the per-commitment secret storage scheme from
216 /// [BOLT 3](https://github.com/lightning/bolts/blob/dcbf8583976df087c79c3ce0b535311212e6812d/03-transactions.md#efficient-per-commitment-secret-storage).
217 ///
218 /// Allows us to keep track of all of the revocation secrets of our counterparty in just 50*32 bytes
219 /// or so.
220 #[derive(Clone)]
221 pub struct CounterpartyCommitmentSecrets {
222         old_secrets: [([u8; 32], u64); 49],
223 }
224
225 impl Eq for CounterpartyCommitmentSecrets {}
226 impl PartialEq for CounterpartyCommitmentSecrets {
227         fn eq(&self, other: &Self) -> bool {
228                 for (&(ref secret, ref idx), &(ref o_secret, ref o_idx)) in self.old_secrets.iter().zip(other.old_secrets.iter()) {
229                         if secret != o_secret || idx != o_idx {
230                                 return false
231                         }
232                 }
233                 true
234         }
235 }
236
237 impl CounterpartyCommitmentSecrets {
238         /// Creates a new empty `CounterpartyCommitmentSecrets` structure.
239         pub fn new() -> Self {
240                 Self { old_secrets: [([0; 32], 1 << 48); 49], }
241         }
242
243         #[inline]
244         fn place_secret(idx: u64) -> u8 {
245                 for i in 0..48 {
246                         if idx & (1 << i) == (1 << i) {
247                                 return i
248                         }
249                 }
250                 48
251         }
252
253         /// Returns the minimum index of all stored secrets. Note that indexes start
254         /// at 1 << 48 and get decremented by one for each new secret.
255         pub fn get_min_seen_secret(&self) -> u64 {
256                 //TODO This can be optimized?
257                 let mut min = 1 << 48;
258                 for &(_, idx) in self.old_secrets.iter() {
259                         if idx < min {
260                                 min = idx;
261                         }
262                 }
263                 min
264         }
265
266         #[inline]
267         fn derive_secret(secret: [u8; 32], bits: u8, idx: u64) -> [u8; 32] {
268                 let mut res: [u8; 32] = secret;
269                 for i in 0..bits {
270                         let bitpos = bits - 1 - i;
271                         if idx & (1 << bitpos) == (1 << bitpos) {
272                                 res[(bitpos / 8) as usize] ^= 1 << (bitpos & 7);
273                                 res = Sha256::hash(&res).into_inner();
274                         }
275                 }
276                 res
277         }
278
279         /// Inserts the `secret` at `idx`. Returns `Ok(())` if the secret
280         /// was generated in accordance with BOLT 3 and is consistent with previous secrets.
281         pub fn provide_secret(&mut self, idx: u64, secret: [u8; 32]) -> Result<(), ()> {
282                 let pos = Self::place_secret(idx);
283                 for i in 0..pos {
284                         let (old_secret, old_idx) = self.old_secrets[i as usize];
285                         if Self::derive_secret(secret, pos, old_idx) != old_secret {
286                                 return Err(());
287                         }
288                 }
289                 if self.get_min_seen_secret() <= idx {
290                         return Ok(());
291                 }
292                 self.old_secrets[pos as usize] = (secret, idx);
293                 Ok(())
294         }
295
296         /// Returns the secret at `idx`.
297         /// Returns `None` if `idx` is < [`CounterpartyCommitmentSecrets::get_min_seen_secret`].
298         pub fn get_secret(&self, idx: u64) -> Option<[u8; 32]> {
299                 for i in 0..self.old_secrets.len() {
300                         if (idx & (!((1 << i) - 1))) == self.old_secrets[i].1 {
301                                 return Some(Self::derive_secret(self.old_secrets[i].0, i as u8, idx))
302                         }
303                 }
304                 assert!(idx < self.get_min_seen_secret());
305                 None
306         }
307 }
308
309 impl Writeable for CounterpartyCommitmentSecrets {
310         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), io::Error> {
311                 for &(ref secret, ref idx) in self.old_secrets.iter() {
312                         writer.write_all(secret)?;
313                         writer.write_all(&byte_utils::be64_to_array(*idx))?;
314                 }
315                 write_tlv_fields!(writer, {});
316                 Ok(())
317         }
318 }
319 impl Readable for CounterpartyCommitmentSecrets {
320         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
321                 let mut old_secrets = [([0; 32], 1 << 48); 49];
322                 for &mut (ref mut secret, ref mut idx) in old_secrets.iter_mut() {
323                         *secret = Readable::read(reader)?;
324                         *idx = Readable::read(reader)?;
325                 }
326                 read_tlv_fields!(reader, {});
327                 Ok(Self { old_secrets })
328         }
329 }
330
331 /// Derives a per-commitment-transaction private key (eg an htlc key or delayed_payment key)
332 /// from the base secret and the per_commitment_point.
333 ///
334 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
335 /// generated (ie our own).
336 pub fn derive_private_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, base_secret: &SecretKey) -> Result<SecretKey, SecpError> {
337         let mut sha = Sha256::engine();
338         sha.input(&per_commitment_point.serialize());
339         sha.input(&PublicKey::from_secret_key(&secp_ctx, &base_secret).serialize());
340         let res = Sha256::from_engine(sha).into_inner();
341
342         base_secret.clone().add_tweak(&Scalar::from_be_bytes(res).unwrap())
343 }
344
345 /// Derives a per-commitment-transaction public key (eg an htlc key or a delayed_payment key)
346 /// from the base point and the per_commitment_key. This is the public equivalent of
347 /// derive_private_key - using only public keys to derive a public key instead of private keys.
348 ///
349 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
350 /// generated (ie our own).
351 pub fn derive_public_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, base_point: &PublicKey) -> Result<PublicKey, SecpError> {
352         let mut sha = Sha256::engine();
353         sha.input(&per_commitment_point.serialize());
354         sha.input(&base_point.serialize());
355         let res = Sha256::from_engine(sha).into_inner();
356
357         let hashkey = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&res)?);
358         base_point.combine(&hashkey)
359 }
360
361 /// Derives a per-commitment-transaction revocation key from its constituent parts.
362 ///
363 /// Only the cheating participant owns a valid witness to propagate a revoked
364 /// commitment transaction, thus per_commitment_secret always come from cheater
365 /// and revocation_base_secret always come from punisher, which is the broadcaster
366 /// of the transaction spending with this key knowledge.
367 ///
368 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
369 /// generated (ie our own).
370 pub fn derive_private_revocation_key<T: secp256k1::Signing>(secp_ctx: &Secp256k1<T>, per_commitment_secret: &SecretKey, countersignatory_revocation_base_secret: &SecretKey) -> Result<SecretKey, SecpError> {
371         let countersignatory_revocation_base_point = PublicKey::from_secret_key(&secp_ctx, &countersignatory_revocation_base_secret);
372         let per_commitment_point = PublicKey::from_secret_key(&secp_ctx, &per_commitment_secret);
373
374         let rev_append_commit_hash_key = {
375                 let mut sha = Sha256::engine();
376                 sha.input(&countersignatory_revocation_base_point.serialize());
377                 sha.input(&per_commitment_point.serialize());
378
379                 Sha256::from_engine(sha).into_inner()
380         };
381         let commit_append_rev_hash_key = {
382                 let mut sha = Sha256::engine();
383                 sha.input(&per_commitment_point.serialize());
384                 sha.input(&countersignatory_revocation_base_point.serialize());
385
386                 Sha256::from_engine(sha).into_inner()
387         };
388
389         let countersignatory_contrib = countersignatory_revocation_base_secret.clone().mul_tweak(&Scalar::from_be_bytes(rev_append_commit_hash_key).unwrap())?;
390         let broadcaster_contrib = per_commitment_secret.clone().mul_tweak(&Scalar::from_be_bytes(commit_append_rev_hash_key).unwrap())?;
391         countersignatory_contrib.add_tweak(&Scalar::from_be_bytes(broadcaster_contrib.secret_bytes()).unwrap())
392 }
393
394 /// Derives a per-commitment-transaction revocation public key from its constituent parts. This is
395 /// the public equivalend of derive_private_revocation_key - using only public keys to derive a
396 /// public key instead of private keys.
397 ///
398 /// Only the cheating participant owns a valid witness to propagate a revoked
399 /// commitment transaction, thus per_commitment_point always come from cheater
400 /// and revocation_base_point always come from punisher, which is the broadcaster
401 /// of the transaction spending with this key knowledge.
402 ///
403 /// Note that this is infallible iff we trust that at least one of the two input keys are randomly
404 /// generated (ie our own).
405 pub fn derive_public_revocation_key<T: secp256k1::Verification>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, countersignatory_revocation_base_point: &PublicKey) -> Result<PublicKey, SecpError> {
406         let rev_append_commit_hash_key = {
407                 let mut sha = Sha256::engine();
408                 sha.input(&countersignatory_revocation_base_point.serialize());
409                 sha.input(&per_commitment_point.serialize());
410
411                 Sha256::from_engine(sha).into_inner()
412         };
413         let commit_append_rev_hash_key = {
414                 let mut sha = Sha256::engine();
415                 sha.input(&per_commitment_point.serialize());
416                 sha.input(&countersignatory_revocation_base_point.serialize());
417
418                 Sha256::from_engine(sha).into_inner()
419         };
420
421         let countersignatory_contrib = countersignatory_revocation_base_point.clone().mul_tweak(&secp_ctx, &Scalar::from_be_bytes(rev_append_commit_hash_key).unwrap())?;
422         let broadcaster_contrib = per_commitment_point.clone().mul_tweak(&secp_ctx, &Scalar::from_be_bytes(commit_append_rev_hash_key).unwrap())?;
423         countersignatory_contrib.combine(&broadcaster_contrib)
424 }
425
426 /// The set of public keys which are used in the creation of one commitment transaction.
427 /// These are derived from the channel base keys and per-commitment data.
428 ///
429 /// A broadcaster key is provided from potential broadcaster of the computed transaction.
430 /// A countersignatory key is coming from a protocol participant unable to broadcast the
431 /// transaction.
432 ///
433 /// These keys are assumed to be good, either because the code derived them from
434 /// channel basepoints via the new function, or they were obtained via
435 /// CommitmentTransaction.trust().keys() because we trusted the source of the
436 /// pre-calculated keys.
437 #[derive(PartialEq, Eq, Clone)]
438 pub struct TxCreationKeys {
439         /// The broadcaster's per-commitment public key which was used to derive the other keys.
440         pub per_commitment_point: PublicKey,
441         /// The revocation key which is used to allow the broadcaster of the commitment
442         /// transaction to provide their counterparty the ability to punish them if they broadcast
443         /// an old state.
444         pub revocation_key: PublicKey,
445         /// Broadcaster's HTLC Key
446         pub broadcaster_htlc_key: PublicKey,
447         /// Countersignatory's HTLC Key
448         pub countersignatory_htlc_key: PublicKey,
449         /// Broadcaster's Payment Key (which isn't allowed to be spent from for some delay)
450         pub broadcaster_delayed_payment_key: PublicKey,
451 }
452
453 impl_writeable_tlv_based!(TxCreationKeys, {
454         (0, per_commitment_point, required),
455         (2, revocation_key, required),
456         (4, broadcaster_htlc_key, required),
457         (6, countersignatory_htlc_key, required),
458         (8, broadcaster_delayed_payment_key, required),
459 });
460
461 /// One counterparty's public keys which do not change over the life of a channel.
462 #[derive(Clone, PartialEq, Eq)]
463 pub struct ChannelPublicKeys {
464         /// The public key which is used to sign all commitment transactions, as it appears in the
465         /// on-chain channel lock-in 2-of-2 multisig output.
466         pub funding_pubkey: PublicKey,
467         /// The base point which is used (with derive_public_revocation_key) to derive per-commitment
468         /// revocation keys. This is combined with the per-commitment-secret generated by the
469         /// counterparty to create a secret which the counterparty can reveal to revoke previous
470         /// states.
471         pub revocation_basepoint: PublicKey,
472         /// The public key on which the non-broadcaster (ie the countersignatory) receives an immediately
473         /// spendable primary channel balance on the broadcaster's commitment transaction. This key is
474         /// static across every commitment transaction.
475         pub payment_point: PublicKey,
476         /// The base point which is used (with derive_public_key) to derive a per-commitment payment
477         /// public key which receives non-HTLC-encumbered funds which are only available for spending
478         /// after some delay (or can be claimed via the revocation path).
479         pub delayed_payment_basepoint: PublicKey,
480         /// The base point which is used (with derive_public_key) to derive a per-commitment public key
481         /// which is used to encumber HTLC-in-flight outputs.
482         pub htlc_basepoint: PublicKey,
483 }
484
485 impl_writeable_tlv_based!(ChannelPublicKeys, {
486         (0, funding_pubkey, required),
487         (2, revocation_basepoint, required),
488         (4, payment_point, required),
489         (6, delayed_payment_basepoint, required),
490         (8, htlc_basepoint, required),
491 });
492
493 impl TxCreationKeys {
494         /// Create per-state keys from channel base points and the per-commitment point.
495         /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
496         pub fn derive_new<T: secp256k1::Signing + secp256k1::Verification>(secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, broadcaster_delayed_payment_base: &PublicKey, broadcaster_htlc_base: &PublicKey, countersignatory_revocation_base: &PublicKey, countersignatory_htlc_base: &PublicKey) -> Result<TxCreationKeys, SecpError> {
497                 Ok(TxCreationKeys {
498                         per_commitment_point: per_commitment_point.clone(),
499                         revocation_key: derive_public_revocation_key(&secp_ctx, &per_commitment_point, &countersignatory_revocation_base)?,
500                         broadcaster_htlc_key: derive_public_key(&secp_ctx, &per_commitment_point, &broadcaster_htlc_base)?,
501                         countersignatory_htlc_key: derive_public_key(&secp_ctx, &per_commitment_point, &countersignatory_htlc_base)?,
502                         broadcaster_delayed_payment_key: derive_public_key(&secp_ctx, &per_commitment_point, &broadcaster_delayed_payment_base)?,
503                 })
504         }
505
506         /// Generate per-state keys from channel static keys.
507         /// Key set is asymmetric and can't be used as part of counter-signatory set of transactions.
508         pub fn from_channel_static_keys<T: secp256k1::Signing + secp256k1::Verification>(per_commitment_point: &PublicKey, broadcaster_keys: &ChannelPublicKeys, countersignatory_keys: &ChannelPublicKeys, secp_ctx: &Secp256k1<T>) -> Result<TxCreationKeys, SecpError> {
509                 TxCreationKeys::derive_new(
510                         &secp_ctx,
511                         &per_commitment_point,
512                         &broadcaster_keys.delayed_payment_basepoint,
513                         &broadcaster_keys.htlc_basepoint,
514                         &countersignatory_keys.revocation_basepoint,
515                         &countersignatory_keys.htlc_basepoint,
516                 )
517         }
518 }
519
520 /// The maximum length of a script returned by get_revokeable_redeemscript.
521 // Calculated as 6 bytes of opcodes, 1 byte push plus 2 bytes for contest_delay, and two public
522 // keys of 33 bytes (+ 1 push).
523 pub const REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH: usize = 6 + 3 + 34*2;
524
525 /// A script either spendable by the revocation
526 /// key or the broadcaster_delayed_payment_key and satisfying the relative-locktime OP_CSV constrain.
527 /// Encumbering a `to_holder` output on a commitment transaction or 2nd-stage HTLC transactions.
528 pub fn get_revokeable_redeemscript(revocation_key: &PublicKey, contest_delay: u16, broadcaster_delayed_payment_key: &PublicKey) -> Script {
529         let res = Builder::new().push_opcode(opcodes::all::OP_IF)
530                       .push_slice(&revocation_key.serialize())
531                       .push_opcode(opcodes::all::OP_ELSE)
532                       .push_int(contest_delay as i64)
533                       .push_opcode(opcodes::all::OP_CSV)
534                       .push_opcode(opcodes::all::OP_DROP)
535                       .push_slice(&broadcaster_delayed_payment_key.serialize())
536                       .push_opcode(opcodes::all::OP_ENDIF)
537                       .push_opcode(opcodes::all::OP_CHECKSIG)
538                       .into_script();
539         debug_assert!(res.len() <= REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH);
540         res
541 }
542
543 /// Information about an HTLC as it appears in a commitment transaction
544 #[derive(Clone, Debug, PartialEq, Eq)]
545 pub struct HTLCOutputInCommitment {
546         /// Whether the HTLC was "offered" (ie outbound in relation to this commitment transaction).
547         /// Note that this is not the same as whether it is ountbound *from us*. To determine that you
548         /// need to compare this value to whether the commitment transaction in question is that of
549         /// the counterparty or our own.
550         pub offered: bool,
551         /// The value, in msat, of the HTLC. The value as it appears in the commitment transaction is
552         /// this divided by 1000.
553         pub amount_msat: u64,
554         /// The CLTV lock-time at which this HTLC expires.
555         pub cltv_expiry: u32,
556         /// The hash of the preimage which unlocks this HTLC.
557         pub payment_hash: PaymentHash,
558         /// The position within the commitment transactions' outputs. This may be None if the value is
559         /// below the dust limit (in which case no output appears in the commitment transaction and the
560         /// value is spent to additional transaction fees).
561         pub transaction_output_index: Option<u32>,
562 }
563
564 impl_writeable_tlv_based!(HTLCOutputInCommitment, {
565         (0, offered, required),
566         (2, amount_msat, required),
567         (4, cltv_expiry, required),
568         (6, payment_hash, required),
569         (8, transaction_output_index, option),
570 });
571
572 #[inline]
573 pub(crate) fn get_htlc_redeemscript_with_explicit_keys(htlc: &HTLCOutputInCommitment, opt_anchors: bool, broadcaster_htlc_key: &PublicKey, countersignatory_htlc_key: &PublicKey, revocation_key: &PublicKey) -> Script {
574         let payment_hash160 = Ripemd160::hash(&htlc.payment_hash.0[..]).into_inner();
575         if htlc.offered {
576                 let mut bldr = Builder::new().push_opcode(opcodes::all::OP_DUP)
577                               .push_opcode(opcodes::all::OP_HASH160)
578                               .push_slice(&PubkeyHash::hash(&revocation_key.serialize())[..])
579                               .push_opcode(opcodes::all::OP_EQUAL)
580                               .push_opcode(opcodes::all::OP_IF)
581                               .push_opcode(opcodes::all::OP_CHECKSIG)
582                               .push_opcode(opcodes::all::OP_ELSE)
583                               .push_slice(&countersignatory_htlc_key.serialize()[..])
584                               .push_opcode(opcodes::all::OP_SWAP)
585                               .push_opcode(opcodes::all::OP_SIZE)
586                               .push_int(32)
587                               .push_opcode(opcodes::all::OP_EQUAL)
588                               .push_opcode(opcodes::all::OP_NOTIF)
589                               .push_opcode(opcodes::all::OP_DROP)
590                               .push_int(2)
591                               .push_opcode(opcodes::all::OP_SWAP)
592                               .push_slice(&broadcaster_htlc_key.serialize()[..])
593                               .push_int(2)
594                               .push_opcode(opcodes::all::OP_CHECKMULTISIG)
595                               .push_opcode(opcodes::all::OP_ELSE)
596                               .push_opcode(opcodes::all::OP_HASH160)
597                               .push_slice(&payment_hash160)
598                               .push_opcode(opcodes::all::OP_EQUALVERIFY)
599                               .push_opcode(opcodes::all::OP_CHECKSIG)
600                               .push_opcode(opcodes::all::OP_ENDIF);
601                 if opt_anchors {
602                         bldr = bldr.push_opcode(opcodes::all::OP_PUSHNUM_1)
603                                 .push_opcode(opcodes::all::OP_CSV)
604                                 .push_opcode(opcodes::all::OP_DROP);
605                 }
606                 bldr.push_opcode(opcodes::all::OP_ENDIF)
607                         .into_script()
608         } else {
609                         let mut bldr = Builder::new().push_opcode(opcodes::all::OP_DUP)
610                               .push_opcode(opcodes::all::OP_HASH160)
611                               .push_slice(&PubkeyHash::hash(&revocation_key.serialize())[..])
612                               .push_opcode(opcodes::all::OP_EQUAL)
613                               .push_opcode(opcodes::all::OP_IF)
614                               .push_opcode(opcodes::all::OP_CHECKSIG)
615                               .push_opcode(opcodes::all::OP_ELSE)
616                               .push_slice(&countersignatory_htlc_key.serialize()[..])
617                               .push_opcode(opcodes::all::OP_SWAP)
618                               .push_opcode(opcodes::all::OP_SIZE)
619                               .push_int(32)
620                               .push_opcode(opcodes::all::OP_EQUAL)
621                               .push_opcode(opcodes::all::OP_IF)
622                               .push_opcode(opcodes::all::OP_HASH160)
623                               .push_slice(&payment_hash160)
624                               .push_opcode(opcodes::all::OP_EQUALVERIFY)
625                               .push_int(2)
626                               .push_opcode(opcodes::all::OP_SWAP)
627                               .push_slice(&broadcaster_htlc_key.serialize()[..])
628                               .push_int(2)
629                               .push_opcode(opcodes::all::OP_CHECKMULTISIG)
630                               .push_opcode(opcodes::all::OP_ELSE)
631                               .push_opcode(opcodes::all::OP_DROP)
632                               .push_int(htlc.cltv_expiry as i64)
633                               .push_opcode(opcodes::all::OP_CLTV)
634                               .push_opcode(opcodes::all::OP_DROP)
635                               .push_opcode(opcodes::all::OP_CHECKSIG)
636                               .push_opcode(opcodes::all::OP_ENDIF);
637                 if opt_anchors {
638                         bldr = bldr.push_opcode(opcodes::all::OP_PUSHNUM_1)
639                                 .push_opcode(opcodes::all::OP_CSV)
640                                 .push_opcode(opcodes::all::OP_DROP);
641                 }
642                 bldr.push_opcode(opcodes::all::OP_ENDIF)
643                         .into_script()
644         }
645 }
646
647 /// Gets the witness redeemscript for an HTLC output in a commitment transaction. Note that htlc
648 /// does not need to have its previous_output_index filled.
649 #[inline]
650 pub fn get_htlc_redeemscript(htlc: &HTLCOutputInCommitment, opt_anchors: bool, keys: &TxCreationKeys) -> Script {
651         get_htlc_redeemscript_with_explicit_keys(htlc, opt_anchors, &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key)
652 }
653
654 /// Gets the redeemscript for a funding output from the two funding public keys.
655 /// Note that the order of funding public keys does not matter.
656 pub fn make_funding_redeemscript(broadcaster: &PublicKey, countersignatory: &PublicKey) -> Script {
657         let broadcaster_funding_key = broadcaster.serialize();
658         let countersignatory_funding_key = countersignatory.serialize();
659
660         let builder = Builder::new().push_opcode(opcodes::all::OP_PUSHNUM_2);
661         if broadcaster_funding_key[..] < countersignatory_funding_key[..] {
662                 builder.push_slice(&broadcaster_funding_key)
663                         .push_slice(&countersignatory_funding_key)
664         } else {
665                 builder.push_slice(&countersignatory_funding_key)
666                         .push_slice(&broadcaster_funding_key)
667         }.push_opcode(opcodes::all::OP_PUSHNUM_2).push_opcode(opcodes::all::OP_CHECKMULTISIG).into_script()
668 }
669
670 /// Builds an unsigned HTLC-Success or HTLC-Timeout transaction from the given channel and HTLC
671 /// parameters. This is used by [`TrustedCommitmentTransaction::get_htlc_sigs`] to fetch the
672 /// transaction which needs signing, and can be used to construct an HTLC transaction which is
673 /// broadcastable given a counterparty HTLC signature.
674 ///
675 /// Panics if htlc.transaction_output_index.is_none() (as such HTLCs do not appear in the
676 /// commitment transaction).
677 pub fn build_htlc_transaction(commitment_txid: &Txid, feerate_per_kw: u32, contest_delay: u16, htlc: &HTLCOutputInCommitment, opt_anchors: bool, use_non_zero_fee_anchors: bool, broadcaster_delayed_payment_key: &PublicKey, revocation_key: &PublicKey) -> Transaction {
678         let mut txins: Vec<TxIn> = Vec::new();
679         txins.push(TxIn {
680                 previous_output: OutPoint {
681                         txid: commitment_txid.clone(),
682                         vout: htlc.transaction_output_index.expect("Can't build an HTLC transaction for a dust output"),
683                 },
684                 script_sig: Script::new(),
685                 sequence: Sequence(if opt_anchors { 1 } else { 0 }),
686                 witness: Witness::new(),
687         });
688
689         let weight = if htlc.offered {
690                 htlc_timeout_tx_weight(opt_anchors)
691         } else {
692                 htlc_success_tx_weight(opt_anchors)
693         };
694         let output_value = if opt_anchors && !use_non_zero_fee_anchors {
695                 htlc.amount_msat / 1000
696         } else {
697                 let total_fee = feerate_per_kw as u64 * weight / 1000;
698                 htlc.amount_msat / 1000 - total_fee
699         };
700
701         let mut txouts: Vec<TxOut> = Vec::new();
702         txouts.push(TxOut {
703                 script_pubkey: get_revokeable_redeemscript(revocation_key, contest_delay, broadcaster_delayed_payment_key).to_v0_p2wsh(),
704                 value: output_value,
705         });
706
707         Transaction {
708                 version: 2,
709                 lock_time: PackedLockTime(if htlc.offered { htlc.cltv_expiry } else { 0 }),
710                 input: txins,
711                 output: txouts,
712         }
713 }
714
715 /// Gets the witnessScript for the to_remote output when anchors are enabled.
716 #[inline]
717 pub fn get_to_countersignatory_with_anchors_redeemscript(payment_point: &PublicKey) -> Script {
718         Builder::new()
719                 .push_slice(&payment_point.serialize()[..])
720                 .push_opcode(opcodes::all::OP_CHECKSIGVERIFY)
721                 .push_int(1)
722                 .push_opcode(opcodes::all::OP_CSV)
723                 .into_script()
724 }
725
726 /// Gets the witnessScript for an anchor output from the funding public key.
727 /// The witness in the spending input must be:
728 /// <BIP 143 funding_signature>
729 /// After 16 blocks of confirmation, an alternative satisfying witness could be:
730 /// <>
731 /// (empty vector required to satisfy compliance with MINIMALIF-standard rule)
732 #[inline]
733 pub fn get_anchor_redeemscript(funding_pubkey: &PublicKey) -> Script {
734         Builder::new().push_slice(&funding_pubkey.serialize()[..])
735                 .push_opcode(opcodes::all::OP_CHECKSIG)
736                 .push_opcode(opcodes::all::OP_IFDUP)
737                 .push_opcode(opcodes::all::OP_NOTIF)
738                 .push_int(16)
739                 .push_opcode(opcodes::all::OP_CSV)
740                 .push_opcode(opcodes::all::OP_ENDIF)
741                 .into_script()
742 }
743
744 #[cfg(anchors)]
745 /// Locates the output with an anchor script paying to `funding_pubkey` within `commitment_tx`.
746 pub(crate) fn get_anchor_output<'a>(commitment_tx: &'a Transaction, funding_pubkey: &PublicKey) -> Option<(u32, &'a TxOut)> {
747         let anchor_script = chan_utils::get_anchor_redeemscript(funding_pubkey).to_v0_p2wsh();
748         commitment_tx.output.iter().enumerate()
749                 .find(|(_, txout)| txout.script_pubkey == anchor_script)
750                 .map(|(idx, txout)| (idx as u32, txout))
751 }
752
753 /// Returns the witness required to satisfy and spend an anchor input.
754 pub fn build_anchor_input_witness(funding_key: &PublicKey, funding_sig: &Signature) -> Witness {
755         let anchor_redeem_script = chan_utils::get_anchor_redeemscript(funding_key);
756         let mut funding_sig = funding_sig.serialize_der().to_vec();
757         funding_sig.push(EcdsaSighashType::All as u8);
758         Witness::from_vec(vec![funding_sig, anchor_redeem_script.to_bytes()])
759 }
760
761 /// Per-channel data used to build transactions in conjunction with the per-commitment data (CommitmentTransaction).
762 /// The fields are organized by holder/counterparty.
763 ///
764 /// Normally, this is converted to the broadcaster/countersignatory-organized DirectedChannelTransactionParameters
765 /// before use, via the as_holder_broadcastable and as_counterparty_broadcastable functions.
766 #[derive(Clone)]
767 pub struct ChannelTransactionParameters {
768         /// Holder public keys
769         pub holder_pubkeys: ChannelPublicKeys,
770         /// The contest delay selected by the holder, which applies to counterparty-broadcast transactions
771         pub holder_selected_contest_delay: u16,
772         /// Whether the holder is the initiator of this channel.
773         /// This is an input to the commitment number obscure factor computation.
774         pub is_outbound_from_holder: bool,
775         /// The late-bound counterparty channel transaction parameters.
776         /// These parameters are populated at the point in the protocol where the counterparty provides them.
777         pub counterparty_parameters: Option<CounterpartyChannelTransactionParameters>,
778         /// The late-bound funding outpoint
779         pub funding_outpoint: Option<chain::transaction::OutPoint>,
780         /// Are anchors (zero fee HTLC transaction variant) used for this channel. Boolean is
781         /// serialization backwards-compatible.
782         pub opt_anchors: Option<()>,
783         /// Are non-zero-fee anchors are enabled (used in conjuction with opt_anchors)
784         /// It is intended merely for backwards compatibility with signers that need it.
785         /// There is no support for this feature in LDK channel negotiation.
786         pub opt_non_zero_fee_anchors: Option<()>,
787 }
788
789 /// Late-bound per-channel counterparty data used to build transactions.
790 #[derive(Clone)]
791 pub struct CounterpartyChannelTransactionParameters {
792         /// Counter-party public keys
793         pub pubkeys: ChannelPublicKeys,
794         /// The contest delay selected by the counterparty, which applies to holder-broadcast transactions
795         pub selected_contest_delay: u16,
796 }
797
798 impl ChannelTransactionParameters {
799         /// Whether the late bound parameters are populated.
800         pub fn is_populated(&self) -> bool {
801                 self.counterparty_parameters.is_some() && self.funding_outpoint.is_some()
802         }
803
804         /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
805         /// given that the holder is the broadcaster.
806         ///
807         /// self.is_populated() must be true before calling this function.
808         pub fn as_holder_broadcastable(&self) -> DirectedChannelTransactionParameters {
809                 assert!(self.is_populated(), "self.late_parameters must be set before using as_holder_broadcastable");
810                 DirectedChannelTransactionParameters {
811                         inner: self,
812                         holder_is_broadcaster: true
813                 }
814         }
815
816         /// Convert the holder/counterparty parameters to broadcaster/countersignatory-organized parameters,
817         /// given that the counterparty is the broadcaster.
818         ///
819         /// self.is_populated() must be true before calling this function.
820         pub fn as_counterparty_broadcastable(&self) -> DirectedChannelTransactionParameters {
821                 assert!(self.is_populated(), "self.late_parameters must be set before using as_counterparty_broadcastable");
822                 DirectedChannelTransactionParameters {
823                         inner: self,
824                         holder_is_broadcaster: false
825                 }
826         }
827 }
828
829 impl_writeable_tlv_based!(CounterpartyChannelTransactionParameters, {
830         (0, pubkeys, required),
831         (2, selected_contest_delay, required),
832 });
833
834 impl_writeable_tlv_based!(ChannelTransactionParameters, {
835         (0, holder_pubkeys, required),
836         (2, holder_selected_contest_delay, required),
837         (4, is_outbound_from_holder, required),
838         (6, counterparty_parameters, option),
839         (8, funding_outpoint, option),
840         (10, opt_anchors, option),
841         (12, opt_non_zero_fee_anchors, option),
842 });
843
844 /// Static channel fields used to build transactions given per-commitment fields, organized by
845 /// broadcaster/countersignatory.
846 ///
847 /// This is derived from the holder/counterparty-organized ChannelTransactionParameters via the
848 /// as_holder_broadcastable and as_counterparty_broadcastable functions.
849 pub struct DirectedChannelTransactionParameters<'a> {
850         /// The holder's channel static parameters
851         inner: &'a ChannelTransactionParameters,
852         /// Whether the holder is the broadcaster
853         holder_is_broadcaster: bool,
854 }
855
856 impl<'a> DirectedChannelTransactionParameters<'a> {
857         /// Get the channel pubkeys for the broadcaster
858         pub fn broadcaster_pubkeys(&self) -> &ChannelPublicKeys {
859                 if self.holder_is_broadcaster {
860                         &self.inner.holder_pubkeys
861                 } else {
862                         &self.inner.counterparty_parameters.as_ref().unwrap().pubkeys
863                 }
864         }
865
866         /// Get the channel pubkeys for the countersignatory
867         pub fn countersignatory_pubkeys(&self) -> &ChannelPublicKeys {
868                 if self.holder_is_broadcaster {
869                         &self.inner.counterparty_parameters.as_ref().unwrap().pubkeys
870                 } else {
871                         &self.inner.holder_pubkeys
872                 }
873         }
874
875         /// Get the contest delay applicable to the transactions.
876         /// Note that the contest delay was selected by the countersignatory.
877         pub fn contest_delay(&self) -> u16 {
878                 let counterparty_parameters = self.inner.counterparty_parameters.as_ref().unwrap();
879                 if self.holder_is_broadcaster { counterparty_parameters.selected_contest_delay } else { self.inner.holder_selected_contest_delay }
880         }
881
882         /// Whether the channel is outbound from the broadcaster.
883         ///
884         /// The boolean representing the side that initiated the channel is
885         /// an input to the commitment number obscure factor computation.
886         pub fn is_outbound(&self) -> bool {
887                 if self.holder_is_broadcaster { self.inner.is_outbound_from_holder } else { !self.inner.is_outbound_from_holder }
888         }
889
890         /// The funding outpoint
891         pub fn funding_outpoint(&self) -> OutPoint {
892                 self.inner.funding_outpoint.unwrap().into_bitcoin_outpoint()
893         }
894
895         /// Whether to use anchors for this channel
896         pub fn opt_anchors(&self) -> bool {
897                 self.inner.opt_anchors.is_some()
898         }
899 }
900
901 /// Information needed to build and sign a holder's commitment transaction.
902 ///
903 /// The transaction is only signed once we are ready to broadcast.
904 #[derive(Clone)]
905 pub struct HolderCommitmentTransaction {
906         inner: CommitmentTransaction,
907         /// Our counterparty's signature for the transaction
908         pub counterparty_sig: Signature,
909         /// All non-dust counterparty HTLC signatures, in the order they appear in the transaction
910         pub counterparty_htlc_sigs: Vec<Signature>,
911         // Which order the signatures should go in when constructing the final commitment tx witness.
912         // The user should be able to reconstruct this themselves, so we don't bother to expose it.
913         holder_sig_first: bool,
914 }
915
916 impl Deref for HolderCommitmentTransaction {
917         type Target = CommitmentTransaction;
918
919         fn deref(&self) -> &Self::Target { &self.inner }
920 }
921
922 impl Eq for HolderCommitmentTransaction {}
923 impl PartialEq for HolderCommitmentTransaction {
924         // We dont care whether we are signed in equality comparison
925         fn eq(&self, o: &Self) -> bool {
926                 self.inner == o.inner
927         }
928 }
929
930 impl_writeable_tlv_based!(HolderCommitmentTransaction, {
931         (0, inner, required),
932         (2, counterparty_sig, required),
933         (4, holder_sig_first, required),
934         (6, counterparty_htlc_sigs, vec_type),
935 });
936
937 impl HolderCommitmentTransaction {
938         #[cfg(test)]
939         pub fn dummy() -> Self {
940                 let secp_ctx = Secp256k1::new();
941                 let dummy_key = PublicKey::from_secret_key(&secp_ctx, &SecretKey::from_slice(&[42; 32]).unwrap());
942                 let dummy_sig = sign(&secp_ctx, &secp256k1::Message::from_slice(&[42; 32]).unwrap(), &SecretKey::from_slice(&[42; 32]).unwrap());
943
944                 let keys = TxCreationKeys {
945                         per_commitment_point: dummy_key.clone(),
946                         revocation_key: dummy_key.clone(),
947                         broadcaster_htlc_key: dummy_key.clone(),
948                         countersignatory_htlc_key: dummy_key.clone(),
949                         broadcaster_delayed_payment_key: dummy_key.clone(),
950                 };
951                 let channel_pubkeys = ChannelPublicKeys {
952                         funding_pubkey: dummy_key.clone(),
953                         revocation_basepoint: dummy_key.clone(),
954                         payment_point: dummy_key.clone(),
955                         delayed_payment_basepoint: dummy_key.clone(),
956                         htlc_basepoint: dummy_key.clone()
957                 };
958                 let channel_parameters = ChannelTransactionParameters {
959                         holder_pubkeys: channel_pubkeys.clone(),
960                         holder_selected_contest_delay: 0,
961                         is_outbound_from_holder: false,
962                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters { pubkeys: channel_pubkeys.clone(), selected_contest_delay: 0 }),
963                         funding_outpoint: Some(chain::transaction::OutPoint { txid: Txid::all_zeros(), index: 0 }),
964                         opt_anchors: None,
965                         opt_non_zero_fee_anchors: None,
966                 };
967                 let mut htlcs_with_aux: Vec<(_, ())> = Vec::new();
968                 let inner = CommitmentTransaction::new_with_auxiliary_htlc_data(0, 0, 0, false, dummy_key.clone(), dummy_key.clone(), keys, 0, &mut htlcs_with_aux, &channel_parameters.as_counterparty_broadcastable());
969                 HolderCommitmentTransaction {
970                         inner,
971                         counterparty_sig: dummy_sig,
972                         counterparty_htlc_sigs: Vec::new(),
973                         holder_sig_first: false
974                 }
975         }
976
977         /// Create a new holder transaction with the given counterparty signatures.
978         /// The funding keys are used to figure out which signature should go first when building the transaction for broadcast.
979         pub fn new(commitment_tx: CommitmentTransaction, counterparty_sig: Signature, counterparty_htlc_sigs: Vec<Signature>, holder_funding_key: &PublicKey, counterparty_funding_key: &PublicKey) -> Self {
980                 Self {
981                         inner: commitment_tx,
982                         counterparty_sig,
983                         counterparty_htlc_sigs,
984                         holder_sig_first: holder_funding_key.serialize()[..] < counterparty_funding_key.serialize()[..],
985                 }
986         }
987
988         pub(crate) fn add_holder_sig(&self, funding_redeemscript: &Script, holder_sig: Signature) -> Transaction {
989                 // First push the multisig dummy, note that due to BIP147 (NULLDUMMY) it must be a zero-length element.
990                 let mut tx = self.inner.built.transaction.clone();
991                 tx.input[0].witness.push(Vec::new());
992                 let mut ser_holder_sig = holder_sig.serialize_der().to_vec();
993                 ser_holder_sig.push(EcdsaSighashType::All as u8);
994                 let mut ser_cp_sig = self.counterparty_sig.serialize_der().to_vec();
995                 ser_cp_sig.push(EcdsaSighashType::All as u8);
996
997                 if self.holder_sig_first {
998                         tx.input[0].witness.push(ser_holder_sig);
999                         tx.input[0].witness.push(ser_cp_sig);
1000                 } else {
1001                         tx.input[0].witness.push(ser_cp_sig);
1002                         tx.input[0].witness.push(ser_holder_sig);
1003                 }
1004
1005                 tx.input[0].witness.push(funding_redeemscript.as_bytes().to_vec());
1006                 tx
1007         }
1008 }
1009
1010 /// A pre-built Bitcoin commitment transaction and its txid.
1011 #[derive(Clone)]
1012 pub struct BuiltCommitmentTransaction {
1013         /// The commitment transaction
1014         pub transaction: Transaction,
1015         /// The txid for the commitment transaction.
1016         ///
1017         /// This is provided as a performance optimization, instead of calling transaction.txid()
1018         /// multiple times.
1019         pub txid: Txid,
1020 }
1021
1022 impl_writeable_tlv_based!(BuiltCommitmentTransaction, {
1023         (0, transaction, required),
1024         (2, txid, required),
1025 });
1026
1027 impl BuiltCommitmentTransaction {
1028         /// Get the SIGHASH_ALL sighash value of the transaction.
1029         ///
1030         /// This can be used to verify a signature.
1031         pub fn get_sighash_all(&self, funding_redeemscript: &Script, channel_value_satoshis: u64) -> Message {
1032                 let sighash = &sighash::SighashCache::new(&self.transaction).segwit_signature_hash(0, funding_redeemscript, channel_value_satoshis, EcdsaSighashType::All).unwrap()[..];
1033                 hash_to_message!(sighash)
1034         }
1035
1036         /// Sign a transaction, either because we are counter-signing the counterparty's transaction or
1037         /// because we are about to broadcast a holder transaction.
1038         pub fn sign<T: secp256k1::Signing>(&self, funding_key: &SecretKey, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) -> Signature {
1039                 let sighash = self.get_sighash_all(funding_redeemscript, channel_value_satoshis);
1040                 sign(secp_ctx, &sighash, funding_key)
1041         }
1042 }
1043
1044 /// This class tracks the per-transaction information needed to build a closing transaction and will
1045 /// actually build it and sign.
1046 ///
1047 /// This class can be used inside a signer implementation to generate a signature given the relevant
1048 /// secret key.
1049 #[derive(Clone, Hash, PartialEq, Eq)]
1050 pub struct ClosingTransaction {
1051         to_holder_value_sat: u64,
1052         to_counterparty_value_sat: u64,
1053         to_holder_script: Script,
1054         to_counterparty_script: Script,
1055         built: Transaction,
1056 }
1057
1058 impl ClosingTransaction {
1059         /// Construct an object of the class
1060         pub fn new(
1061                 to_holder_value_sat: u64,
1062                 to_counterparty_value_sat: u64,
1063                 to_holder_script: Script,
1064                 to_counterparty_script: Script,
1065                 funding_outpoint: OutPoint,
1066         ) -> Self {
1067                 let built = build_closing_transaction(
1068                         to_holder_value_sat, to_counterparty_value_sat,
1069                         to_holder_script.clone(), to_counterparty_script.clone(),
1070                         funding_outpoint
1071                 );
1072                 ClosingTransaction {
1073                         to_holder_value_sat,
1074                         to_counterparty_value_sat,
1075                         to_holder_script,
1076                         to_counterparty_script,
1077                         built
1078                 }
1079         }
1080
1081         /// Trust our pre-built transaction.
1082         ///
1083         /// Applies a wrapper which allows access to the transaction.
1084         ///
1085         /// This should only be used if you fully trust the builder of this object. It should not
1086         /// be used by an external signer - instead use the verify function.
1087         pub fn trust(&self) -> TrustedClosingTransaction {
1088                 TrustedClosingTransaction { inner: self }
1089         }
1090
1091         /// Verify our pre-built transaction.
1092         ///
1093         /// Applies a wrapper which allows access to the transaction.
1094         ///
1095         /// An external validating signer must call this method before signing
1096         /// or using the built transaction.
1097         pub fn verify(&self, funding_outpoint: OutPoint) -> Result<TrustedClosingTransaction, ()> {
1098                 let built = build_closing_transaction(
1099                         self.to_holder_value_sat, self.to_counterparty_value_sat,
1100                         self.to_holder_script.clone(), self.to_counterparty_script.clone(),
1101                         funding_outpoint
1102                 );
1103                 if self.built != built {
1104                         return Err(())
1105                 }
1106                 Ok(TrustedClosingTransaction { inner: self })
1107         }
1108
1109         /// The value to be sent to the holder, or zero if the output will be omitted
1110         pub fn to_holder_value_sat(&self) -> u64 {
1111                 self.to_holder_value_sat
1112         }
1113
1114         /// The value to be sent to the counterparty, or zero if the output will be omitted
1115         pub fn to_counterparty_value_sat(&self) -> u64 {
1116                 self.to_counterparty_value_sat
1117         }
1118
1119         /// The destination of the holder's output
1120         pub fn to_holder_script(&self) -> &Script {
1121                 &self.to_holder_script
1122         }
1123
1124         /// The destination of the counterparty's output
1125         pub fn to_counterparty_script(&self) -> &Script {
1126                 &self.to_counterparty_script
1127         }
1128 }
1129
1130 /// A wrapper on ClosingTransaction indicating that the built bitcoin
1131 /// transaction is trusted.
1132 ///
1133 /// See trust() and verify() functions on CommitmentTransaction.
1134 ///
1135 /// This structure implements Deref.
1136 pub struct TrustedClosingTransaction<'a> {
1137         inner: &'a ClosingTransaction,
1138 }
1139
1140 impl<'a> Deref for TrustedClosingTransaction<'a> {
1141         type Target = ClosingTransaction;
1142
1143         fn deref(&self) -> &Self::Target { self.inner }
1144 }
1145
1146 impl<'a> TrustedClosingTransaction<'a> {
1147         /// The pre-built Bitcoin commitment transaction
1148         pub fn built_transaction(&self) -> &Transaction {
1149                 &self.inner.built
1150         }
1151
1152         /// Get the SIGHASH_ALL sighash value of the transaction.
1153         ///
1154         /// This can be used to verify a signature.
1155         pub fn get_sighash_all(&self, funding_redeemscript: &Script, channel_value_satoshis: u64) -> Message {
1156                 let sighash = &sighash::SighashCache::new(&self.inner.built).segwit_signature_hash(0, funding_redeemscript, channel_value_satoshis, EcdsaSighashType::All).unwrap()[..];
1157                 hash_to_message!(sighash)
1158         }
1159
1160         /// Sign a transaction, either because we are counter-signing the counterparty's transaction or
1161         /// because we are about to broadcast a holder transaction.
1162         pub fn sign<T: secp256k1::Signing>(&self, funding_key: &SecretKey, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) -> Signature {
1163                 let sighash = self.get_sighash_all(funding_redeemscript, channel_value_satoshis);
1164                 sign(secp_ctx, &sighash, funding_key)
1165         }
1166 }
1167
1168 /// This class tracks the per-transaction information needed to build a commitment transaction and will
1169 /// actually build it and sign.  It is used for holder transactions that we sign only when needed
1170 /// and for transactions we sign for the counterparty.
1171 ///
1172 /// This class can be used inside a signer implementation to generate a signature given the relevant
1173 /// secret key.
1174 #[derive(Clone)]
1175 pub struct CommitmentTransaction {
1176         commitment_number: u64,
1177         to_broadcaster_value_sat: u64,
1178         to_countersignatory_value_sat: u64,
1179         feerate_per_kw: u32,
1180         htlcs: Vec<HTLCOutputInCommitment>,
1181         // A boolean that is serialization backwards-compatible
1182         opt_anchors: Option<()>,
1183         // Whether non-zero-fee anchors should be used
1184         opt_non_zero_fee_anchors: Option<()>,
1185         // A cache of the parties' pubkeys required to construct the transaction, see doc for trust()
1186         keys: TxCreationKeys,
1187         // For access to the pre-built transaction, see doc for trust()
1188         built: BuiltCommitmentTransaction,
1189 }
1190
1191 impl Eq for CommitmentTransaction {}
1192 impl PartialEq for CommitmentTransaction {
1193         fn eq(&self, o: &Self) -> bool {
1194                 let eq = self.commitment_number == o.commitment_number &&
1195                         self.to_broadcaster_value_sat == o.to_broadcaster_value_sat &&
1196                         self.to_countersignatory_value_sat == o.to_countersignatory_value_sat &&
1197                         self.feerate_per_kw == o.feerate_per_kw &&
1198                         self.htlcs == o.htlcs &&
1199                         self.opt_anchors == o.opt_anchors &&
1200                         self.keys == o.keys;
1201                 if eq {
1202                         debug_assert_eq!(self.built.transaction, o.built.transaction);
1203                         debug_assert_eq!(self.built.txid, o.built.txid);
1204                 }
1205                 eq
1206         }
1207 }
1208
1209 impl_writeable_tlv_based!(CommitmentTransaction, {
1210         (0, commitment_number, required),
1211         (2, to_broadcaster_value_sat, required),
1212         (4, to_countersignatory_value_sat, required),
1213         (6, feerate_per_kw, required),
1214         (8, keys, required),
1215         (10, built, required),
1216         (12, htlcs, vec_type),
1217         (14, opt_anchors, option),
1218         (16, opt_non_zero_fee_anchors, option),
1219 });
1220
1221 impl CommitmentTransaction {
1222         /// Construct an object of the class while assigning transaction output indices to HTLCs.
1223         ///
1224         /// Populates HTLCOutputInCommitment.transaction_output_index in htlcs_with_aux.
1225         ///
1226         /// The generic T allows the caller to match the HTLC output index with auxiliary data.
1227         /// This auxiliary data is not stored in this object.
1228         ///
1229         /// Only include HTLCs that are above the dust limit for the channel.
1230         ///
1231         /// (C-not exported) due to the generic though we likely should expose a version without
1232         pub fn new_with_auxiliary_htlc_data<T>(commitment_number: u64, to_broadcaster_value_sat: u64, to_countersignatory_value_sat: u64, opt_anchors: bool, broadcaster_funding_key: PublicKey, countersignatory_funding_key: PublicKey, keys: TxCreationKeys, feerate_per_kw: u32, htlcs_with_aux: &mut Vec<(HTLCOutputInCommitment, T)>, channel_parameters: &DirectedChannelTransactionParameters) -> CommitmentTransaction {
1233                 // Sort outputs and populate output indices while keeping track of the auxiliary data
1234                 let (outputs, htlcs) = Self::internal_build_outputs(&keys, to_broadcaster_value_sat, to_countersignatory_value_sat, htlcs_with_aux, channel_parameters, opt_anchors, &broadcaster_funding_key, &countersignatory_funding_key).unwrap();
1235
1236                 let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(commitment_number, channel_parameters);
1237                 let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
1238                 let txid = transaction.txid();
1239                 CommitmentTransaction {
1240                         commitment_number,
1241                         to_broadcaster_value_sat,
1242                         to_countersignatory_value_sat,
1243                         feerate_per_kw,
1244                         htlcs,
1245                         opt_anchors: if opt_anchors { Some(()) } else { None },
1246                         keys,
1247                         built: BuiltCommitmentTransaction {
1248                                 transaction,
1249                                 txid
1250                         },
1251                         opt_non_zero_fee_anchors: None,
1252                 }
1253         }
1254
1255         /// Use non-zero fee anchors
1256         ///
1257         /// (C-not exported) due to move, and also not likely to be useful for binding users
1258         pub fn with_non_zero_fee_anchors(mut self) -> Self {
1259                 self.opt_non_zero_fee_anchors = Some(());
1260                 self
1261         }
1262
1263         fn internal_rebuild_transaction(&self, keys: &TxCreationKeys, channel_parameters: &DirectedChannelTransactionParameters, broadcaster_funding_key: &PublicKey, countersignatory_funding_key: &PublicKey) -> Result<BuiltCommitmentTransaction, ()> {
1264                 let (obscured_commitment_transaction_number, txins) = Self::internal_build_inputs(self.commitment_number, channel_parameters);
1265
1266                 let mut htlcs_with_aux = self.htlcs.iter().map(|h| (h.clone(), ())).collect();
1267                 let (outputs, _) = Self::internal_build_outputs(keys, self.to_broadcaster_value_sat, self.to_countersignatory_value_sat, &mut htlcs_with_aux, channel_parameters, self.opt_anchors.is_some(), broadcaster_funding_key, countersignatory_funding_key)?;
1268
1269                 let transaction = Self::make_transaction(obscured_commitment_transaction_number, txins, outputs);
1270                 let txid = transaction.txid();
1271                 let built_transaction = BuiltCommitmentTransaction {
1272                         transaction,
1273                         txid
1274                 };
1275                 Ok(built_transaction)
1276         }
1277
1278         fn make_transaction(obscured_commitment_transaction_number: u64, txins: Vec<TxIn>, outputs: Vec<TxOut>) -> Transaction {
1279                 Transaction {
1280                         version: 2,
1281                         lock_time: PackedLockTime(((0x20 as u32) << 8 * 3) | ((obscured_commitment_transaction_number & 0xffffffu64) as u32)),
1282                         input: txins,
1283                         output: outputs,
1284                 }
1285         }
1286
1287         // This is used in two cases:
1288         // - initial sorting of outputs / HTLCs in the constructor, in which case T is auxiliary data the
1289         //   caller needs to have sorted together with the HTLCs so it can keep track of the output index
1290         // - building of a bitcoin transaction during a verify() call, in which case T is just ()
1291         fn internal_build_outputs<T>(keys: &TxCreationKeys, to_broadcaster_value_sat: u64, to_countersignatory_value_sat: u64, htlcs_with_aux: &mut Vec<(HTLCOutputInCommitment, T)>, channel_parameters: &DirectedChannelTransactionParameters, opt_anchors: bool, broadcaster_funding_key: &PublicKey, countersignatory_funding_key: &PublicKey) -> Result<(Vec<TxOut>, Vec<HTLCOutputInCommitment>), ()> {
1292                 let countersignatory_pubkeys = channel_parameters.countersignatory_pubkeys();
1293                 let contest_delay = channel_parameters.contest_delay();
1294
1295                 let mut txouts: Vec<(TxOut, Option<&mut HTLCOutputInCommitment>)> = Vec::new();
1296
1297                 if to_countersignatory_value_sat > 0 {
1298                         let script = if opt_anchors {
1299                             get_to_countersignatory_with_anchors_redeemscript(&countersignatory_pubkeys.payment_point).to_v0_p2wsh()
1300                         } else {
1301                             Payload::p2wpkh(&BitcoinPublicKey::new(countersignatory_pubkeys.payment_point)).unwrap().script_pubkey()
1302                         };
1303                         txouts.push((
1304                                 TxOut {
1305                                         script_pubkey: script.clone(),
1306                                         value: to_countersignatory_value_sat,
1307                                 },
1308                                 None,
1309                         ))
1310                 }
1311
1312                 if to_broadcaster_value_sat > 0 {
1313                         let redeem_script = get_revokeable_redeemscript(
1314                                 &keys.revocation_key,
1315                                 contest_delay,
1316                                 &keys.broadcaster_delayed_payment_key,
1317                         );
1318                         txouts.push((
1319                                 TxOut {
1320                                         script_pubkey: redeem_script.to_v0_p2wsh(),
1321                                         value: to_broadcaster_value_sat,
1322                                 },
1323                                 None,
1324                         ));
1325                 }
1326
1327                 if opt_anchors {
1328                         if to_broadcaster_value_sat > 0 || !htlcs_with_aux.is_empty() {
1329                                 let anchor_script = get_anchor_redeemscript(broadcaster_funding_key);
1330                                 txouts.push((
1331                                         TxOut {
1332                                                 script_pubkey: anchor_script.to_v0_p2wsh(),
1333                                                 value: ANCHOR_OUTPUT_VALUE_SATOSHI,
1334                                         },
1335                                         None,
1336                                 ));
1337                         }
1338
1339                         if to_countersignatory_value_sat > 0 || !htlcs_with_aux.is_empty() {
1340                                 let anchor_script = get_anchor_redeemscript(countersignatory_funding_key);
1341                                 txouts.push((
1342                                         TxOut {
1343                                                 script_pubkey: anchor_script.to_v0_p2wsh(),
1344                                                 value: ANCHOR_OUTPUT_VALUE_SATOSHI,
1345                                         },
1346                                         None,
1347                                 ));
1348                         }
1349                 }
1350
1351                 let mut htlcs = Vec::with_capacity(htlcs_with_aux.len());
1352                 for (htlc, _) in htlcs_with_aux {
1353                         let script = chan_utils::get_htlc_redeemscript(&htlc, opt_anchors, &keys);
1354                         let txout = TxOut {
1355                                 script_pubkey: script.to_v0_p2wsh(),
1356                                 value: htlc.amount_msat / 1000,
1357                         };
1358                         txouts.push((txout, Some(htlc)));
1359                 }
1360
1361                 // Sort output in BIP-69 order (amount, scriptPubkey).  Tie-breaks based on HTLC
1362                 // CLTV expiration height.
1363                 sort_outputs(&mut txouts, |a, b| {
1364                         if let &Some(ref a_htlcout) = a {
1365                                 if let &Some(ref b_htlcout) = b {
1366                                         a_htlcout.cltv_expiry.cmp(&b_htlcout.cltv_expiry)
1367                                                 // Note that due to hash collisions, we have to have a fallback comparison
1368                                                 // here for fuzzing mode (otherwise at least chanmon_fail_consistency
1369                                                 // may fail)!
1370                                                 .then(a_htlcout.payment_hash.0.cmp(&b_htlcout.payment_hash.0))
1371                                 // For non-HTLC outputs, if they're copying our SPK we don't really care if we
1372                                 // close the channel due to mismatches - they're doing something dumb:
1373                                 } else { cmp::Ordering::Equal }
1374                         } else { cmp::Ordering::Equal }
1375                 });
1376
1377                 let mut outputs = Vec::with_capacity(txouts.len());
1378                 for (idx, out) in txouts.drain(..).enumerate() {
1379                         if let Some(htlc) = out.1 {
1380                                 htlc.transaction_output_index = Some(idx as u32);
1381                                 htlcs.push(htlc.clone());
1382                         }
1383                         outputs.push(out.0);
1384                 }
1385                 Ok((outputs, htlcs))
1386         }
1387
1388         fn internal_build_inputs(commitment_number: u64, channel_parameters: &DirectedChannelTransactionParameters) -> (u64, Vec<TxIn>) {
1389                 let broadcaster_pubkeys = channel_parameters.broadcaster_pubkeys();
1390                 let countersignatory_pubkeys = channel_parameters.countersignatory_pubkeys();
1391                 let commitment_transaction_number_obscure_factor = get_commitment_transaction_number_obscure_factor(
1392                         &broadcaster_pubkeys.payment_point,
1393                         &countersignatory_pubkeys.payment_point,
1394                         channel_parameters.is_outbound(),
1395                 );
1396
1397                 let obscured_commitment_transaction_number =
1398                         commitment_transaction_number_obscure_factor ^ (INITIAL_COMMITMENT_NUMBER - commitment_number);
1399
1400                 let txins = {
1401                         let mut ins: Vec<TxIn> = Vec::new();
1402                         ins.push(TxIn {
1403                                 previous_output: channel_parameters.funding_outpoint(),
1404                                 script_sig: Script::new(),
1405                                 sequence: Sequence(((0x80 as u32) << 8 * 3)
1406                                         | ((obscured_commitment_transaction_number >> 3 * 8) as u32)),
1407                                 witness: Witness::new(),
1408                         });
1409                         ins
1410                 };
1411                 (obscured_commitment_transaction_number, txins)
1412         }
1413
1414         /// The backwards-counting commitment number
1415         pub fn commitment_number(&self) -> u64 {
1416                 self.commitment_number
1417         }
1418
1419         /// The value to be sent to the broadcaster
1420         pub fn to_broadcaster_value_sat(&self) -> u64 {
1421                 self.to_broadcaster_value_sat
1422         }
1423
1424         /// The value to be sent to the counterparty
1425         pub fn to_countersignatory_value_sat(&self) -> u64 {
1426                 self.to_countersignatory_value_sat
1427         }
1428
1429         /// The feerate paid per 1000-weight-unit in this commitment transaction.
1430         pub fn feerate_per_kw(&self) -> u32 {
1431                 self.feerate_per_kw
1432         }
1433
1434         /// The non-dust HTLCs (direction, amt, height expiration, hash, transaction output index)
1435         /// which were included in this commitment transaction in output order.
1436         /// The transaction index is always populated.
1437         ///
1438         /// (C-not exported) as we cannot currently convert Vec references to/from C, though we should
1439         /// expose a less effecient version which creates a Vec of references in the future.
1440         pub fn htlcs(&self) -> &Vec<HTLCOutputInCommitment> {
1441                 &self.htlcs
1442         }
1443
1444         /// Trust our pre-built transaction and derived transaction creation public keys.
1445         ///
1446         /// Applies a wrapper which allows access to these fields.
1447         ///
1448         /// This should only be used if you fully trust the builder of this object.  It should not
1449         /// be used by an external signer - instead use the verify function.
1450         pub fn trust(&self) -> TrustedCommitmentTransaction {
1451                 TrustedCommitmentTransaction { inner: self }
1452         }
1453
1454         /// Verify our pre-built transaction and derived transaction creation public keys.
1455         ///
1456         /// Applies a wrapper which allows access to these fields.
1457         ///
1458         /// An external validating signer must call this method before signing
1459         /// or using the built transaction.
1460         pub fn verify<T: secp256k1::Signing + secp256k1::Verification>(&self, channel_parameters: &DirectedChannelTransactionParameters, broadcaster_keys: &ChannelPublicKeys, countersignatory_keys: &ChannelPublicKeys, secp_ctx: &Secp256k1<T>) -> Result<TrustedCommitmentTransaction, ()> {
1461                 // This is the only field of the key cache that we trust
1462                 let per_commitment_point = self.keys.per_commitment_point;
1463                 let keys = TxCreationKeys::from_channel_static_keys(&per_commitment_point, broadcaster_keys, countersignatory_keys, secp_ctx).unwrap();
1464                 if keys != self.keys {
1465                         return Err(());
1466                 }
1467                 let tx = self.internal_rebuild_transaction(&keys, channel_parameters, &broadcaster_keys.funding_pubkey, &countersignatory_keys.funding_pubkey)?;
1468                 if self.built.transaction != tx.transaction || self.built.txid != tx.txid {
1469                         return Err(());
1470                 }
1471                 Ok(TrustedCommitmentTransaction { inner: self })
1472         }
1473 }
1474
1475 /// A wrapper on CommitmentTransaction indicating that the derived fields (the built bitcoin
1476 /// transaction and the transaction creation keys) are trusted.
1477 ///
1478 /// See trust() and verify() functions on CommitmentTransaction.
1479 ///
1480 /// This structure implements Deref.
1481 pub struct TrustedCommitmentTransaction<'a> {
1482         inner: &'a CommitmentTransaction,
1483 }
1484
1485 impl<'a> Deref for TrustedCommitmentTransaction<'a> {
1486         type Target = CommitmentTransaction;
1487
1488         fn deref(&self) -> &Self::Target { self.inner }
1489 }
1490
1491 impl<'a> TrustedCommitmentTransaction<'a> {
1492         /// The transaction ID of the built Bitcoin transaction
1493         pub fn txid(&self) -> Txid {
1494                 self.inner.built.txid
1495         }
1496
1497         /// The pre-built Bitcoin commitment transaction
1498         pub fn built_transaction(&self) -> &BuiltCommitmentTransaction {
1499                 &self.inner.built
1500         }
1501
1502         /// The pre-calculated transaction creation public keys.
1503         pub fn keys(&self) -> &TxCreationKeys {
1504                 &self.inner.keys
1505         }
1506
1507         /// Should anchors be used.
1508         pub fn opt_anchors(&self) -> bool {
1509                 self.opt_anchors.is_some()
1510         }
1511
1512         /// Get a signature for each HTLC which was included in the commitment transaction (ie for
1513         /// which HTLCOutputInCommitment::transaction_output_index.is_some()).
1514         ///
1515         /// The returned Vec has one entry for each HTLC, and in the same order.
1516         ///
1517         /// This function is only valid in the holder commitment context, it always uses EcdsaSighashType::All.
1518         pub fn get_htlc_sigs<T: secp256k1::Signing>(&self, htlc_base_key: &SecretKey, channel_parameters: &DirectedChannelTransactionParameters, secp_ctx: &Secp256k1<T>) -> Result<Vec<Signature>, ()> {
1519                 let inner = self.inner;
1520                 let keys = &inner.keys;
1521                 let txid = inner.built.txid;
1522                 let mut ret = Vec::with_capacity(inner.htlcs.len());
1523                 let holder_htlc_key = derive_private_key(secp_ctx, &inner.keys.per_commitment_point, htlc_base_key).map_err(|_| ())?;
1524
1525                 for this_htlc in inner.htlcs.iter() {
1526                         assert!(this_htlc.transaction_output_index.is_some());
1527                         let htlc_tx = build_htlc_transaction(&txid, inner.feerate_per_kw, channel_parameters.contest_delay(), &this_htlc, self.opt_anchors(), self.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
1528
1529                         let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(&this_htlc, self.opt_anchors(), &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key);
1530
1531                         let sighash = hash_to_message!(&sighash::SighashCache::new(&htlc_tx).segwit_signature_hash(0, &htlc_redeemscript, this_htlc.amount_msat / 1000, EcdsaSighashType::All).unwrap()[..]);
1532                         ret.push(sign(secp_ctx, &sighash, &holder_htlc_key));
1533                 }
1534                 Ok(ret)
1535         }
1536
1537         /// Gets a signed HTLC transaction given a preimage (for !htlc.offered) and the holder HTLC transaction signature.
1538         pub(crate) fn get_signed_htlc_tx(&self, channel_parameters: &DirectedChannelTransactionParameters, htlc_index: usize, counterparty_signature: &Signature, signature: &Signature, preimage: &Option<PaymentPreimage>) -> Transaction {
1539                 let inner = self.inner;
1540                 let keys = &inner.keys;
1541                 let txid = inner.built.txid;
1542                 let this_htlc = &inner.htlcs[htlc_index];
1543                 assert!(this_htlc.transaction_output_index.is_some());
1544                 // if we don't have preimage for an HTLC-Success, we can't generate an HTLC transaction.
1545                 if !this_htlc.offered && preimage.is_none() { unreachable!(); }
1546                 // Further, we should never be provided the preimage for an HTLC-Timeout transaction.
1547                 if  this_htlc.offered && preimage.is_some() { unreachable!(); }
1548
1549                 let mut htlc_tx = build_htlc_transaction(&txid, inner.feerate_per_kw, channel_parameters.contest_delay(), &this_htlc, self.opt_anchors(), self.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
1550
1551                 let htlc_redeemscript = get_htlc_redeemscript_with_explicit_keys(&this_htlc, self.opt_anchors(), &keys.broadcaster_htlc_key, &keys.countersignatory_htlc_key, &keys.revocation_key);
1552
1553                 let sighashtype = if self.opt_anchors() { EcdsaSighashType::SinglePlusAnyoneCanPay } else { EcdsaSighashType::All };
1554
1555                 // First push the multisig dummy, note that due to BIP147 (NULLDUMMY) it must be a zero-length element.
1556                 htlc_tx.input[0].witness.push(Vec::new());
1557
1558                 let mut cp_sig_ser = counterparty_signature.serialize_der().to_vec();
1559                 cp_sig_ser.push(sighashtype as u8);
1560                 htlc_tx.input[0].witness.push(cp_sig_ser);
1561                 let mut holder_sig_ser = signature.serialize_der().to_vec();
1562                 holder_sig_ser.push(EcdsaSighashType::All as u8);
1563                 htlc_tx.input[0].witness.push(holder_sig_ser);
1564
1565                 if this_htlc.offered {
1566                         // Due to BIP146 (MINIMALIF) this must be a zero-length element to relay.
1567                         htlc_tx.input[0].witness.push(Vec::new());
1568                 } else {
1569                         htlc_tx.input[0].witness.push(preimage.unwrap().0.to_vec());
1570                 }
1571
1572                 htlc_tx.input[0].witness.push(htlc_redeemscript.as_bytes().to_vec());
1573                 htlc_tx
1574         }
1575 }
1576
1577 /// Commitment transaction numbers which appear in the transactions themselves are XOR'd with a
1578 /// shared secret first. This prevents on-chain observers from discovering how many commitment
1579 /// transactions occurred in a channel before it was closed.
1580 ///
1581 /// This function gets the shared secret from relevant channel public keys and can be used to
1582 /// "decrypt" the commitment transaction number given a commitment transaction on-chain.
1583 pub fn get_commitment_transaction_number_obscure_factor(
1584         broadcaster_payment_basepoint: &PublicKey,
1585         countersignatory_payment_basepoint: &PublicKey,
1586         outbound_from_broadcaster: bool,
1587 ) -> u64 {
1588         let mut sha = Sha256::engine();
1589
1590         if outbound_from_broadcaster {
1591                 sha.input(&broadcaster_payment_basepoint.serialize());
1592                 sha.input(&countersignatory_payment_basepoint.serialize());
1593         } else {
1594                 sha.input(&countersignatory_payment_basepoint.serialize());
1595                 sha.input(&broadcaster_payment_basepoint.serialize());
1596         }
1597         let res = Sha256::from_engine(sha).into_inner();
1598
1599         ((res[26] as u64) << 5 * 8)
1600                 | ((res[27] as u64) << 4 * 8)
1601                 | ((res[28] as u64) << 3 * 8)
1602                 | ((res[29] as u64) << 2 * 8)
1603                 | ((res[30] as u64) << 1 * 8)
1604                 | ((res[31] as u64) << 0 * 8)
1605 }
1606
1607 #[cfg(test)]
1608 mod tests {
1609         use super::CounterpartyCommitmentSecrets;
1610         use crate::{hex, chain};
1611         use crate::prelude::*;
1612         use crate::ln::chan_utils::{get_htlc_redeemscript, get_to_countersignatory_with_anchors_redeemscript, CommitmentTransaction, TxCreationKeys, ChannelTransactionParameters, CounterpartyChannelTransactionParameters, HTLCOutputInCommitment};
1613         use bitcoin::secp256k1::{PublicKey, SecretKey, Secp256k1};
1614         use crate::util::test_utils;
1615         use crate::chain::keysinterface::{KeysInterface, BaseSign};
1616         use bitcoin::{Network, Txid};
1617         use bitcoin::hashes::Hash;
1618         use crate::ln::PaymentHash;
1619         use bitcoin::hashes::hex::ToHex;
1620         use bitcoin::util::address::Payload;
1621         use bitcoin::PublicKey as BitcoinPublicKey;
1622
1623         #[test]
1624         fn test_anchors() {
1625                 let secp_ctx = Secp256k1::new();
1626
1627                 let seed = [42; 32];
1628                 let network = Network::Testnet;
1629                 let keys_provider = test_utils::TestKeysInterface::new(&seed, network);
1630                 let signer = keys_provider.get_channel_signer(false, 3000);
1631                 let counterparty_signer = keys_provider.get_channel_signer(false, 3000);
1632                 let delayed_payment_base = &signer.pubkeys().delayed_payment_basepoint;
1633                 let per_commitment_secret = SecretKey::from_slice(&hex::decode("1f1e1d1c1b1a191817161514131211100f0e0d0c0b0a09080706050403020100").unwrap()[..]).unwrap();
1634                 let per_commitment_point = PublicKey::from_secret_key(&secp_ctx, &per_commitment_secret);
1635                 let htlc_basepoint = &signer.pubkeys().htlc_basepoint;
1636                 let holder_pubkeys = signer.pubkeys();
1637                 let counterparty_pubkeys = counterparty_signer.pubkeys();
1638                 let keys = TxCreationKeys::derive_new(&secp_ctx, &per_commitment_point, delayed_payment_base, htlc_basepoint, &counterparty_pubkeys.revocation_basepoint, &counterparty_pubkeys.htlc_basepoint).unwrap();
1639                 let mut channel_parameters = ChannelTransactionParameters {
1640                         holder_pubkeys: holder_pubkeys.clone(),
1641                         holder_selected_contest_delay: 0,
1642                         is_outbound_from_holder: false,
1643                         counterparty_parameters: Some(CounterpartyChannelTransactionParameters { pubkeys: counterparty_pubkeys.clone(), selected_contest_delay: 0 }),
1644                         funding_outpoint: Some(chain::transaction::OutPoint { txid: Txid::all_zeros(), index: 0 }),
1645                         opt_anchors: None,
1646                         opt_non_zero_fee_anchors: None,
1647                 };
1648
1649                 let mut htlcs_with_aux: Vec<(_, ())> = Vec::new();
1650
1651                 // Generate broadcaster and counterparty outputs
1652                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1653                         0, 1000, 2000,
1654                         false,
1655                         holder_pubkeys.funding_pubkey,
1656                         counterparty_pubkeys.funding_pubkey,
1657                         keys.clone(), 1,
1658                         &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1659                 );
1660                 assert_eq!(tx.built.transaction.output.len(), 2);
1661                 assert_eq!(tx.built.transaction.output[1].script_pubkey, Payload::p2wpkh(&BitcoinPublicKey::new(counterparty_pubkeys.payment_point)).unwrap().script_pubkey());
1662
1663                 // Generate broadcaster and counterparty outputs as well as two anchors
1664                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1665                         0, 1000, 2000,
1666                         true,
1667                         holder_pubkeys.funding_pubkey,
1668                         counterparty_pubkeys.funding_pubkey,
1669                         keys.clone(), 1,
1670                         &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1671                 );
1672                 assert_eq!(tx.built.transaction.output.len(), 4);
1673                 assert_eq!(tx.built.transaction.output[3].script_pubkey, get_to_countersignatory_with_anchors_redeemscript(&counterparty_pubkeys.payment_point).to_v0_p2wsh());
1674
1675                 // Generate broadcaster output and anchor
1676                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1677                         0, 3000, 0,
1678                         true,
1679                         holder_pubkeys.funding_pubkey,
1680                         counterparty_pubkeys.funding_pubkey,
1681                         keys.clone(), 1,
1682                         &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1683                 );
1684                 assert_eq!(tx.built.transaction.output.len(), 2);
1685
1686                 // Generate counterparty output and anchor
1687                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1688                         0, 0, 3000,
1689                         true,
1690                         holder_pubkeys.funding_pubkey,
1691                         counterparty_pubkeys.funding_pubkey,
1692                         keys.clone(), 1,
1693                         &mut htlcs_with_aux, &channel_parameters.as_holder_broadcastable()
1694                 );
1695                 assert_eq!(tx.built.transaction.output.len(), 2);
1696
1697                 let received_htlc = HTLCOutputInCommitment {
1698                         offered: false,
1699                         amount_msat: 400000,
1700                         cltv_expiry: 100,
1701                         payment_hash: PaymentHash([42; 32]),
1702                         transaction_output_index: None,
1703                 };
1704
1705                 let offered_htlc = HTLCOutputInCommitment {
1706                         offered: true,
1707                         amount_msat: 600000,
1708                         cltv_expiry: 100,
1709                         payment_hash: PaymentHash([43; 32]),
1710                         transaction_output_index: None,
1711                 };
1712
1713                 // Generate broadcaster output and received and offered HTLC outputs,  w/o anchors
1714                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1715                         0, 3000, 0,
1716                         false,
1717                         holder_pubkeys.funding_pubkey,
1718                         counterparty_pubkeys.funding_pubkey,
1719                         keys.clone(), 1,
1720                         &mut vec![(received_htlc.clone(), ()), (offered_htlc.clone(), ())],
1721                         &channel_parameters.as_holder_broadcastable()
1722                 );
1723                 assert_eq!(tx.built.transaction.output.len(), 3);
1724                 assert_eq!(tx.built.transaction.output[0].script_pubkey, get_htlc_redeemscript(&received_htlc, false, &keys).to_v0_p2wsh());
1725                 assert_eq!(tx.built.transaction.output[1].script_pubkey, get_htlc_redeemscript(&offered_htlc, false, &keys).to_v0_p2wsh());
1726                 assert_eq!(get_htlc_redeemscript(&received_htlc, false, &keys).to_v0_p2wsh().to_hex(),
1727                                    "002085cf52e41ba7c099a39df504e7b61f6de122971ceb53b06731876eaeb85e8dc5");
1728                 assert_eq!(get_htlc_redeemscript(&offered_htlc, false, &keys).to_v0_p2wsh().to_hex(),
1729                                    "002049f0736bb335c61a04d2623a24df878a7592a3c51fa7258d41b2c85318265e73");
1730
1731                 // Generate broadcaster output and received and offered HTLC outputs,  with anchors
1732                 channel_parameters.opt_anchors = Some(());
1733                 let tx = CommitmentTransaction::new_with_auxiliary_htlc_data(
1734                         0, 3000, 0,
1735                         true,
1736                         holder_pubkeys.funding_pubkey,
1737                         counterparty_pubkeys.funding_pubkey,
1738                         keys.clone(), 1,
1739                         &mut vec![(received_htlc.clone(), ()), (offered_htlc.clone(), ())],
1740                         &channel_parameters.as_holder_broadcastable()
1741                 );
1742                 assert_eq!(tx.built.transaction.output.len(), 5);
1743                 assert_eq!(tx.built.transaction.output[2].script_pubkey, get_htlc_redeemscript(&received_htlc, true, &keys).to_v0_p2wsh());
1744                 assert_eq!(tx.built.transaction.output[3].script_pubkey, get_htlc_redeemscript(&offered_htlc, true, &keys).to_v0_p2wsh());
1745                 assert_eq!(get_htlc_redeemscript(&received_htlc, true, &keys).to_v0_p2wsh().to_hex(),
1746                                    "002067114123af3f95405bae4fd930fc95de03e3c86baaee8b2dd29b43dd26cf613c");
1747                 assert_eq!(get_htlc_redeemscript(&offered_htlc, true, &keys).to_v0_p2wsh().to_hex(),
1748                                    "0020a06e3b0d4fcf704f2b9c41e16a70099e39989466c3142b8573a1154542f28f57");
1749         }
1750
1751         #[test]
1752         fn test_per_commitment_storage() {
1753                 // Test vectors from BOLT 3:
1754                 let mut secrets: Vec<[u8; 32]> = Vec::new();
1755                 let mut monitor;
1756
1757                 macro_rules! test_secrets {
1758                         () => {
1759                                 let mut idx = 281474976710655;
1760                                 for secret in secrets.iter() {
1761                                         assert_eq!(monitor.get_secret(idx).unwrap(), *secret);
1762                                         idx -= 1;
1763                                 }
1764                                 assert_eq!(monitor.get_min_seen_secret(), idx + 1);
1765                                 assert!(monitor.get_secret(idx).is_none());
1766                         };
1767                 }
1768
1769                 {
1770                         // insert_secret correct sequence
1771                         monitor = CounterpartyCommitmentSecrets::new();
1772                         secrets.clear();
1773
1774                         secrets.push([0; 32]);
1775                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1776                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1777                         test_secrets!();
1778
1779                         secrets.push([0; 32]);
1780                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1781                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1782                         test_secrets!();
1783
1784                         secrets.push([0; 32]);
1785                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1786                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1787                         test_secrets!();
1788
1789                         secrets.push([0; 32]);
1790                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1791                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1792                         test_secrets!();
1793
1794                         secrets.push([0; 32]);
1795                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
1796                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1797                         test_secrets!();
1798
1799                         secrets.push([0; 32]);
1800                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
1801                         monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
1802                         test_secrets!();
1803
1804                         secrets.push([0; 32]);
1805                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
1806                         monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
1807                         test_secrets!();
1808
1809                         secrets.push([0; 32]);
1810                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
1811                         monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).unwrap();
1812                         test_secrets!();
1813                 }
1814
1815                 {
1816                         // insert_secret #1 incorrect
1817                         monitor = CounterpartyCommitmentSecrets::new();
1818                         secrets.clear();
1819
1820                         secrets.push([0; 32]);
1821                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1822                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1823                         test_secrets!();
1824
1825                         secrets.push([0; 32]);
1826                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1827                         assert!(monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).is_err());
1828                 }
1829
1830                 {
1831                         // insert_secret #2 incorrect (#1 derived from incorrect)
1832                         monitor = CounterpartyCommitmentSecrets::new();
1833                         secrets.clear();
1834
1835                         secrets.push([0; 32]);
1836                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1837                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1838                         test_secrets!();
1839
1840                         secrets.push([0; 32]);
1841                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("dddc3a8d14fddf2b68fa8c7fbad2748274937479dd0f8930d5ebb4ab6bd866a3").unwrap());
1842                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1843                         test_secrets!();
1844
1845                         secrets.push([0; 32]);
1846                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1847                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1848                         test_secrets!();
1849
1850                         secrets.push([0; 32]);
1851                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1852                         assert!(monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).is_err());
1853                 }
1854
1855                 {
1856                         // insert_secret #3 incorrect
1857                         monitor = CounterpartyCommitmentSecrets::new();
1858                         secrets.clear();
1859
1860                         secrets.push([0; 32]);
1861                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1862                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1863                         test_secrets!();
1864
1865                         secrets.push([0; 32]);
1866                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1867                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1868                         test_secrets!();
1869
1870                         secrets.push([0; 32]);
1871                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c51a18b13e8527e579ec56365482c62f180b7d5760b46e9477dae59e87ed423a").unwrap());
1872                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1873                         test_secrets!();
1874
1875                         secrets.push([0; 32]);
1876                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1877                         assert!(monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).is_err());
1878                 }
1879
1880                 {
1881                         // insert_secret #4 incorrect (1,2,3 derived from incorrect)
1882                         monitor = CounterpartyCommitmentSecrets::new();
1883                         secrets.clear();
1884
1885                         secrets.push([0; 32]);
1886                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("02a40c85b6f28da08dfdbe0926c53fab2de6d28c10301f8f7c4073d5e42e3148").unwrap());
1887                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1888                         test_secrets!();
1889
1890                         secrets.push([0; 32]);
1891                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("dddc3a8d14fddf2b68fa8c7fbad2748274937479dd0f8930d5ebb4ab6bd866a3").unwrap());
1892                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1893                         test_secrets!();
1894
1895                         secrets.push([0; 32]);
1896                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c51a18b13e8527e579ec56365482c62f180b7d5760b46e9477dae59e87ed423a").unwrap());
1897                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1898                         test_secrets!();
1899
1900                         secrets.push([0; 32]);
1901                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("ba65d7b0ef55a3ba300d4e87af29868f394f8f138d78a7011669c79b37b936f4").unwrap());
1902                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1903                         test_secrets!();
1904
1905                         secrets.push([0; 32]);
1906                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
1907                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1908                         test_secrets!();
1909
1910                         secrets.push([0; 32]);
1911                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
1912                         monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
1913                         test_secrets!();
1914
1915                         secrets.push([0; 32]);
1916                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
1917                         monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
1918                         test_secrets!();
1919
1920                         secrets.push([0; 32]);
1921                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
1922                         assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
1923                 }
1924
1925                 {
1926                         // insert_secret #5 incorrect
1927                         monitor = CounterpartyCommitmentSecrets::new();
1928                         secrets.clear();
1929
1930                         secrets.push([0; 32]);
1931                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1932                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1933                         test_secrets!();
1934
1935                         secrets.push([0; 32]);
1936                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1937                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1938                         test_secrets!();
1939
1940                         secrets.push([0; 32]);
1941                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1942                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1943                         test_secrets!();
1944
1945                         secrets.push([0; 32]);
1946                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1947                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1948                         test_secrets!();
1949
1950                         secrets.push([0; 32]);
1951                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("631373ad5f9ef654bb3dade742d09504c567edd24320d2fcd68e3cc47e2ff6a6").unwrap());
1952                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1953                         test_secrets!();
1954
1955                         secrets.push([0; 32]);
1956                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
1957                         assert!(monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).is_err());
1958                 }
1959
1960                 {
1961                         // insert_secret #6 incorrect (5 derived from incorrect)
1962                         monitor = CounterpartyCommitmentSecrets::new();
1963                         secrets.clear();
1964
1965                         secrets.push([0; 32]);
1966                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
1967                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
1968                         test_secrets!();
1969
1970                         secrets.push([0; 32]);
1971                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
1972                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
1973                         test_secrets!();
1974
1975                         secrets.push([0; 32]);
1976                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
1977                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
1978                         test_secrets!();
1979
1980                         secrets.push([0; 32]);
1981                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
1982                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
1983                         test_secrets!();
1984
1985                         secrets.push([0; 32]);
1986                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("631373ad5f9ef654bb3dade742d09504c567edd24320d2fcd68e3cc47e2ff6a6").unwrap());
1987                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
1988                         test_secrets!();
1989
1990                         secrets.push([0; 32]);
1991                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("b7e76a83668bde38b373970155c868a653304308f9896692f904a23731224bb1").unwrap());
1992                         monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
1993                         test_secrets!();
1994
1995                         secrets.push([0; 32]);
1996                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
1997                         monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
1998                         test_secrets!();
1999
2000                         secrets.push([0; 32]);
2001                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
2002                         assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
2003                 }
2004
2005                 {
2006                         // insert_secret #7 incorrect
2007                         monitor = CounterpartyCommitmentSecrets::new();
2008                         secrets.clear();
2009
2010                         secrets.push([0; 32]);
2011                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2012                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
2013                         test_secrets!();
2014
2015                         secrets.push([0; 32]);
2016                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2017                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
2018                         test_secrets!();
2019
2020                         secrets.push([0; 32]);
2021                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2022                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
2023                         test_secrets!();
2024
2025                         secrets.push([0; 32]);
2026                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2027                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
2028                         test_secrets!();
2029
2030                         secrets.push([0; 32]);
2031                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
2032                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
2033                         test_secrets!();
2034
2035                         secrets.push([0; 32]);
2036                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
2037                         monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
2038                         test_secrets!();
2039
2040                         secrets.push([0; 32]);
2041                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("e7971de736e01da8ed58b94c2fc216cb1dca9e326f3a96e7194fe8ea8af6c0a3").unwrap());
2042                         monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
2043                         test_secrets!();
2044
2045                         secrets.push([0; 32]);
2046                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("05cde6323d949933f7f7b78776bcc1ea6d9b31447732e3802e1f7ac44b650e17").unwrap());
2047                         assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
2048                 }
2049
2050                 {
2051                         // insert_secret #8 incorrect
2052                         monitor = CounterpartyCommitmentSecrets::new();
2053                         secrets.clear();
2054
2055                         secrets.push([0; 32]);
2056                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("7cc854b54e3e0dcdb010d7a3fee464a9687be6e8db3be6854c475621e007a5dc").unwrap());
2057                         monitor.provide_secret(281474976710655, secrets.last().unwrap().clone()).unwrap();
2058                         test_secrets!();
2059
2060                         secrets.push([0; 32]);
2061                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c7518c8ae4660ed02894df8976fa1a3659c1a8b4b5bec0c4b872abeba4cb8964").unwrap());
2062                         monitor.provide_secret(281474976710654, secrets.last().unwrap().clone()).unwrap();
2063                         test_secrets!();
2064
2065                         secrets.push([0; 32]);
2066                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("2273e227a5b7449b6e70f1fb4652864038b1cbf9cd7c043a7d6456b7fc275ad8").unwrap());
2067                         monitor.provide_secret(281474976710653, secrets.last().unwrap().clone()).unwrap();
2068                         test_secrets!();
2069
2070                         secrets.push([0; 32]);
2071                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("27cddaa5624534cb6cb9d7da077cf2b22ab21e9b506fd4998a51d54502e99116").unwrap());
2072                         monitor.provide_secret(281474976710652, secrets.last().unwrap().clone()).unwrap();
2073                         test_secrets!();
2074
2075                         secrets.push([0; 32]);
2076                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("c65716add7aa98ba7acb236352d665cab17345fe45b55fb879ff80e6bd0c41dd").unwrap());
2077                         monitor.provide_secret(281474976710651, secrets.last().unwrap().clone()).unwrap();
2078                         test_secrets!();
2079
2080                         secrets.push([0; 32]);
2081                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("969660042a28f32d9be17344e09374b379962d03db1574df5a8a5a47e19ce3f2").unwrap());
2082                         monitor.provide_secret(281474976710650, secrets.last().unwrap().clone()).unwrap();
2083                         test_secrets!();
2084
2085                         secrets.push([0; 32]);
2086                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a5a64476122ca0925fb344bdc1854c1c0a59fc614298e50a33e331980a220f32").unwrap());
2087                         monitor.provide_secret(281474976710649, secrets.last().unwrap().clone()).unwrap();
2088                         test_secrets!();
2089
2090                         secrets.push([0; 32]);
2091                         secrets.last_mut().unwrap()[0..32].clone_from_slice(&hex::decode("a7efbc61aac46d34f77778bac22c8a20c6a46ca460addc49009bda875ec88fa4").unwrap());
2092                         assert!(monitor.provide_secret(281474976710648, secrets.last().unwrap().clone()).is_err());
2093                 }
2094         }
2095 }