Rename `BaseSign` to `EcdsaChannelSigner`.
[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 //! Provides keys to LDK and defines some useful objects describing spendable on-chain outputs.
11 //!
12 //! The provided output descriptors follow a custom LDK data format and are currently not fully
13 //! compatible with Bitcoin Core output descriptors.
14
15 use bitcoin::blockdata::transaction::{Transaction, TxOut, TxIn, EcdsaSighashType};
16 use bitcoin::blockdata::script::{Script, Builder};
17 use bitcoin::blockdata::opcodes;
18 use bitcoin::network::constants::Network;
19 use bitcoin::util::bip32::{ExtendedPrivKey, ExtendedPubKey, ChildNumber};
20 use bitcoin::util::sighash;
21
22 use bitcoin::bech32::u5;
23 use bitcoin::hashes::{Hash, HashEngine};
24 use bitcoin::hashes::sha256::HashEngine as Sha256State;
25 use bitcoin::hashes::sha256::Hash as Sha256;
26 use bitcoin::hashes::sha256d::Hash as Sha256dHash;
27 use bitcoin::hash_types::WPubkeyHash;
28
29 use bitcoin::secp256k1::{SecretKey, PublicKey, Scalar};
30 use bitcoin::secp256k1::{Secp256k1, ecdsa::Signature, Signing};
31 use bitcoin::secp256k1::ecdh::SharedSecret;
32 use bitcoin::secp256k1::ecdsa::RecoverableSignature;
33 use bitcoin::{PackedLockTime, secp256k1, Sequence, Witness};
34
35 use crate::util::transaction_utils;
36 use crate::util::crypto::{hkdf_extract_expand_twice, sign};
37 use crate::util::ser::{Writeable, Writer, Readable};
38 #[cfg(anchors)]
39 use crate::util::events::HTLCDescriptor;
40 use crate::chain::transaction::OutPoint;
41 use crate::ln::channel::ANCHOR_OUTPUT_VALUE_SATOSHI;
42 use crate::ln::{chan_utils, PaymentPreimage};
43 use crate::ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript, ChannelPublicKeys, HolderCommitmentTransaction, ChannelTransactionParameters, CommitmentTransaction, ClosingTransaction};
44 use crate::ln::msgs::{UnsignedChannelAnnouncement, UnsignedGossipMessage};
45 use crate::ln::script::ShutdownScript;
46
47 use crate::prelude::*;
48 use core::convert::TryInto;
49 use core::sync::atomic::{AtomicUsize, Ordering};
50 use crate::io::{self, Error};
51 use crate::ln::msgs::{DecodeError, MAX_VALUE_MSAT};
52 use crate::util::invoice::construct_invoice_preimage;
53
54 /// Used as initial key material, to be expanded into multiple secret keys (but not to be used
55 /// directly). This is used within LDK to encrypt/decrypt inbound payment data.
56 ///
57 /// (C-not exported) as we just use `[u8; 32]` directly
58 #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug)]
59 pub struct KeyMaterial(pub [u8; 32]);
60
61 /// Information about a spendable output to a P2WSH script.
62 ///
63 /// See [`SpendableOutputDescriptor::DelayedPaymentOutput`] for more details on how to spend this.
64 #[derive(Clone, Debug, PartialEq, Eq)]
65 pub struct DelayedPaymentOutputDescriptor {
66         /// The outpoint which is spendable.
67         pub outpoint: OutPoint,
68         /// Per commitment point to derive the delayed payment key by key holder.
69         pub per_commitment_point: PublicKey,
70         /// The `nSequence` value which must be set in the spending input to satisfy the `OP_CSV` in
71         /// the witness_script.
72         pub to_self_delay: u16,
73         /// The output which is referenced by the given outpoint.
74         pub output: TxOut,
75         /// The revocation point specific to the commitment transaction which was broadcast. Used to
76         /// derive the witnessScript for this output.
77         pub revocation_pubkey: PublicKey,
78         /// Arbitrary identification information returned by a call to [`EcdsaChannelSigner::channel_keys_id`].
79         /// This may be useful in re-deriving keys used in the channel to spend the output.
80         pub channel_keys_id: [u8; 32],
81         /// The value of the channel which this output originated from, possibly indirectly.
82         pub channel_value_satoshis: u64,
83 }
84 impl DelayedPaymentOutputDescriptor {
85         /// The maximum length a well-formed witness spending one of these should have.
86         // Calculated as 1 byte length + 73 byte signature, 1 byte empty vec push, 1 byte length plus
87         // redeemscript push length.
88         pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 1 + chan_utils::REVOKEABLE_REDEEMSCRIPT_MAX_LENGTH + 1;
89 }
90
91 impl_writeable_tlv_based!(DelayedPaymentOutputDescriptor, {
92         (0, outpoint, required),
93         (2, per_commitment_point, required),
94         (4, to_self_delay, required),
95         (6, output, required),
96         (8, revocation_pubkey, required),
97         (10, channel_keys_id, required),
98         (12, channel_value_satoshis, required),
99 });
100
101 /// Information about a spendable output to our "payment key".
102 ///
103 /// See [`SpendableOutputDescriptor::StaticPaymentOutput`] for more details on how to spend this.
104 #[derive(Clone, Debug, PartialEq, Eq)]
105 pub struct StaticPaymentOutputDescriptor {
106         /// The outpoint which is spendable.
107         pub outpoint: OutPoint,
108         /// The output which is referenced by the given outpoint.
109         pub output: TxOut,
110         /// Arbitrary identification information returned by a call to [`EcdsaChannelSigner::channel_keys_id`].
111         /// This may be useful in re-deriving keys used in the channel to spend the output.
112         pub channel_keys_id: [u8; 32],
113         /// The value of the channel which this transactions spends.
114         pub channel_value_satoshis: u64,
115 }
116 impl StaticPaymentOutputDescriptor {
117         /// The maximum length a well-formed witness spending one of these should have.
118         // Calculated as 1 byte legnth + 73 byte signature, 1 byte empty vec push, 1 byte length plus
119         // redeemscript push length.
120         pub const MAX_WITNESS_LENGTH: usize = 1 + 73 + 34;
121 }
122 impl_writeable_tlv_based!(StaticPaymentOutputDescriptor, {
123         (0, outpoint, required),
124         (2, output, required),
125         (4, channel_keys_id, required),
126         (6, channel_value_satoshis, required),
127 });
128
129 /// Describes the necessary information to spend a spendable output.
130 ///
131 /// When on-chain outputs are created by LDK (which our counterparty is not able to claim at any
132 /// point in the future) a [`SpendableOutputs`] event is generated which you must track and be able
133 /// to spend on-chain. The information needed to do this is provided in this enum, including the
134 /// outpoint describing which `txid` and output `index` is available, the full output which exists
135 /// at that `txid`/`index`, and any keys or other information required to sign.
136 ///
137 /// [`SpendableOutputs`]: crate::util::events::Event::SpendableOutputs
138 #[derive(Clone, Debug, PartialEq, Eq)]
139 pub enum SpendableOutputDescriptor {
140         /// An output to a script which was provided via [`SignerProvider`] directly, either from
141         /// [`get_destination_script`] or [`get_shutdown_scriptpubkey`], thus you should already
142         /// know how to spend it. No secret keys are provided as LDK was never given any key.
143         /// These may include outputs from a transaction punishing our counterparty or claiming an HTLC
144         /// on-chain using the payment preimage or after it has timed out.
145         ///
146         /// [`get_shutdown_scriptpubkey`]: SignerProvider::get_shutdown_scriptpubkey
147         /// [`get_destination_script`]: SignerProvider::get_shutdown_scriptpubkey
148         StaticOutput {
149                 /// The outpoint which is spendable.
150                 outpoint: OutPoint,
151                 /// The output which is referenced by the given outpoint.
152                 output: TxOut,
153         },
154         /// An output to a P2WSH script which can be spent with a single signature after an `OP_CSV`
155         /// delay.
156         ///
157         /// The witness in the spending input should be:
158         /// ```bitcoin
159         /// <BIP 143 signature> <empty vector> (MINIMALIF standard rule) <provided witnessScript>
160         /// ```
161         ///
162         /// Note that the `nSequence` field in the spending input must be set to
163         /// [`DelayedPaymentOutputDescriptor::to_self_delay`] (which means the transaction is not
164         /// broadcastable until at least [`DelayedPaymentOutputDescriptor::to_self_delay`] blocks after
165         /// the outpoint confirms, see [BIP
166         /// 68](https://github.com/bitcoin/bips/blob/master/bip-0068.mediawiki)). Also note that LDK
167         /// won't generate a [`SpendableOutputDescriptor`] until the corresponding block height
168         /// is reached.
169         ///
170         /// These are generally the result of a "revocable" output to us, spendable only by us unless
171         /// it is an output from an old state which we broadcast (which should never happen).
172         ///
173         /// To derive the delayed payment key which is used to sign this input, you must pass the
174         /// holder [`InMemorySigner::delayed_payment_base_key`] (i.e., the private key which corresponds to the
175         /// [`ChannelPublicKeys::delayed_payment_basepoint`] in [`EcdsaChannelSigner::pubkeys`]) and the provided
176         /// [`DelayedPaymentOutputDescriptor::per_commitment_point`] to [`chan_utils::derive_private_key`]. The public key can be
177         /// generated without the secret key using [`chan_utils::derive_public_key`] and only the
178         /// [`ChannelPublicKeys::delayed_payment_basepoint`] which appears in [`EcdsaChannelSigner::pubkeys`].
179         ///
180         /// To derive the [`DelayedPaymentOutputDescriptor::revocation_pubkey`] provided here (which is
181         /// used in the witness script generation), you must pass the counterparty
182         /// [`ChannelPublicKeys::revocation_basepoint`] (which appears in the call to
183         /// [`EcdsaChannelSigner::provide_channel_parameters`]) and the provided
184         /// [`DelayedPaymentOutputDescriptor::per_commitment_point`] to
185         /// [`chan_utils::derive_public_revocation_key`].
186         ///
187         /// The witness script which is hashed and included in the output `script_pubkey` may be
188         /// regenerated by passing the [`DelayedPaymentOutputDescriptor::revocation_pubkey`] (derived
189         /// as explained above), our delayed payment pubkey (derived as explained above), and the
190         /// [`DelayedPaymentOutputDescriptor::to_self_delay`] contained here to
191         /// [`chan_utils::get_revokeable_redeemscript`].
192         DelayedPaymentOutput(DelayedPaymentOutputDescriptor),
193         /// An output to a P2WPKH, spendable exclusively by our payment key (i.e., the private key
194         /// which corresponds to the `payment_point` in [`EcdsaChannelSigner::pubkeys`]). The witness
195         /// in the spending input is, thus, simply:
196         /// ```bitcoin
197         /// <BIP 143 signature> <payment key>
198         /// ```
199         ///
200         /// These are generally the result of our counterparty having broadcast the current state,
201         /// allowing us to claim the non-HTLC-encumbered outputs immediately.
202         StaticPaymentOutput(StaticPaymentOutputDescriptor),
203 }
204
205 impl_writeable_tlv_based_enum!(SpendableOutputDescriptor,
206         (0, StaticOutput) => {
207                 (0, outpoint, required),
208                 (2, output, required),
209         },
210 ;
211         (1, DelayedPaymentOutput),
212         (2, StaticPaymentOutput),
213 );
214
215 /// A trait to sign Lightning channel transactions as described in
216 /// [BOLT 3](https://github.com/lightning/bolts/blob/master/03-transactions.md).
217 ///
218 /// Signing services could be implemented on a hardware wallet and should implement signing
219 /// policies in order to be secure. Please refer to the [VLS Policy
220 /// Controls](https://gitlab.com/lightning-signer/validating-lightning-signer/-/blob/main/docs/policy-controls.md)
221 /// for an example of such policies.
222 pub trait EcdsaChannelSigner {
223         /// Gets the per-commitment point for a specific commitment number
224         ///
225         /// Note that the commitment number starts at `(1 << 48) - 1` and counts backwards.
226         fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey;
227         /// Gets the commitment secret for a specific commitment number as part of the revocation process
228         ///
229         /// An external signer implementation should error here if the commitment was already signed
230         /// and should refuse to sign it in the future.
231         ///
232         /// May be called more than once for the same index.
233         ///
234         /// Note that the commitment number starts at `(1 << 48) - 1` and counts backwards.
235         // TODO: return a Result so we can signal a validation error
236         fn release_commitment_secret(&self, idx: u64) -> [u8; 32];
237         /// Validate the counterparty's signatures on the holder commitment transaction and HTLCs.
238         ///
239         /// This is required in order for the signer to make sure that releasing a commitment
240         /// secret won't leave us without a broadcastable holder transaction.
241         /// Policy checks should be implemented in this function, including checking the amount
242         /// sent to us and checking the HTLCs.
243         ///
244         /// The preimages of outgoing HTLCs that were fulfilled since the last commitment are provided.
245         /// A validating signer should ensure that an HTLC output is removed only when the matching
246         /// preimage is provided, or when the value to holder is restored.
247         ///
248         /// Note that all the relevant preimages will be provided, but there may also be additional
249         /// irrelevant or duplicate preimages.
250         fn validate_holder_commitment(&self, holder_tx: &HolderCommitmentTransaction,
251                 preimages: Vec<PaymentPreimage>) -> Result<(), ()>;
252         /// Returns the holder's channel public keys and basepoints.
253         fn pubkeys(&self) -> &ChannelPublicKeys;
254         /// Returns an arbitrary identifier describing the set of keys which are provided back to you in
255         /// some [`SpendableOutputDescriptor`] types. This should be sufficient to identify this
256         /// [`EcdsaChannelSigner`] object uniquely and lookup or re-derive its keys.
257         fn channel_keys_id(&self) -> [u8; 32];
258         /// Create a signature for a counterparty's commitment transaction and associated HTLC transactions.
259         ///
260         /// Note that if signing fails or is rejected, the channel will be force-closed.
261         ///
262         /// Policy checks should be implemented in this function, including checking the amount
263         /// sent to us and checking the HTLCs.
264         ///
265         /// The preimages of outgoing HTLCs that were fulfilled since the last commitment are provided.
266         /// A validating signer should ensure that an HTLC output is removed only when the matching
267         /// preimage is provided, or when the value to holder is restored.
268         ///
269         /// Note that all the relevant preimages will be provided, but there may also be additional
270         /// irrelevant or duplicate preimages.
271         //
272         // TODO: Document the things someone using this interface should enforce before signing.
273         fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction,
274                 preimages: Vec<PaymentPreimage>, secp_ctx: &Secp256k1<secp256k1::All>
275         ) -> Result<(Signature, Vec<Signature>), ()>;
276         /// Validate the counterparty's revocation.
277         ///
278         /// This is required in order for the signer to make sure that the state has moved
279         /// forward and it is safe to sign the next counterparty commitment.
280         fn validate_counterparty_revocation(&self, idx: u64, secret: &SecretKey) -> Result<(), ()>;
281         /// Creates a signature for a holder's commitment transaction and its claiming HTLC transactions.
282         ///
283         /// This will be called
284         /// - with a non-revoked `commitment_tx`.
285         /// - with the latest `commitment_tx` when we initiate a force-close.
286         /// - with the previous `commitment_tx`, just to get claiming HTLC
287         ///   signatures, if we are reacting to a [`ChannelMonitor`]
288         ///   [replica](https://github.com/lightningdevkit/rust-lightning/blob/main/GLOSSARY.md#monitor-replicas)
289         ///   that decided to broadcast before it had been updated to the latest `commitment_tx`.
290         ///
291         /// This may be called multiple times for the same transaction.
292         ///
293         /// An external signer implementation should check that the commitment has not been revoked.
294         ///
295         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
296         // TODO: Document the things someone using this interface should enforce before signing.
297         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction,
298                 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
299         /// Same as [`sign_holder_commitment_and_htlcs`], but exists only for tests to get access to
300         /// holder commitment transactions which will be broadcasted later, after the channel has moved
301         /// on to a newer state. Thus, needs its own method as [`sign_holder_commitment_and_htlcs`] may
302         /// enforce that we only ever get called once.
303         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
304         fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction,
305                 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()>;
306         /// Create a signature for the given input in a transaction spending an HTLC transaction output
307         /// or a commitment transaction `to_local` output when our counterparty broadcasts an old state.
308         ///
309         /// A justice transaction may claim multiple outputs at the same time if timelocks are
310         /// similar, but only a signature for the input at index `input` should be signed for here.
311         /// It may be called multiple times for same output(s) if a fee-bump is needed with regards
312         /// to an upcoming timelock expiration.
313         ///
314         /// Amount is value of the output spent by this input, committed to in the BIP 143 signature.
315         ///
316         /// `per_commitment_key` is revocation secret which was provided by our counterparty when they
317         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
318         /// not allow the spending of any funds by itself (you need our holder `revocation_secret` to do
319         /// so).
320         fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64,
321                 per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>
322         ) -> Result<Signature, ()>;
323         /// Create a signature for the given input in a transaction spending a commitment transaction
324         /// HTLC output when our counterparty broadcasts an old state.
325         ///
326         /// A justice transaction may claim multiple outputs at the same time if timelocks are
327         /// similar, but only a signature for the input at index `input` should be signed for here.
328         /// It may be called multiple times for same output(s) if a fee-bump is needed with regards
329         /// to an upcoming timelock expiration.
330         ///
331         /// `amount` is the value of the output spent by this input, committed to in the BIP 143
332         /// signature.
333         ///
334         /// `per_commitment_key` is revocation secret which was provided by our counterparty when they
335         /// revoked the state which they eventually broadcast. It's not a _holder_ secret key and does
336         /// not allow the spending of any funds by itself (you need our holder revocation_secret to do
337         /// so).
338         ///
339         /// `htlc` holds HTLC elements (hash, timelock), thus changing the format of the witness script
340         /// (which is committed to in the BIP 143 signatures).
341         fn sign_justice_revoked_htlc(&self, justice_tx: &Transaction, input: usize, amount: u64,
342                 per_commitment_key: &SecretKey, htlc: &HTLCOutputInCommitment,
343                 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
344         #[cfg(anchors)]
345         /// Computes the signature for a commitment transaction's HTLC output used as an input within
346         /// `htlc_tx`, which spends the commitment transaction at index `input`. The signature returned
347         /// must be be computed using [`EcdsaSighashType::All`]. Note that this should only be used to
348         /// sign HTLC transactions from channels supporting anchor outputs after all additional
349         /// inputs/outputs have been added to the transaction.
350         ///
351         /// [`EcdsaSighashType::All`]: bitcoin::blockdata::transaction::EcdsaSighashType::All
352         fn sign_holder_htlc_transaction(&self, htlc_tx: &Transaction, input: usize,
353                 htlc_descriptor: &HTLCDescriptor, secp_ctx: &Secp256k1<secp256k1::All>
354         ) -> Result<Signature, ()>;
355         /// Create a signature for a claiming transaction for a HTLC output on a counterparty's commitment
356         /// transaction, either offered or received.
357         ///
358         /// Such a transaction may claim multiples offered outputs at same time if we know the
359         /// preimage for each when we create it, but only the input at index `input` should be
360         /// signed for here. It may be called multiple times for same output(s) if a fee-bump is
361         /// needed with regards to an upcoming timelock expiration.
362         ///
363         /// `witness_script` is either an offered or received script as defined in BOLT3 for HTLC
364         /// outputs.
365         ///
366         /// `amount` is value of the output spent by this input, committed to in the BIP 143 signature.
367         ///
368         /// `per_commitment_point` is the dynamic point corresponding to the channel state
369         /// detected onchain. It has been generated by our counterparty and is used to derive
370         /// channel state keys, which are then included in the witness script and committed to in the
371         /// BIP 143 signature.
372         fn sign_counterparty_htlc_transaction(&self, htlc_tx: &Transaction, input: usize, amount: u64,
373                 per_commitment_point: &PublicKey, htlc: &HTLCOutputInCommitment,
374                 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
375         /// Create a signature for a (proposed) closing transaction.
376         ///
377         /// Note that, due to rounding, there may be one "missing" satoshi, and either party may have
378         /// chosen to forgo their output as dust.
379         fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction,
380                 secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()>;
381         /// Computes the signature for a commitment transaction's anchor output used as an
382         /// input within `anchor_tx`, which spends the commitment transaction, at index `input`.
383         fn sign_holder_anchor_input(
384                 &self, anchor_tx: &Transaction, input: usize, secp_ctx: &Secp256k1<secp256k1::All>,
385         ) -> Result<Signature, ()>;
386         /// Signs a channel announcement message with our funding key proving it comes from one of the
387         /// channel participants.
388         ///
389         /// Channel announcements also require a signature from each node's network key. Our node
390         /// signature is computed through [`NodeSigner::sign_gossip_message`].
391         ///
392         /// Note that if this fails or is rejected, the channel will not be publicly announced and
393         /// our counterparty may (though likely will not) close the channel on us for violating the
394         /// protocol.
395         fn sign_channel_announcement_with_funding_key(
396                 &self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>
397         ) -> Result<Signature, ()>;
398         /// Set the counterparty static channel data, including basepoints,
399         /// `counterparty_selected`/`holder_selected_contest_delay` and funding outpoint.
400         ///
401         /// This data is static, and will never change for a channel once set. For a given [`EcdsaChannelSigner`]
402         /// instance, LDK will call this method exactly once - either immediately after construction
403         /// (not including if done via [`SignerProvider::read_chan_signer`]) or when the funding
404         /// information has been generated.
405         ///
406         /// channel_parameters.is_populated() MUST be true.
407         fn provide_channel_parameters(&mut self, channel_parameters: &ChannelTransactionParameters);
408 }
409
410 /// A writeable signer.
411 ///
412 /// There will always be two instances of a signer per channel, one occupied by the
413 /// [`ChannelManager`] and another by the channel's [`ChannelMonitor`].
414 ///
415 /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
416 /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
417 pub trait Sign: EcdsaChannelSigner + Writeable {}
418
419 /// Specifies the recipient of an invoice.
420 ///
421 /// This indicates to [`NodeSigner::sign_invoice`] what node secret key should be used to sign
422 /// the invoice.
423 pub enum Recipient {
424         /// The invoice should be signed with the local node secret key.
425         Node,
426         /// The invoice should be signed with the phantom node secret key. This secret key must be the
427         /// same for all nodes participating in the [phantom node payment].
428         ///
429         /// [phantom node payment]: PhantomKeysManager
430         PhantomNode,
431 }
432
433 /// A trait that describes a source of entropy.
434 pub trait EntropySource {
435         /// Gets a unique, cryptographically-secure, random 32-byte value. This method must return a
436         /// different value each time it is called.
437         fn get_secure_random_bytes(&self) -> [u8; 32];
438 }
439
440 /// A trait that can handle cryptographic operations at the scope level of a node.
441 pub trait NodeSigner {
442         /// Get secret key material as bytes for use in encrypting and decrypting inbound payment data.
443         ///
444         /// If the implementor of this trait supports [phantom node payments], then every node that is
445         /// intended to be included in the phantom invoice route hints must return the same value from
446         /// this method.
447         // This is because LDK avoids storing inbound payment data by encrypting payment data in the
448         // payment hash and/or payment secret, therefore for a payment to be receivable by multiple
449         // nodes, they must share the key that encrypts this payment data.
450         ///
451         /// This method must return the same value each time it is called.
452         ///
453         /// [phantom node payments]: PhantomKeysManager
454         fn get_inbound_payment_key_material(&self) -> KeyMaterial;
455
456         /// Get node id based on the provided [`Recipient`].
457         ///
458         /// This method must return the same value each time it is called with a given [`Recipient`]
459         /// parameter.
460         ///
461         /// Errors if the [`Recipient`] variant is not supported by the implementation.
462         fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()>;
463
464         /// Gets the ECDH shared secret of our node secret and `other_key`, multiplying by `tweak` if
465         /// one is provided. Note that this tweak can be applied to `other_key` instead of our node
466         /// secret, though this is less efficient.
467         ///
468         /// Note that if this fails while attempting to forward an HTLC, LDK will panic. The error
469         /// should be resolved to allow LDK to resume forwarding HTLCs.
470         ///
471         /// Errors if the [`Recipient`] variant is not supported by the implementation.
472         fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()>;
473
474         /// Sign an invoice.
475         ///
476         /// By parameterizing by the raw invoice bytes instead of the hash, we allow implementors of
477         /// this trait to parse the invoice and make sure they're signing what they expect, rather than
478         /// blindly signing the hash.
479         ///
480         /// The `hrp_bytes` are ASCII bytes, while the `invoice_data` is base32.
481         ///
482         /// The secret key used to sign the invoice is dependent on the [`Recipient`].
483         ///
484         /// Errors if the [`Recipient`] variant is not supported by the implementation.
485         fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()>;
486
487         /// Sign a gossip message.
488         ///
489         /// Note that if this fails, LDK may panic and the message will not be broadcast to the network
490         /// or a possible channel counterparty. If LDK panics, the error should be resolved to allow the
491         /// message to be broadcast, as otherwise it may prevent one from receiving funds over the
492         /// corresponding channel.
493         fn sign_gossip_message(&self, msg: UnsignedGossipMessage) -> Result<Signature, ()>;
494 }
495
496 /// A trait that can return signer instances for individual channels.
497 pub trait SignerProvider {
498         /// A type which implements [`Sign`] which will be returned by [`Self::derive_channel_signer`].
499         type Signer : Sign;
500
501         /// Generates a unique `channel_keys_id` that can be used to obtain a [`Self::Signer`] through
502         /// [`SignerProvider::derive_channel_signer`]. The `user_channel_id` is provided to allow
503         /// implementations of [`SignerProvider`] to maintain a mapping between itself and the generated
504         /// `channel_keys_id`.
505         ///
506         /// This method must return a different value each time it is called.
507         fn generate_channel_keys_id(&self, inbound: bool, channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32];
508
509         /// Derives the private key material backing a `Signer`.
510         ///
511         /// To derive a new `Signer`, a fresh `channel_keys_id` should be obtained through
512         /// [`SignerProvider::generate_channel_keys_id`]. Otherwise, an existing `Signer` can be
513         /// re-derived from its `channel_keys_id`, which can be obtained through its trait method
514         /// [`EcdsaChannelSigner::channel_keys_id`].
515         fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer;
516
517         /// Reads a [`Signer`] for this [`SignerProvider`] from the given input stream.
518         /// This is only called during deserialization of other objects which contain
519         /// [`Sign`]-implementing objects (i.e., [`ChannelMonitor`]s and [`ChannelManager`]s).
520         /// The bytes are exactly those which `<Self::Signer as Writeable>::write()` writes, and
521         /// contain no versioning scheme. You may wish to include your own version prefix and ensure
522         /// you've read all of the provided bytes to ensure no corruption occurred.
523         ///
524         /// This method is slowly being phased out -- it will only be called when reading objects
525         /// written by LDK versions prior to 0.0.113.
526         ///
527         /// [`Signer`]: Self::Signer
528         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
529         /// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager
530         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError>;
531
532         /// Get a script pubkey which we send funds to when claiming on-chain contestable outputs.
533         ///
534         /// This method should return a different value each time it is called, to avoid linking
535         /// on-chain funds across channels as controlled to the same user.
536         fn get_destination_script(&self) -> Script;
537
538         /// Get a script pubkey which we will send funds to when closing a channel.
539         ///
540         /// This method should return a different value each time it is called, to avoid linking
541         /// on-chain funds across channels as controlled to the same user.
542         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript;
543 }
544
545 #[derive(Clone)]
546 /// A simple implementation of [`Sign`] that just keeps the private keys in memory.
547 ///
548 /// This implementation performs no policy checks and is insufficient by itself as
549 /// a secure external signer.
550 pub struct InMemorySigner {
551         /// Holder secret key in the 2-of-2 multisig script of a channel. This key also backs the
552         /// holder's anchor output in a commitment transaction, if one is present.
553         pub funding_key: SecretKey,
554         /// Holder secret key for blinded revocation pubkey.
555         pub revocation_base_key: SecretKey,
556         /// Holder secret key used for our balance in counterparty-broadcasted commitment transactions.
557         pub payment_key: SecretKey,
558         /// Holder secret key used in an HTLC transaction.
559         pub delayed_payment_base_key: SecretKey,
560         /// Holder HTLC secret key used in commitment transaction HTLC outputs.
561         pub htlc_base_key: SecretKey,
562         /// Commitment seed.
563         pub commitment_seed: [u8; 32],
564         /// Holder public keys and basepoints.
565         pub(crate) holder_channel_pubkeys: ChannelPublicKeys,
566         /// Counterparty public keys and counterparty/holder `selected_contest_delay`, populated on channel acceptance.
567         channel_parameters: Option<ChannelTransactionParameters>,
568         /// The total value of this channel.
569         channel_value_satoshis: u64,
570         /// Key derivation parameters.
571         channel_keys_id: [u8; 32],
572 }
573
574 impl InMemorySigner {
575         /// Creates a new [`InMemorySigner`].
576         pub fn new<C: Signing>(
577                 secp_ctx: &Secp256k1<C>,
578                 funding_key: SecretKey,
579                 revocation_base_key: SecretKey,
580                 payment_key: SecretKey,
581                 delayed_payment_base_key: SecretKey,
582                 htlc_base_key: SecretKey,
583                 commitment_seed: [u8; 32],
584                 channel_value_satoshis: u64,
585                 channel_keys_id: [u8; 32],
586         ) -> InMemorySigner {
587                 let holder_channel_pubkeys =
588                         InMemorySigner::make_holder_keys(secp_ctx, &funding_key, &revocation_base_key,
589                                 &payment_key, &delayed_payment_base_key,
590                                 &htlc_base_key);
591                 InMemorySigner {
592                         funding_key,
593                         revocation_base_key,
594                         payment_key,
595                         delayed_payment_base_key,
596                         htlc_base_key,
597                         commitment_seed,
598                         channel_value_satoshis,
599                         holder_channel_pubkeys,
600                         channel_parameters: None,
601                         channel_keys_id,
602                 }
603         }
604
605         fn make_holder_keys<C: Signing>(secp_ctx: &Secp256k1<C>,
606                         funding_key: &SecretKey,
607                         revocation_base_key: &SecretKey,
608                         payment_key: &SecretKey,
609                         delayed_payment_base_key: &SecretKey,
610                         htlc_base_key: &SecretKey) -> ChannelPublicKeys {
611                 let from_secret = |s: &SecretKey| PublicKey::from_secret_key(secp_ctx, s);
612                 ChannelPublicKeys {
613                         funding_pubkey: from_secret(&funding_key),
614                         revocation_basepoint: from_secret(&revocation_base_key),
615                         payment_point: from_secret(&payment_key),
616                         delayed_payment_basepoint: from_secret(&delayed_payment_base_key),
617                         htlc_basepoint: from_secret(&htlc_base_key),
618                 }
619         }
620
621         /// Returns the counterparty's pubkeys.
622         ///
623         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
624         pub fn counterparty_pubkeys(&self) -> &ChannelPublicKeys { &self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().pubkeys }
625         /// Returns the `contest_delay` value specified by our counterparty and applied on holder-broadcastable
626         /// transactions, i.e., the amount of time that we have to wait to recover our funds if we
627         /// broadcast a transaction.
628         ///
629         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
630         pub fn counterparty_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().counterparty_parameters.as_ref().unwrap().selected_contest_delay }
631         /// Returns the `contest_delay` value specified by us and applied on transactions broadcastable
632         /// by our counterparty, i.e., the amount of time that they have to wait to recover their funds
633         /// if they broadcast a transaction.
634         ///
635         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
636         pub fn holder_selected_contest_delay(&self) -> u16 { self.get_channel_parameters().holder_selected_contest_delay }
637         /// Returns whether the holder is the initiator.
638         ///
639         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
640         pub fn is_outbound(&self) -> bool { self.get_channel_parameters().is_outbound_from_holder }
641         /// Funding outpoint
642         ///
643         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
644         pub fn funding_outpoint(&self) -> &OutPoint { self.get_channel_parameters().funding_outpoint.as_ref().unwrap() }
645         /// Returns a [`ChannelTransactionParameters`] for this channel, to be used when verifying or
646         /// building transactions.
647         ///
648         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
649         pub fn get_channel_parameters(&self) -> &ChannelTransactionParameters {
650                 self.channel_parameters.as_ref().unwrap()
651         }
652         /// Returns whether anchors should be used.
653         ///
654         /// Will panic if [`EcdsaChannelSigner::provide_channel_parameters`] has not been called before.
655         pub fn opt_anchors(&self) -> bool {
656                 self.get_channel_parameters().opt_anchors.is_some()
657         }
658         /// Sign the single input of `spend_tx` at index `input_idx`, which spends the output described
659         /// by `descriptor`, returning the witness stack for the input.
660         ///
661         /// Returns an error if the input at `input_idx` does not exist, has a non-empty `script_sig`,
662         /// is not spending the outpoint described by [`descriptor.outpoint`],
663         /// or if an output descriptor `script_pubkey` does not match the one we can spend.
664         ///
665         /// [`descriptor.outpoint`]: StaticPaymentOutputDescriptor::outpoint
666         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>>, ()> {
667                 // TODO: We really should be taking the SigHashCache as a parameter here instead of
668                 // spend_tx, but ideally the SigHashCache would expose the transaction's inputs read-only
669                 // so that we can check them. This requires upstream rust-bitcoin changes (as well as
670                 // bindings updates to support SigHashCache objects).
671                 if spend_tx.input.len() <= input_idx { return Err(()); }
672                 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
673                 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
674
675                 let remotepubkey = self.pubkeys().payment_point;
676                 let witness_script = bitcoin::Address::p2pkh(&::bitcoin::PublicKey{compressed: true, inner: remotepubkey}, Network::Testnet).script_pubkey();
677                 let sighash = hash_to_message!(&sighash::SighashCache::new(spend_tx).segwit_signature_hash(input_idx, &witness_script, descriptor.output.value, EcdsaSighashType::All).unwrap()[..]);
678                 let remotesig = sign(secp_ctx, &sighash, &self.payment_key);
679                 let payment_script = bitcoin::Address::p2wpkh(&::bitcoin::PublicKey{compressed: true, inner: remotepubkey}, Network::Bitcoin).unwrap().script_pubkey();
680
681                 if payment_script != descriptor.output.script_pubkey { return Err(()); }
682
683                 let mut witness = Vec::with_capacity(2);
684                 witness.push(remotesig.serialize_der().to_vec());
685                 witness[0].push(EcdsaSighashType::All as u8);
686                 witness.push(remotepubkey.serialize().to_vec());
687                 Ok(witness)
688         }
689
690         /// Sign the single input of `spend_tx` at index `input_idx` which spends the output
691         /// described by `descriptor`, returning the witness stack for the input.
692         ///
693         /// Returns an error if the input at `input_idx` does not exist, has a non-empty `script_sig`,
694         /// is not spending the outpoint described by [`descriptor.outpoint`], does not have a
695         /// sequence set to [`descriptor.to_self_delay`], or if an output descriptor
696         /// `script_pubkey` does not match the one we can spend.
697         ///
698         /// [`descriptor.outpoint`]: DelayedPaymentOutputDescriptor::outpoint
699         /// [`descriptor.to_self_delay`]: DelayedPaymentOutputDescriptor::to_self_delay
700         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>>, ()> {
701                 // TODO: We really should be taking the SigHashCache as a parameter here instead of
702                 // spend_tx, but ideally the SigHashCache would expose the transaction's inputs read-only
703                 // so that we can check them. This requires upstream rust-bitcoin changes (as well as
704                 // bindings updates to support SigHashCache objects).
705                 if spend_tx.input.len() <= input_idx { return Err(()); }
706                 if !spend_tx.input[input_idx].script_sig.is_empty() { return Err(()); }
707                 if spend_tx.input[input_idx].previous_output != descriptor.outpoint.into_bitcoin_outpoint() { return Err(()); }
708                 if spend_tx.input[input_idx].sequence.0 != descriptor.to_self_delay as u32 { return Err(()); }
709
710                 let delayed_payment_key = chan_utils::derive_private_key(&secp_ctx, &descriptor.per_commitment_point, &self.delayed_payment_base_key);
711                 let delayed_payment_pubkey = PublicKey::from_secret_key(&secp_ctx, &delayed_payment_key);
712                 let witness_script = chan_utils::get_revokeable_redeemscript(&descriptor.revocation_pubkey, descriptor.to_self_delay, &delayed_payment_pubkey);
713                 let sighash = hash_to_message!(&sighash::SighashCache::new(spend_tx).segwit_signature_hash(input_idx, &witness_script, descriptor.output.value, EcdsaSighashType::All).unwrap()[..]);
714                 let local_delayedsig = sign(secp_ctx, &sighash, &delayed_payment_key);
715                 let payment_script = bitcoin::Address::p2wsh(&witness_script, Network::Bitcoin).script_pubkey();
716
717                 if descriptor.output.script_pubkey != payment_script { return Err(()); }
718
719                 let mut witness = Vec::with_capacity(3);
720                 witness.push(local_delayedsig.serialize_der().to_vec());
721                 witness[0].push(EcdsaSighashType::All as u8);
722                 witness.push(vec!()); //MINIMALIF
723                 witness.push(witness_script.clone().into_bytes());
724                 Ok(witness)
725         }
726 }
727
728 impl EcdsaChannelSigner for InMemorySigner {
729         fn get_per_commitment_point(&self, idx: u64, secp_ctx: &Secp256k1<secp256k1::All>) -> PublicKey {
730                 let commitment_secret = SecretKey::from_slice(&chan_utils::build_commitment_secret(&self.commitment_seed, idx)).unwrap();
731                 PublicKey::from_secret_key(secp_ctx, &commitment_secret)
732         }
733
734         fn release_commitment_secret(&self, idx: u64) -> [u8; 32] {
735                 chan_utils::build_commitment_secret(&self.commitment_seed, idx)
736         }
737
738         fn validate_holder_commitment(&self, _holder_tx: &HolderCommitmentTransaction, _preimages: Vec<PaymentPreimage>) -> Result<(), ()> {
739                 Ok(())
740         }
741
742         fn pubkeys(&self) -> &ChannelPublicKeys { &self.holder_channel_pubkeys }
743
744         fn channel_keys_id(&self) -> [u8; 32] { self.channel_keys_id }
745
746         fn sign_counterparty_commitment(&self, commitment_tx: &CommitmentTransaction, _preimages: Vec<PaymentPreimage>, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
747                 let trusted_tx = commitment_tx.trust();
748                 let keys = trusted_tx.keys();
749
750                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
751                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
752
753                 let built_tx = trusted_tx.built_transaction();
754                 let commitment_sig = built_tx.sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx);
755                 let commitment_txid = built_tx.txid;
756
757                 let mut htlc_sigs = Vec::with_capacity(commitment_tx.htlcs().len());
758                 for htlc in commitment_tx.htlcs() {
759                         let channel_parameters = self.get_channel_parameters();
760                         let htlc_tx = chan_utils::build_htlc_transaction(&commitment_txid, commitment_tx.feerate_per_kw(), self.holder_selected_contest_delay(), htlc, self.opt_anchors(), channel_parameters.opt_non_zero_fee_anchors.is_some(), &keys.broadcaster_delayed_payment_key, &keys.revocation_key);
761                         let htlc_redeemscript = chan_utils::get_htlc_redeemscript(&htlc, self.opt_anchors(), &keys);
762                         let htlc_sighashtype = if self.opt_anchors() { EcdsaSighashType::SinglePlusAnyoneCanPay } else { EcdsaSighashType::All };
763                         let htlc_sighash = hash_to_message!(&sighash::SighashCache::new(&htlc_tx).segwit_signature_hash(0, &htlc_redeemscript, htlc.amount_msat / 1000, htlc_sighashtype).unwrap()[..]);
764                         let holder_htlc_key = chan_utils::derive_private_key(&secp_ctx, &keys.per_commitment_point, &self.htlc_base_key);
765                         htlc_sigs.push(sign(secp_ctx, &htlc_sighash, &holder_htlc_key));
766                 }
767
768                 Ok((commitment_sig, htlc_sigs))
769         }
770
771         fn validate_counterparty_revocation(&self, _idx: u64, _secret: &SecretKey) -> Result<(), ()> {
772                 Ok(())
773         }
774
775         fn sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
776                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
777                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
778                 let trusted_tx = commitment_tx.trust();
779                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
780                 let channel_parameters = self.get_channel_parameters();
781                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
782                 Ok((sig, htlc_sigs))
783         }
784
785         #[cfg(any(test,feature = "unsafe_revoked_tx_signing"))]
786         fn unsafe_sign_holder_commitment_and_htlcs(&self, commitment_tx: &HolderCommitmentTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<(Signature, Vec<Signature>), ()> {
787                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
788                 let funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
789                 let trusted_tx = commitment_tx.trust();
790                 let sig = trusted_tx.built_transaction().sign(&self.funding_key, &funding_redeemscript, self.channel_value_satoshis, secp_ctx);
791                 let channel_parameters = self.get_channel_parameters();
792                 let htlc_sigs = trusted_tx.get_htlc_sigs(&self.htlc_base_key, &channel_parameters.as_holder_broadcastable(), secp_ctx)?;
793                 Ok((sig, htlc_sigs))
794         }
795
796         fn sign_justice_revoked_output(&self, justice_tx: &Transaction, input: usize, amount: u64, per_commitment_key: &SecretKey, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
797                 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key);
798                 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
799                 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
800                 let witness_script = {
801                         let counterparty_delayedpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().delayed_payment_basepoint);
802                         chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.holder_selected_contest_delay(), &counterparty_delayedpubkey)
803                 };
804                 let mut sighash_parts = sighash::SighashCache::new(justice_tx);
805                 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
806                 return Ok(sign(secp_ctx, &sighash, &revocation_key))
807         }
808
809         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, ()> {
810                 let revocation_key = chan_utils::derive_private_revocation_key(&secp_ctx, &per_commitment_key, &self.revocation_base_key);
811                 let per_commitment_point = PublicKey::from_secret_key(secp_ctx, &per_commitment_key);
812                 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
813                 let witness_script = {
814                         let counterparty_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint);
815                         let holder_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint);
816                         chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &holder_htlcpubkey, &revocation_pubkey)
817                 };
818                 let mut sighash_parts = sighash::SighashCache::new(justice_tx);
819                 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
820                 return Ok(sign(secp_ctx, &sighash, &revocation_key))
821         }
822
823         #[cfg(anchors)]
824         fn sign_holder_htlc_transaction(
825                 &self, htlc_tx: &Transaction, input: usize, htlc_descriptor: &HTLCDescriptor,
826                 secp_ctx: &Secp256k1<secp256k1::All>
827         ) -> Result<Signature, ()> {
828                 let per_commitment_point = self.get_per_commitment_point(
829                         htlc_descriptor.per_commitment_number, &secp_ctx
830                 );
831                 let witness_script = htlc_descriptor.witness_script(&per_commitment_point, secp_ctx);
832                 let sighash = &sighash::SighashCache::new(&*htlc_tx).segwit_signature_hash(
833                         input, &witness_script, htlc_descriptor.htlc.amount_msat / 1000, EcdsaSighashType::All
834                 ).map_err(|_| ())?;
835                 let our_htlc_private_key = chan_utils::derive_private_key(
836                         &secp_ctx, &per_commitment_point, &self.htlc_base_key
837                 );
838                 Ok(sign(&secp_ctx, &hash_to_message!(sighash), &our_htlc_private_key))
839         }
840
841         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, ()> {
842                 let htlc_key = chan_utils::derive_private_key(&secp_ctx, &per_commitment_point, &self.htlc_base_key);
843                 let revocation_pubkey = chan_utils::derive_public_revocation_key(&secp_ctx, &per_commitment_point, &self.pubkeys().revocation_basepoint);
844                 let counterparty_htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.counterparty_pubkeys().htlc_basepoint);
845                 let htlcpubkey = chan_utils::derive_public_key(&secp_ctx, &per_commitment_point, &self.pubkeys().htlc_basepoint);
846                 let witness_script = chan_utils::get_htlc_redeemscript_with_explicit_keys(&htlc, self.opt_anchors(), &counterparty_htlcpubkey, &htlcpubkey, &revocation_pubkey);
847                 let mut sighash_parts = sighash::SighashCache::new(htlc_tx);
848                 let sighash = hash_to_message!(&sighash_parts.segwit_signature_hash(input, &witness_script, amount, EcdsaSighashType::All).unwrap()[..]);
849                 Ok(sign(secp_ctx, &sighash, &htlc_key))
850         }
851
852         fn sign_closing_transaction(&self, closing_tx: &ClosingTransaction, secp_ctx: &Secp256k1<secp256k1::All>) -> Result<Signature, ()> {
853                 let funding_pubkey = PublicKey::from_secret_key(secp_ctx, &self.funding_key);
854                 let channel_funding_redeemscript = make_funding_redeemscript(&funding_pubkey, &self.counterparty_pubkeys().funding_pubkey);
855                 Ok(closing_tx.trust().sign(&self.funding_key, &channel_funding_redeemscript, self.channel_value_satoshis, secp_ctx))
856         }
857
858         fn sign_holder_anchor_input(
859                 &self, anchor_tx: &Transaction, input: usize, secp_ctx: &Secp256k1<secp256k1::All>,
860         ) -> Result<Signature, ()> {
861                 let witness_script = chan_utils::get_anchor_redeemscript(&self.holder_channel_pubkeys.funding_pubkey);
862                 let sighash = sighash::SighashCache::new(&*anchor_tx).segwit_signature_hash(
863                         input, &witness_script, ANCHOR_OUTPUT_VALUE_SATOSHI, EcdsaSighashType::All,
864                 ).unwrap();
865                 Ok(sign(secp_ctx, &hash_to_message!(&sighash[..]), &self.funding_key))
866         }
867
868         fn sign_channel_announcement_with_funding_key(
869                 &self, msg: &UnsignedChannelAnnouncement, secp_ctx: &Secp256k1<secp256k1::All>
870         ) -> Result<Signature, ()> {
871                 let msghash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
872                 Ok(sign(secp_ctx, &msghash, &self.funding_key))
873         }
874
875         fn provide_channel_parameters(&mut self, channel_parameters: &ChannelTransactionParameters) {
876                 assert!(self.channel_parameters.is_none() || self.channel_parameters.as_ref().unwrap() == channel_parameters);
877                 if self.channel_parameters.is_some() {
878                         // The channel parameters were already set and they match, return early.
879                         return;
880                 }
881                 assert!(channel_parameters.is_populated(), "Channel parameters must be fully populated");
882                 self.channel_parameters = Some(channel_parameters.clone());
883         }
884 }
885
886 const SERIALIZATION_VERSION: u8 = 1;
887
888 const MIN_SERIALIZATION_VERSION: u8 = 1;
889
890 impl Sign for InMemorySigner {}
891
892 impl Writeable for InMemorySigner {
893         fn write<W: Writer>(&self, writer: &mut W) -> Result<(), Error> {
894                 write_ver_prefix!(writer, SERIALIZATION_VERSION, MIN_SERIALIZATION_VERSION);
895
896                 self.funding_key.write(writer)?;
897                 self.revocation_base_key.write(writer)?;
898                 self.payment_key.write(writer)?;
899                 self.delayed_payment_base_key.write(writer)?;
900                 self.htlc_base_key.write(writer)?;
901                 self.commitment_seed.write(writer)?;
902                 self.channel_parameters.write(writer)?;
903                 self.channel_value_satoshis.write(writer)?;
904                 self.channel_keys_id.write(writer)?;
905
906                 write_tlv_fields!(writer, {});
907
908                 Ok(())
909         }
910 }
911
912 impl Readable for InMemorySigner {
913         fn read<R: io::Read>(reader: &mut R) -> Result<Self, DecodeError> {
914                 let _ver = read_ver_prefix!(reader, SERIALIZATION_VERSION);
915
916                 let funding_key = Readable::read(reader)?;
917                 let revocation_base_key = Readable::read(reader)?;
918                 let payment_key = Readable::read(reader)?;
919                 let delayed_payment_base_key = Readable::read(reader)?;
920                 let htlc_base_key = Readable::read(reader)?;
921                 let commitment_seed = Readable::read(reader)?;
922                 let counterparty_channel_data = Readable::read(reader)?;
923                 let channel_value_satoshis = Readable::read(reader)?;
924                 let secp_ctx = Secp256k1::signing_only();
925                 let holder_channel_pubkeys =
926                         InMemorySigner::make_holder_keys(&secp_ctx, &funding_key, &revocation_base_key,
927                                  &payment_key, &delayed_payment_base_key, &htlc_base_key);
928                 let keys_id = Readable::read(reader)?;
929
930                 read_tlv_fields!(reader, {});
931
932                 Ok(InMemorySigner {
933                         funding_key,
934                         revocation_base_key,
935                         payment_key,
936                         delayed_payment_base_key,
937                         htlc_base_key,
938                         commitment_seed,
939                         channel_value_satoshis,
940                         holder_channel_pubkeys,
941                         channel_parameters: counterparty_channel_data,
942                         channel_keys_id: keys_id,
943                 })
944         }
945 }
946
947 /// Simple implementation of [`EntropySource`], [`NodeSigner`], and [`SignerProvider`] that takes a
948 /// 32-byte seed for use as a BIP 32 extended key and derives keys from that.
949 ///
950 /// Your `node_id` is seed/0'.
951 /// Unilateral closes may use seed/1'.
952 /// Cooperative closes may use seed/2'.
953 /// The two close keys may be needed to claim on-chain funds!
954 ///
955 /// This struct cannot be used for nodes that wish to support receiving phantom payments;
956 /// [`PhantomKeysManager`] must be used instead.
957 ///
958 /// Note that switching between this struct and [`PhantomKeysManager`] will invalidate any
959 /// previously issued invoices and attempts to pay previous invoices will fail.
960 pub struct KeysManager {
961         secp_ctx: Secp256k1<secp256k1::All>,
962         node_secret: SecretKey,
963         node_id: PublicKey,
964         inbound_payment_key: KeyMaterial,
965         destination_script: Script,
966         shutdown_pubkey: PublicKey,
967         channel_master_key: ExtendedPrivKey,
968         channel_child_index: AtomicUsize,
969
970         rand_bytes_master_key: ExtendedPrivKey,
971         rand_bytes_child_index: AtomicUsize,
972         rand_bytes_unique_start: Sha256State,
973
974         seed: [u8; 32],
975         starting_time_secs: u64,
976         starting_time_nanos: u32,
977 }
978
979 impl KeysManager {
980         /// Constructs a [`KeysManager`] from a 32-byte seed. If the seed is in some way biased (e.g.,
981         /// your CSRNG is busted) this may panic (but more importantly, you will possibly lose funds).
982         /// `starting_time` isn't strictly required to actually be a time, but it must absolutely,
983         /// without a doubt, be unique to this instance. ie if you start multiple times with the same
984         /// `seed`, `starting_time` must be unique to each run. Thus, the easiest way to achieve this
985         /// is to simply use the current time (with very high precision).
986         ///
987         /// The `seed` MUST be backed up safely prior to use so that the keys can be re-created, however,
988         /// obviously, `starting_time` should be unique every time you reload the library - it is only
989         /// used to generate new ephemeral key data (which will be stored by the individual channel if
990         /// necessary).
991         ///
992         /// Note that the seed is required to recover certain on-chain funds independent of
993         /// [`ChannelMonitor`] data, though a current copy of [`ChannelMonitor`] data is also required
994         /// for any channel, and some on-chain during-closing funds.
995         ///
996         /// [`ChannelMonitor`]: crate::chain::channelmonitor::ChannelMonitor
997         pub fn new(seed: &[u8; 32], starting_time_secs: u64, starting_time_nanos: u32) -> Self {
998                 let secp_ctx = Secp256k1::new();
999                 // Note that when we aren't serializing the key, network doesn't matter
1000                 match ExtendedPrivKey::new_master(Network::Testnet, seed) {
1001                         Ok(master_key) => {
1002                                 let node_secret = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(0).unwrap()).expect("Your RNG is busted").private_key;
1003                                 let node_id = PublicKey::from_secret_key(&secp_ctx, &node_secret);
1004                                 let destination_script = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(1).unwrap()) {
1005                                         Ok(destination_key) => {
1006                                                 let wpubkey_hash = WPubkeyHash::hash(&ExtendedPubKey::from_priv(&secp_ctx, &destination_key).to_pub().to_bytes());
1007                                                 Builder::new().push_opcode(opcodes::all::OP_PUSHBYTES_0)
1008                                                         .push_slice(&wpubkey_hash.into_inner())
1009                                                         .into_script()
1010                                         },
1011                                         Err(_) => panic!("Your RNG is busted"),
1012                                 };
1013                                 let shutdown_pubkey = match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(2).unwrap()) {
1014                                         Ok(shutdown_key) => ExtendedPubKey::from_priv(&secp_ctx, &shutdown_key).public_key,
1015                                         Err(_) => panic!("Your RNG is busted"),
1016                                 };
1017                                 let channel_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(3).unwrap()).expect("Your RNG is busted");
1018                                 let rand_bytes_master_key = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(4).unwrap()).expect("Your RNG is busted");
1019                                 let inbound_payment_key: SecretKey = master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(5).unwrap()).expect("Your RNG is busted").private_key;
1020                                 let mut inbound_pmt_key_bytes = [0; 32];
1021                                 inbound_pmt_key_bytes.copy_from_slice(&inbound_payment_key[..]);
1022
1023                                 let mut rand_bytes_unique_start = Sha256::engine();
1024                                 rand_bytes_unique_start.input(&starting_time_secs.to_be_bytes());
1025                                 rand_bytes_unique_start.input(&starting_time_nanos.to_be_bytes());
1026                                 rand_bytes_unique_start.input(seed);
1027
1028                                 let mut res = KeysManager {
1029                                         secp_ctx,
1030                                         node_secret,
1031                                         node_id,
1032                                         inbound_payment_key: KeyMaterial(inbound_pmt_key_bytes),
1033
1034                                         destination_script,
1035                                         shutdown_pubkey,
1036
1037                                         channel_master_key,
1038                                         channel_child_index: AtomicUsize::new(0),
1039
1040                                         rand_bytes_master_key,
1041                                         rand_bytes_child_index: AtomicUsize::new(0),
1042                                         rand_bytes_unique_start,
1043
1044                                         seed: *seed,
1045                                         starting_time_secs,
1046                                         starting_time_nanos,
1047                                 };
1048                                 let secp_seed = res.get_secure_random_bytes();
1049                                 res.secp_ctx.seeded_randomize(&secp_seed);
1050                                 res
1051                         },
1052                         Err(_) => panic!("Your rng is busted"),
1053                 }
1054         }
1055         /// Derive an old [`Sign`] containing per-channel secrets based on a key derivation parameters.
1056         pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemorySigner {
1057                 let chan_id = u64::from_be_bytes(params[0..8].try_into().unwrap());
1058                 let mut unique_start = Sha256::engine();
1059                 unique_start.input(params);
1060                 unique_start.input(&self.seed);
1061
1062                 // We only seriously intend to rely on the channel_master_key for true secure
1063                 // entropy, everything else just ensures uniqueness. We rely on the unique_start (ie
1064                 // starting_time provided in the constructor) to be unique.
1065                 let child_privkey = self.channel_master_key.ckd_priv(&self.secp_ctx,
1066                                 ChildNumber::from_hardened_idx((chan_id as u32) % (1 << 31)).expect("key space exhausted")
1067                         ).expect("Your RNG is busted");
1068                 unique_start.input(&child_privkey.private_key[..]);
1069
1070                 let seed = Sha256::from_engine(unique_start).into_inner();
1071
1072                 let commitment_seed = {
1073                         let mut sha = Sha256::engine();
1074                         sha.input(&seed);
1075                         sha.input(&b"commitment seed"[..]);
1076                         Sha256::from_engine(sha).into_inner()
1077                 };
1078                 macro_rules! key_step {
1079                         ($info: expr, $prev_key: expr) => {{
1080                                 let mut sha = Sha256::engine();
1081                                 sha.input(&seed);
1082                                 sha.input(&$prev_key[..]);
1083                                 sha.input(&$info[..]);
1084                                 SecretKey::from_slice(&Sha256::from_engine(sha).into_inner()).expect("SHA-256 is busted")
1085                         }}
1086                 }
1087                 let funding_key = key_step!(b"funding key", commitment_seed);
1088                 let revocation_base_key = key_step!(b"revocation base key", funding_key);
1089                 let payment_key = key_step!(b"payment key", revocation_base_key);
1090                 let delayed_payment_base_key = key_step!(b"delayed payment base key", payment_key);
1091                 let htlc_base_key = key_step!(b"HTLC base key", delayed_payment_base_key);
1092
1093                 InMemorySigner::new(
1094                         &self.secp_ctx,
1095                         funding_key,
1096                         revocation_base_key,
1097                         payment_key,
1098                         delayed_payment_base_key,
1099                         htlc_base_key,
1100                         commitment_seed,
1101                         channel_value_satoshis,
1102                         params.clone(),
1103                 )
1104         }
1105
1106         /// Creates a [`Transaction`] which spends the given descriptors to the given outputs, plus an
1107         /// output to the given change destination (if sufficient change value remains). The
1108         /// transaction will have a feerate, at least, of the given value.
1109         ///
1110         /// Returns `Err(())` if the output value is greater than the input value minus required fee,
1111         /// if a descriptor was duplicated, or if an output descriptor `script_pubkey`
1112         /// does not match the one we can spend.
1113         ///
1114         /// We do not enforce that outputs meet the dust limit or that any output scripts are standard.
1115         ///
1116         /// May panic if the [`SpendableOutputDescriptor`]s were not generated by channels which used
1117         /// this [`KeysManager`] or one of the [`InMemorySigner`] created by this [`KeysManager`].
1118         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, ()> {
1119                 let mut input = Vec::new();
1120                 let mut input_value = 0;
1121                 let mut witness_weight = 0;
1122                 let mut output_set = HashSet::with_capacity(descriptors.len());
1123                 for outp in descriptors {
1124                         match outp {
1125                                 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
1126                                         input.push(TxIn {
1127                                                 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
1128                                                 script_sig: Script::new(),
1129                                                 sequence: Sequence::ZERO,
1130                                                 witness: Witness::new(),
1131                                         });
1132                                         witness_weight += StaticPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
1133                                         input_value += descriptor.output.value;
1134                                         if !output_set.insert(descriptor.outpoint) { return Err(()); }
1135                                 },
1136                                 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
1137                                         input.push(TxIn {
1138                                                 previous_output: descriptor.outpoint.into_bitcoin_outpoint(),
1139                                                 script_sig: Script::new(),
1140                                                 sequence: Sequence(descriptor.to_self_delay as u32),
1141                                                 witness: Witness::new(),
1142                                         });
1143                                         witness_weight += DelayedPaymentOutputDescriptor::MAX_WITNESS_LENGTH;
1144                                         input_value += descriptor.output.value;
1145                                         if !output_set.insert(descriptor.outpoint) { return Err(()); }
1146                                 },
1147                                 SpendableOutputDescriptor::StaticOutput { ref outpoint, ref output } => {
1148                                         input.push(TxIn {
1149                                                 previous_output: outpoint.into_bitcoin_outpoint(),
1150                                                 script_sig: Script::new(),
1151                                                 sequence: Sequence::ZERO,
1152                                                 witness: Witness::new(),
1153                                         });
1154                                         witness_weight += 1 + 73 + 34;
1155                                         input_value += output.value;
1156                                         if !output_set.insert(*outpoint) { return Err(()); }
1157                                 }
1158                         }
1159                         if input_value > MAX_VALUE_MSAT / 1000 { return Err(()); }
1160                 }
1161                 let mut spend_tx = Transaction {
1162                         version: 2,
1163                         lock_time: PackedLockTime(0),
1164                         input,
1165                         output: outputs,
1166                 };
1167                 let expected_max_weight =
1168                         transaction_utils::maybe_add_change_output(&mut spend_tx, input_value, witness_weight, feerate_sat_per_1000_weight, change_destination_script)?;
1169
1170                 let mut keys_cache: Option<(InMemorySigner, [u8; 32])> = None;
1171                 let mut input_idx = 0;
1172                 for outp in descriptors {
1173                         match outp {
1174                                 SpendableOutputDescriptor::StaticPaymentOutput(descriptor) => {
1175                                         if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1176                                                 keys_cache = Some((
1177                                                         self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1178                                                         descriptor.channel_keys_id));
1179                                         }
1180                                         spend_tx.input[input_idx].witness = Witness::from_vec(keys_cache.as_ref().unwrap().0.sign_counterparty_payment_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?);
1181                                 },
1182                                 SpendableOutputDescriptor::DelayedPaymentOutput(descriptor) => {
1183                                         if keys_cache.is_none() || keys_cache.as_ref().unwrap().1 != descriptor.channel_keys_id {
1184                                                 keys_cache = Some((
1185                                                         self.derive_channel_keys(descriptor.channel_value_satoshis, &descriptor.channel_keys_id),
1186                                                         descriptor.channel_keys_id));
1187                                         }
1188                                         spend_tx.input[input_idx].witness = Witness::from_vec(keys_cache.as_ref().unwrap().0.sign_dynamic_p2wsh_input(&spend_tx, input_idx, &descriptor, &secp_ctx)?);
1189                                 },
1190                                 SpendableOutputDescriptor::StaticOutput { ref output, .. } => {
1191                                         let derivation_idx = if output.script_pubkey == self.destination_script {
1192                                                 1
1193                                         } else {
1194                                                 2
1195                                         };
1196                                         let secret = {
1197                                                 // Note that when we aren't serializing the key, network doesn't matter
1198                                                 match ExtendedPrivKey::new_master(Network::Testnet, &self.seed) {
1199                                                         Ok(master_key) => {
1200                                                                 match master_key.ckd_priv(&secp_ctx, ChildNumber::from_hardened_idx(derivation_idx).expect("key space exhausted")) {
1201                                                                         Ok(key) => key,
1202                                                                         Err(_) => panic!("Your RNG is busted"),
1203                                                                 }
1204                                                         }
1205                                                         Err(_) => panic!("Your rng is busted"),
1206                                                 }
1207                                         };
1208                                         let pubkey = ExtendedPubKey::from_priv(&secp_ctx, &secret).to_pub();
1209                                         if derivation_idx == 2 {
1210                                                 assert_eq!(pubkey.inner, self.shutdown_pubkey);
1211                                         }
1212                                         let witness_script = bitcoin::Address::p2pkh(&pubkey, Network::Testnet).script_pubkey();
1213                                         let payment_script = bitcoin::Address::p2wpkh(&pubkey, Network::Testnet).expect("uncompressed key found").script_pubkey();
1214
1215                                         if payment_script != output.script_pubkey { return Err(()); };
1216
1217                                         let sighash = hash_to_message!(&sighash::SighashCache::new(&spend_tx).segwit_signature_hash(input_idx, &witness_script, output.value, EcdsaSighashType::All).unwrap()[..]);
1218                                         let sig = sign(secp_ctx, &sighash, &secret.private_key);
1219                                         let mut sig_ser = sig.serialize_der().to_vec();
1220                                         sig_ser.push(EcdsaSighashType::All as u8);
1221                                         spend_tx.input[input_idx].witness.push(sig_ser);
1222                                         spend_tx.input[input_idx].witness.push(pubkey.inner.serialize().to_vec());
1223                                 },
1224                         }
1225                         input_idx += 1;
1226                 }
1227
1228                 debug_assert!(expected_max_weight >= spend_tx.weight());
1229                 // Note that witnesses with a signature vary somewhat in size, so allow
1230                 // `expected_max_weight` to overshoot by up to 3 bytes per input.
1231                 debug_assert!(expected_max_weight <= spend_tx.weight() + descriptors.len() * 3);
1232
1233                 Ok(spend_tx)
1234         }
1235 }
1236
1237 impl EntropySource for KeysManager {
1238         fn get_secure_random_bytes(&self) -> [u8; 32] {
1239                 let mut sha = self.rand_bytes_unique_start.clone();
1240
1241                 let child_ix = self.rand_bytes_child_index.fetch_add(1, Ordering::AcqRel);
1242                 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");
1243                 sha.input(&child_privkey.private_key[..]);
1244
1245                 sha.input(b"Unique Secure Random Bytes Salt");
1246                 Sha256::from_engine(sha).into_inner()
1247         }
1248 }
1249
1250 impl NodeSigner for KeysManager {
1251         fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()> {
1252                 match recipient {
1253                         Recipient::Node => Ok(self.node_id.clone()),
1254                         Recipient::PhantomNode => Err(())
1255                 }
1256         }
1257
1258         fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()> {
1259                 let mut node_secret = match recipient {
1260                         Recipient::Node => Ok(self.node_secret.clone()),
1261                         Recipient::PhantomNode => Err(())
1262                 }?;
1263                 if let Some(tweak) = tweak {
1264                         node_secret = node_secret.mul_tweak(tweak).map_err(|_| ())?;
1265                 }
1266                 Ok(SharedSecret::new(other_key, &node_secret))
1267         }
1268
1269         fn get_inbound_payment_key_material(&self) -> KeyMaterial {
1270                 self.inbound_payment_key.clone()
1271         }
1272
1273         fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()> {
1274                 let preimage = construct_invoice_preimage(&hrp_bytes, &invoice_data);
1275                 let secret = match recipient {
1276                         Recipient::Node => Ok(&self.node_secret),
1277                         Recipient::PhantomNode => Err(())
1278                 }?;
1279                 Ok(self.secp_ctx.sign_ecdsa_recoverable(&hash_to_message!(&Sha256::hash(&preimage)), secret))
1280         }
1281
1282         fn sign_gossip_message(&self, msg: UnsignedGossipMessage) -> Result<Signature, ()> {
1283                 let msg_hash = hash_to_message!(&Sha256dHash::hash(&msg.encode()[..])[..]);
1284                 Ok(sign(&self.secp_ctx, &msg_hash, &self.node_secret))
1285         }
1286 }
1287
1288 impl SignerProvider for KeysManager {
1289         type Signer = InMemorySigner;
1290
1291         fn generate_channel_keys_id(&self, _inbound: bool, _channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32] {
1292                 let child_idx = self.channel_child_index.fetch_add(1, Ordering::AcqRel);
1293                 // `child_idx` is the only thing guaranteed to make each channel unique without a restart
1294                 // (though `user_channel_id` should help, depending on user behavior). If it manages to
1295                 // roll over, we may generate duplicate keys for two different channels, which could result
1296                 // in loss of funds. Because we only support 32-bit+ systems, assert that our `AtomicUsize`
1297                 // doesn't reach `u32::MAX`.
1298                 assert!(child_idx < core::u32::MAX as usize, "2^32 channels opened without restart");
1299                 let mut id = [0; 32];
1300                 id[0..4].copy_from_slice(&(child_idx as u32).to_be_bytes());
1301                 id[4..8].copy_from_slice(&self.starting_time_nanos.to_be_bytes());
1302                 id[8..16].copy_from_slice(&self.starting_time_secs.to_be_bytes());
1303                 id[16..32].copy_from_slice(&user_channel_id.to_be_bytes());
1304                 id
1305         }
1306
1307         fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer {
1308                 self.derive_channel_keys(channel_value_satoshis, &channel_keys_id)
1309         }
1310
1311         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError> {
1312                 InMemorySigner::read(&mut io::Cursor::new(reader))
1313         }
1314
1315         fn get_destination_script(&self) -> Script {
1316                 self.destination_script.clone()
1317         }
1318
1319         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
1320                 ShutdownScript::new_p2wpkh_from_pubkey(self.shutdown_pubkey.clone())
1321         }
1322 }
1323
1324 /// Similar to [`KeysManager`], but allows the node using this struct to receive phantom node
1325 /// payments.
1326 ///
1327 /// A phantom node payment is a payment made to a phantom invoice, which is an invoice that can be
1328 /// paid to one of multiple nodes. This works because we encode the invoice route hints such that
1329 /// LDK will recognize an incoming payment as destined for a phantom node, and collect the payment
1330 /// itself without ever needing to forward to this fake node.
1331 ///
1332 /// Phantom node payments are useful for load balancing between multiple LDK nodes. They also
1333 /// provide some fault tolerance, because payers will automatically retry paying other provided
1334 /// nodes in the case that one node goes down.
1335 ///
1336 /// Note that multi-path payments are not supported in phantom invoices for security reasons.
1337 // In the hypothetical case that we did support MPP phantom payments, there would be no way for
1338 // nodes to know when the full payment has been received (and the preimage can be released) without
1339 // significantly compromising on our safety guarantees. I.e., if we expose the ability for the user
1340 // to tell LDK when the preimage can be released, we open ourselves to attacks where the preimage
1341 // is released too early.
1342 //
1343 /// Switching between this struct and [`KeysManager`] will invalidate any previously issued
1344 /// invoices and attempts to pay previous invoices will fail.
1345 pub struct PhantomKeysManager {
1346         inner: KeysManager,
1347         inbound_payment_key: KeyMaterial,
1348         phantom_secret: SecretKey,
1349         phantom_node_id: PublicKey,
1350 }
1351
1352 impl EntropySource for PhantomKeysManager {
1353         fn get_secure_random_bytes(&self) -> [u8; 32] {
1354                 self.inner.get_secure_random_bytes()
1355         }
1356 }
1357
1358 impl NodeSigner for PhantomKeysManager {
1359         fn get_node_id(&self, recipient: Recipient) -> Result<PublicKey, ()> {
1360                 match recipient {
1361                         Recipient::Node => self.inner.get_node_id(Recipient::Node),
1362                         Recipient::PhantomNode => Ok(self.phantom_node_id.clone()),
1363                 }
1364         }
1365
1366         fn ecdh(&self, recipient: Recipient, other_key: &PublicKey, tweak: Option<&Scalar>) -> Result<SharedSecret, ()> {
1367                 let mut node_secret = match recipient {
1368                         Recipient::Node => self.inner.node_secret.clone(),
1369                         Recipient::PhantomNode => self.phantom_secret.clone(),
1370                 };
1371                 if let Some(tweak) = tweak {
1372                         node_secret = node_secret.mul_tweak(tweak).map_err(|_| ())?;
1373                 }
1374                 Ok(SharedSecret::new(other_key, &node_secret))
1375         }
1376
1377         fn get_inbound_payment_key_material(&self) -> KeyMaterial {
1378                 self.inbound_payment_key.clone()
1379         }
1380
1381         fn sign_invoice(&self, hrp_bytes: &[u8], invoice_data: &[u5], recipient: Recipient) -> Result<RecoverableSignature, ()> {
1382                 let preimage = construct_invoice_preimage(&hrp_bytes, &invoice_data);
1383                 let secret = match recipient {
1384                         Recipient::Node => &self.inner.node_secret,
1385                         Recipient::PhantomNode => &self.phantom_secret,
1386                 };
1387                 Ok(self.inner.secp_ctx.sign_ecdsa_recoverable(&hash_to_message!(&Sha256::hash(&preimage)), secret))
1388         }
1389
1390         fn sign_gossip_message(&self, msg: UnsignedGossipMessage) -> Result<Signature, ()> {
1391                 self.inner.sign_gossip_message(msg)
1392         }
1393 }
1394
1395 impl SignerProvider for PhantomKeysManager {
1396         type Signer = InMemorySigner;
1397
1398         fn generate_channel_keys_id(&self, inbound: bool, channel_value_satoshis: u64, user_channel_id: u128) -> [u8; 32] {
1399                 self.inner.generate_channel_keys_id(inbound, channel_value_satoshis, user_channel_id)
1400         }
1401
1402         fn derive_channel_signer(&self, channel_value_satoshis: u64, channel_keys_id: [u8; 32]) -> Self::Signer {
1403                 self.inner.derive_channel_signer(channel_value_satoshis, channel_keys_id)
1404         }
1405
1406         fn read_chan_signer(&self, reader: &[u8]) -> Result<Self::Signer, DecodeError> {
1407                 self.inner.read_chan_signer(reader)
1408         }
1409
1410         fn get_destination_script(&self) -> Script {
1411                 self.inner.get_destination_script()
1412         }
1413
1414         fn get_shutdown_scriptpubkey(&self) -> ShutdownScript {
1415                 self.inner.get_shutdown_scriptpubkey()
1416         }
1417 }
1418
1419 impl PhantomKeysManager {
1420         /// Constructs a [`PhantomKeysManager`] given a 32-byte seed and an additional `cross_node_seed`
1421         /// that is shared across all nodes that intend to participate in [phantom node payments]
1422         /// together.
1423         ///
1424         /// See [`KeysManager::new`] for more information on `seed`, `starting_time_secs`, and
1425         /// `starting_time_nanos`.
1426         ///
1427         /// `cross_node_seed` must be the same across all phantom payment-receiving nodes and also the
1428         /// same across restarts, or else inbound payments may fail.
1429         ///
1430         /// [phantom node payments]: PhantomKeysManager
1431         pub fn new(seed: &[u8; 32], starting_time_secs: u64, starting_time_nanos: u32, cross_node_seed: &[u8; 32]) -> Self {
1432                 let inner = KeysManager::new(seed, starting_time_secs, starting_time_nanos);
1433                 let (inbound_key, phantom_key) = hkdf_extract_expand_twice(b"LDK Inbound and Phantom Payment Key Expansion", cross_node_seed);
1434                 let phantom_secret = SecretKey::from_slice(&phantom_key).unwrap();
1435                 let phantom_node_id = PublicKey::from_secret_key(&inner.secp_ctx, &phantom_secret);
1436                 Self {
1437                         inner,
1438                         inbound_payment_key: KeyMaterial(inbound_key),
1439                         phantom_secret,
1440                         phantom_node_id,
1441                 }
1442         }
1443
1444         /// See [`KeysManager::spend_spendable_outputs`] for documentation on this method.
1445         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, ()> {
1446                 self.inner.spend_spendable_outputs(descriptors, outputs, change_destination_script, feerate_sat_per_1000_weight, secp_ctx)
1447         }
1448
1449         /// See [`KeysManager::derive_channel_keys`] for documentation on this method.
1450         pub fn derive_channel_keys(&self, channel_value_satoshis: u64, params: &[u8; 32]) -> InMemorySigner {
1451                 self.inner.derive_channel_keys(channel_value_satoshis, params)
1452         }
1453 }
1454
1455 // Ensure that EcdsaChannelSigner can have a vtable
1456 #[test]
1457 pub fn dyn_sign() {
1458         let _signer: Box<dyn EcdsaChannelSigner>;
1459 }