9a46351c7b4174c7b279684b99b2837400e7b30a
[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, TxIn, 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::recovery::RecoverableSignature;
30 use bitcoin::secp256k1;
31
32 use util::{byte_utils, transaction_utils};
33 use util::ser::{Writeable, Writer, Readable};
34
35 use chain::transaction::OutPoint;
36 use ln::chan_utils;
37 use ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript, ChannelPublicKeys, HolderCommitmentTransaction, ChannelTransactionParameters, CommitmentTransaction, ClosingTransaction};
38 use ln::msgs::UnsignedChannelAnnouncement;
39 use ln::script::ShutdownScript;
40
41 use prelude::*;
42 use core::sync::atomic::{AtomicUsize, Ordering};
43 use io::{self, Error};
44 use ln::msgs::{DecodeError, MAX_VALUE_MSAT};
45
46 /// Used as initial key material, to be expanded into multiple secret keys (but not to be used
47 /// directly). This is used within LDK to encrypt/decrypt inbound payment data.
48 /// (C-not exported) as we just use [u8; 32] directly
49 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
50 pub struct KeyMaterial(pub [u8; 32]);
51
52 /// Information about a spendable output to a P2WSH script. See
53 /// SpendableOutputDescriptor::DelayedPaymentOutput for more details on how to spend this.
54 #[derive(Clone, Debug, PartialEq)]
55 pub struct DelayedPaymentOutputDescriptor {
56         /// The outpoint which is spendable
57         pub outpoint: OutPoint,
58         /// Per commitment point to derive delayed_payment_key by key holder
59         pub per_commitment_point: PublicKey,
60         /// The nSequence value which must be set in the spending input to satisfy the OP_CSV in
61         /// the witness_script.
62         pub to_self_delay: u16,
63         /// The output which is referenced by the given outpoint
64         pub output: TxOut,
65         /// The revocation point specific to the commitment transaction which was broadcast. Used to
66         /// derive the witnessScript for this output.
67         pub revocation_pubkey: PublicKey,
68         /// Arbitrary identification information returned by a call to
69         /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
70         /// the channel to spend the output.
71         pub channel_keys_id: [u8; 32],
72         /// The value of the channel which this output originated from, possibly indirectly.
73         pub channel_value_satoshis: u64,
74 }
75 impl DelayedPaymentOutputDescriptor {
76         /// The maximum length a well-formed witness spending one of these should have.
77         // Calculated as 1 byte length + 73 byte signature, 1 byte empty vec push, 1 byte length plus
78         // redeemscript push length.
79         pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 1 + chan_utils::REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH + 1;
80 }
81
82 impl_writeable_tlv_based!(DelayedPaymentOutputDescriptor, {
83         (0, outpoint, required),
84         (2, per_commitment_point, required),
85         (4, to_self_delay, required),
86         (6, output, required),
87         (8, revocation_pubkey, required),
88         (10, channel_keys_id, required),
89         (12, channel_value_satoshis, required),
90 });
91
92 /// Information about a spendable output to our "payment key". See
93 /// SpendableOutputDescriptor::StaticPaymentOutput for more details on how to spend this.
94 #[derive(Clone, Debug, PartialEq)]
95 pub struct StaticPaymentOutputDescriptor {
96         /// The outpoint which is spendable
97         pub outpoint: OutPoint,
98         /// The output which is referenced by the given outpoint
99         pub output: TxOut,
100         /// Arbitrary identification information returned by a call to
101         /// `Sign::channel_keys_id()`. This may be useful in re-deriving keys used in
102         /// the channel to spend the output.
103         pub channel_keys_id: [u8; 32],
104         /// The value of the channel which this transactions spends.
105         pub channel_value_satoshis: u64,
106 }
107 impl StaticPaymentOutputDescriptor {
108         /// The maximum length a well-formed witness spending one of these should have.
109         // Calculated as 1 byte legnth + 73 byte signature, 1 byte empty vec push, 1 byte length plus
110         // redeemscript push length.
111         pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 34;
112 }
113 impl_writeable_tlv_based!(StaticPaymentOutputDescriptor, {
114         (0, outpoint, required),
115         (2, output, required),
116         (4, channel_keys_id, required),
117         (6, channel_value_satoshis, required),
118 });
119
120 /// When on-chain outputs are created by rust-lightning (which our counterparty is not able to
121 /// claim at any point in the future) an event is generated which you must track and be able to
122 /// spend on-chain. The information needed to do this is provided in this enum, including the
123 /// outpoint describing which txid and output index is available, the full output which exists at
124 /// that txid/index, and any keys or other information required to sign.
125 #[derive(Clone, Debug, PartialEq)]
126 pub enum SpendableOutputDescriptor {
127         /// An output to a script which was provided via KeysInterface directly, either from
128         /// `get_destination_script()` or `get_shutdown_scriptpubkey()`, thus you should already know
129         /// how to spend it. No secret keys are provided as rust-lightning was never given any key.
130         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
131         /// on-chain using the payment preimage or after it has timed out.
132         StaticOutput {
133                 /// The outpoint which is spendable
134                 outpoint: OutPoint,
135                 /// The output which is referenced by the given outpoint.
136                 output: TxOut,
137         },
138         /// An output to a P2WSH script which can be spent with a single signature after a CSV delay.
139         ///
140         /// The witness in the spending input should be:
141         /// <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
142         ///
143         /// Note that the nSequence field in the spending input must be set to to_self_delay
144         /// (which means the transaction is not broadcastable until at least to_self_delay
145         /// blocks after the outpoint confirms).
146         ///
147         /// These are generally the result of a "revocable" output to us, spendable only by us unless
148         /// it is an output from an old state which we broadcast (which should never happen).
149         ///
150         /// To derive the delayed_payment key which is used to sign for this input, you must pass the
151         /// holder delayed_payment_base_key (ie the private key which corresponds to the pubkey in
152         /// Sign::pubkeys().delayed_payment_basepoint) and the provided per_commitment_point to
153         /// chan_utils::derive_private_key. The public key can be generated without the secret key
154         /// using chan_utils::derive_public_key and only the delayed_payment_basepoint which appears in
155         /// Sign::pubkeys().
156         ///
157         /// To derive the revocation_pubkey provided here (which is used in the witness
158         /// script generation), you must pass the counterparty revocation_basepoint (which appears in the
159         /// call to Sign::ready_channel) and the provided per_commitment point
160         /// to chan_utils::derive_public_revocation_key.
161         ///
162         /// The witness script which is hashed and included in the output script_pubkey may be
163         /// regenerated by passing the revocation_pubkey (derived as above), our delayed_payment pubkey
164         /// (derived as above), and the to_self_delay contained here to
165         /// chan_utils::get_revokeable_redeemscript.
166         DelayedPaymentOutput(DelayedPaymentOutputDescriptor),
167         /// An output to a P2WPKH, spendable exclusively by our payment key (ie the private key which
168         /// corresponds to the public key in Sign::pubkeys().payment_point).
169         /// The witness in the spending input, is, thus, simply:
170         /// <BIP 143 signature> <payment key>
171         ///
172         /// These are generally the result of our counterparty having broadcast the current state,
173         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
174         StaticPaymentOutput(StaticPaymentOutputDescriptor),
175 }
176
177 impl_writeable_tlv_based_enum!(SpendableOutputDescriptor,
178         (0, StaticOutput) => {
179                 (0, outpoint, required),
180                 (2, output, required),
181         },
182 ;
183         (1, DelayedPaymentOutput),
184         (2, StaticPaymentOutput),
185 );
186
187 /// A trait to sign lightning channel transactions as described in BOLT 3.
188 ///
189 /// Signing services could be implemented on a hardware wallet. In this case,
190 /// the current Sign would be a front-end on top of a communication
191 /// channel connected to your secure device and lightning key material wouldn't
192 /// reside on a hot server. Nevertheless, a this deployment would still need
193 /// to trust the ChannelManager to avoid loss of funds as this latest component
194 /// could ask to sign commitment transaction with HTLCs paying to attacker pubkeys.
195 ///
196 /// A more secure iteration would be to use hashlock (or payment points) to pair
197 /// invoice/incoming HTLCs with outgoing HTLCs to implement a no-trust-ChannelManager
198 /// at the price of more state and computation on the hardware wallet side. In the future,
199 /// we are looking forward to design such interface.
200 ///
201 /// In any case, ChannelMonitor or fallback watchtowers are always going to be trusted
202 /// to act, as liveness and breach reply correctness are always going to be hard requirements
203 /// of LN security model, orthogonal of key management issues.
204 // TODO: We should remove Clone by instead requesting a new Sign copy when we create
205 // ChannelMonitors instead of expecting to clone the one out of the Channel into the monitors.
206 pub trait BaseSign {
207         /// Gets the per-commitment point for a specific commitment number
208         ///
209         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
210         fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey;
211         /// Gets the commitment secret for a specific commitment number as part of the revocation process
212         ///
213         /// An external signer implementation should error here if the commitment was already signed
214         /// and should refuse to sign it in the future.
215         ///
216         /// May be called more than once for the same index.
217         ///
218         /// Note that the commitment number starts at (1 << 48) - 1 and counts backwards.
219         // TODO: return a Result so we can signal a validation error
220         fn release_commitment_secret(&self, idx: u64) -> [u8; 32];
221         /// Validate the counterparty's signatures on the holder commitment transaction and HTLCs.
222         ///
223         /// This is required in order for the signer to make sure that releasing a commitment
224         /// secret won't leave us without a broadcastable holder transaction.
225         /// Policy checks should be implemented in this function, including checking the amount
226         /// sent to us and checking the HTLCs.
227         fn validate_holder_commitment(&self, holder_tx: &HolderCommitmentTransaction) -> Result<(), ()>;
228         /// Gets the holder's channel public keys and basepoints
229         fn pubkeys(&self) -> &ChannelPublicKeys;
230         /// Gets an arbitrary identifier describing the set of keys which are provided back to you in
231         /// some SpendableOutputDescriptor types. This should be sufficient to identify this
232         /// Sign object uniquely and lookup or re-derive its keys.
233         fn channel_keys_id(&self) -> [u8; 32];
234
235         /// Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
236         ///
237         /// Note that if signing fails or is rejected, the channel will be force-closed.
238         ///
239         /// Policy checks should be implemented in this function, including checking the amount
240         /// sent to us and checking the HTLCs.
241         //
242         // TODO: Document the things someone using this interface should enforce before signing.
243         fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
244         /// Validate the counterparty's revocation.
245         ///
246         /// This is required in order for the signer to make sure that the state has moved
247         /// forward and it is safe to sign the next counterparty commitment.
248         fn validate_counterparty_revocation(&self, idx: u64, secret: &SecretKey) -> Result<(), ()>;
249
250         /// Create a signatures for a holder's commitment transaction and its claiming HTLC transactions.
251         /// This will only ever be called with a non-revoked commitment_tx.  This will be called with the
252         /// latest commitment_tx when we initiate a force-close.
253         /// This will be called with the previous latest, just to get claiming HTLC signatures, if we are
254         /// reacting to a ChannelMonitor replica that decided to broadcast before it had been updated to
255         /// the latest.
256         /// This may be called multiple times for the same transaction.
257         ///
258         /// An external signer implementation should check that the commitment has not been revoked.
259         ///
260         /// May return Err if key derivation fails.  Callers, such as ChannelMonitor, will panic in such a case.
261         //
262         // TODO: Document the things someone using this interface should enforce before signing.
263         // TODO: Key derivation failure should panic rather than Err
264         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
265
266         /// Same as sign_holder_commitment, but exists only for tests to get access to holder commitment
267         /// transactions which will be broadcasted later, after the channel has moved on to a newer
268         /// state. Thus, needs its own method as sign_holder_commitment may enforce that we only ever
269         /// get called once.
270         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
271         fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
272
273         /// Create a signature for the given input in a transaction spending an HTLC transaction output
274         /// or a commitment transaction `to_local` output when our counterparty broadcasts an old state.
275         ///
276         /// A justice transaction may claim multiple outputs at the same time if timelocks are
277         /// similar, but only a signature for the input at index `input` should be signed for here.
278         /// It may be called multiple times for same output(s) if a fee-bump is needed with regards
279         /// to an upcoming timelock expiration.
280         ///
281         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
282         ///
283         /// per_commitment_key is revocation secret which was provided by our counterparty when they
284         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
285         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
286         /// so).
287         fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
288
289         /// Create a signature for the given input in a transaction spending a commitment transaction
290         /// HTLC output when our counterparty broadcasts an old state.
291         ///
292         /// A justice transaction may claim multiple outputs at the same time if timelocks are
293         /// similar, but only a signature for the input at index `input` should be signed for here.
294         /// It may be called multiple times for same output(s) if a fee-bump is needed with regards
295         /// to an upcoming timelock expiration.
296         ///
297         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
298         ///
299         /// per_commitment_key is revocation secret which was provided by our counterparty when they
300         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
301         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
302         /// so).
303         ///
304         /// htlc holds HTLC elements (hash, timelock), thus changing the format of the witness script
305         /// (which is committed to in the BIP 143 signatures).
306         fn sign_justice_revoked_htlc(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
307
308         /// Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
309         /// transaction, either offered or received.
310         ///
311         /// Such a transaction may claim multiples offered outputs at same time if we know the
312         /// preimage for each when we create it, but only the input at index `input` should be
313         /// signed for here. It may be called multiple times for same output(s) if a fee-bump is
314         /// needed with regards to an upcoming timelock expiration.
315         ///
316         /// Witness_script is either a offered or received script as defined in BOLT3 for HTLC
317         /// outputs.
318         ///
319         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
320         ///
321         /// Per_commitment_point is the dynamic point corresponding to the channel state
322         /// detected onchain. It has been generated by our counterparty and is used to derive
323         /// channel state keys, which are then included in the witness script and committed to in the
324         /// BIP 143 signature.
325         fn sign_counterparty_htlc_transaction(&self, htlc_tx: &Transaction, input: usize, amount: u64, per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
326
327         /// Create a signature for a (proposed) closing transaction.
328         ///
329         /// Note that, due to rounding, there may be one "missing" satoshi, and either party may have
330         /// chosen to forgo their output as dust.
331         fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
332
333         /// Signs a channel announcement message with our funding key, proving it comes from one
334         /// of the channel participants.
335         ///
336         /// Note that if this fails or is rejected, the channel will not be publicly announced and
337         /// our counterparty may (though likely will not) close the channel on us for violating the
338         /// protocol.
339         fn sign_channel_announcement(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
340
341         /// Set the counterparty static channel data, including basepoints,
342         /// counterparty_selected/holder_selected_contest_delay and funding outpoint.
343         /// This is done as soon as the funding outpoint is known.  Since these are static channel data,
344         /// they MUST NOT be allowed to change to different values once set.
345         ///
346         /// channel_parameters.is_populated() MUST be true.
347         ///
348         /// We bind holder_selected_contest_delay late here for API convenience.
349         ///
350         /// Will be called before any signatures are applied.
351         fn ready_channel(&mut self, channel_parameters: &ChannelTransactionParameters);
352 }
353
354 /// A cloneable signer.
355 ///
356 /// Although we require signers to be cloneable, it may be useful for developers to be able to use
357 /// signers in an un-sized way, for example as `dyn BaseSign`. Therefore we separate the Clone trait,
358 /// which implies Sized, into this derived trait.
359 pub trait Sign: BaseSign + Writeable + Clone {
360 }
361
362 /// A trait to describe an object which can get user secrets and key material.
363 pub trait KeysInterface {
364         /// A type which implements Sign which will be returned by get_channel_signer.
365         type Signer : Sign;
366
367         /// Get node secret key (aka node_id or network_key).
368         ///
369         /// This method must return the same value each time it is called.
370         fn get_node_secret(&self) -> SecretKey;
371         /// Get a script pubkey which we send funds to when claiming on-chain contestable outputs.
372         ///
373         /// This method should return a different value each time it is called, to avoid linking
374         /// on-chain funds across channels as controlled to the same user.
375         fn get_destination_script(&self) -> Script;
376         /// Get a script pubkey which we will send funds to when closing a channel.
377         ///
378         /// This method should return a different value each time it is called, to avoid linking
379         /// on-chain funds across channels as controlled to the same user.
380         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript;
381         /// Get a new set of Sign for per-channel secrets. These MUST be unique even if you
382         /// restarted with some stale data!
383         ///
384         /// This method must return a different value each time it is called.
385         fn get_channel_signer(&self, inbound: bool, channel_value_satoshis: u64) -> Self::Signer;
386         /// Gets a unique, cryptographically-secure, random 32 byte value. This is used for encrypting
387         /// onion packets and for temporary channel IDs. There is no requirement that these be
388         /// persisted anywhere, though they must be unique across restarts.
389         ///
390         /// This method must return a different value each time it is called.
391         fn get_secure_random_bytes(&self) -> [u8; 32];
392
393         /// Reads a `Signer` for this `KeysInterface` from the given input stream.
394         /// This is only called during deserialization of other objects which contain
395         /// `Sign`-implementing objects (ie `ChannelMonitor`s and `ChannelManager`s).
396         /// The bytes are exactly those which `<Self::Signer as Writeable>::write()` writes, and
397         /// contain no versioning scheme. You may wish to include your own version prefix and ensure
398         /// you've read all of the provided bytes to ensure no corruption occurred.
399         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError>;
400
401         /// Sign an invoice's preimage (note that this is the preimage of the invoice, not the HTLC's
402         /// preimage). By parameterizing by the preimage instead of the hash, we allow implementors of
403         /// this trait to parse the invoice and make sure they're signing what they expect, rather than
404         /// blindly signing the hash.
405         fn sign_invoice(&self, invoice_preimage: Vec<u8>) -> Result<RecoverableSignature, ()>;
406
407         /// Get secret key material as bytes for use in encrypting and decrypting inbound payment data.
408         ///
409         /// This method must return the same value each time it is called.
410         fn get_inbound_payment_key_material(&self) -> KeyMaterial;
411 }
412
413 #[derive(Clone)]
414 /// A simple implementation of Sign that just keeps the private keys in memory.
415 ///
416 /// This implementation performs no policy checks and is insufficient by itself as
417 /// a secure external signer.
418 pub struct InMemorySigner {
419         /// Private key of anchor tx
420         pub funding_key: SecretKey,
421         /// Holder secret key for blinded revocation pubkey
422         pub revocation_base_key: SecretKey,
423         /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions
424         pub payment_key: SecretKey,
425         /// Holder secret key used in HTLC tx
426         pub delayed_payment_base_key: SecretKey,
427         /// Holder htlc secret key used in commitment tx htlc outputs
428         pub htlc_base_key: SecretKey,
429         /// Commitment seed
430         pub commitment_seed: [u8; 32],
431         /// Holder public keys and basepoints
432         pub(crate) holder_channel_pubkeys: ChannelPublicKeys,
433         /// Counterparty public keys and counterparty/holder selected_contest_delay, populated on channel acceptance
434         channel_parameters: Option<ChannelTransactionParameters>,
435         /// The total value of this channel
436         channel_value_satoshis: u64,
437         /// Key derivation parameters
438         channel_keys_id: [u8; 32],
439 }
440
441 impl InMemorySigner {
442         /// Create a new InMemorySigner
443         pub fn new<C: Signing>(
444                 secp_ctx: &Secp256k1<C>,
445                 funding_key: SecretKey,
446                 revocation_base_key: SecretKey,
447                 payment_key: SecretKey,
448                 delayed_payment_base_key: SecretKey,
449                 htlc_base_key: SecretKey,
450                 commitment_seed: [u8; 32],
451                 channel_value_satoshis: u64,
452                 channel_keys_id: [u8; 32]) -> InMemorySigner {
453                 let holder_channel_pubkeys =
454                         InMemorySigner::make_holder_keys(secp_ctx, &funding_key, &revocation_base_key,
455                                                              &payment_key, &delayed_payment_base_key,
456                                                              &htlc_base_key);
457                 InMemorySigner {
458                         funding_key,
459                         revocation_base_key,
460                         payment_key,
461                         delayed_payment_base_key,
462                         htlc_base_key,
463                         commitment_seed,
464                         channel_value_satoshis,
465                         holder_channel_pubkeys,
466                         channel_parameters: None,
467                         channel_keys_id,
468                 }
469         }
470
471         fn make_holder_keys<C: Signing>(secp_ctx: &Secp256k1<C>,
472                                        funding_key: &SecretKey,
473                                        revocation_base_key: &SecretKey,
474                                        payment_key: &SecretKey,
475                                        delayed_payment_base_key: &SecretKey,
476                                        htlc_base_key: &SecretKey) -> ChannelPublicKeys {
477                 let from_secret = |s: &SecretKey| PublicKey::from_secret_key(secp_ctx, s);
478                 ChannelPublicKeys {
479                         funding_pubkey: from_secret(&funding_key),
480                         revocation_basepoint: from_secret(&revocation_base_key),
481                         payment_point: from_secret(&payment_key),
482                         delayed_payment_basepoint: from_secret(&delayed_payment_base_key),
483                         htlc_basepoint: from_secret(&htlc_base_key),
484                 }
485         }
486
487         /// Counterparty pubkeys.
488         /// Will panic if ready_channel wasn't called.
489         pub fn counterparty_pubkeys(&self) -> &ChannelPublicKeys { &self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().pubkeys }
490
491         /// The contest_delay value specified by our counterparty and applied on holder-broadcastable
492         /// transactions, ie the amount of time that we have to wait to recover our funds if we
493         /// broadcast a transaction.
494         /// Will panic if ready_channel wasn't called.
495         pub fn counterparty_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().selected_contest_delay }
496
497         /// The contest_delay value specified by us and applied on transactions broadcastable
498         /// by our counterparty, ie the amount of time that they have to wait to recover their funds
499         /// if they broadcast a transaction.
500         /// Will panic if ready_channel wasn't called.
501         pub fn holder_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().holder_selected_contest_delay }
502
503         /// Whether the holder is the initiator
504         /// Will panic if ready_channel wasn't called.
505         pub fn is_outbound(&self) -> bool { self.get_channel_parameters().is_outbound_from_holder }
506
507         /// Funding outpoint
508         /// Will panic if ready_channel wasn't called.
509         pub fn funding_outpoint(&self) -> &OutPoint { self.get_channel_parameters().funding_outpoint.as_ref().unwrap() }
510
511         /// Obtain a ChannelTransactionParameters for this channel, to be used when verifying or
512         /// building transactions.
513         ///
514         /// Will panic if ready_channel wasn't called.
515         pub fn get_channel_parameters(&self) -> &ChannelTransactionParameters {
516                 self.channel_parameters.as_ref().unwrap()
517         }
518
519         /// Whether anchors should be used.
520         /// Will panic if ready_channel wasn't called.
521         pub fn opt_anchors(&self) -> bool {
522                 self.get_channel_parameters().opt_anchors.is_some()
523         }
524
525         /// Sign the single input of spend_tx at index `input_idx` which spends the output
526         /// described by descriptor, returning the witness stack for the input.
527         ///
528         /// Returns an Err if the input at input_idx does not exist, has a non-empty script_sig,
529         /// is not spending the outpoint described by `descriptor.outpoint`,
530         /// or if an output descriptor script_pubkey does not match the one we can spend.
531         pub fn sign_counterparty_payment_input<C: Signing>(&self, spend_tx: &Transaction, input_idx: usize, descriptor: &StaticPaymentOutputDescriptor, secp_ctx: &Secp256k1<C>) -> Result<Vec<Vec<u8>>, ()> {
532                 // TODO: We really should be taking the SigHashCache as a parameter here instead of
533                 // spend_tx, but ideally the SigHashCache would expose the transaction's inputs read-only
534                 // so that we can check them. This requires upstream rust-bitcoin changes (as well as
535                 // bindings updates to support SigHashCache objects).
536                 if spend_tx.input.len() <= input_idx { return Err(()); }
537                 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
538                 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
539
540                 let remotepubkey = self.pubkeys().payment_point;
541                 let witness_script = bitcoin::Address::p2pkh(&::bitcoin::PublicKey{compressed: true, key: remotepubkey}, Network::Testnet).script_pubkey();
542                 let sighash = hash_to_message!(&bip143::SigHashCache::new(spend_tx).signature_hash(input_idx, &witness_script, descriptor.output.value, SigHashType::All)[..]);
543                 let remotesig = secp_ctx.sign(&sighash, &self.payment_key);
544                 let payment_script = bitcoin::Address::p2wpkh(&::bitcoin::PublicKey{compressed: true, key: remotepubkey}, Network::Bitcoin).unwrap().script_pubkey();
545
546                 if payment_script != descriptor.output.script_pubkey  { return Err(()); }
547
548                 let mut witness = Vec::with_capacity(2);
549                 witness.push(remotesig.serialize_der().to_vec());
550                 witness[0].push(SigHashType::All as u8);
551                 witness.push(remotepubkey.serialize().to_vec());
552                 Ok(witness)
553         }
554
555         /// Sign the single input of spend_tx at index `input_idx` which spends the output
556         /// described by descriptor, returning the witness stack for the input.
557         ///
558         /// Returns an Err if the input at input_idx does not exist, has a non-empty script_sig,
559         /// is not spending the outpoint described by `descriptor.outpoint`, does not have a
560         /// sequence set to `descriptor.to_self_delay`, or if an output descriptor
561         /// script_pubkey does not match the one we can spend.
562         pub fn sign_dynamic_p2wsh_input<C: Signing>(&self, spend_tx: &Transaction, input_idx: usize, descriptor: &DelayedPaymentOutputDescriptor, secp_ctx: &Secp256k1<C>) -> Result<Vec<Vec<u8>>, ()> {
563                 // TODO: We really should be taking the SigHashCache as a parameter here instead of
564                 // spend_tx, but ideally the SigHashCache would expose the transaction's inputs read-only
565                 // so that we can check them. This requires upstream rust-bitcoin changes (as well as
566                 // bindings updates to support SigHashCache objects).
567                 if spend_tx.input.len() <= input_idx { return Err(()); }
568                 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
569                 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
570                 if spend_tx.input[input_idx].sequence != descriptor.to_self_delay as u32 { return Err(()); }
571
572                 let delayed_payment_key = chan_utils::derive_private_key(&secp_ctx, &descriptor.per_commitment_point, &self.delayed_payment_base_key)
573                         .expect("We constructed the payment_base_key, so we can only fail here if the RNG is busted.");
574                 let delayed_payment_pubkey = PublicKey::from_secret_key(&secp_ctx, &delayed_payment_key);
575                 let witness_script = chan_utils::get_revokeable_redeemscript(&descriptor.revocation_pubkey, descriptor.to_self_delay, &delayed_payment_pubkey);
576                 let sighash = hash_to_message!(&bip143::SigHashCache::new(spend_tx).signature_hash(input_idx, &witness_script, descriptor.output.value, SigHashType::All)[..]);
577                 let local_delayedsig = secp_ctx.sign(&sighash, &delayed_payment_key);
578                 let payment_script = bitcoin::Address::p2wsh(&witness_script, Network::Bitcoin).script_pubkey();
579
580                 if descriptor.output.script_pubkey != payment_script { return Err(()); }
581
582                 let mut witness = Vec::with_capacity(3);
583                 witness.push(local_delayedsig.serialize_der().to_vec());
584                 witness[0].push(SigHashType::All as u8);
585                 witness.push(vec!()); //MINIMALIF
586                 witness.push(witness_script.clone().into_bytes());
587                 Ok(witness)
588         }
589 }
590
591 impl BaseSign for InMemorySigner {
592         fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey {
593                 let commitment_secret = SecretKey::from_slice(&chan_utils::build_commitment_secret(&self.commitment_seed, idx)).unwrap();
594                 PublicKey::from_secret_key(secp_ctx, &commitment_secret)
595         }
596
597         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
598                 chan_utils::build_commitment_secret(&self.commitment_seed, idx)
599         }
600
601         fn validate_holder_commitment(&self, _holder_tx: &HolderCommitmentTransaction) -> Result<(), ()> {
602                 Ok(())
603         }
604
605         fn pubkeys(&self) -> &ChannelPublicKeys { &self.holder_channel_pubkeys }
606         fn channel_keys_id(&self) -> [u8; 32] { self.channel_keys_id }
607
608         fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
609                 let trusted_tx = commitment_tx.trust();
610                 let keys = trusted_tx.keys();
611
612                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
613                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
614
615                 let built_tx = trusted_tx.built_transaction();
616                 let commitment_sig = built_tx.sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx);
617                 let commitment_txid = built_tx.txid;
618
619                 let mut htlc_sigs = Vec::with_capacity(commitment_tx.htlcs().len());
620                 for htlc in commitment_tx.htlcs() {
621                         let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, commitment_tx.feerate_per_kw(), self.holder_selected_contest_delay(), htlc, self.opt_anchors(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
622                         let htlc_redeemscript = chan_utils::get_htlc_redeemscript(&htlc, self.opt_anchors(), &keys);
623                         let htlc_sighashtype = if self.opt_anchors() { SigHashType::SinglePlusAnyoneCanPay } else { SigHashType::All };
624                         let htlc_sighash = hash_to_message!(&bip143::SigHashCache::new(&htlc_tx).signature_hash(0, &htlc_redeemscript, htlc.amount_msat / 1000, htlc_sighashtype)[..]);
625                         let holder_htlc_key = chan_utils::derive_private_key(&secp_ctx, &keys.per_commitment_point, &self.htlc_base_key).map_err(|_| ())?;
626                         htlc_sigs.push(secp_ctx.sign(&htlc_sighash, &holder_htlc_key));
627                 }
628
629                 Ok((commitment_sig, htlc_sigs))
630         }
631
632         fn validate_counterparty_revocation(&self, _idx: u64, _secret: &SecretKey) -> Result<(), ()> {
633                 Ok(())
634         }
635
636         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
637                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
638                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
639                 let trusted_tx = commitment_tx.trust();
640                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
641                 let channel_parameters = self.get_channel_parameters();
642                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
643                 Ok((sig, htlc_sigs))
644         }
645
646         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
647         fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
648                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
649                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
650                 let trusted_tx = commitment_tx.trust();
651                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
652                 let channel_parameters = self.get_channel_parameters();
653                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
654                 Ok((sig, htlc_sigs))
655         }
656
657         fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
658                 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key).map_err(|_| ())?;
659                 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
660                 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint).map_err(|_| ())?;
661                 let witness_script = {
662                         let counterparty_delayedpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().delayed_payment_basepoint).map_err(|_| ())?;
663                         chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.holder_selected_contest_delay(), &counterparty_delayedpubkey)
664                 };
665                 let mut sighash_parts = bip143::SigHashCache::new(justice_tx);
666                 let sighash = hash_to_message!(&sighash_parts.signature_hash(input, &witness_script, amount, SigHashType::All)[..]);
667                 return Ok(secp_ctx.sign(&sighash, &revocation_key))
668         }
669
670         fn sign_justice_revoked_htlc(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
671                 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key).map_err(|_| ())?;
672                 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
673                 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint).map_err(|_| ())?;
674                 let witness_script = {
675                         let counterparty_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint).map_err(|_| ())?;
676                         let holder_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint).map_err(|_| ())?;
677                         chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &holder_htlcpubkey, &revocation_pubkey)
678                 };
679                 let mut sighash_parts = bip143::SigHashCache::new(justice_tx);
680                 let sighash = hash_to_message!(&sighash_parts.signature_hash(input, &witness_script, amount, SigHashType::All)[..]);
681                 return Ok(secp_ctx.sign(&sighash, &revocation_key))
682         }
683
684         fn sign_counterparty_htlc_transaction(&self, htlc_tx: &Transaction, input: usize, amount: u64, per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
685                 if let Ok(htlc_key) = chan_utils::derive_private_key(&secp_ctx, &per_commitment_point, &self.htlc_base_key) {
686                         let witness_script = if let Ok(revocation_pubkey) = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint) {
687                                 if let Ok(counterparty_htlcpubkey) = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint) {
688                                         if let Ok(htlcpubkey) = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint) {
689                                                 chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &htlcpubkey, &revocation_pubkey)
690                                         } else { return Err(()) }
691                                 } else { return Err(()) }
692                         } else { return Err(()) };
693                         let mut sighash_parts = bip143::SigHashCache::new(htlc_tx);
694                         let sighash = hash_to_message!(&sighash_parts.signature_hash(input, &witness_script, amount, SigHashType::All)[..]);
695                         return Ok(secp_ctx.sign(&sighash, &htlc_key))
696                 }
697                 Err(())
698         }
699
700         fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
701                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
702                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
703                 Ok(closing_tx.trust().sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx))
704         }
705
706         fn sign_channel_announcement(&self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
707                 let msghash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
708                 Ok(secp_ctx.sign(&msghash, &self.funding_key))
709         }
710
711         fn ready_channel(&mut self, channel_parameters: &ChannelTransactionParameters) {
712                 assert!(self.channel_parameters.is_none(), "Acceptance already noted");
713                 assert!(channel_parameters.is_populated(), "Channel parameters must be fully populated");
714                 self.channel_parameters = Some(channel_parameters.clone());
715         }
716 }
717
718 const SERIALIZATION_VERSION: u8 = 1;
719 const MIN_SERIALIZATION_VERSION: u8 = 1;
720
721 impl Sign for InMemorySigner {}
722
723 impl Writeable for InMemorySigner {
724         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
725                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
726
727                 self.funding_key.write(writer)?;
728                 self.revocation_base_key.write(writer)?;
729                 self.payment_key.write(writer)?;
730                 self.delayed_payment_base_key.write(writer)?;
731                 self.htlc_base_key.write(writer)?;
732                 self.commitment_seed.write(writer)?;
733                 self.channel_parameters.write(writer)?;
734                 self.channel_value_satoshis.write(writer)?;
735                 self.channel_keys_id.write(writer)?;
736
737                 write_tlv_fields!(writer, {});
738
739                 Ok(())
740         }
741 }
742
743 impl Readable for InMemorySigner {
744         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
745                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
746
747                 let funding_key = Readable::read(reader)?;
748                 let revocation_base_key = Readable::read(reader)?;
749                 let payment_key = Readable::read(reader)?;
750                 let delayed_payment_base_key = Readable::read(reader)?;
751                 let htlc_base_key = Readable::read(reader)?;
752                 let commitment_seed = Readable::read(reader)?;
753                 let counterparty_channel_data = Readable::read(reader)?;
754                 let channel_value_satoshis = Readable::read(reader)?;
755                 let secp_ctx = Secp256k1::signing_only();
756                 let holder_channel_pubkeys =
757                         InMemorySigner::make_holder_keys(&secp_ctx, &funding_key, &revocation_base_key,
758                                                              &payment_key, &delayed_payment_base_key,
759                                                              &htlc_base_key);
760                 let keys_id = Readable::read(reader)?;
761
762                 read_tlv_fields!(reader, {});
763
764                 Ok(InMemorySigner {
765                         funding_key,
766                         revocation_base_key,
767                         payment_key,
768                         delayed_payment_base_key,
769                         htlc_base_key,
770                         commitment_seed,
771                         channel_value_satoshis,
772                         holder_channel_pubkeys,
773                         channel_parameters: counterparty_channel_data,
774                         channel_keys_id: keys_id,
775                 })
776         }
777 }
778
779 /// Simple KeysInterface implementor that takes a 32-byte seed for use as a BIP 32 extended key
780 /// and derives keys from that.
781 ///
782 /// Your node_id is seed/0'
783 /// ChannelMonitor closes may use seed/1'
784 /// Cooperative closes may use seed/2'
785 /// The two close keys may be needed to claim on-chain funds!
786 pub struct KeysManager {
787         secp_ctx: Secp256k1<secp256k1::All>,
788         node_secret: SecretKey,
789         inbound_payment_key: KeyMaterial,
790         destination_script: Script,
791         shutdown_pubkey: PublicKey,
792         channel_master_key: ExtendedPrivKey,
793         channel_child_index: AtomicUsize,
794
795         rand_bytes_master_key: ExtendedPrivKey,
796         rand_bytes_child_index: AtomicUsize,
797         rand_bytes_unique_start: Sha256State,
798
799         seed: [u8; 32],
800         starting_time_secs: u64,
801         starting_time_nanos: u32,
802 }
803
804 impl KeysManager {
805         /// Constructs a KeysManager from a 32-byte seed. If the seed is in some way biased (eg your
806         /// CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
807         /// starting_time isn't strictly required to actually be a time, but it must absolutely,
808         /// without a doubt, be unique to this instance. ie if you start multiple times with the same
809         /// seed, starting_time must be unique to each run. Thus, the easiest way to achieve this is to
810         /// simply use the current time (with very high precision).
811         ///
812         /// The seed MUST be backed up safely prior to use so that the keys can be re-created, however,
813         /// obviously, starting_time should be unique every time you reload the library - it is only
814         /// used to generate new ephemeral key data (which will be stored by the individual channel if
815         /// necessary).
816         ///
817         /// Note that the seed is required to recover certain on-chain funds independent of
818         /// ChannelMonitor data, though a current copy of ChannelMonitor data is also required for any
819         /// channel, and some on-chain during-closing funds.
820         ///
821         /// Note that until the 0.1 release there is no guarantee of backward compatibility between
822         /// versions. Once the library is more fully supported, the docs will be updated to include a
823         /// detailed description of the guarantee.
824         pub fn new(seed: &[u8; 32], starting_time_secs: u64, starting_time_nanos: u32) -> Self {
825                 let secp_ctx = Secp256k1::new();
826                 // Note that when we aren't serializing the key, network doesn't matter
827                 match ExtendedPrivKey::new_master(Network::Testnet, seed) {
828                         Ok(master_key) => {
829                                 let node_secret = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(0).unwrap()).expect("Your RNG is busted").private_key.key;
830                                 let destination_script = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(1).unwrap()) {
831                                         Ok(destination_key) => {
832                                                 let wpubkey_hash = WPubkeyHash::hash(&ExtendedPubKey::from_private(&secp_ctx, &destination_key).public_key.to_bytes());
833                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0)
834                                                               .push_slice(&wpubkey_hash.into_inner())
835                                                               .into_script()
836                                         },
837                                         Err(_) => panic!("Your RNG is busted"),
838                                 };
839                                 let shutdown_pubkey = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(2).unwrap()) {
840                                         Ok(shutdown_key) => ExtendedPubKey::from_private(&secp_ctx, &shutdown_key).public_key.key,
841                                         Err(_) => panic!("Your RNG is busted"),
842                                 };
843                                 let channel_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(3).unwrap()).expect("Your RNG is busted");
844                                 let rand_bytes_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(4).unwrap()).expect("Your RNG is busted");
845                                 let inbound_payment_key: SecretKey = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(5).unwrap()).expect("Your RNG is busted").private_key.key;
846                                 let mut inbound_pmt_key_bytes = [0; 32];
847                                 inbound_pmt_key_bytes.copy_from_slice(&inbound_payment_key[..]);
848
849                                 let mut rand_bytes_unique_start = Sha256::engine();
850                                 rand_bytes_unique_start.input(&byte_utils::be64_to_array(starting_time_secs));
851                                 rand_bytes_unique_start.input(&byte_utils::be32_to_array(starting_time_nanos));
852                                 rand_bytes_unique_start.input(seed);
853
854                                 let mut res = KeysManager {
855                                         secp_ctx,
856                                         node_secret,
857                                         inbound_payment_key: KeyMaterial(inbound_pmt_key_bytes),
858
859                                         destination_script,
860                                         shutdown_pubkey,
861
862                                         channel_master_key,
863                                         channel_child_index: AtomicUsize::new(0),
864
865                                         rand_bytes_master_key,
866                                         rand_bytes_child_index: AtomicUsize::new(0),
867                                         rand_bytes_unique_start,
868
869                                         seed: *seed,
870                                         starting_time_secs,
871                                         starting_time_nanos,
872                                 };
873                                 let secp_seed = res.get_secure_random_bytes();
874                                 res.secp_ctx.seeded_randomize(&secp_seed);
875                                 res
876                         },
877                         Err(_) => panic!("Your rng is busted"),
878                 }
879         }
880         /// Derive an old Sign containing per-channel secrets based on a key derivation parameters.
881         ///
882         /// Key derivation parameters are accessible through a per-channel secrets
883         /// Sign::channel_keys_id and is provided inside DynamicOuputP2WSH in case of
884         /// onchain output detection for which a corresponding delayed_payment_key must be derived.
885         pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemorySigner {
886                 let chan_id = byte_utils::slice_to_be64(&params[0..8]);
887                 assert!(chan_id <= core::u32::MAX as u64); // Otherwise the params field wasn't created by us
888                 let mut unique_start = Sha256::engine();
889                 unique_start.input(params);
890                 unique_start.input(&self.seed);
891
892                 // We only seriously intend to rely on the channel_master_key for true secure
893                 // entropy, everything else just ensures uniqueness. We rely on the unique_start (ie
894                 // starting_time provided in the constructor) to be unique.
895                 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");
896                 unique_start.input(&child_privkey.private_key.key[..]);
897
898                 let seed = Sha256::from_engine(unique_start).into_inner();
899
900                 let commitment_seed = {
901                         let mut sha = Sha256::engine();
902                         sha.input(&seed);
903                         sha.input(&b"commitment seed"[..]);
904                         Sha256::from_engine(sha).into_inner()
905                 };
906                 macro_rules! key_step {
907                         ($info: expr, $prev_key: expr) => {{
908                                 let mut sha = Sha256::engine();
909                                 sha.input(&seed);
910                                 sha.input(&$prev_key[..]);
911                                 sha.input(&$info[..]);
912                                 SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("SHA-256 is busted")
913                         }}
914                 }
915                 let funding_key = key_step!(b"funding key", commitment_seed);
916                 let revocation_base_key = key_step!(b"revocation base key", funding_key);
917                 let payment_key = key_step!(b"payment key", revocation_base_key);
918                 let delayed_payment_base_key = key_step!(b"delayed payment base key", payment_key);
919                 let htlc_base_key = key_step!(b"HTLC base key", delayed_payment_base_key);
920
921                 InMemorySigner::new(
922                         &self.secp_ctx,
923                         funding_key,
924                         revocation_base_key,
925                         payment_key,
926                         delayed_payment_base_key,
927                         htlc_base_key,
928                         commitment_seed,
929                         channel_value_satoshis,
930                         params.clone()
931                 )
932         }
933
934         /// Creates a Transaction which spends the given descriptors to the given outputs, plus an
935         /// output to the given change destination (if sufficient change value remains). The
936         /// transaction will have a feerate, at least, of the given value.
937         ///
938         /// Returns `Err(())` if the output value is greater than the input value minus required fee,
939         /// if a descriptor was duplicated, or if an output descriptor script_pubkey 
940         /// does not match the one we can spend.
941         ///
942         /// We do not enforce that outputs meet the dust limit or that any output scripts are standard.
943         ///
944         /// May panic if the `SpendableOutputDescriptor`s were not generated by Channels which used
945         /// this KeysManager or one of the `InMemorySigner` created by this KeysManager.
946         pub fn spend_spendable_outputs<C: Signing>(&self, descriptors: &[&SpendableOutputDescriptor], outputs: Vec<TxOut>, change_destination_script: Script, feerate_sat_per_1000_weight: u32, secp_ctx: &Secp256k1<C>) -> Result<Transaction, ()> {
947                 let mut input = Vec::new();
948                 let mut input_value = 0;
949                 let mut witness_weight = 0;
950                 let mut output_set = HashSet::with_capacity(descriptors.len());
951                 for outp in descriptors {
952                         match outp {
953                                 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
954                                         input.push(TxIn {
955                                                 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
956                                                 script_sig: Script::new(),
957                                                 sequence: 0,
958                                                 witness: Vec::new(),
959                                         });
960                                         witness_weight += StaticPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
961                                         input_value += descriptor.output.value;
962                                         if !output_set.insert(descriptor.outpoint) { return Err(()); }
963                                 },
964                                 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
965                                         input.push(TxIn {
966                                                 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
967                                                 script_sig: Script::new(),
968                                                 sequence: descriptor.to_self_delay as u32,
969                                                 witness: Vec::new(),
970                                         });
971                                         witness_weight += DelayedPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
972                                         input_value += descriptor.output.value;
973                                         if !output_set.insert(descriptor.outpoint) { return Err(()); }
974                                 },
975                                 SpendableOutputDescriptor::StaticOutput { ref outpoint, ref output } => {
976                                         input.push(TxIn {
977                                                 previous_output: outpoint.into_bitcoin_outpoint(),
978                                                 script_sig: Script::new(),
979                                                 sequence: 0,
980                                                 witness: Vec::new(),
981                                         });
982                                         witness_weight += 1 + 73 + 34;
983                                         input_value += output.value;
984                                         if !output_set.insert(*outpoint) { return Err(()); }
985                                 }
986                         }
987                         if input_value > MAX_VALUE_MSAT / 1000 { return Err(()); }
988                 }
989                 let mut spend_tx = Transaction {
990                         version: 2,
991                         lock_time: 0,
992                         input,
993                         output: outputs,
994                 };
995                 let expected_max_weight =
996                         transaction_utils::maybe_add_change_output(&mut spend_tx, input_value, witness_weight, feerate_sat_per_1000_weight, change_destination_script)?;
997
998                 let mut keys_cache: Option<(InMemorySigner, [u8; 32])> = None;
999                 let mut input_idx = 0;
1000                 for outp in descriptors {
1001                         match outp {
1002                                 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
1003                                         if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1004                                                 keys_cache = Some((
1005                                                         self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1006                                                         descriptor.channel_keys_id));
1007                                         }
1008                                         spend_tx.input[input_idx].witness = keys_cache.as_ref().unwrap().0.sign_counterparty_payment_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?;
1009                                 },
1010                                 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
1011                                         if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1012                                                 keys_cache = Some((
1013                                                         self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1014                                                         descriptor.channel_keys_id));
1015                                         }
1016                                         spend_tx.input[input_idx].witness = keys_cache.as_ref().unwrap().0.sign_dynamic_p2wsh_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?;
1017                                 },
1018                                 SpendableOutputDescriptor::StaticOutput { ref output, .. } => {
1019                                         let derivation_idx = if output.script_pubkey == self.destination_script {
1020                                                 1
1021                                         } else {
1022                                                 2
1023                                         };
1024                                         let secret = {
1025                                                 // Note that when we aren't serializing the key, network doesn't matter
1026                                                 match ExtendedPrivKey::new_master(Network::Testnet, &self.seed) {
1027                                                         Ok(master_key) => {
1028                                                                 match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(derivation_idx).expect("key space exhausted")) {
1029                                                                         Ok(key) => key,
1030                                                                         Err(_) => panic!("Your RNG is busted"),
1031                                                                 }
1032                                                         }
1033                                                         Err(_) => panic!("Your rng is busted"),
1034                                                 }
1035                                         };
1036                                         let pubkey = ExtendedPubKey::from_private(&secp_ctx, &secret).public_key;
1037                                         if derivation_idx == 2 {
1038                                                 assert_eq!(pubkey.key, self.shutdown_pubkey);
1039                                         }
1040                                         let witness_script = bitcoin::Address::p2pkh(&pubkey, Network::Testnet).script_pubkey();
1041                                         let payment_script = bitcoin::Address::p2wpkh(&pubkey, Network::Testnet).expect("uncompressed key found").script_pubkey();
1042
1043                                         if payment_script != output.script_pubkey { return Err(()); };
1044
1045                                         let sighash = hash_to_message!(&bip143::SigHashCache::new(&spend_tx).signature_hash(input_idx, &witness_script, output.value, SigHashType::All)[..]);
1046                                         let sig = secp_ctx.sign(&sighash, &secret.private_key.key);
1047                                         spend_tx.input[input_idx].witness.push(sig.serialize_der().to_vec());
1048                                         spend_tx.input[input_idx].witness[0].push(SigHashType::All as u8);
1049                                         spend_tx.input[input_idx].witness.push(pubkey.key.serialize().to_vec());
1050                                 },
1051                         }
1052                         input_idx += 1;
1053                 }
1054
1055                 debug_assert!(expected_max_weight >= spend_tx.get_weight());
1056                 // Note that witnesses with a signature vary somewhat in size, so allow
1057                 // `expected_max_weight` to overshoot by up to 3 bytes per input.
1058                 debug_assert!(expected_max_weight <= spend_tx.get_weight() + descriptors.len() * 3);
1059
1060                 Ok(spend_tx)
1061         }
1062 }
1063
1064 impl KeysInterface for KeysManager {
1065         type Signer = InMemorySigner;
1066
1067         fn get_node_secret(&self) -> SecretKey {
1068                 self.node_secret.clone()
1069         }
1070
1071         fn get_inbound_payment_key_material(&self) -> KeyMaterial {
1072                 self.inbound_payment_key.clone()
1073         }
1074
1075         fn get_destination_script(&self) -> Script {
1076                 self.destination_script.clone()
1077         }
1078
1079         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
1080                 ShutdownScript::new_p2wpkh_from_pubkey(self.shutdown_pubkey.clone())
1081         }
1082
1083         fn get_channel_signer(&self, _inbound: bool, channel_value_satoshis: u64) -> Self::Signer {
1084                 let child_ix = self.channel_child_index.fetch_add(1, Ordering::AcqRel);
1085                 assert!(child_ix <= core::u32::MAX as usize);
1086                 let mut id = [0; 32];
1087                 id[0..8].copy_from_slice(&byte_utils::be64_to_array(child_ix as u64));
1088                 id[8..16].copy_from_slice(&byte_utils::be64_to_array(self.starting_time_nanos as u64));
1089                 id[16..24].copy_from_slice(&byte_utils::be64_to_array(self.starting_time_secs));
1090                 self.derive_channel_keys(channel_value_satoshis, &id)
1091         }
1092
1093         fn get_secure_random_bytes(&self) -> [u8; 32] {
1094                 let mut sha = self.rand_bytes_unique_start.clone();
1095
1096                 let child_ix = self.rand_bytes_child_index.fetch_add(1, Ordering::AcqRel);
1097                 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");
1098                 sha.input(&child_privkey.private_key.key[..]);
1099
1100                 sha.input(b"Unique Secure Random Bytes Salt");
1101                 Sha256::from_engine(sha).into_inner()
1102         }
1103
1104         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError> {
1105                 InMemorySigner::read(&mut io::Cursor::new(reader))
1106         }
1107
1108         fn sign_invoice(&self, invoice_preimage: Vec<u8>) -> Result<RecoverableSignature, ()> {
1109                 Ok(self.secp_ctx.sign_recoverable(&hash_to_message!(&Sha256::hash(&invoice_preimage)), &self.get_node_secret()))
1110         }
1111 }
1112
1113 // Ensure that BaseSign can have a vtable
1114 #[test]
1115 pub fn dyn_sign() {
1116         let _signer: Box<dyn BaseSign>;
1117 }