Fix new rustc warnings for unnecessary parenthesis
[rust-lightning] / lightning / src / chain / keysinterface.rs
1 //! keysinterface provides keys into rust-lightning and defines some useful enums which describe
2 //! spendable on-chain outputs which the user owns and is responsible for using just as any other
3 //! on-chain output which is theirs.
4
5 use bitcoin::blockdata::transaction::{Transaction, OutPoint, TxOut};
6 use bitcoin::blockdata::script::{Script, Builder};
7 use bitcoin::blockdata::opcodes;
8 use bitcoin::network::constants::Network;
9 use bitcoin::util::bip32::{ExtendedPrivKey, ExtendedPubKey, ChildNumber};
10 use bitcoin::util::bip143;
11
12 use bitcoin_hashes::{Hash, HashEngine};
13 use bitcoin_hashes::sha256::HashEngine as Sha256State;
14 use bitcoin_hashes::sha256::Hash as Sha256;
15 use bitcoin_hashes::sha256d::Hash as Sha256dHash;
16 use bitcoin_hashes::hash160::Hash as Hash160;
17
18 use secp256k1::key::{SecretKey, PublicKey};
19 use secp256k1::{Secp256k1, Signature, Signing};
20 use secp256k1;
21
22 use util::byte_utils;
23 use util::logger::Logger;
24 use util::ser::{Writeable, Writer, Readable};
25
26 use ln::chan_utils;
27 use ln::chan_utils::{TxCreationKeys, HTLCOutputInCommitment, make_funding_redeemscript, ChannelPublicKeys, LocalCommitmentTransaction};
28 use ln::channelmanager::PaymentPreimage;
29 use ln::msgs;
30
31 use std::sync::Arc;
32 use std::sync::atomic::{AtomicUsize, Ordering};
33 use std::io::Error;
34 use ln::msgs::DecodeError;
35
36 /// When on-chain outputs are created by rust-lightning (which our counterparty is not able to
37 /// claim at any point in the future) an event is generated which you must track and be able to
38 /// spend on-chain. The information needed to do this is provided in this enum, including the
39 /// outpoint describing which txid and output index is available, the full output which exists at
40 /// that txid/index, and any keys or other information required to sign.
41 #[derive(Clone, PartialEq)]
42 pub enum SpendableOutputDescriptor {
43         /// An output to a script which was provided via KeysInterface, thus you should already know
44         /// how to spend it. No keys are provided as rust-lightning was never given any keys - only the
45         /// script_pubkey as it appears in the output.
46         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
47         /// on-chain using the payment preimage or after it has timed out.
48         StaticOutput {
49                 /// The outpoint which is spendable
50                 outpoint: OutPoint,
51                 /// The output which is referenced by the given outpoint.
52                 output: TxOut,
53         },
54         /// An output to a P2WSH script which can be spent with a single signature after a CSV delay.
55         /// The private key which should be used to sign the transaction is provided, as well as the
56         /// full witness redeemScript which is hashed in the output script_pubkey.
57         /// The witness in the spending input should be:
58         /// <BIP 143 signature generated with the given key> <empty vector> (MINIMALIF standard rule)
59         /// <witness_script as provided>
60         /// Note that the nSequence field in the input must be set to_self_delay (which corresponds to
61         /// the transaction not being broadcastable until at least to_self_delay blocks after the input
62         /// confirms).
63         /// These are generally the result of a "revocable" output to us, spendable only by us unless
64         /// it is an output from us having broadcast an old state (which should never happen).
65         DynamicOutputP2WSH {
66                 /// The outpoint which is spendable
67                 outpoint: OutPoint,
68                 /// The secret key which must be used to sign the spending transaction
69                 key: SecretKey,
70                 /// The witness redeemScript which is hashed to create the script_pubkey in the given output
71                 witness_script: Script,
72                 /// The nSequence value which must be set in the spending input to satisfy the OP_CSV in
73                 /// the witness_script.
74                 to_self_delay: u16,
75                 /// The output which is referenced by the given outpoint
76                 output: TxOut,
77         },
78         /// An output to a P2WPKH, spendable exclusively by the given private key.
79         /// The witness in the spending input, is, thus, simply:
80         /// <BIP 143 signature generated with the given key> <public key derived from the given key>
81         /// These are generally the result of our counterparty having broadcast the current state,
82         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
83         DynamicOutputP2WPKH {
84                 /// The outpoint which is spendable
85                 outpoint: OutPoint,
86                 /// The secret key which must be used to sign the spending transaction
87                 key: SecretKey,
88                 /// The output which is reference by the given outpoint
89                 output: TxOut,
90         }
91 }
92
93 impl Writeable for SpendableOutputDescriptor {
94         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
95                 match self {
96                         &SpendableOutputDescriptor::StaticOutput { ref outpoint, ref output } => {
97                                 0u8.write(writer)?;
98                                 outpoint.write(writer)?;
99                                 output.write(writer)?;
100                         },
101                         &SpendableOutputDescriptor::DynamicOutputP2WSH { ref outpoint, ref key, ref witness_script, ref to_self_delay, ref output } => {
102                                 1u8.write(writer)?;
103                                 outpoint.write(writer)?;
104                                 key.write(writer)?;
105                                 witness_script.write(writer)?;
106                                 to_self_delay.write(writer)?;
107                                 output.write(writer)?;
108                         },
109                         &SpendableOutputDescriptor::DynamicOutputP2WPKH { ref outpoint, ref key, ref output } => {
110                                 2u8.write(writer)?;
111                                 outpoint.write(writer)?;
112                                 key.write(writer)?;
113                                 output.write(writer)?;
114                         },
115                 }
116                 Ok(())
117         }
118 }
119
120 impl Readable for SpendableOutputDescriptor {
121         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
122                 match Readable::read(reader)? {
123                         0u8 => Ok(SpendableOutputDescriptor::StaticOutput {
124                                 outpoint: Readable::read(reader)?,
125                                 output: Readable::read(reader)?,
126                         }),
127                         1u8 => Ok(SpendableOutputDescriptor::DynamicOutputP2WSH {
128                                 outpoint: Readable::read(reader)?,
129                                 key: Readable::read(reader)?,
130                                 witness_script: Readable::read(reader)?,
131                                 to_self_delay: Readable::read(reader)?,
132                                 output: Readable::read(reader)?,
133                         }),
134                         2u8 => Ok(SpendableOutputDescriptor::DynamicOutputP2WPKH {
135                                 outpoint: Readable::read(reader)?,
136                                 key: Readable::read(reader)?,
137                                 output: Readable::read(reader)?,
138                         }),
139                         _ => Err(DecodeError::InvalidValue),
140                 }
141         }
142 }
143
144 /// A trait to describe an object which can get user secrets and key material.
145 pub trait KeysInterface: Send + Sync {
146         /// A type which implements ChannelKeys which will be returned by get_channel_keys.
147         type ChanKeySigner : ChannelKeys;
148
149         /// Get node secret key (aka node_id or network_key)
150         fn get_node_secret(&self) -> SecretKey;
151         /// Get destination redeemScript to encumber static protocol exit points.
152         fn get_destination_script(&self) -> Script;
153         /// Get shutdown_pubkey to use as PublicKey at channel closure
154         fn get_shutdown_pubkey(&self) -> PublicKey;
155         /// Get a new set of ChannelKeys for per-channel secrets. These MUST be unique even if you
156         /// restarted with some stale data!
157         fn get_channel_keys(&self, inbound: bool, channel_value_satoshis: u64) -> Self::ChanKeySigner;
158         /// Get a secret and PRNG seed for construting an onion packet
159         fn get_onion_rand(&self) -> (SecretKey, [u8; 32]);
160         /// Get a unique temporary channel id. Channels will be referred to by this until the funding
161         /// transaction is created, at which point they will use the outpoint in the funding
162         /// transaction.
163         fn get_channel_id(&self) -> [u8; 32];
164 }
165
166 /// Set of lightning keys needed to operate a channel as described in BOLT 3.
167 ///
168 /// Signing services could be implemented on a hardware wallet. In this case,
169 /// the current ChannelKeys would be a front-end on top of a communication
170 /// channel connected to your secure device and lightning key material wouldn't
171 /// reside on a hot server. Nevertheless, a this deployment would still need
172 /// to trust the ChannelManager to avoid loss of funds as this latest component
173 /// could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
174 ///
175 /// A more secure iteration would be to use hashlock (or payment points) to pair
176 /// invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
177 /// at the price of more state and computation on the hardware wallet side. In the future,
178 /// we are looking forward to design such interface.
179 ///
180 /// In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
181 /// to act, as liveness and breach reply correctness are always going to be hard requirements
182 /// of LN security model, orthogonal of key management issues.
183 ///
184 /// If you're implementing a custom signer, you almost certainly want to implement
185 /// Readable/Writable to serialize out a unique reference to this set of keys so
186 /// that you can serialize the full ChannelManager object.
187 ///
188 /// (TODO: We shouldn't require that, and should have an API to get them at deser time, due mostly
189 /// to the possibility of reentrancy issues by calling the user's code during our deserialization
190 /// routine).
191 /// TODO: We should remove Clone by instead requesting a new ChannelKeys copy when we create
192 /// ChannelMonitors instead of expecting to clone the one out of the Channel into the monitors.
193 pub trait ChannelKeys : Send+Clone {
194         /// Gets the private key for the anchor tx
195         fn funding_key<'a>(&'a self) -> &'a SecretKey;
196         /// Gets the local secret key for blinded revocation pubkey
197         fn revocation_base_key<'a>(&'a self) -> &'a SecretKey;
198         /// Gets the local secret key used in to_remote output of remote commitment tx
199         /// (and also as part of obscured commitment number)
200         fn payment_base_key<'a>(&'a self) -> &'a SecretKey;
201         /// Gets the local secret key used in HTLC-Success/HTLC-Timeout txn and to_local output
202         fn delayed_payment_base_key<'a>(&'a self) -> &'a SecretKey;
203         /// Gets the local htlc secret key used in commitment tx htlc outputs
204         fn htlc_base_key<'a>(&'a self) -> &'a SecretKey;
205         /// Gets the commitment seed
206         fn commitment_seed<'a>(&'a self) -> &'a [u8; 32];
207         /// Gets the local channel public keys and basepoints
208         fn pubkeys<'a>(&'a self) -> &'a ChannelPublicKeys;
209
210         /// Create a signature for a remote commitment transaction and associated HTLC transactions.
211         ///
212         /// Note that if signing fails or is rejected, the channel will be force-closed.
213         ///
214         /// TODO: Document the things someone using this interface should enforce before signing.
215         /// TODO: Add more input vars to enable better checking (preferably removing commitment_tx and
216         /// making the callee generate it via some util function we expose)!
217         fn sign_remote_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, feerate_per_kw: u64, commitment_tx: &Transaction, keys: &TxCreationKeys, htlcs: &[&HTLCOutputInCommitment], to_self_delay: u16, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()>;
218
219         /// Create a signature for a local commitment transaction
220         ///
221         /// TODO: Document the things someone using this interface should enforce before signing.
222         /// TODO: Add more input vars to enable better checking (preferably removing commitment_tx and
223         /// TODO: Ensure test-only version doesn't enforce uniqueness of signature when it's enforced in this method
224         /// making the callee generate it via some util function we expose)!
225         fn sign_local_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>);
226
227         /// Create a signature for a local commitment transaction without enforcing one-time signing.
228         ///
229         /// Testing revocation logic by our test framework needs to sign multiple local commitment
230         /// transactions. This unsafe test-only version doesn't enforce one-time signing security
231         /// requirement.
232         #[cfg(test)]
233         fn unsafe_sign_local_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>);
234
235         /// Signs a transaction created by build_htlc_transaction. If the transaction is an
236         /// HTLC-Success transaction, preimage must be set!
237         /// TODO: should be merged with sign_local_commitment as a slice of HTLC transactions to sign
238         fn sign_htlc_transaction<T: secp256k1::Signing>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, htlc_index: u32, preimage: Option<PaymentPreimage>, local_csv: u16, secp_ctx: &Secp256k1<T>);
239         /// Create a signature for a (proposed) closing transaction.
240         ///
241         /// Note that, due to rounding, there may be one "missing" satoshi, and either party may have
242         /// chosen to forgo their output as dust.
243         fn sign_closing_transaction<T: secp256k1::Signing>(&self, closing_tx: &Transaction, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
244
245         /// Signs a channel announcement message with our funding key, proving it comes from one
246         /// of the channel participants.
247         ///
248         /// Note that if this fails or is rejected, the channel will not be publicly announced and
249         /// our counterparty may (though likely will not) close the channel on us for violating the
250         /// protocol.
251         fn sign_channel_announcement<T: secp256k1::Signing>(&self, msg: &msgs::UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()>;
252
253         /// Set the remote channel basepoints.  This is done immediately on incoming channels
254         /// and as soon as the channel is accepted on outgoing channels.
255         ///
256         /// Will be called before any signatures are applied.
257         fn set_remote_channel_pubkeys(&mut self, channel_points: &ChannelPublicKeys);
258 }
259
260 #[derive(Clone)]
261 /// A simple implementation of ChannelKeys that just keeps the private keys in memory.
262 pub struct InMemoryChannelKeys {
263         /// Private key of anchor tx
264         funding_key: SecretKey,
265         /// Local secret key for blinded revocation pubkey
266         revocation_base_key: SecretKey,
267         /// Local secret key used in commitment tx htlc outputs
268         payment_base_key: SecretKey,
269         /// Local secret key used in HTLC tx
270         delayed_payment_base_key: SecretKey,
271         /// Local htlc secret key used in commitment tx htlc outputs
272         htlc_base_key: SecretKey,
273         /// Commitment seed
274         commitment_seed: [u8; 32],
275         /// Local public keys and basepoints
276         pub(crate) local_channel_pubkeys: ChannelPublicKeys,
277         /// Remote public keys and base points
278         pub(crate) remote_channel_pubkeys: Option<ChannelPublicKeys>,
279         /// The total value of this channel
280         channel_value_satoshis: u64,
281 }
282
283 impl InMemoryChannelKeys {
284         /// Create a new InMemoryChannelKeys
285         pub fn new<C: Signing>(
286                 secp_ctx: &Secp256k1<C>,
287                 funding_key: SecretKey,
288                 revocation_base_key: SecretKey,
289                 payment_base_key: SecretKey,
290                 delayed_payment_base_key: SecretKey,
291                 htlc_base_key: SecretKey,
292                 commitment_seed: [u8; 32],
293                 channel_value_satoshis: u64) -> InMemoryChannelKeys {
294                 let local_channel_pubkeys =
295                         InMemoryChannelKeys::make_local_keys(secp_ctx, &funding_key, &revocation_base_key,
296                                                              &payment_base_key, &delayed_payment_base_key,
297                                                              &htlc_base_key);
298                 InMemoryChannelKeys {
299                         funding_key,
300                         revocation_base_key,
301                         payment_base_key,
302                         delayed_payment_base_key,
303                         htlc_base_key,
304                         commitment_seed,
305                         channel_value_satoshis,
306                         local_channel_pubkeys,
307                         remote_channel_pubkeys: None,
308                 }
309         }
310
311         fn make_local_keys<C: Signing>(secp_ctx: &Secp256k1<C>,
312                                        funding_key: &SecretKey,
313                                        revocation_base_key: &SecretKey,
314                                        payment_base_key: &SecretKey,
315                                        delayed_payment_base_key: &SecretKey,
316                                        htlc_base_key: &SecretKey) -> ChannelPublicKeys {
317                 let from_secret = |s: &SecretKey| PublicKey::from_secret_key(secp_ctx, s);
318                 ChannelPublicKeys {
319                         funding_pubkey: from_secret(&funding_key),
320                         revocation_basepoint: from_secret(&revocation_base_key),
321                         payment_basepoint: from_secret(&payment_base_key),
322                         delayed_payment_basepoint: from_secret(&delayed_payment_base_key),
323                         htlc_basepoint: from_secret(&htlc_base_key),
324                 }
325         }
326 }
327
328 impl ChannelKeys for InMemoryChannelKeys {
329         fn funding_key(&self) -> &SecretKey { &self.funding_key }
330         fn revocation_base_key(&self) -> &SecretKey { &self.revocation_base_key }
331         fn payment_base_key(&self) -> &SecretKey { &self.payment_base_key }
332         fn delayed_payment_base_key(&self) -> &SecretKey { &self.delayed_payment_base_key }
333         fn htlc_base_key(&self) -> &SecretKey { &self.htlc_base_key }
334         fn commitment_seed(&self) -> &[u8; 32] { &self.commitment_seed }
335         fn pubkeys<'a>(&'a self) -> &'a ChannelPublicKeys { &self.local_channel_pubkeys }
336
337         fn sign_remote_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, feerate_per_kw: u64, commitment_tx: &Transaction, keys: &TxCreationKeys, htlcs: &[&HTLCOutputInCommitment], to_self_delay: u16, secp_ctx: &Secp256k1<T>) -> Result<(Signature, Vec<Signature>), ()> {
338                 if commitment_tx.input.len() != 1 { return Err(()); }
339
340                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
341                 let remote_channel_pubkeys = self.remote_channel_pubkeys.as_ref().expect("must set remote channel pubkeys before signing");
342                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &remote_channel_pubkeys.funding_pubkey);
343
344                 let commitment_sighash = hash_to_message!(&bip143::SighashComponents::new(&commitment_tx).sighash_all(&commitment_tx.input[0], &channel_funding_redeemscript, self.channel_value_satoshis)[..]);
345                 let commitment_sig = secp_ctx.sign(&commitment_sighash, &self.funding_key);
346
347                 let commitment_txid = commitment_tx.txid();
348
349                 let mut htlc_sigs = Vec::with_capacity(htlcs.len());
350                 for ref htlc in htlcs {
351                         if let Some(_) = htlc.transaction_output_index {
352                                 let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, feerate_per_kw, to_self_delay, htlc, &keys.a_delayed_payment_key, &keys.revocation_key);
353                                 let htlc_redeemscript = chan_utils::get_htlc_redeemscript(&htlc, &keys);
354                                 let htlc_sighash = hash_to_message!(&bip143::SighashComponents::new(&htlc_tx).sighash_all(&htlc_tx.input[0], &htlc_redeemscript, htlc.amount_msat / 1000)[..]);
355                                 let our_htlc_key = match chan_utils::derive_private_key(&secp_ctx, &keys.per_commitment_point, &self.htlc_base_key) {
356                                         Ok(s) => s,
357                                         Err(_) => return Err(()),
358                                 };
359                                 htlc_sigs.push(secp_ctx.sign(&htlc_sighash, &our_htlc_key));
360                         }
361                 }
362
363                 Ok((commitment_sig, htlc_sigs))
364         }
365
366         fn sign_local_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) {
367                 local_commitment_tx.add_local_sig(&self.funding_key, funding_redeemscript, channel_value_satoshis, secp_ctx);
368         }
369
370         #[cfg(test)]
371         fn unsafe_sign_local_commitment<T: secp256k1::Signing + secp256k1::Verification>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, funding_redeemscript: &Script, channel_value_satoshis: u64, secp_ctx: &Secp256k1<T>) {
372                 local_commitment_tx.add_local_sig(&self.funding_key, funding_redeemscript, channel_value_satoshis, secp_ctx);
373         }
374
375         fn sign_htlc_transaction<T: secp256k1::Signing>(&self, local_commitment_tx: &mut LocalCommitmentTransaction, htlc_index: u32, preimage: Option<PaymentPreimage>, local_csv: u16, secp_ctx: &Secp256k1<T>) {
376                 local_commitment_tx.add_htlc_sig(&self.htlc_base_key, htlc_index, preimage, local_csv, secp_ctx);
377         }
378
379         fn sign_closing_transaction<T: secp256k1::Signing>(&self, closing_tx: &Transaction, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
380                 if closing_tx.input.len() != 1 { return Err(()); }
381                 if closing_tx.input[0].witness.len() != 0 { return Err(()); }
382                 if closing_tx.output.len() > 2 { return Err(()); }
383
384                 let remote_channel_pubkeys = self.remote_channel_pubkeys.as_ref().expect("must set remote channel pubkeys before signing");
385                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
386                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &remote_channel_pubkeys.funding_pubkey);
387
388                 let sighash = hash_to_message!(&bip143::SighashComponents::new(closing_tx)
389                         .sighash_all(&closing_tx.input[0], &channel_funding_redeemscript, self.channel_value_satoshis)[..]);
390                 Ok(secp_ctx.sign(&sighash, &self.funding_key))
391         }
392
393         fn sign_channel_announcement<T: secp256k1::Signing>(&self, msg: &msgs::UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<T>) -> Result<Signature, ()> {
394                 let msghash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
395                 Ok(secp_ctx.sign(&msghash, &self.funding_key))
396         }
397
398         fn set_remote_channel_pubkeys(&mut self, channel_pubkeys: &ChannelPublicKeys) {
399                 assert!(self.remote_channel_pubkeys.is_none(), "Already set remote channel pubkeys");
400                 self.remote_channel_pubkeys = Some(channel_pubkeys.clone());
401         }
402 }
403
404 impl Writeable for InMemoryChannelKeys {
405         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
406                 self.funding_key.write(writer)?;
407                 self.revocation_base_key.write(writer)?;
408                 self.payment_base_key.write(writer)?;
409                 self.delayed_payment_base_key.write(writer)?;
410                 self.htlc_base_key.write(writer)?;
411                 self.commitment_seed.write(writer)?;
412                 self.remote_channel_pubkeys.write(writer)?;
413                 self.channel_value_satoshis.write(writer)?;
414
415                 Ok(())
416         }
417 }
418
419 impl Readable for InMemoryChannelKeys {
420         fn read<R: ::std::io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
421                 let funding_key = Readable::read(reader)?;
422                 let revocation_base_key = Readable::read(reader)?;
423                 let payment_base_key = Readable::read(reader)?;
424                 let delayed_payment_base_key = Readable::read(reader)?;
425                 let htlc_base_key = Readable::read(reader)?;
426                 let commitment_seed = Readable::read(reader)?;
427                 let remote_channel_pubkeys = Readable::read(reader)?;
428                 let channel_value_satoshis = Readable::read(reader)?;
429                 let secp_ctx = Secp256k1::signing_only();
430                 let local_channel_pubkeys =
431                         InMemoryChannelKeys::make_local_keys(&secp_ctx, &funding_key, &revocation_base_key,
432                                                              &payment_base_key, &delayed_payment_base_key,
433                                                              &htlc_base_key);
434
435                 Ok(InMemoryChannelKeys {
436                         funding_key,
437                         revocation_base_key,
438                         payment_base_key,
439                         delayed_payment_base_key,
440                         htlc_base_key,
441                         commitment_seed,
442                         channel_value_satoshis,
443                         local_channel_pubkeys,
444                         remote_channel_pubkeys
445                 })
446         }
447 }
448
449 /// Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
450 /// and derives keys from that.
451 ///
452 /// Your node_id is seed/0'
453 /// ChannelMonitor closes may use seed/1'
454 /// Cooperative closes may use seed/2'
455 /// The two close keys may be needed to claim on-chain funds!
456 pub struct KeysManager {
457         secp_ctx: Secp256k1<secp256k1::SignOnly>,
458         node_secret: SecretKey,
459         destination_script: Script,
460         shutdown_pubkey: PublicKey,
461         channel_master_key: ExtendedPrivKey,
462         channel_child_index: AtomicUsize,
463         session_master_key: ExtendedPrivKey,
464         session_child_index: AtomicUsize,
465         channel_id_master_key: ExtendedPrivKey,
466         channel_id_child_index: AtomicUsize,
467
468         unique_start: Sha256State,
469         logger: Arc<Logger>,
470 }
471
472 impl KeysManager {
473         /// Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
474         /// RNG is busted) this may panic (but more importantly, you will possibly lose funds).
475         /// starting_time isn't strictly required to actually be a time, but it must absolutely,
476         /// without a doubt, be unique to this instance. ie if you start multiple times with the same
477         /// seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
478         /// simply use the current time (with very high precision).
479         ///
480         /// The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
481         /// obviously, starting_time should be unique every time you reload the library - it is only
482         /// used to generate new ephemeral key data (which will be stored by the individual channel if
483         /// necessary).
484         ///
485         /// Note that the seed is required to recover certain on-chain funds independent of
486         /// ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
487         /// channel, and some on-chain during-closing funds.
488         ///
489         /// Note that until the 0.1 release there is no guarantee of backward compatibility between
490         /// versions. Once the library is more fully supported, the docs will be updated to include a
491         /// detailed description of the guarantee.
492         pub fn new(seed: &[u8; 32], network: Network, logger: Arc<Logger>, starting_time_secs: u64, starting_time_nanos: u32) -> KeysManager {
493                 let secp_ctx = Secp256k1::signing_only();
494                 match ExtendedPrivKey::new_master(network.clone(), seed) {
495                         Ok(master_key) => {
496                                 let node_secret = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(0).unwrap()).expect("Your RNG is busted").private_key.key;
497                                 let destination_script = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(1).unwrap()) {
498                                         Ok(destination_key) => {
499                                                 let pubkey_hash160 = Hash160::hash(&ExtendedPubKey::from_private(&secp_ctx, &destination_key).public_key.key.serialize()[..]);
500                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0)
501                                                               .push_slice(&pubkey_hash160.into_inner())
502                                                               .into_script()
503                                         },
504                                         Err(_) => panic!("Your RNG is busted"),
505                                 };
506                                 let shutdown_pubkey = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(2).unwrap()) {
507                                         Ok(shutdown_key) => ExtendedPubKey::from_private(&secp_ctx, &shutdown_key).public_key.key,
508                                         Err(_) => panic!("Your RNG is busted"),
509                                 };
510                                 let channel_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(3).unwrap()).expect("Your RNG is busted");
511                                 let session_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(4).unwrap()).expect("Your RNG is busted");
512                                 let channel_id_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(5).unwrap()).expect("Your RNG is busted");
513
514                                 let mut unique_start = Sha256::engine();
515                                 unique_start.input(&byte_utils::be64_to_array(starting_time_secs));
516                                 unique_start.input(&byte_utils::be32_to_array(starting_time_nanos));
517                                 unique_start.input(seed);
518
519                                 KeysManager {
520                                         secp_ctx,
521                                         node_secret,
522                                         destination_script,
523                                         shutdown_pubkey,
524                                         channel_master_key,
525                                         channel_child_index: AtomicUsize::new(0),
526                                         session_master_key,
527                                         session_child_index: AtomicUsize::new(0),
528                                         channel_id_master_key,
529                                         channel_id_child_index: AtomicUsize::new(0),
530
531                                         unique_start,
532                                         logger,
533                                 }
534                         },
535                         Err(_) => panic!("Your rng is busted"),
536                 }
537         }
538 }
539
540 impl KeysInterface for KeysManager {
541         type ChanKeySigner = InMemoryChannelKeys;
542
543         fn get_node_secret(&self) -> SecretKey {
544                 self.node_secret.clone()
545         }
546
547         fn get_destination_script(&self) -> Script {
548                 self.destination_script.clone()
549         }
550
551         fn get_shutdown_pubkey(&self) -> PublicKey {
552                 self.shutdown_pubkey.clone()
553         }
554
555         fn get_channel_keys(&self, _inbound: bool, channel_value_satoshis: u64) -> InMemoryChannelKeys {
556                 // We only seriously intend to rely on the channel_master_key for true secure
557                 // entropy, everything else just ensures uniqueness. We rely on the unique_start (ie
558                 // starting_time provided in the constructor) to be unique.
559                 let mut sha = self.unique_start.clone();
560
561                 let child_ix = self.channel_child_index.fetch_add(1, Ordering::AcqRel);
562                 let child_privkey = self.channel_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(child_ix as u32).expect("key space exhausted")).expect("Your RNG is busted");
563                 sha.input(&child_privkey.private_key.key[..]);
564
565                 let seed = Sha256::from_engine(sha).into_inner();
566
567                 let commitment_seed = {
568                         let mut sha = Sha256::engine();
569                         sha.input(&seed);
570                         sha.input(&b"commitment seed"[..]);
571                         Sha256::from_engine(sha).into_inner()
572                 };
573                 macro_rules! key_step {
574                         ($info: expr, $prev_key: expr) => {{
575                                 let mut sha = Sha256::engine();
576                                 sha.input(&seed);
577                                 sha.input(&$prev_key[..]);
578                                 sha.input(&$info[..]);
579                                 SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("SHA-256 is busted")
580                         }}
581                 }
582                 let funding_key = key_step!(b"funding key", commitment_seed);
583                 let revocation_base_key = key_step!(b"revocation base key", funding_key);
584                 let payment_base_key = key_step!(b"payment base key", revocation_base_key);
585                 let delayed_payment_base_key = key_step!(b"delayed payment base key", payment_base_key);
586                 let htlc_base_key = key_step!(b"HTLC base key", delayed_payment_base_key);
587
588                 InMemoryChannelKeys::new(
589                         &self.secp_ctx,
590                         funding_key,
591                         revocation_base_key,
592                         payment_base_key,
593                         delayed_payment_base_key,
594                         htlc_base_key,
595                         commitment_seed,
596                         channel_value_satoshis
597                 )
598         }
599
600         fn get_onion_rand(&self) -> (SecretKey, [u8; 32]) {
601                 let mut sha = self.unique_start.clone();
602
603                 let child_ix = self.session_child_index.fetch_add(1, Ordering::AcqRel);
604                 let child_privkey = self.session_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(child_ix as u32).expect("key space exhausted")).expect("Your RNG is busted");
605                 sha.input(&child_privkey.private_key.key[..]);
606
607                 let mut rng_seed = sha.clone();
608                 // Not exactly the most ideal construction, but the second value will get fed into
609                 // ChaCha so it is another step harder to break.
610                 rng_seed.input(b"RNG Seed Salt");
611                 sha.input(b"Session Key Salt");
612                 (SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("Your RNG is busted"),
613                 Sha256::from_engine(rng_seed).into_inner())
614         }
615
616         fn get_channel_id(&self) -> [u8; 32] {
617                 let mut sha = self.unique_start.clone();
618
619                 let child_ix = self.channel_id_child_index.fetch_add(1, Ordering::AcqRel);
620                 let child_privkey = self.channel_id_master_key.ckd_priv(&self.secp_ctx, ChildNumber::from_hardened_idx(child_ix as u32).expect("key space exhausted")).expect("Your RNG is busted");
621                 sha.input(&child_privkey.private_key.key[..]);
622
623                 Sha256::from_engine(sha).into_inner()
624         }
625 }