forked from lightninglabs/lndinit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_init_wallet.go
501 lines (426 loc) · 15.6 KB
/
cmd_init_wallet.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
package main
import (
"context"
"fmt"
"math"
"os"
"path/filepath"
"strings"
"time"
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcwallet/wallet"
"github.com/jessevdk/go-flags"
"github.com/lightninglabs/protobuf-hex-display/jsonpb" // nolint
"github.com/lightningnetwork/lnd/aezeed"
"github.com/lightningnetwork/lnd/lncfg"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lnrpc/walletrpc"
"github.com/lightningnetwork/lnd/signal"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
)
const (
defaultNoFreelistSync = true
defaultDirPermissions os.FileMode = 0700
defaultBitcoinNetwork = "mainnet"
typeFile = "file"
typeRpc = "rpc"
)
var (
defaultWalletDBTimeout = 2 * time.Second
)
type secretSourceFile struct {
Seed string `long:"seed" description:"The full path to the file that contains the seed; if the file does not exist, lndinit will exit with code EXIT_CODE_INPUT_MISSING (129)"`
SeedPassphrase string `long:"seed-passphrase" description:"The full path to the file that contains the seed passphrase; if not set, no passphrase will be used; if set but the file does not exist, lndinit will exit with code EXIT_CODE_INPUT_MISSING (129)"`
WalletPassword string `long:"wallet-password" description:"The full path to the file that contains the wallet password; if the file does not exist, lndinit will exit with code EXIT_CODE_INPUT_MISSING (129)"`
}
type secretSourceK8s struct {
Namespace string `long:"namespace" description:"The Kubernetes namespace the secret is located in"`
SecretName string `long:"secret-name" description:"The name of the Kubernetes secret"`
SeedKeyName string `long:"seed-key-name" description:"The name of the key within the secret that contains the seed"`
SeedPassphraseKeyName string `long:"seed-passphrase-key-name" description:"The name of the key within the secret that contains the seed passphrase"`
WalletPasswordKeyName string `long:"wallet-password-key-name" description:"The name of the key within the secret that contains the wallet password"`
Base64 bool `long:"base64" description:"Encode as base64 when storing and decode as base64 when reading"`
}
type initTypeFile struct {
OutputWalletDir string `long:"output-wallet-dir" description:"The directory in which the wallet.db file should be initialized"`
ValidatePassword bool `long:"validate-password" description:"If a wallet file already exists in the output wallet directory, validate that it can be unlocked with the given password; this will try to decrypt the wallet and will take several seconds to complete"`
}
type initTypeRpc struct {
Server string `long:"server" description:"The host:port of the RPC server to connect to"`
TLSCertPath string `long:"tls-cert-path" description:"The full path to the RPC server's TLS certificate"`
WatchOnly bool `long:"watch-only" description:"Don't require a seed to be set, initialize the wallet as watch-only; requires the accounts-file flag to be specified"`
AccountsFile string `long:"accounts-file" description:"The JSON file that contains all accounts xpubs for initializing a watch-only wallet"`
}
type initWalletCommand struct {
Network string `long:"network" description:"The Bitcoin network to initialize the wallet for, required for wallet internals" choice:"mainnet" choice:"testnet" choice:"testnet3" choice:"regtest" choice:"simnet"`
SecretSource string `long:"secret-source" description:"Where to read the secrets from to initialize the wallet with" choice:"file" choice:"k8s"`
File *secretSourceFile `group:"Flags for reading the secrets from files (use when --secret-source=file)" namespace:"file"`
K8s *secretSourceK8s `group:"Flags for reading the secrets from Kubernetes (use when --secret-source=k8s)" namespace:"k8s"`
InitType string `long:"init-type" description:"How to initialize the wallet" choice:"file" choice:"rpc"`
InitFile *initTypeFile `group:"Flags for initializing the wallet as a file (use when --init-type=file)" namespace:"init-file"`
InitRpc *initTypeRpc `group:"Flags for initializing the wallet through RPC (use when --init-type=rpc)" namespace:"init-rpc"`
}
func newInitWalletCommand() *initWalletCommand {
return &initWalletCommand{
Network: defaultBitcoinNetwork,
SecretSource: storageFile,
File: &secretSourceFile{},
K8s: &secretSourceK8s{
Namespace: defaultK8sNamespace,
},
InitType: typeFile,
InitFile: &initTypeFile{},
InitRpc: &initTypeRpc{
Server: defaultRPCServer,
},
}
}
func (x *initWalletCommand) Register(parser *flags.Parser) error {
_, err := parser.AddCommand(
"init-wallet",
"Initialize an lnd wallet database",
"Create an lnd wallet.db database file initialized with the "+
"given wallet seed and password",
x,
)
return err
}
func (x *initWalletCommand) Execute(_ []string) error {
// Do we require a seed? We don't if we do an RPC based, watch-only
// initialization.
requireSeed := (x.InitType == typeFile) ||
(x.InitType == typeRpc && !x.InitRpc.WatchOnly)
seed, seedPassPhrase, walletPassword, err := x.readInput(requireSeed)
if err != nil {
return fmt.Errorf("error reading input parameters: %v", err)
}
switch x.InitType {
case typeFile:
cipherSeed, err := checkSeed(seed, seedPassPhrase)
if err != nil {
return err
}
// The output directory must be specified explicitly. We don't
// want to assume any defaults here!
walletDir := lncfg.CleanAndExpandPath(
x.InitFile.OutputWalletDir,
)
if walletDir == "" {
return fmt.Errorf("must specify output wallet " +
"directory")
}
if strings.HasSuffix(walletDir, ".db") {
return fmt.Errorf("output wallet directory must not " +
"be a file")
}
return createWalletFile(
cipherSeed, walletPassword, walletDir, x.Network,
x.InitFile.ValidatePassword,
)
case typeRpc:
var (
seedWords []string
watchOnly *lnrpc.WatchOnly
)
if requireSeed {
_, err = checkSeed(seed, seedPassPhrase)
if err != nil {
return err
}
seedWords = strings.Split(seed, " ")
}
// Only when initializing the wallet through RPC is it possible
// to create a watch-only wallet. If we do, we don't require a
// seed to be present but instead want to read an accounts JSON
// file that contains all the wallet's xpubs.
if x.InitRpc.WatchOnly {
// For initializing a watch-only wallet we need the
// accounts JSON file.
log("Reading accounts from file")
accountsBytes, err := readFile(x.InitRpc.AccountsFile)
if err != nil {
return err
}
jsonAccts := &walletrpc.ListAccountsResponse{}
err = jsonpb.Unmarshal(
strings.NewReader(accountsBytes), jsonAccts,
)
if err != nil {
return fmt.Errorf("error parsing JSON: %v", err)
}
if len(jsonAccts.Accounts) == 0 {
return fmt.Errorf("cannot import empty " +
"account list")
}
rpcAccounts, err := walletrpc.AccountsToWatchOnly(
jsonAccts.Accounts,
)
if err != nil {
return fmt.Errorf("error converting JSON "+
"accounts to RPC: %v", err)
}
watchOnly = &lnrpc.WatchOnly{
MasterKeyBirthdayTimestamp: 0,
Accounts: rpcAccounts,
}
}
return createWalletRpc(
seedWords, seedPassPhrase, walletPassword,
x.InitRpc.Server, x.InitRpc.TLSCertPath, watchOnly,
)
default:
return fmt.Errorf("invalid init type %s", x.InitType)
}
}
func (x *initWalletCommand) readInput(requireSeed bool) (string, string, string,
error) {
// First find out where we want to read the secrets from.
var (
seed string
seedPassPhrase string
walletPassword string
err error
)
switch x.SecretSource {
// Read all secrets from individual files.
case storageFile:
if requireSeed {
log("Reading seed from file")
seed, err = readFile(x.File.Seed)
if err != nil {
return "", "", "", err
}
}
// The seed passphrase is optional.
if x.File.SeedPassphrase != "" {
log("Reading seed passphrase from file")
seedPassPhrase, err = readFile(x.File.SeedPassphrase)
if err != nil {
return "", "", "", err
}
}
log("Reading wallet password from file")
walletPassword, err = readFile(x.File.WalletPassword)
if err != nil {
return "", "", "", err
}
// Read passphrase from Kubernetes secret.
case storageK8s:
k8sSecret := &k8sSecretOptions{
Namespace: x.K8s.Namespace,
SecretName: x.K8s.SecretName,
Base64: x.K8s.Base64,
}
k8sSecret.SecretKeyName = x.K8s.SeedKeyName
if requireSeed {
log("Reading seed from k8s secret %s (namespace %s)",
x.K8s.SecretName, x.K8s.Namespace)
seed, _, err = readK8s(k8sSecret)
if err != nil {
return "", "", "", err
}
}
// The seed passphrase is optional.
if x.K8s.SeedPassphraseKeyName != "" {
log("Reading seed passphrase from k8s secret %s "+
"(namespace %s)", x.K8s.SecretName,
x.K8s.Namespace)
k8sSecret.SecretKeyName = x.K8s.SeedPassphraseKeyName
seedPassPhrase, _, err = readK8s(k8sSecret)
if err != nil {
return "", "", "", err
}
}
log("Reading wallet password from k8s secret %s (namespace %s)",
x.K8s.SecretName, x.K8s.Namespace)
k8sSecret.SecretKeyName = x.K8s.WalletPasswordKeyName
walletPassword, _, err = readK8s(k8sSecret)
if err != nil {
return "", "", "", err
}
}
// The seed, its passphrase and the wallet password should all never
// have a newline at their end, otherwise that might lead to errors
// further down the line.
seed = stripNewline(seed)
seedPassPhrase = stripNewline(seedPassPhrase)
walletPassword = stripNewline(walletPassword)
return seed, seedPassPhrase, walletPassword, nil
}
func createWalletFile(cipherSeed *aezeed.CipherSeed, walletPassword, walletDir,
network string, validatePassword bool) error {
// The wallet directory must either not exist yet or be a directory.
stat, err := os.Stat(walletDir)
switch {
case os.IsNotExist(err):
err = os.MkdirAll(walletDir, defaultDirPermissions)
if err != nil {
return fmt.Errorf("error creating directory %s: %v",
walletDir, err)
}
case !stat.IsDir():
return fmt.Errorf("output wallet directory must not be a file")
}
// We should now be able to properly determine if a wallet already
// exists or not. Depending on the flags, we either create or validate
// the wallet now.
walletFile := filepath.Join(walletDir, wallet.WalletDBName)
switch {
case lnrpc.FileExists(walletFile) && !validatePassword:
return fmt.Errorf("wallet file %s exists: %v", walletFile,
errTargetExists)
case !lnrpc.FileExists(walletFile):
return createWallet(
walletDir, cipherSeed, []byte(walletPassword),
network,
)
default:
return validateWallet(
walletDir, []byte(walletPassword), network,
)
}
}
func createWallet(walletDir string, cipherSeed *aezeed.CipherSeed,
walletPassword []byte, network string) error {
log("Creating new wallet in %s", walletDir)
// The network parameters are needed for some wallet internal things
// like the chain genesis hash and timestamp.
netParams, err := getNetworkParams(network)
if err != nil {
return err
}
// Create the wallet now.
loader := wallet.NewLoader(
netParams, walletDir, defaultNoFreelistSync,
defaultWalletDBTimeout, 0,
)
_, err = loader.CreateNewWallet(
walletPassword, walletPassword, cipherSeed.Entropy[:],
cipherSeed.BirthdayTime(),
)
if err != nil {
return fmt.Errorf("error creating wallet from seed: %v", err)
}
// Close the wallet properly to release the file lock on the DB.
if err := loader.UnloadWallet(); err != nil {
return fmt.Errorf("error unloading wallet after creation: %v",
err)
}
log("Wallet created successfully in %s", walletDir)
return nil
}
func validateWallet(walletDir string, walletPassword []byte,
network string) error {
log("Validating password for wallet in %s", walletDir)
// The network parameters are needed for some wallet internal things
// like the chain genesis hash and timestamp.
netParams, err := getNetworkParams(network)
if err != nil {
return err
}
// Try to load the wallet now. This will fail if the wallet is already
// loaded by another process or does not exist yet.
loader := wallet.NewLoader(
netParams, walletDir, defaultNoFreelistSync,
defaultWalletDBTimeout, 0,
)
_, err = loader.OpenExistingWallet(walletPassword, false)
if err != nil {
return fmt.Errorf("error validating wallet password: %v", err)
}
if err := loader.UnloadWallet(); err != nil {
return fmt.Errorf("error unloading wallet after validation: %v",
err)
}
log("Wallet password validated successfully")
return nil
}
func createWalletRpc(seedWords []string, seedPassword, walletPassword,
rpcServer, tlsPath string, watchOnly *lnrpc.WatchOnly) error {
// Since this will potentially run for a while (we need to wait for
// compaction), make sure we catch any interrupt signals.
shutdown, err := signal.Intercept()
if err != nil {
return fmt.Errorf("error intercepting signals: %v", err)
}
// First, we want to make sure the wallet doesn't actually exist. We
// wait until we either get the NON_EXISTING code or an error because
// the desired state wasn't achieved (a state _greater_ than
// NON_EXISTING was returned, which means the wallet exists).
timeout := time.Duration(math.MaxInt64)
err = waitUntilStatus(
rpcServer, lnrpc.WalletState_NON_EXISTING,
timeout, shutdown.ShutdownChannel(),
)
if err != nil {
return fmt.Errorf("error waiting for lnd startup: %v", err)
}
// We are now certain that the wallet doesn't exist yet, so we can go
// ahead and try to create it.
client, err := getUnlockerConnection(rpcServer, tlsPath)
if err != nil {
return fmt.Errorf("error creating wallet unlocker connection: "+
"%v", err)
}
ctxb := context.Background()
_, err = client.InitWallet(ctxb, &lnrpc.InitWalletRequest{
CipherSeedMnemonic: seedWords,
AezeedPassphrase: []byte(seedPassword),
WalletPassword: []byte(walletPassword),
WatchOnly: watchOnly,
})
return err
}
func checkSeed(seed, seedPassPhrase string) (*aezeed.CipherSeed, error) {
// Decrypt the seed now to make sure we got valid data before we
// check anything else.
seedWords := strings.Split(seed, " ")
if len(seedWords) != aezeed.NumMnemonicWords {
return nil, fmt.Errorf("invalid seed, expected %d words but "+
"got %d", aezeed.NumMnemonicWords, len(seedWords))
}
var seedMnemonic aezeed.Mnemonic
copy(seedMnemonic[:], seedWords)
cipherSeed, err := seedMnemonic.ToCipherSeed([]byte(seedPassPhrase))
if err != nil {
return nil, fmt.Errorf("error decrypting seed with "+
"passphrase: %v", err)
}
return cipherSeed, nil
}
func getNetworkParams(network string) (*chaincfg.Params, error) {
switch strings.ToLower(network) {
case "mainnet":
return &chaincfg.MainNetParams, nil
case "testnet", "testnet3":
return &chaincfg.TestNet3Params, nil
case "regtest":
return &chaincfg.RegressionNetParams, nil
case "simnet":
return &chaincfg.SimNetParams, nil
default:
return nil, fmt.Errorf("unknown network: %v", network)
}
}
func getUnlockerConnection(rpcServer,
tlsPath string) (lnrpc.WalletUnlockerClient, error) {
creds, err := credentials.NewClientTLSFromFile(tlsPath, "")
if err != nil {
return nil, fmt.Errorf("error loading TLS certificate "+
"from %s: %v", tlsPath, err)
}
// We need to use a custom dialer so we can also connect to unix sockets
// and not just TCP addresses.
genericDialer := lncfg.ClientAddressDialer(defaultRPCPort)
opts := []grpc.DialOption{
grpc.WithTransportCredentials(creds),
grpc.WithContextDialer(genericDialer),
}
conn, err := grpc.Dial(rpcServer, opts...)
if err != nil {
return nil, fmt.Errorf("unable to connect to RPC server: %v",
err)
}
return lnrpc.NewWalletUnlockerClient(conn), nil
}