2018-02-18 01:56:21 +03:00
|
|
|
package keychain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/rand"
|
|
|
|
"os"
|
|
|
|
"testing"
|
2018-03-27 00:11:40 +03:00
|
|
|
"time"
|
2018-02-18 01:56:21 +03:00
|
|
|
|
2018-12-10 05:30:59 +03:00
|
|
|
"github.com/btcsuite/btcd/btcec"
|
2018-06-05 04:34:16 +03:00
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
2020-01-24 13:08:28 +03:00
|
|
|
"github.com/btcsuite/btcwallet/snacl"
|
2018-06-05 04:34:16 +03:00
|
|
|
"github.com/btcsuite/btcwallet/waddrmgr"
|
|
|
|
"github.com/btcsuite/btcwallet/wallet"
|
|
|
|
"github.com/btcsuite/btcwallet/walletdb"
|
2018-08-14 05:20:57 +03:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2018-02-18 01:56:21 +03:00
|
|
|
|
2018-06-05 04:34:16 +03:00
|
|
|
_ "github.com/btcsuite/btcwallet/walletdb/bdb" // Required in order to create the default database.
|
2018-02-18 01:56:21 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// versionZeroKeyFamilies is a slice of all the known key families for first
|
|
|
|
// version of the key derivation schema defined in this package.
|
|
|
|
var versionZeroKeyFamilies = []KeyFamily{
|
|
|
|
KeyFamilyMultiSig,
|
|
|
|
KeyFamilyRevocationBase,
|
|
|
|
KeyFamilyHtlcBase,
|
|
|
|
KeyFamilyPaymentBase,
|
|
|
|
KeyFamilyDelayBase,
|
|
|
|
KeyFamilyRevocationRoot,
|
|
|
|
KeyFamilyNodeKey,
|
2020-07-04 04:39:22 +03:00
|
|
|
KeyFamilyStaticBackup,
|
|
|
|
KeyFamilyTowerSession,
|
|
|
|
KeyFamilyTowerID,
|
2018-02-18 01:56:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
testHDSeed = chainhash.Hash{
|
|
|
|
0xb7, 0x94, 0x38, 0x5f, 0x2d, 0x1e, 0xf7, 0xab,
|
|
|
|
0x4d, 0x92, 0x73, 0xd1, 0x90, 0x63, 0x81, 0xb4,
|
|
|
|
0x4f, 0x2f, 0x6f, 0x25, 0x98, 0xa3, 0xef, 0xb9,
|
|
|
|
0x69, 0x49, 0x18, 0x83, 0x31, 0x98, 0x47, 0x53,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-03-13 02:38:23 +03:00
|
|
|
func createTestBtcWallet(coinType uint32) (func(), *wallet.Wallet, error) {
|
2020-01-24 13:08:28 +03:00
|
|
|
// Instruct waddrmgr to use the cranked down scrypt parameters when
|
|
|
|
// creating new wallet encryption keys.
|
|
|
|
fastScrypt := waddrmgr.FastScryptOptions
|
|
|
|
keyGen := func(passphrase *[]byte, config *waddrmgr.ScryptOptions) (
|
|
|
|
*snacl.SecretKey, error) {
|
|
|
|
|
|
|
|
return snacl.NewSecretKey(
|
|
|
|
passphrase, fastScrypt.N, fastScrypt.R, fastScrypt.P,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
waddrmgr.SetSecretKeyGen(keyGen)
|
|
|
|
|
|
|
|
// Create a new test wallet that uses fast scrypt as KDF.
|
2018-02-18 01:56:21 +03:00
|
|
|
tempDir, err := ioutil.TempDir("", "keyring-lnwallet")
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2019-10-04 18:10:49 +03:00
|
|
|
loader := wallet.NewLoader(&chaincfg.SimNetParams, tempDir, true, 0)
|
2018-02-18 01:56:21 +03:00
|
|
|
|
|
|
|
pass := []byte("test")
|
|
|
|
|
2018-03-27 00:11:40 +03:00
|
|
|
baseWallet, err := loader.CreateNewWallet(
|
|
|
|
pass, pass, testHDSeed[:], time.Time{},
|
|
|
|
)
|
2018-02-18 01:56:21 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := baseWallet.Unlock(pass, nil); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2018-03-13 02:38:23 +03:00
|
|
|
// Construct the key scope required to derive keys for the chose
|
|
|
|
// coinType.
|
|
|
|
chainKeyScope := waddrmgr.KeyScope{
|
|
|
|
Purpose: BIP0043Purpose,
|
|
|
|
Coin: coinType,
|
|
|
|
}
|
|
|
|
|
|
|
|
// We'll now ensure that the KeyScope: (1017, coinType) exists within
|
|
|
|
// the internal waddrmgr. We'll need this in order to properly generate
|
|
|
|
// the keys required for signing various contracts.
|
|
|
|
_, err = baseWallet.Manager.FetchScopedKeyManager(chainKeyScope)
|
2018-02-18 01:56:21 +03:00
|
|
|
if err != nil {
|
|
|
|
err := walletdb.Update(baseWallet.Database(), func(tx walletdb.ReadWriteTx) error {
|
|
|
|
addrmgrNs := tx.ReadWriteBucket(waddrmgrNamespaceKey)
|
|
|
|
|
|
|
|
_, err := baseWallet.Manager.NewScopedKeyManager(
|
2018-03-13 02:38:23 +03:00
|
|
|
addrmgrNs, chainKeyScope, lightningAddrSchema,
|
2018-02-18 01:56:21 +03:00
|
|
|
)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanUp := func() {
|
|
|
|
baseWallet.Lock()
|
|
|
|
os.RemoveAll(tempDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
return cleanUp, baseWallet, nil
|
|
|
|
}
|
|
|
|
|
2018-08-14 05:20:57 +03:00
|
|
|
func assertEqualKeyLocator(t *testing.T, a, b KeyLocator) {
|
2018-08-16 02:13:54 +03:00
|
|
|
t.Helper()
|
2018-08-14 05:20:57 +03:00
|
|
|
if a != b {
|
2018-08-16 02:13:54 +03:00
|
|
|
t.Fatalf("mismatched key locators: expected %v, "+
|
|
|
|
"got %v", spew.Sdump(a), spew.Sdump(b))
|
2018-08-14 05:20:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 01:56:21 +03:00
|
|
|
// secretKeyRingConstructor is a function signature that's used as a generic
|
|
|
|
// constructor for various implementations of the KeyRing interface. A string
|
|
|
|
// naming the returned interface, a function closure that cleans up any
|
|
|
|
// resources, and the clean up interface itself are to be returned.
|
|
|
|
type keyRingConstructor func() (string, func(), KeyRing, error)
|
|
|
|
|
|
|
|
// TestKeyRingDerivation tests that each known KeyRing implementation properly
|
|
|
|
// adheres to the expected behavior of the set of interfaces.
|
|
|
|
func TestKeyRingDerivation(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
keyRingImplementations := []keyRingConstructor{
|
|
|
|
func() (string, func(), KeyRing, error) {
|
2018-03-13 02:38:23 +03:00
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeBitcoin,
|
|
|
|
)
|
2018-02-18 01:56:21 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-03-13 02:38:23 +03:00
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeBitcoin)
|
2018-02-18 01:56:21 +03:00
|
|
|
|
|
|
|
return "btcwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
2018-03-13 02:38:23 +03:00
|
|
|
func() (string, func(), KeyRing, error) {
|
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeLitecoin,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeLitecoin)
|
|
|
|
|
|
|
|
return "ltcwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
|
|
|
func() (string, func(), KeyRing, error) {
|
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeTestnet,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeTestnet)
|
|
|
|
|
|
|
|
return "testwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
2018-02-18 01:56:21 +03:00
|
|
|
}
|
|
|
|
|
2018-08-14 05:20:57 +03:00
|
|
|
const numKeysToDerive = 10
|
|
|
|
|
2018-02-18 01:56:21 +03:00
|
|
|
// For each implementation constructor registered above, we'll execute
|
|
|
|
// an identical set of tests in order to ensure that the interface
|
|
|
|
// adheres to our nominal specification.
|
|
|
|
for _, keyRingConstructor := range keyRingImplementations {
|
|
|
|
keyRingName, cleanUp, keyRing, err := keyRingConstructor()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create key ring %v: %v", keyRingName,
|
|
|
|
err)
|
|
|
|
}
|
|
|
|
defer cleanUp()
|
|
|
|
|
|
|
|
success := t.Run(fmt.Sprintf("%v", keyRingName), func(t *testing.T) {
|
|
|
|
// First, we'll ensure that we're able to derive keys
|
|
|
|
// from each of the known key families.
|
|
|
|
for _, keyFam := range versionZeroKeyFamilies {
|
|
|
|
// First, we'll ensure that we can derive the
|
|
|
|
// *next* key in the keychain.
|
|
|
|
keyDesc, err := keyRing.DeriveNextKey(keyFam)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive next for "+
|
|
|
|
"keyFam=%v: %v", keyFam, err)
|
|
|
|
}
|
2018-08-14 05:20:57 +03:00
|
|
|
assertEqualKeyLocator(t,
|
|
|
|
KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: 0,
|
|
|
|
}, keyDesc.KeyLocator,
|
|
|
|
)
|
2018-02-18 01:56:21 +03:00
|
|
|
|
2018-08-14 05:20:57 +03:00
|
|
|
// We'll now re-derive that key to ensure that
|
|
|
|
// we're able to properly access the key via
|
|
|
|
// the random access derivation methods.
|
2018-02-18 01:56:21 +03:00
|
|
|
keyLoc := KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: 0,
|
|
|
|
}
|
|
|
|
firstKeyDesc, err := keyRing.DeriveKey(keyLoc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive first key for "+
|
|
|
|
"keyFam=%v: %v", keyFam, err)
|
|
|
|
}
|
|
|
|
if !keyDesc.PubKey.IsEqual(firstKeyDesc.PubKey) {
|
2018-08-14 05:20:57 +03:00
|
|
|
t.Fatalf("mismatched keys: expected %x, "+
|
2018-02-18 01:56:21 +03:00
|
|
|
"got %x",
|
|
|
|
keyDesc.PubKey.SerializeCompressed(),
|
|
|
|
firstKeyDesc.PubKey.SerializeCompressed())
|
|
|
|
}
|
2018-08-14 05:20:57 +03:00
|
|
|
assertEqualKeyLocator(t,
|
|
|
|
KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: 0,
|
|
|
|
}, firstKeyDesc.KeyLocator,
|
|
|
|
)
|
|
|
|
|
|
|
|
// If we now try to manually derive the next 10
|
|
|
|
// keys (including the original key), then we
|
|
|
|
// should get an identical public key back and
|
|
|
|
// their KeyLocator information
|
|
|
|
// should be set properly.
|
|
|
|
for i := 0; i < numKeysToDerive+1; i++ {
|
|
|
|
keyLoc := KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: uint32(i),
|
|
|
|
}
|
|
|
|
keyDesc, err := keyRing.DeriveKey(keyLoc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive first key for "+
|
|
|
|
"keyFam=%v: %v", keyFam, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that the key locator matches
|
|
|
|
// up as well.
|
|
|
|
assertEqualKeyLocator(
|
|
|
|
t, keyLoc, keyDesc.KeyLocator,
|
|
|
|
)
|
|
|
|
}
|
2018-02-18 01:56:21 +03:00
|
|
|
|
|
|
|
// If this succeeds, then we'll also try to
|
|
|
|
// derive a random index within the range.
|
|
|
|
randKeyIndex := uint32(rand.Int31())
|
|
|
|
keyLoc = KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: randKeyIndex,
|
|
|
|
}
|
2018-08-14 05:20:57 +03:00
|
|
|
keyDesc, err = keyRing.DeriveKey(keyLoc)
|
2018-02-18 01:56:21 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive key_index=%v "+
|
|
|
|
"for keyFam=%v: %v",
|
|
|
|
randKeyIndex, keyFam, err)
|
|
|
|
}
|
2018-08-14 05:20:57 +03:00
|
|
|
assertEqualKeyLocator(
|
|
|
|
t, keyLoc, keyDesc.KeyLocator,
|
|
|
|
)
|
2018-02-18 01:56:21 +03:00
|
|
|
}
|
|
|
|
})
|
|
|
|
if !success {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// secretKeyRingConstructor is a function signature that's used as a generic
|
|
|
|
// constructor for various implementations of the SecretKeyRing interface. A
|
|
|
|
// string naming the returned interface, a function closure that cleans up any
|
|
|
|
// resources, and the clean up interface itself are to be returned.
|
|
|
|
type secretKeyRingConstructor func() (string, func(), SecretKeyRing, error)
|
|
|
|
|
|
|
|
// TestSecretKeyRingDerivation tests that each known SecretKeyRing
|
|
|
|
// implementation properly adheres to the expected behavior of the set of
|
|
|
|
// interface.
|
|
|
|
func TestSecretKeyRingDerivation(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
secretKeyRingImplementations := []secretKeyRingConstructor{
|
|
|
|
func() (string, func(), SecretKeyRing, error) {
|
2018-03-13 02:38:23 +03:00
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeBitcoin,
|
|
|
|
)
|
2018-02-18 01:56:21 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-03-13 02:38:23 +03:00
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeBitcoin)
|
2018-02-18 01:56:21 +03:00
|
|
|
|
|
|
|
return "btcwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
2018-03-13 02:38:23 +03:00
|
|
|
func() (string, func(), SecretKeyRing, error) {
|
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeLitecoin,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeLitecoin)
|
|
|
|
|
|
|
|
return "ltcwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
|
|
|
func() (string, func(), SecretKeyRing, error) {
|
|
|
|
cleanUp, wallet, err := createTestBtcWallet(
|
|
|
|
CoinTypeTestnet,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create wallet: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
keyRing := NewBtcWalletKeyRing(wallet, CoinTypeTestnet)
|
|
|
|
|
|
|
|
return "testwallet", cleanUp, keyRing, nil
|
|
|
|
},
|
2018-02-18 01:56:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// For each implementation constructor registered above, we'll execute
|
|
|
|
// an identical set of tests in order to ensure that the interface
|
|
|
|
// adheres to our nominal specification.
|
|
|
|
for _, secretKeyRingConstructor := range secretKeyRingImplementations {
|
|
|
|
keyRingName, cleanUp, secretKeyRing, err := secretKeyRingConstructor()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to create secret key ring %v: %v",
|
|
|
|
keyRingName, err)
|
|
|
|
}
|
|
|
|
defer cleanUp()
|
|
|
|
|
|
|
|
success := t.Run(fmt.Sprintf("%v", keyRingName), func(t *testing.T) {
|
2018-12-10 05:30:59 +03:00
|
|
|
// For, each key family, we'll ensure that we're able
|
2018-02-18 01:56:21 +03:00
|
|
|
// to obtain the private key of a randomly select child
|
|
|
|
// index within the key family.
|
|
|
|
for _, keyFam := range versionZeroKeyFamilies {
|
|
|
|
randKeyIndex := uint32(rand.Int31())
|
|
|
|
keyLoc := KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
Index: randKeyIndex,
|
|
|
|
}
|
|
|
|
|
|
|
|
// First, we'll query for the public key for
|
|
|
|
// this target key locator.
|
|
|
|
pubKeyDesc, err := secretKeyRing.DeriveKey(keyLoc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive pubkey "+
|
|
|
|
"(fam=%v, index=%v): %v",
|
|
|
|
keyLoc.Family,
|
|
|
|
keyLoc.Index, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// With the public key derive, ensure that
|
|
|
|
// we're able to obtain the corresponding
|
|
|
|
// private key correctly.
|
|
|
|
privKey, err := secretKeyRing.DerivePrivKey(KeyDescriptor{
|
|
|
|
KeyLocator: keyLoc,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive priv "+
|
|
|
|
"(fam=%v, index=%v): %v", keyLoc.Family,
|
|
|
|
keyLoc.Index, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, ensure that the keys match up
|
|
|
|
// properly.
|
|
|
|
if !pubKeyDesc.PubKey.IsEqual(privKey.PubKey()) {
|
|
|
|
t.Fatalf("pubkeys mismatched: expected %x, got %x",
|
|
|
|
pubKeyDesc.PubKey.SerializeCompressed(),
|
|
|
|
privKey.PubKey().SerializeCompressed())
|
|
|
|
}
|
|
|
|
|
2018-12-10 05:30:59 +03:00
|
|
|
// Next, we'll test that we're able to derive a
|
|
|
|
// key given only the public key and key
|
|
|
|
// family.
|
|
|
|
//
|
|
|
|
// Derive a new key from the key ring.
|
|
|
|
keyDesc, err := secretKeyRing.DeriveNextKey(keyFam)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive key: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We'll now construct a key descriptor that
|
|
|
|
// requires us to scan the key range, and query
|
|
|
|
// for the key, we should be able to find it as
|
|
|
|
// it's valid.
|
|
|
|
keyDesc = KeyDescriptor{
|
|
|
|
PubKey: keyDesc.PubKey,
|
|
|
|
KeyLocator: KeyLocator{
|
|
|
|
Family: keyFam,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
privKey, err = secretKeyRing.DerivePrivKey(keyDesc)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to derive priv key "+
|
|
|
|
"via scanning: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Having to resort to scanning, we should be
|
|
|
|
// able to find the target public key.
|
|
|
|
if !keyDesc.PubKey.IsEqual(privKey.PubKey()) {
|
|
|
|
t.Fatalf("pubkeys mismatched: expected %x, got %x",
|
|
|
|
pubKeyDesc.PubKey.SerializeCompressed(),
|
|
|
|
privKey.PubKey().SerializeCompressed())
|
|
|
|
}
|
|
|
|
|
|
|
|
// We'll try again, but this time with an
|
|
|
|
// unknown public key.
|
|
|
|
_, pub := btcec.PrivKeyFromBytes(
|
|
|
|
btcec.S256(), testHDSeed[:],
|
|
|
|
)
|
|
|
|
keyDesc.PubKey = pub
|
|
|
|
|
|
|
|
// If we attempt to query for this key, then we
|
|
|
|
// should get ErrCannotDerivePrivKey.
|
|
|
|
privKey, err = secretKeyRing.DerivePrivKey(
|
|
|
|
keyDesc,
|
|
|
|
)
|
|
|
|
if err != ErrCannotDerivePrivKey {
|
|
|
|
t.Fatalf("expected %T, instead got %v",
|
|
|
|
ErrCannotDerivePrivKey, err)
|
|
|
|
}
|
|
|
|
|
2018-02-18 01:56:21 +03:00
|
|
|
// TODO(roasbeef): scalar mult once integrated
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if !success {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-10 05:30:59 +03:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
// We'll clamp the max range scan to constrain the run time of the
|
|
|
|
// private key scan test.
|
|
|
|
MaxKeyRangeScan = 3
|
|
|
|
}
|