Expand documentation and fields in SpendableOutputDescriptors
[rust-lightning] / lightning / src / chain / keysinterface.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 //! keysinterface provides keys into rust-lightning and defines some useful enums which describe
11 //! spendable on-chain outputs which the user owns and is responsible for using just as any other
12 //! on-chain output which is theirs.
13
14 use bitcoin::blockdata::transaction::{Transaction, TxOut, SigHashType};
15 use bitcoin::blockdata::script::{Script, Builder};
16 use bitcoin::blockdata::opcodes;
17 use bitcoin::network::constants::Network;
18 use bitcoin::util::bip32::{ExtendedPrivKey, ExtendedPubKey, ChildNumber};
19 use bitcoin::util::bip143;
20
21 use bitcoin::hashes::{Hash, HashEngine};
22 use bitcoin::hashes::sha256::HashEngine as Sha256State;
23 use bitcoin::hashes::sha256::Hash as Sha256;
24 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
25 use bitcoin::hash_types::WPubkeyHash;
26
27 use bitcoin::secp256k1::key::{SecretKey, PublicKey};
28 use bitcoin::secp256k1::{Secp256k1, Signature, Signing};
29 use bitcoin::secp256k1;
30
31 use util::byte_utils;
32 use util::ser::{Writeable, Writer, Readable};
33
34 use chain::transaction::OutPoint;
35 use ln::chan_utils;
36 use ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript, ChannelPublicKeys, HolderCommitmentTransaction, ChannelTransactionParameters, CommitmentTransaction};
37 use ln::msgs::UnsignedChannelAnnouncement;
38
39 use std::sync::atomic::{AtomicUsize, Ordering};
40 use std::io::Error;
41 use ln::msgs::DecodeError;
42
43 /// When on-chain outputs are created by rust-lightning (which our counterparty is not able to
44 /// claim at any point in the future) an event is generated which you must track and be able to
45 /// spend on-chain. The information needed to do this is provided in this enum, including the
46 /// outpoint describing which txid and output index is available, the full output which exists at
47 /// that txid/index, and any keys or other information required to sign.
48 #[derive(Clone, Debug, PartialEq)]
49 pub enum SpendableOutputDescriptor {
50         /// An output to a script which was provided via KeysInterface directly, either from
51         /// `get_destination_script()` or `get_shutdown_pubkey()`, thus you should already know how to
52         /// spend it. No secret keys are provided as rust-lightning was never given any key.
53         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
54         /// on-chain using the payment preimage or after it has timed out.
55         StaticOutput {
56                 /// The outpoint which is spendable
57                 outpoint: OutPoint,
58                 /// The output which is referenced by the given outpoint.
59                 output: TxOut,
60         },
61         /// An output to a P2WSH script which can be spent with a single signature after a CSV delay.
62         ///
63         /// The witness in the spending input should be:
64         /// <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
65         ///
66         /// Note that the nSequence field in the spending input must be set to to_self_delay
67         /// (which means the transaction is not broadcastable until at least to_self_delay
68         /// blocks after the outpoint confirms).
69         ///
70         /// These are generally the result of a "revocable" output to us, spendable only by us unless
71         /// it is an output from an old state which we broadcast (which should never happen).
72         ///
73         /// To derive the delayed_payment key which is used to sign for this input, you must pass the
74         /// holder delayed_payment_base_key (ie the private key which corresponds to the pubkey in
75         /// ChannelKeys::pubkeys().delayed_payment_basepoint) and the provided per_commitment_point to
76         /// chan_utils::derive_private_key. The public key can be generated without the secret key
77         /// using chan_utils::derive_public_key and only the delayed_payment_basepoint which appears in
78         /// ChannelKeys::pubkeys().
79         ///
80         /// To derive the revocation_pubkey provided here (which is used in the witness
81         /// script generation), you must pass the counterparty revocation_basepoint (which appears in the
82         /// call to ChannelKeys::ready_channel) and the provided per_commitment point
83         /// to chan_utils::derive_public_revocation_key.
84         ///
85         /// The witness script which is hashed and included in the output script_pubkey may be
86         /// regenerated by passing the revocation_pubkey (derived as above), our delayed_payment pubkey
87         /// (derived as above), and the to_self_delay contained here to
88         /// chan_utils::get_revokeable_redeemscript.
89         //
90         // TODO: we need to expose utility methods in KeyManager to do all the relevant derivation.
91         DynamicOutputP2WSH {
92                 /// The outpoint which is spendable
93                 outpoint: OutPoint,
94                 /// Per commitment point to derive delayed_payment_key by key holder
95                 per_commitment_point: PublicKey,
96                 /// The nSequence value which must be set in the spending input to satisfy the OP_CSV in
97                 /// the witness_script.
98                 to_self_delay: u16,
99                 /// The output which is referenced by the given outpoint
100                 output: TxOut,
101                 /// The revocation_pubkey used to derive witnessScript
102                 revocation_pubkey: PublicKey,
103                 /// Arbitrary identification information returned by a call to
104                 /// `ChannelKeys::channel_keys_id()`. This may be useful in re-deriving keys used in
105                 /// the channel to spend the output.
106                 channel_keys_id: [u8; 32],
107                 /// The value of the channel which this output originated from, possibly indirectly.
108                 channel_value_satoshis: u64,
109         },
110         /// An output to a P2WPKH, spendable exclusively by our payment key (ie the private key which
111         /// corresponds to the public key in ChannelKeys::pubkeys().payment_point).
112         /// The witness in the spending input, is, thus, simply:
113         /// <BIP 143 signature> <payment key>
114         ///
115         /// These are generally the result of our counterparty having broadcast the current state,
116         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
117         StaticOutputCounterpartyPayment {
118                 /// The outpoint which is spendable
119                 outpoint: OutPoint,
120                 /// The output which is reference by the given outpoint
121                 output: TxOut,
122                 /// Arbitrary identification information returned by a call to
123                 /// `ChannelKeys::channel_keys_id()`. This may be useful in re-deriving keys used in
124                 /// the channel to spend the output.
125                 channel_keys_id: [u8; 32],
126                 /// The value of the channel which this transactions spends.
127                 channel_value_satoshis: u64,
128         }
129 }
130
131 impl Writeable for SpendableOutputDescriptor {
132         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
133                 match self {
134                         &SpendableOutputDescriptor::StaticOutput { ref outpoint, ref output } => {
135                                 0u8.write(writer)?;
136                                 outpoint.write(writer)?;
137                                 output.write(writer)?;
138                         },
139                         &SpendableOutputDescriptor::DynamicOutputP2WSH { ref outpoint, ref per_commitment_point, ref to_self_delay, ref output, ref revocation_pubkey, ref channel_keys_id, channel_value_satoshis } => {
140                                 1u8.write(writer)?;
141                                 outpoint.write(writer)?;
142                                 per_commitment_point.write(writer)?;
143                                 to_self_delay.write(writer)?;
144                                 output.write(writer)?;
145                                 revocation_pubkey.write(writer)?;
146                                 channel_keys_id.write(writer)?;
147                                 channel_value_satoshis.write(writer)?;
148                         },
149                         &SpendableOutputDescriptor::StaticOutputCounterpartyPayment { ref outpoint, ref output, ref channel_keys_id, channel_value_satoshis } => {
150                                 2u8.write(writer)?;
151                                 outpoint.write(writer)?;
152                                 output.write(writer)?;
153                                 channel_keys_id.write(writer)?;
154                                 channel_value_satoshis.write(writer)?;
155                         },
156                 }
157                 Ok(())
158         }
159 }
160
161 impl Readable for SpendableOutputDescriptor {
162         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
163                 match Readable::read(reader)? {
164                         0u8 => Ok(SpendableOutputDescriptor::StaticOutput {
165                                 outpoint: Readable::read(reader)?,
166                                 output: Readable::read(reader)?,
167                         }),
168                         1u8 => Ok(SpendableOutputDescriptor::DynamicOutputP2WSH {
169                                 outpoint: Readable::read(reader)?,
170                                 per_commitment_point: Readable::read(reader)?,
171                                 to_self_delay: Readable::read(reader)?,
172                                 output: Readable::read(reader)?,
173                                 revocation_pubkey: Readable::read(reader)?,
174                                 channel_keys_id: Readable::read(reader)?,
175                                 channel_value_satoshis: Readable::read(reader)?,
176                         }),
177                         2u8 => Ok(SpendableOutputDescriptor::StaticOutputCounterpartyPayment {
178                                 outpoint: Readable::read(reader)?,
179                                 output: Readable::read(reader)?,
180                                 channel_keys_id: Readable::read(reader)?,
181                                 channel_value_satoshis: Readable::read(reader)?,
182                         }),
183                         _ => Err(DecodeError::InvalidValue),
184                 }
185         }
186 }
187
188 /// Set of lightning keys needed to operate a channel as described in BOLT 3.
189 ///
190 /// Signing services could be implemented on a hardware wallet. In this case,
191 /// the current ChannelKeys would be a front-end on top of a communication
192 /// channel connected to your secure device and lightning key material wouldn't
193 /// reside on a hot server. Nevertheless, a this deployment would still need
194 /// to trust the ChannelManager to avoid loss of funds as this latest component
195 /// could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
196 ///
197 /// A more secure iteration would be to use hashlock (or payment points) to pair
198 /// invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
199 /// at the price of more state and computation on the hardware wallet side. In the future,
200 /// we are looking forward to design such interface.
201 ///
202 /// In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
203 /// to act, as liveness and breach reply correctness are always going to be hard requirements
204 /// of LN security model, orthogonal of key management issues.
205 ///
206 /// If you're implementing a custom signer, you almost certainly want to implement
207 /// Readable/Writable to serialize out a unique reference to this set of keys so
208 /// that you can serialize the full ChannelManager object.
209 ///
210 // (TODO: We shouldn't require that, and should have an API to get them at deser time, due mostly
211 // to the possibility of reentrancy issues by calling the user's code during our deserialization
212 // routine).
213 // TODO: We should remove Clone by instead requesting a new ChannelKeys copy when we create
214 // ChannelMonitors instead of expecting to clone the one out of the Channel into the monitors.
215 pub trait ChannelKeys : Send+Clone + Writeable {
216         /// Gets the per-commitment point for a specific commitment number
217         ///
218         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
219         fn get_per_commitment_point<T: secp256k1::Signing + secp256k1::Verification>(&self, idx: u64, secp_ctx: &Secp256k1<T>) -> PublicKey;
220         /// Gets the commitment secret for a specific commitment number as part of the revocation process
221         ///
222         /// An external signer implementation should error here if the commitment was already signed
223         /// and should refuse to sign it in the future.
224         ///
225         /// May be called more than once for the same index.
226         ///
227         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
228         /// TODO: return a Result so we can signal a validation error
229         fn release_commitment_secret(&self, idx: u64) -> [u8; 32];
230         /// Gets the holder's channel public keys and basepoints
231         fn pubkeys(&self) -> &ChannelPublicKeys;
232         /// Gets an arbitrary identifier describing the set of keys which are provided back to you in
233         /// some SpendableOutputDescriptor types. This should be sufficient to identify this
234         /// ChannelKeys object uniquely and lookup or re-derive its keys.
235         fn channel_keys_id(&self) -> [u8; 32];
236
237         /// Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
238         ///
239         /// Note that if signing fails or is rejected, the channel will be force-closed.
240         //
241         // TODO: Document the things someone using this interface should enforce before signing.
242         fn sign_counterparty_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &CommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()>;
243
244         /// Create a signatures for a holder's commitment transaction and its claiming HTLC transactions.
245         /// This will only ever be called with a non-revoked commitment_tx.  This will be called with the
246         /// latest commitment_tx when we initiate a force-close.
247         /// This will be called with the previous latest, just to get claiming HTLC signatures, if we are
248         /// reacting to a ChannelMonitor replica that decided to broadcast before it had been updated to
249         /// the latest.
250         /// This may be called multiple times for the same transaction.
251         ///
252         /// An external signer implementation should check that the commitment has not been revoked.
253         ///
254         /// May return Err if key derivation fails.  Callers, such as ChannelMonitor, will panic in such a case.
255         //
256         // TODO: Document the things someone using this interface should enforce before signing.
257         // TODO: Key derivation failure should panic rather than Err
258         fn sign_holder_commitment_and_htlcs<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()>;
259
260         /// Same as sign_holder_commitment, but exists only for tests to get access to holder commitment
261         /// transactions which will be broadcasted later, after the channel has moved on to a newer
262         /// state. Thus, needs its own method as sign_holder_commitment may enforce that we only ever
263         /// get called once.
264         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
265         fn unsafe_sign_holder_commitment_and_htlcs<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()>;
266
267         /// Create a signature for the given input in a transaction spending an HTLC or commitment
268         /// transaction output when our counterparty broadcasts an old state.
269         ///
270         /// A justice transaction may claim multiples outputs at the same time if timelocks are
271         /// similar, but only a signature for the input at index `input` should be signed for here.
272         /// It may be called multiples time for same output(s) if a fee-bump is needed with regards
273         /// to an upcoming timelock expiration.
274         ///
275         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
276         ///
277         /// per_commitment_key is revocation secret which was provided by our counterparty when they
278         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
279         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
280         /// so).
281         ///
282         /// htlc holds HTLC elements (hash, timelock) if the output being spent is a HTLC output, thus
283         /// changing the format of the witness script (which is committed to in the BIP 143
284         /// signatures).
285         fn sign_justice_transaction<T: secp256k1::Signing + secp256k1::Verification>(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, htlc: &Option<HTLCOutputInCommitment>, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
286
287         /// Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
288         /// transaction, either offered or received.
289         ///
290         /// Such a transaction may claim multiples offered outputs at same time if we know the
291         /// preimage for each when we create it, but only the input at index `input` should be
292         /// signed for here. It may be called multiple times for same output(s) if a fee-bump is
293         /// needed with regards to an upcoming timelock expiration.
294         ///
295         /// Witness_script is either a offered or received script as defined in BOLT3 for HTLC
296         /// outputs.
297         ///
298         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
299         ///
300         /// Per_commitment_point is the dynamic point corresponding to the channel state
301         /// detected onchain. It has been generated by our counterparty and is used to derive
302         /// channel state keys, which are then included in the witness script and committed to in the
303         /// BIP 143 signature.
304         fn sign_counterparty_htlc_transaction<T: secp256k1::Signing + secp256k1::Verification>(&self, htlc_tx: &Transaction, input: usize, amount: u64, per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
305
306         /// Create a signature for a (proposed) closing transaction.
307         ///
308         /// Note that, due to rounding, there may be one "missing" satoshi, and either party may have
309         /// chosen to forgo their output as dust.
310         fn sign_closing_transaction<T: secp256k1::Signing>(&self, closing_tx: &Transaction, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
311
312         /// Signs a channel announcement message with our funding key, proving it comes from one
313         /// of the channel participants.
314         ///
315         /// Note that if this fails or is rejected, the channel will not be publicly announced and
316         /// our counterparty may (though likely will not) close the channel on us for violating the
317         /// protocol.
318         fn sign_channel_announcement<T: secp256k1::Signing>(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
319
320         /// Set the counterparty static channel data, including basepoints,
321         /// counterparty_selected/holder_selected_contest_delay and funding outpoint.
322         /// This is done as soon as the funding outpoint is known.  Since these are static channel data,
323         /// they MUST NOT be allowed to change to different values once set.
324         ///
325         /// channel_parameters.is_populated() MUST be true.
326         ///
327         /// We bind holder_selected_contest_delay late here for API convenience.
328         ///
329         /// Will be called before any signatures are applied.
330         fn ready_channel(&mut self, channel_parameters: &ChannelTransactionParameters);
331 }
332
333 /// A trait to describe an object which can get user secrets and key material.
334 pub trait KeysInterface: Send + Sync {
335         /// A type which implements ChannelKeys which will be returned by get_channel_keys.
336         type ChanKeySigner : ChannelKeys;
337
338         /// Get node secret key (aka node_id or network_key)
339         fn get_node_secret(&self) -> SecretKey;
340         /// Get destination redeemScript to encumber static protocol exit points.
341         fn get_destination_script(&self) -> Script;
342         /// Get shutdown_pubkey to use as PublicKey at channel closure
343         fn get_shutdown_pubkey(&self) -> PublicKey;
344         /// Get a new set of ChannelKeys for per-channel secrets. These MUST be unique even if you
345         /// restarted with some stale data!
346         fn get_channel_keys(&self, inbound: bool, channel_value_satoshis: u64) -> Self::ChanKeySigner;
347         /// Gets a unique, cryptographically-secure, random 32 byte value. This is used for encrypting
348         /// onion packets and for temporary channel IDs. There is no requirement that these be
349         /// persisted anywhere, though they must be unique across restarts.
350         fn get_secure_random_bytes(&self) -> [u8; 32];
351
352         /// Reads a `ChanKeySigner` for this `KeysInterface` from the given input stream.
353         /// This is only called during deserialization of other objects which contain
354         /// `ChannelKeys`-implementing objects (ie `ChannelMonitor`s and `ChannelManager`s).
355         /// The bytes are exactly those which `<Self::ChanKeySigner as Writeable>::write()` writes, and
356         /// contain no versioning scheme. You may wish to include your own version prefix and ensure
357         /// you've read all of the provided bytes to ensure no corruption occurred.
358         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::ChanKeySigner, DecodeError>;
359 }
360
361 #[derive(Clone)]
362 /// A simple implementation of ChannelKeys that just keeps the private keys in memory.
363 ///
364 /// This implementation performs no policy checks and is insufficient by itself as
365 /// a secure external signer.
366 pub struct InMemoryChannelKeys {
367         /// Private key of anchor tx
368         pub funding_key: SecretKey,
369         /// Holder secret key for blinded revocation pubkey
370         pub revocation_base_key: SecretKey,
371         /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
372         pub payment_key: SecretKey,
373         /// Holder secret key used in HTLC tx
374         pub delayed_payment_base_key: SecretKey,
375         /// Holder htlc secret key used in commitment tx htlc outputs
376         pub htlc_base_key: SecretKey,
377         /// Commitment seed
378         pub commitment_seed: [u8; 32],
379         /// Holder public keys and basepoints
380         pub(crate) holder_channel_pubkeys: ChannelPublicKeys,
381         /// Counterparty public keys and counterparty/holder selected_contest_delay, populated on channel acceptance
382         channel_parameters: Option<ChannelTransactionParameters>,
383         /// The total value of this channel
384         channel_value_satoshis: u64,
385         /// Key derivation parameters
386         channel_keys_id: [u8; 32],
387 }
388
389 impl InMemoryChannelKeys {
390         /// Create a new InMemoryChannelKeys
391         pub fn new<C: Signing>(
392                 secp_ctx: &Secp256k1<C>,
393                 funding_key: SecretKey,
394                 revocation_base_key: SecretKey,
395                 payment_key: SecretKey,
396                 delayed_payment_base_key: SecretKey,
397                 htlc_base_key: SecretKey,
398                 commitment_seed: [u8; 32],
399                 channel_value_satoshis: u64,
400                 channel_keys_id: [u8; 32]) -> InMemoryChannelKeys {
401                 let holder_channel_pubkeys =
402                         InMemoryChannelKeys::make_holder_keys(secp_ctx, &funding_key, &revocation_base_key,
403                                                              &payment_key, &delayed_payment_base_key,
404                                                              &htlc_base_key);
405                 InMemoryChannelKeys {
406                         funding_key,
407                         revocation_base_key,
408                         payment_key,
409                         delayed_payment_base_key,
410                         htlc_base_key,
411                         commitment_seed,
412                         channel_value_satoshis,
413                         holder_channel_pubkeys,
414                         channel_parameters: None,
415                         channel_keys_id,
416                 }
417         }
418
419         fn make_holder_keys<C: Signing>(secp_ctx: &Secp256k1<C>,
420                                        funding_key: &SecretKey,
421                                        revocation_base_key: &SecretKey,
422                                        payment_key: &SecretKey,
423                                        delayed_payment_base_key: &SecretKey,
424                                        htlc_base_key: &SecretKey) -> ChannelPublicKeys {
425                 let from_secret = |s: &SecretKey| PublicKey::from_secret_key(secp_ctx, s);
426                 ChannelPublicKeys {
427                         funding_pubkey: from_secret(&funding_key),
428                         revocation_basepoint: from_secret(&revocation_base_key),
429                         payment_point: from_secret(&payment_key),
430                         delayed_payment_basepoint: from_secret(&delayed_payment_base_key),
431                         htlc_basepoint: from_secret(&htlc_base_key),
432                 }
433         }
434
435         /// Counterparty pubkeys.
436         /// Will panic if ready_channel wasn't called.
437         pub fn counterparty_pubkeys(&self) -> &ChannelPublicKeys { &self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().pubkeys }
438
439         /// The contest_delay value specified by our counterparty and applied on holder-broadcastable
440         /// transactions, ie the amount of time that we have to wait to recover our funds if we
441         /// broadcast a transaction.
442         /// Will panic if ready_channel wasn't called.
443         pub fn counterparty_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().selected_contest_delay }
444
445         /// The contest_delay value specified by us and applied on transactions broadcastable
446         /// by our counterparty, ie the amount of time that they have to wait to recover their funds
447         /// if they broadcast a transaction.
448         /// Will panic if ready_channel wasn't called.
449         pub fn holder_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().holder_selected_contest_delay }
450
451         /// Whether the holder is the initiator
452         /// Will panic if ready_channel wasn't called.
453         pub fn is_outbound(&self) -> bool { self.get_channel_parameters().is_outbound_from_holder }
454
455         /// Funding outpoint
456         /// Will panic if ready_channel wasn't called.
457         pub fn funding_outpoint(&self) -> &OutPoint { self.get_channel_parameters().funding_outpoint.as_ref().unwrap() }
458
459         /// Obtain a ChannelTransactionParameters for this channel, to be used when verifying or
460         /// building transactions.
461         ///
462         /// Will panic if ready_channel wasn't called.
463         pub fn get_channel_parameters(&self) -> &ChannelTransactionParameters {
464                 self.channel_parameters.as_ref().unwrap()
465         }
466 }
467
468 impl ChannelKeys for InMemoryChannelKeys {
469         fn get_per_commitment_point<T: secp256k1::Signing + secp256k1::Verification>(&self, idx: u64, secp_ctx: &Secp256k1<T>) -> PublicKey {
470                 let commitment_secret = SecretKey::from_slice(&chan_utils::build_commitment_secret(&self.commitment_seed, idx)).unwrap();
471                 PublicKey::from_secret_key(secp_ctx, &commitment_secret)
472         }
473
474         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
475                 chan_utils::build_commitment_secret(&self.commitment_seed, idx)
476         }
477
478         fn pubkeys(&self) -> &ChannelPublicKeys { &self.holder_channel_pubkeys }
479         fn channel_keys_id(&self) -> [u8; 32] { self.channel_keys_id }
480
481         fn sign_counterparty_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &CommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()> {
482                 let trusted_tx = commitment_tx.trust();
483                 let keys = trusted_tx.keys();
484
485                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
486                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
487
488                 let built_tx = trusted_tx.built_transaction();
489                 let commitment_sig = built_tx.sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx);
490                 let commitment_txid = built_tx.txid;
491
492                 let mut htlc_sigs = Vec::with_capacity(commitment_tx.htlcs().len());
493                 for htlc in commitment_tx.htlcs() {
494                         let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, commitment_tx.feerate_per_kw(), self.holder_selected_contest_delay(), htlc, &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
495                         let htlc_redeemscript = chan_utils::get_htlc_redeemscript(&htlc, &keys);
496                         let htlc_sighash = hash_to_message!(&bip143::SigHashCache::new(&htlc_tx).signature_hash(0, &htlc_redeemscript, htlc.amount_msat / 1000, SigHashType::All)[..]);
497                         let holder_htlc_key = match chan_utils::derive_private_key(&secp_ctx, &keys.per_commitment_point, &self.htlc_base_key) {
498                                 Ok(s) => s,
499                                 Err(_) => return Err(()),
500                         };
501                         htlc_sigs.push(secp_ctx.sign(&htlc_sighash, &holder_htlc_key));
502                 }
503
504                 Ok((commitment_sig, htlc_sigs))
505         }
506
507         fn sign_holder_commitment_and_htlcs<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()> {
508                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
509                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
510                 let trusted_tx = commitment_tx.trust();
511                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
512                 let channel_parameters = self.get_channel_parameters();
513                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
514                 Ok((sig, htlc_sigs))
515         }
516
517         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
518         fn unsafe_sign_holder_commitment_and_htlcs<T: secp256k1::Signing + secp256k1::Verification>(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()> {
519                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
520                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
521                 let trusted_tx = commitment_tx.trust();
522                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
523                 let channel_parameters = self.get_channel_parameters();
524                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
525                 Ok((sig, htlc_sigs))
526         }
527
528         fn sign_justice_transaction<T: secp256k1::Signing + secp256k1::Verification>(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, htlc: &Option<HTLCOutputInCommitment>, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
529                 let revocation_key = match chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key) {
530                         Ok(revocation_key) => revocation_key,
531                         Err(_) => return Err(())
532                 };
533                 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
534                 let revocation_pubkey = match chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint) {
535                         Ok(revocation_pubkey) => revocation_pubkey,
536                         Err(_) => return Err(())
537                 };
538                 let witness_script = if let &Some(ref htlc) = htlc {
539                         let counterparty_htlcpubkey = match chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint) {
540                                 Ok(counterparty_htlcpubkey) => counterparty_htlcpubkey,
541                                 Err(_) => return Err(())
542                         };
543                         let holder_htlcpubkey = match chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint) {
544                                 Ok(holder_htlcpubkey) => holder_htlcpubkey,
545                                 Err(_) => return Err(())
546                         };
547                         chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, &counterparty_htlcpubkey, &holder_htlcpubkey, &revocation_pubkey)
548                 } else {
549                         let counterparty_delayedpubkey = match chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().delayed_payment_basepoint) {
550                                 Ok(counterparty_delayedpubkey) => counterparty_delayedpubkey,
551                                 Err(_) => return Err(())
552                         };
553                         chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.holder_selected_contest_delay(), &counterparty_delayedpubkey)
554                 };
555                 let mut sighash_parts = bip143::SigHashCache::new(justice_tx);
556                 let sighash = hash_to_message!(&sighash_parts.signature_hash(input, &witness_script, amount, SigHashType::All)[..]);
557                 return Ok(secp_ctx.sign(&sighash, &revocation_key))
558         }
559
560         fn sign_counterparty_htlc_transaction<T: secp256k1::Signing + secp256k1::Verification>(&self, htlc_tx: &Transaction, input: usize, amount: u64, per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
561                 if let Ok(htlc_key) = chan_utils::derive_private_key(&secp_ctx, &per_commitment_point, &self.htlc_base_key) {
562                         let witness_script = if let Ok(revocation_pubkey) = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint) {
563                                 if let Ok(counterparty_htlcpubkey) = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint) {
564                                         if let Ok(htlcpubkey) = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint) {
565                                                 chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, &counterparty_htlcpubkey, &htlcpubkey, &revocation_pubkey)
566                                         } else { return Err(()) }
567                                 } else { return Err(()) }
568                         } else { return Err(()) };
569                         let mut sighash_parts = bip143::SigHashCache::new(htlc_tx);
570                         let sighash = hash_to_message!(&sighash_parts.signature_hash(input, &witness_script, amount, SigHashType::All)[..]);
571                         return Ok(secp_ctx.sign(&sighash, &htlc_key))
572                 }
573                 Err(())
574         }
575
576         fn sign_closing_transaction<T: secp256k1::Signing>(&self, closing_tx: &Transaction, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
577                 if closing_tx.input.len() != 1 { return Err(()); }
578                 if closing_tx.input[0].witness.len() != 0 { return Err(()); }
579                 if closing_tx.output.len() > 2 { return Err(()); }
580
581                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
582                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
583
584                 let sighash = hash_to_message!(&bip143::SigHashCache::new(closing_tx)
585                         .signature_hash(0, &channel_funding_redeemscript, self.channel_value_satoshis, SigHashType::All)[..]);
586                 Ok(secp_ctx.sign(&sighash, &self.funding_key))
587         }
588
589         fn sign_channel_announcement<T: secp256k1::Signing>(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
590                 let msghash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
591                 Ok(secp_ctx.sign(&msghash, &self.funding_key))
592         }
593
594         fn ready_channel(&mut self, channel_parameters: &ChannelTransactionParameters) {
595                 assert!(self.channel_parameters.is_none(), "Acceptance already noted");
596                 assert!(channel_parameters.is_populated(), "Channel parameters must be fully populated");
597                 self.channel_parameters = Some(channel_parameters.clone());
598         }
599 }
600
601 impl Writeable for InMemoryChannelKeys {
602         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
603                 self.funding_key.write(writer)?;
604                 self.revocation_base_key.write(writer)?;
605                 self.payment_key.write(writer)?;
606                 self.delayed_payment_base_key.write(writer)?;
607                 self.htlc_base_key.write(writer)?;
608                 self.commitment_seed.write(writer)?;
609                 self.channel_parameters.write(writer)?;
610                 self.channel_value_satoshis.write(writer)?;
611                 self.channel_keys_id.write(writer)?;
612
613                 Ok(())
614         }
615 }
616
617 impl Readable for InMemoryChannelKeys {
618         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
619                 let funding_key = Readable::read(reader)?;
620                 let revocation_base_key = Readable::read(reader)?;
621                 let payment_key = Readable::read(reader)?;
622                 let delayed_payment_base_key = Readable::read(reader)?;
623                 let htlc_base_key = Readable::read(reader)?;
624                 let commitment_seed = Readable::read(reader)?;
625                 let counterparty_channel_data = Readable::read(reader)?;
626                 let channel_value_satoshis = Readable::read(reader)?;
627                 let secp_ctx = Secp256k1::signing_only();
628                 let holder_channel_pubkeys =
629                         InMemoryChannelKeys::make_holder_keys(&secp_ctx, &funding_key, &revocation_base_key,
630                                                              &payment_key, &delayed_payment_base_key,
631                                                              &htlc_base_key);
632                 let keys_id = Readable::read(reader)?;
633
634                 Ok(InMemoryChannelKeys {
635                         funding_key,
636                         revocation_base_key,
637                         payment_key,
638                         delayed_payment_base_key,
639                         htlc_base_key,
640                         commitment_seed,
641                         channel_value_satoshis,
642                         holder_channel_pubkeys,
643                         channel_parameters: counterparty_channel_data,
644                         channel_keys_id: keys_id,
645                 })
646         }
647 }
648
649 /// Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
650 /// and derives keys from that.
651 ///
652 /// Your node_id is seed/0'
653 /// ChannelMonitor closes may use seed/1'
654 /// Cooperative closes may use seed/2'
655 /// The two close keys may be needed to claim on-chain funds!
656 pub struct KeysManager {
657         secp_ctx: Secp256k1<secp256k1::SignOnly>,
658         node_secret: SecretKey,
659         destination_script: Script,
660         shutdown_pubkey: PublicKey,
661         channel_master_key: ExtendedPrivKey,
662         channel_child_index: AtomicUsize,
663         rand_bytes_master_key: ExtendedPrivKey,
664         rand_bytes_child_index: AtomicUsize,
665
666         seed: [u8; 32],
667         starting_time_secs: u64,
668         starting_time_nanos: u32,
669 }
670
671 impl KeysManager {
672         /// Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
673         /// CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
674         /// starting_time isn't strictly required to actually be a time, but it must absolutely,
675         /// without a doubt, be unique to this instance. ie if you start multiple times with the same
676         /// seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
677         /// simply use the current time (with very high precision).
678         ///
679         /// The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
680         /// obviously, starting_time should be unique every time you reload the library - it is only
681         /// used to generate new ephemeral key data (which will be stored by the individual channel if
682         /// necessary).
683         ///
684         /// Note that the seed is required to recover certain on-chain funds independent of
685         /// ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
686         /// channel, and some on-chain during-closing funds.
687         ///
688         /// Note that until the 0.1 release there is no guarantee of backward compatibility between
689         /// versions. Once the library is more fully supported, the docs will be updated to include a
690         /// detailed description of the guarantee.
691         pub fn new(seed: &[u8; 32], network: Network, starting_time_secs: u64, starting_time_nanos: u32) -> Self {
692                 let secp_ctx = Secp256k1::signing_only();
693                 match ExtendedPrivKey::new_master(network.clone(), seed) {
694                         Ok(master_key) => {
695                                 let node_secret = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(0).unwrap()).expect("Your RNG is busted").private_key.key;
696                                 let destination_script = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(1).unwrap()) {
697                                         Ok(destination_key) => {
698                                                 let wpubkey_hash = WPubkeyHash::hash(&ExtendedPubKey::from_private(&secp_ctx, &destination_key).public_key.to_bytes());
699                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0)
700                                                               .push_slice(&wpubkey_hash.into_inner())
701                                                               .into_script()
702                                         },
703                                         Err(_) => panic!("Your RNG is busted"),
704                                 };
705                                 let shutdown_pubkey = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(2).unwrap()) {
706                                         Ok(shutdown_key) => ExtendedPubKey::from_private(&secp_ctx, &shutdown_key).public_key.key,
707                                         Err(_) => panic!("Your RNG is busted"),
708                                 };
709                                 let channel_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(3).unwrap()).expect("Your RNG is busted");
710                                 let rand_bytes_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(4).unwrap()).expect("Your RNG is busted");
711
712                                 KeysManager {
713                                         secp_ctx,
714                                         node_secret,
715                                         destination_script,
716                                         shutdown_pubkey,
717                                         channel_master_key,
718                                         channel_child_index: AtomicUsize::new(0),
719                                         rand_bytes_master_key,
720                                         rand_bytes_child_index: AtomicUsize::new(0),
721
722                                         seed: *seed,
723                                         starting_time_secs,
724                                         starting_time_nanos,
725                                 }
726                         },
727                         Err(_) => panic!("Your rng is busted"),
728                 }
729         }
730         fn derive_unique_start(&self) -> Sha256State {
731                 let mut unique_start = Sha256::engine();
732                 unique_start.input(&byte_utils::be64_to_array(self.starting_time_secs));
733                 unique_start.input(&byte_utils::be32_to_array(self.starting_time_nanos));
734                 unique_start.input(&self.seed);
735                 unique_start
736         }
737         /// Derive an old set of ChannelKeys for per-channel secrets based on a key derivation
738         /// parameters.
739         /// Key derivation parameters are accessible through a per-channel secrets
740         /// ChannelKeys::channel_keys_id and is provided inside DynamicOuputP2WSH in case of
741         /// onchain output detection for which a corresponding delayed_payment_key must be derived.
742         pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemoryChannelKeys {
743                 let chan_id = byte_utils::slice_to_be64(&params[0..8]);
744                 assert!(chan_id <= std::u32::MAX as u64); // Otherwise the params field wasn't created by us
745                 let mut unique_start = Sha256::engine();
746                 unique_start.input(params);
747                 unique_start.input(&self.seed);
748
749                 // We only seriously intend to rely on the channel_master_key for true secure
750                 // entropy, everything else just ensures uniqueness. We rely on the unique_start (ie
751                 // starting_time provided in the constructor) to be unique.
752                 let child_privkey = self.channel_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(chan_id as u32).expect("key space exhausted")).expect("Your RNG is busted");
753                 unique_start.input(&child_privkey.private_key.key[..]);
754
755                 let seed = Sha256::from_engine(unique_start).into_inner();
756
757                 let commitment_seed = {
758                         let mut sha = Sha256::engine();
759                         sha.input(&seed);
760                         sha.input(&b"commitment seed"[..]);
761                         Sha256::from_engine(sha).into_inner()
762                 };
763                 macro_rules! key_step {
764                         ($info: expr, $prev_key: expr) => {{
765                                 let mut sha = Sha256::engine();
766                                 sha.input(&seed);
767                                 sha.input(&$prev_key[..]);
768                                 sha.input(&$info[..]);
769                                 SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("SHA-256 is busted")
770                         }}
771                 }
772                 let funding_key = key_step!(b"funding key", commitment_seed);
773                 let revocation_base_key = key_step!(b"revocation base key", funding_key);
774                 let payment_key = key_step!(b"payment key", revocation_base_key);
775                 let delayed_payment_base_key = key_step!(b"delayed payment base key", payment_key);
776                 let htlc_base_key = key_step!(b"HTLC base key", delayed_payment_base_key);
777
778                 InMemoryChannelKeys::new(
779                         &self.secp_ctx,
780                         funding_key,
781                         revocation_base_key,
782                         payment_key,
783                         delayed_payment_base_key,
784                         htlc_base_key,
785                         commitment_seed,
786                         channel_value_satoshis,
787                         params.clone()
788                 )
789         }
790 }
791
792 impl KeysInterface for KeysManager {
793         type ChanKeySigner = InMemoryChannelKeys;
794
795         fn get_node_secret(&self) -> SecretKey {
796                 self.node_secret.clone()
797         }
798
799         fn get_destination_script(&self) -> Script {
800                 self.destination_script.clone()
801         }
802
803         fn get_shutdown_pubkey(&self) -> PublicKey {
804                 self.shutdown_pubkey.clone()
805         }
806
807         fn get_channel_keys(&self, _inbound: bool, channel_value_satoshis: u64) -> Self::ChanKeySigner {
808                 let child_ix = self.channel_child_index.fetch_add(1, Ordering::AcqRel);
809                 assert!(child_ix <= std::u32::MAX as usize);
810                 let mut id = [0; 32];
811                 id[0..8].copy_from_slice(&byte_utils::be64_to_array(child_ix as u64));
812                 id[8..16].copy_from_slice(&byte_utils::be64_to_array(self.starting_time_nanos as u64));
813                 id[16..24].copy_from_slice(&byte_utils::be64_to_array(self.starting_time_secs));
814                 self.derive_channel_keys(channel_value_satoshis, &id)
815         }
816
817         fn get_secure_random_bytes(&self) -> [u8; 32] {
818                 let mut sha = self.derive_unique_start();
819
820                 let child_ix = self.rand_bytes_child_index.fetch_add(1, Ordering::AcqRel);
821                 let child_privkey = self.rand_bytes_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(child_ix as u32).expect("key space exhausted")).expect("Your RNG is busted");
822                 sha.input(&child_privkey.private_key.key[..]);
823
824                 sha.input(b"Unique Secure Random Bytes Salt");
825                 Sha256::from_engine(sha).into_inner()
826         }
827
828         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::ChanKeySigner, DecodeError> {
829                 InMemoryChannelKeys::read(&mut std::io::Cursor::new(reader))
830         }
831 }