| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- // Copyright 2014 The go-ethereum Authors
- // This file is part of the go-ethereum library.
- //
- // The go-ethereum library is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // The go-ethereum library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
- package state
- import (
- "encoding/json"
- "fmt"
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/common/hexutil"
- "github.com/ethereum/go-ethereum/log"
- "github.com/ethereum/go-ethereum/rlp"
- "github.com/ethereum/go-ethereum/trie"
- )
- // DumpAccount represents an account in the state
- type DumpAccount struct {
- Balance string `json:"balance"`
- Nonce uint64 `json:"nonce"`
- Root string `json:"root"`
- CodeHash string `json:"codeHash"`
- Code string `json:"code,omitempty"`
- Storage map[common.Hash]string `json:"storage,omitempty"`
- Address *common.Address `json:"address,omitempty"` // Address only present in iterative (line-by-line) mode
- SecureKey hexutil.Bytes `json:"key,omitempty"` // If we don't have address, we can output the key
- }
- // Dump represents the full dump in a collected format, as one large map
- type Dump struct {
- Root string `json:"root"`
- Accounts map[common.Address]DumpAccount `json:"accounts"`
- }
- // iterativeDump is a 'collector'-implementation which dump output line-by-line iteratively
- type iterativeDump struct {
- *json.Encoder
- }
- // Collector interface which the state trie calls during iteration
- type collector interface {
- onRoot(common.Hash)
- onAccount(common.Address, DumpAccount)
- }
- func (d *Dump) onRoot(root common.Hash) {
- d.Root = fmt.Sprintf("%x", root)
- }
- func (d *Dump) onAccount(addr common.Address, account DumpAccount) {
- d.Accounts[addr] = account
- }
- func (d iterativeDump) onAccount(addr common.Address, account DumpAccount) {
- dumpAccount := &DumpAccount{
- Balance: account.Balance,
- Nonce: account.Nonce,
- Root: account.Root,
- CodeHash: account.CodeHash,
- Code: account.Code,
- Storage: account.Storage,
- SecureKey: account.SecureKey,
- Address: nil,
- }
- if addr != (common.Address{}) {
- dumpAccount.Address = &addr
- }
- d.Encode(dumpAccount)
- }
- func (d iterativeDump) onRoot(root common.Hash) {
- d.Encode(struct {
- Root common.Hash `json:"root"`
- }{root})
- }
- func (s *StateDB) dump(c collector, excludeCode, excludeStorage, excludeMissingPreimages bool) {
- emptyAddress := (common.Address{})
- missingPreimages := 0
- c.onRoot(s.trie.Hash())
- it := trie.NewIterator(s.trie.NodeIterator(nil))
- for it.Next() {
- var data Account
- if err := rlp.DecodeBytes(it.Value, &data); err != nil {
- panic(err)
- }
- addr := common.BytesToAddress(s.trie.GetKey(it.Key))
- obj := newObject(nil, addr, data)
- account := DumpAccount{
- Balance: data.Balance.String(),
- Nonce: data.Nonce,
- Root: common.Bytes2Hex(data.Root[:]),
- CodeHash: common.Bytes2Hex(data.CodeHash),
- }
- if emptyAddress == addr {
- // Preimage missing
- missingPreimages++
- if excludeMissingPreimages {
- continue
- }
- account.SecureKey = it.Key
- }
- if !excludeCode {
- account.Code = common.Bytes2Hex(obj.Code(s.db))
- }
- if !excludeStorage {
- account.Storage = make(map[common.Hash]string)
- storageIt := trie.NewIterator(obj.getTrie(s.db).NodeIterator(nil))
- for storageIt.Next() {
- _, content, _, err := rlp.Split(storageIt.Value)
- if err != nil {
- log.Error("Failed to decode the value returned by iterator", "error", err)
- continue
- }
- account.Storage[common.BytesToHash(s.trie.GetKey(storageIt.Key))] = common.Bytes2Hex(content)
- }
- }
- c.onAccount(addr, account)
- }
- if missingPreimages > 0 {
- log.Warn("Dump incomplete due to missing preimages", "missing", missingPreimages)
- }
- }
- // RawDump returns the entire state an a single large object
- func (s *StateDB) RawDump(excludeCode, excludeStorage, excludeMissingPreimages bool) Dump {
- dump := &Dump{
- Accounts: make(map[common.Address]DumpAccount),
- }
- s.dump(dump, excludeCode, excludeStorage, excludeMissingPreimages)
- return *dump
- }
- // Dump returns a JSON string representing the entire state as a single json-object
- func (s *StateDB) Dump(excludeCode, excludeStorage, excludeMissingPreimages bool) []byte {
- dump := s.RawDump(excludeCode, excludeStorage, excludeMissingPreimages)
- json, err := json.MarshalIndent(dump, "", " ")
- if err != nil {
- fmt.Println("dump err", err)
- }
- return json
- }
- // IterativeDump dumps out accounts as json-objects, delimited by linebreaks on stdout
- func (s *StateDB) IterativeDump(excludeCode, excludeStorage, excludeMissingPreimages bool, output *json.Encoder) {
- s.dump(iterativeDump{output}, excludeCode, excludeStorage, excludeMissingPreimages)
- }
|