github.com/daeglee/go-ethereum@v0.0.0-20190504220456-cad3e8d18e9b/accounts/accounts.go (about)

     1  // Copyright 2017 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  // Package accounts implements high level Ethereum account management.
    18  package accounts
    19  
    20  import (
    21  	"fmt"
    22  	"math/big"
    23  
    24  	ethereum "github.com/ethereum/go-ethereum"
    25  	"github.com/ethereum/go-ethereum/common"
    26  	"github.com/ethereum/go-ethereum/core/types"
    27  	"github.com/ethereum/go-ethereum/event"
    28  	"golang.org/x/crypto/sha3"
    29  )
    30  
    31  // Account represents an Ethereum account located at a specific location defined
    32  // by the optional URL field.
    33  type Account struct {
    34  	Address common.Address `json:"address"` // Ethereum account address derived from the key
    35  	URL     URL            `json:"url"`     // Optional resource locator within a backend
    36  }
    37  
    38  const (
    39  	MimetypeTextWithValidator = "text/validator"
    40  	MimetypeTypedData         = "data/typed"
    41  	MimetypeClique            = "application/x-clique-header"
    42  	MimetypeTextPlain         = "text/plain"
    43  )
    44  
    45  // Wallet represents a software or hardware wallet that might contain one or more
    46  // accounts (derived from the same seed).
    47  type Wallet interface {
    48  	// URL retrieves the canonical path under which this wallet is reachable. It is
    49  	// user by upper layers to define a sorting order over all wallets from multiple
    50  	// backends.
    51  	URL() URL
    52  
    53  	// Status returns a textual status to aid the user in the current state of the
    54  	// wallet. It also returns an error indicating any failure the wallet might have
    55  	// encountered.
    56  	Status() (string, error)
    57  
    58  	// Open initializes access to a wallet instance. It is not meant to unlock or
    59  	// decrypt account keys, rather simply to establish a connection to hardware
    60  	// wallets and/or to access derivation seeds.
    61  	//
    62  	// The passphrase parameter may or may not be used by the implementation of a
    63  	// particular wallet instance. The reason there is no passwordless open method
    64  	// is to strive towards a uniform wallet handling, oblivious to the different
    65  	// backend providers.
    66  	//
    67  	// Please note, if you open a wallet, you must close it to release any allocated
    68  	// resources (especially important when working with hardware wallets).
    69  	Open(passphrase string) error
    70  
    71  	// Close releases any resources held by an open wallet instance.
    72  	Close() error
    73  
    74  	// Accounts retrieves the list of signing accounts the wallet is currently aware
    75  	// of. For hierarchical deterministic wallets, the list will not be exhaustive,
    76  	// rather only contain the accounts explicitly pinned during account derivation.
    77  	Accounts() []Account
    78  
    79  	// Contains returns whether an account is part of this particular wallet or not.
    80  	Contains(account Account) bool
    81  
    82  	// Derive attempts to explicitly derive a hierarchical deterministic account at
    83  	// the specified derivation path. If requested, the derived account will be added
    84  	// to the wallet's tracked account list.
    85  	Derive(path DerivationPath, pin bool) (Account, error)
    86  
    87  	// SelfDerive sets a base account derivation path from which the wallet attempts
    88  	// to discover non zero accounts and automatically add them to list of tracked
    89  	// accounts.
    90  	//
    91  	// Note, self derivaton will increment the last component of the specified path
    92  	// opposed to decending into a child path to allow discovering accounts starting
    93  	// from non zero components.
    94  	//
    95  	// You can disable automatic account discovery by calling SelfDerive with a nil
    96  	// chain state reader.
    97  	SelfDerive(base DerivationPath, chain ethereum.ChainStateReader)
    98  
    99  	// SignData requests the wallet to sign the hash of the given data
   100  	// It looks up the account specified either solely via its address contained within,
   101  	// or optionally with the aid of any location metadata from the embedded URL field.
   102  	//
   103  	// If the wallet requires additional authentication to sign the request (e.g.
   104  	// a password to decrypt the account, or a PIN code o verify the transaction),
   105  	// an AuthNeededError instance will be returned, containing infos for the user
   106  	// about which fields or actions are needed. The user may retry by providing
   107  	// the needed details via SignDataWithPassphrase, or by other means (e.g. unlock
   108  	// the account in a keystore).
   109  	SignData(account Account, mimeType string, data []byte) ([]byte, error)
   110  
   111  	// SignDataWithPassphrase is identical to SignData, but also takes a password
   112  	// NOTE: there's an chance that an erroneous call might mistake the two strings, and
   113  	// supply password in the mimetype field, or vice versa. Thus, an implementation
   114  	// should never echo the mimetype or return the mimetype in the error-response
   115  	SignDataWithPassphrase(account Account, passphrase, mimeType string, data []byte) ([]byte, error)
   116  
   117  	// SignText requests the wallet to sign the hash of a given piece of data, prefixed
   118  	// by the Ethereum prefix scheme
   119  	// It looks up the account specified either solely via its address contained within,
   120  	// or optionally with the aid of any location metadata from the embedded URL field.
   121  	//
   122  	// If the wallet requires additional authentication to sign the request (e.g.
   123  	// a password to decrypt the account, or a PIN code o verify the transaction),
   124  	// an AuthNeededError instance will be returned, containing infos for the user
   125  	// about which fields or actions are needed. The user may retry by providing
   126  	// the needed details via SignHashWithPassphrase, or by other means (e.g. unlock
   127  	// the account in a keystore).
   128  	SignText(account Account, text []byte) ([]byte, error)
   129  
   130  	// SignTextWithPassphrase is identical to Signtext, but also takes a password
   131  	SignTextWithPassphrase(account Account, passphrase string, hash []byte) ([]byte, error)
   132  
   133  	// SignTx requests the wallet to sign the given transaction.
   134  	//
   135  	// It looks up the account specified either solely via its address contained within,
   136  	// or optionally with the aid of any location metadata from the embedded URL field.
   137  	//
   138  	// If the wallet requires additional authentication to sign the request (e.g.
   139  	// a password to decrypt the account, or a PIN code to verify the transaction),
   140  	// an AuthNeededError instance will be returned, containing infos for the user
   141  	// about which fields or actions are needed. The user may retry by providing
   142  	// the needed details via SignTxWithPassphrase, or by other means (e.g. unlock
   143  	// the account in a keystore).
   144  	SignTx(account Account, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error)
   145  
   146  	// SignTxWithPassphrase is identical to SignTx, but also takes a password
   147  	SignTxWithPassphrase(account Account, passphrase string, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error)
   148  }
   149  
   150  // Backend is a "wallet provider" that may contain a batch of accounts they can
   151  // sign transactions with and upon request, do so.
   152  type Backend interface {
   153  	// Wallets retrieves the list of wallets the backend is currently aware of.
   154  	//
   155  	// The returned wallets are not opened by default. For software HD wallets this
   156  	// means that no base seeds are decrypted, and for hardware wallets that no actual
   157  	// connection is established.
   158  	//
   159  	// The resulting wallet list will be sorted alphabetically based on its internal
   160  	// URL assigned by the backend. Since wallets (especially hardware) may come and
   161  	// go, the same wallet might appear at a different positions in the list during
   162  	// subsequent retrievals.
   163  	Wallets() []Wallet
   164  
   165  	// Subscribe creates an async subscription to receive notifications when the
   166  	// backend detects the arrival or departure of a wallet.
   167  	Subscribe(sink chan<- WalletEvent) event.Subscription
   168  }
   169  
   170  // TextHash is a helper function that calculates a hash for the given message that can be
   171  // safely used to calculate a signature from.
   172  //
   173  // The hash is calulcated as
   174  //   keccak256("\x19Ethereum Signed Message:\n"${message length}${message}).
   175  //
   176  // This gives context to the signed message and prevents signing of transactions.
   177  func TextHash(data []byte) []byte {
   178  	hash, _ := TextAndHash(data)
   179  	return hash
   180  }
   181  
   182  // TextAndHash is a helper function that calculates a hash for the given message that can be
   183  // safely used to calculate a signature from.
   184  //
   185  // The hash is calulcated as
   186  //   keccak256("\x19Ethereum Signed Message:\n"${message length}${message}).
   187  //
   188  // This gives context to the signed message and prevents signing of transactions.
   189  func TextAndHash(data []byte) ([]byte, string) {
   190  	msg := fmt.Sprintf("\x19Ethereum Signed Message:\n%d%s", len(data), string(data))
   191  	hasher := sha3.NewLegacyKeccak256()
   192  	hasher.Write([]byte(msg))
   193  	return hasher.Sum(nil), msg
   194  }
   195  
   196  // WalletEventType represents the different event types that can be fired by
   197  // the wallet subscription subsystem.
   198  type WalletEventType int
   199  
   200  const (
   201  	// WalletArrived is fired when a new wallet is detected either via USB or via
   202  	// a filesystem event in the keystore.
   203  	WalletArrived WalletEventType = iota
   204  
   205  	// WalletOpened is fired when a wallet is successfully opened with the purpose
   206  	// of starting any background processes such as automatic key derivation.
   207  	WalletOpened
   208  
   209  	// WalletDropped
   210  	WalletDropped
   211  )
   212  
   213  // WalletEvent is an event fired by an account backend when a wallet arrival or
   214  // departure is detected.
   215  type WalletEvent struct {
   216  	Wallet Wallet          // Wallet instance arrived or departed
   217  	Kind   WalletEventType // Event type that happened in the system
   218  }