2015-12-01 19:44:58 +01:00
|
|
|
// Copyright (c) 2014 The btcsuite developers
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-08-08 22:43:50 +02:00
|
|
|
|
|
|
|
package waddrmgr
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
|
2016-05-05 21:04:36 +02:00
|
|
|
"github.com/roasbeef/btcutil/hdkeychain"
|
2014-08-08 22:43:50 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// errAlreadyExists is the common error description used for the
|
|
|
|
// ErrAlreadyExists error code.
|
|
|
|
errAlreadyExists = "the specified address manager already exists"
|
|
|
|
|
|
|
|
// errCoinTypeTooHigh is the common error description used for the
|
|
|
|
// ErrCoinTypeTooHigh error code.
|
|
|
|
errCoinTypeTooHigh = "coin type may not exceed " +
|
|
|
|
strconv.FormatUint(hdkeychain.HardenedKeyStart-1, 10)
|
|
|
|
|
|
|
|
// errAcctTooHigh is the common error description used for the
|
|
|
|
// ErrAccountNumTooHigh error code.
|
|
|
|
errAcctTooHigh = "account number may not exceed " +
|
|
|
|
strconv.FormatUint(hdkeychain.HardenedKeyStart-1, 10)
|
|
|
|
|
|
|
|
// errLocked is the common error description used for the ErrLocked
|
|
|
|
// error code.
|
|
|
|
errLocked = "address manager is locked"
|
|
|
|
|
|
|
|
// errWatchingOnly is the common error description used for the
|
|
|
|
// ErrWatchingOnly error code.
|
|
|
|
errWatchingOnly = "address manager is watching-only"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ErrorCode identifies a kind of error.
|
|
|
|
type ErrorCode int
|
|
|
|
|
|
|
|
// These constants are used to identify a specific ManagerError.
|
|
|
|
const (
|
|
|
|
// ErrDatabase indicates an error with the underlying database. When
|
|
|
|
// this error code is set, the Err field of the ManagerError will be
|
|
|
|
// set to the underlying error returned from the database.
|
|
|
|
ErrDatabase ErrorCode = iota
|
|
|
|
|
2015-03-03 18:51:21 +01:00
|
|
|
// ErrUpgrade indicates the manager needs to be upgraded. This should
|
|
|
|
// not happen in practice unless the version number has been increased
|
|
|
|
// and there is not yet any code written to upgrade.
|
|
|
|
ErrUpgrade
|
|
|
|
|
2014-08-08 22:43:50 +02:00
|
|
|
// ErrKeyChain indicates an error with the key chain typically either
|
2014-06-13 19:14:44 +02:00
|
|
|
// due to the inability to create an extended key or deriving a child
|
2014-08-08 22:43:50 +02:00
|
|
|
// extended key. When this error code is set, the Err field of the
|
|
|
|
// ManagerError will be set to the underlying error.
|
|
|
|
ErrKeyChain
|
|
|
|
|
|
|
|
// ErrCrypto indicates an error with the cryptography related operations
|
|
|
|
// such as decrypting or encrypting data, parsing an EC public key,
|
|
|
|
// or deriving a secret key from a password. When this error code is
|
|
|
|
// set, the Err field of the ManagerError will be set to the underlying
|
|
|
|
// error.
|
|
|
|
ErrCrypto
|
|
|
|
|
2014-10-23 11:57:22 +02:00
|
|
|
// ErrInvalidKeyType indicates an error where an invalid crypto
|
|
|
|
// key type has been selected.
|
|
|
|
ErrInvalidKeyType
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrNoExist indicates that the specified database does not exist.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrNoExist
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrAlreadyExists indicates that the specified database already exists.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrAlreadyExists
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrCoinTypeTooHigh indicates that the coin type specified in the provided
|
2014-08-08 22:43:50 +02:00
|
|
|
// network parameters is higher than the max allowed value as defined
|
|
|
|
// by the maxCoinType constant.
|
|
|
|
ErrCoinTypeTooHigh
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrAccountNumTooHigh indicates that the specified account number is higher
|
2014-08-08 22:43:50 +02:00
|
|
|
// than the max allowed value as defined by the MaxAccountNum constant.
|
|
|
|
ErrAccountNumTooHigh
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrLocked indicates that an operation, which requires the account
|
|
|
|
// manager to be unlocked, was requested on a locked account manager.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrLocked
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrWatchingOnly indicates that an operation, which requires the
|
|
|
|
// account manager to have access to private data, was requested on
|
|
|
|
// a watching-only account manager.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrWatchingOnly
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrInvalidAccount indicates that the requested account is not valid.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrInvalidAccount
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrAddressNotFound indicates that the requested address is not known to
|
|
|
|
// the account manager.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrAddressNotFound
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrAccountNotFound indicates that the requested account is not known to
|
|
|
|
// the account manager.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrAccountNotFound
|
|
|
|
|
2014-12-12 09:54:26 +01:00
|
|
|
// ErrDuplicateAddress indicates an address already exists.
|
|
|
|
ErrDuplicateAddress
|
|
|
|
|
|
|
|
// ErrDuplicateAccount indicates an account already exists.
|
|
|
|
ErrDuplicateAccount
|
2014-08-08 22:43:50 +02:00
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrTooManyAddresses indicates that more than the maximum allowed number of
|
2014-08-08 22:43:50 +02:00
|
|
|
// addresses per account have been requested.
|
|
|
|
ErrTooManyAddresses
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrWrongPassphrase indicates that the specified passphrase is incorrect.
|
|
|
|
// This could be for either public or private master keys.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrWrongPassphrase
|
|
|
|
|
2014-06-13 19:14:44 +02:00
|
|
|
// ErrWrongNet indicates that the private key to be imported is not for the
|
|
|
|
// the same network the account manager is configured for.
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrWrongNet
|
2015-03-26 19:22:59 +01:00
|
|
|
|
|
|
|
// ErrCallBackBreak is used to break from a callback function passed
|
|
|
|
// down to the manager.
|
|
|
|
ErrCallBackBreak
|
Modernize the RPC server.
This is a rather monolithic commit that moves the old RPC server to
its own package (rpc/legacyrpc), introduces a new RPC server using
gRPC (rpc/rpcserver), and provides the ability to defer wallet loading
until request at a later time by an RPC (--noinitialload).
The legacy RPC server remains the default for now while the new gRPC
server is not enabled by default. Enabling the new server requires
setting a listen address (--experimenalrpclisten). This experimental
flag is used to effectively feature gate the server until it is ready
to use as a default. Both RPC servers can be run at the same time,
but require binding to different listen addresses.
In theory, with the legacy RPC server now living in its own package it
should become much easier to unit test the handlers. This will be
useful for any future changes to the package, as compatibility with
Core's wallet is still desired.
Type safety has also been improved in the legacy RPC server. Multiple
handler types are now used for methods that do and do not require the
RPC client as a dependency. This can statically help prevent nil
pointer dereferences, and was very useful for catching bugs during
refactoring.
To synchronize the wallet loading process between the main package
(the default) and through the gRPC WalletLoader service (with the
--noinitialload option), as well as increasing the loose coupling of
packages, a new wallet.Loader type has been added. All creating and
loading of existing wallets is done through a single Loader instance,
and callbacks can be attached to the instance to run after the wallet
has been opened. This is how the legacy RPC server is associated with
a loaded wallet, even after the wallet is loaded by a gRPC method in a
completely unrelated package.
Documentation for the new RPC server has been added to the
rpc/documentation directory. The documentation includes a
specification for the new RPC API, addresses how to make changes to
the server implementation, and provides short example clients in
several different languages.
Some of the new RPC methods are not implementated exactly as described
by the specification. These are considered bugs with the
implementation, not the spec. Known bugs are commented as such.
2015-06-01 21:57:50 +02:00
|
|
|
|
|
|
|
// ErrEmptyPassphrase indicates that the private passphrase was refused
|
|
|
|
// due to being empty.
|
|
|
|
ErrEmptyPassphrase
|
2014-08-08 22:43:50 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Map of ErrorCode values back to their constant names for pretty printing.
|
|
|
|
var errorCodeStrings = map[ErrorCode]string{
|
|
|
|
ErrDatabase: "ErrDatabase",
|
2015-03-03 18:51:21 +01:00
|
|
|
ErrUpgrade: "ErrUpgrade",
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrKeyChain: "ErrKeyChain",
|
|
|
|
ErrCrypto: "ErrCrypto",
|
2014-10-31 16:20:58 +01:00
|
|
|
ErrInvalidKeyType: "ErrInvalidKeyType",
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrNoExist: "ErrNoExist",
|
|
|
|
ErrAlreadyExists: "ErrAlreadyExists",
|
|
|
|
ErrCoinTypeTooHigh: "ErrCoinTypeTooHigh",
|
|
|
|
ErrAccountNumTooHigh: "ErrAccountNumTooHigh",
|
|
|
|
ErrLocked: "ErrLocked",
|
|
|
|
ErrWatchingOnly: "ErrWatchingOnly",
|
|
|
|
ErrInvalidAccount: "ErrInvalidAccount",
|
|
|
|
ErrAddressNotFound: "ErrAddressNotFound",
|
|
|
|
ErrAccountNotFound: "ErrAccountNotFound",
|
2014-12-12 09:54:26 +01:00
|
|
|
ErrDuplicateAddress: "ErrDuplicateAddress",
|
|
|
|
ErrDuplicateAccount: "ErrDuplicateAccount",
|
2014-08-08 22:43:50 +02:00
|
|
|
ErrTooManyAddresses: "ErrTooManyAddresses",
|
|
|
|
ErrWrongPassphrase: "ErrWrongPassphrase",
|
|
|
|
ErrWrongNet: "ErrWrongNet",
|
2015-03-26 19:22:59 +01:00
|
|
|
ErrCallBackBreak: "ErrCallBackBreak",
|
Modernize the RPC server.
This is a rather monolithic commit that moves the old RPC server to
its own package (rpc/legacyrpc), introduces a new RPC server using
gRPC (rpc/rpcserver), and provides the ability to defer wallet loading
until request at a later time by an RPC (--noinitialload).
The legacy RPC server remains the default for now while the new gRPC
server is not enabled by default. Enabling the new server requires
setting a listen address (--experimenalrpclisten). This experimental
flag is used to effectively feature gate the server until it is ready
to use as a default. Both RPC servers can be run at the same time,
but require binding to different listen addresses.
In theory, with the legacy RPC server now living in its own package it
should become much easier to unit test the handlers. This will be
useful for any future changes to the package, as compatibility with
Core's wallet is still desired.
Type safety has also been improved in the legacy RPC server. Multiple
handler types are now used for methods that do and do not require the
RPC client as a dependency. This can statically help prevent nil
pointer dereferences, and was very useful for catching bugs during
refactoring.
To synchronize the wallet loading process between the main package
(the default) and through the gRPC WalletLoader service (with the
--noinitialload option), as well as increasing the loose coupling of
packages, a new wallet.Loader type has been added. All creating and
loading of existing wallets is done through a single Loader instance,
and callbacks can be attached to the instance to run after the wallet
has been opened. This is how the legacy RPC server is associated with
a loaded wallet, even after the wallet is loaded by a gRPC method in a
completely unrelated package.
Documentation for the new RPC server has been added to the
rpc/documentation directory. The documentation includes a
specification for the new RPC API, addresses how to make changes to
the server implementation, and provides short example clients in
several different languages.
Some of the new RPC methods are not implementated exactly as described
by the specification. These are considered bugs with the
implementation, not the spec. Known bugs are commented as such.
2015-06-01 21:57:50 +02:00
|
|
|
ErrEmptyPassphrase: "ErrEmptyPassphrase",
|
2014-08-08 22:43:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// String returns the ErrorCode as a human-readable name.
|
|
|
|
func (e ErrorCode) String() string {
|
|
|
|
if s := errorCodeStrings[e]; s != "" {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("Unknown ErrorCode (%d)", int(e))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ManagerError provides a single type for errors that can happen during address
|
|
|
|
// manager operation. It is used to indicate several types of failures
|
|
|
|
// including errors with caller requests such as invalid accounts or requesting
|
|
|
|
// private keys against a locked address manager, errors with the database
|
|
|
|
// (ErrDatabase), errors with key chain derivation (ErrKeyChain), and errors
|
|
|
|
// related to crypto (ErrCrypto).
|
|
|
|
//
|
|
|
|
// The caller can use type assertions to determine if an error is a ManagerError
|
|
|
|
// and access the ErrorCode field to ascertain the specific reason for the
|
|
|
|
// failure.
|
|
|
|
//
|
|
|
|
// The ErrDatabase, ErrKeyChain, and ErrCrypto error codes will also have the
|
|
|
|
// Err field set with the underlying error.
|
|
|
|
type ManagerError struct {
|
|
|
|
ErrorCode ErrorCode // Describes the kind of error
|
|
|
|
Description string // Human readable description of the issue
|
|
|
|
Err error // Underlying error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error satisfies the error interface and prints human-readable errors.
|
|
|
|
func (e ManagerError) Error() string {
|
|
|
|
if e.Err != nil {
|
|
|
|
return e.Description + ": " + e.Err.Error()
|
|
|
|
}
|
|
|
|
return e.Description
|
|
|
|
}
|
|
|
|
|
|
|
|
// managerError creates a ManagerError given a set of arguments.
|
|
|
|
func managerError(c ErrorCode, desc string, err error) ManagerError {
|
|
|
|
return ManagerError{ErrorCode: c, Description: desc, Err: err}
|
|
|
|
}
|
2015-03-26 19:22:59 +01:00
|
|
|
|
|
|
|
// Break is a global err used to signal a break from the callback
|
|
|
|
// function by returning an error with the code ErrCallBackBreak
|
|
|
|
var Break = managerError(ErrCallBackBreak, "callback break", nil)
|
2015-05-27 22:50:05 +02:00
|
|
|
|
2015-12-30 23:24:31 +01:00
|
|
|
// IsError returns whether the error is a ManagerError with a matching error
|
2015-05-27 22:50:05 +02:00
|
|
|
// code.
|
|
|
|
func IsError(err error, code ErrorCode) bool {
|
|
|
|
e, ok := err.(ManagerError)
|
|
|
|
return ok && e.ErrorCode == code
|
|
|
|
}
|