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