2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-05-27 11:43:49 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-03-02 13:03:33 +00:00
|
|
|
"encoding/json"
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
"errors"
|
2015-05-27 11:43:49 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2016-10-21 08:40:00 +00:00
|
|
|
"runtime"
|
2015-05-27 11:43:49 +00:00
|
|
|
"strconv"
|
2016-10-21 08:40:00 +00:00
|
|
|
"sync/atomic"
|
2015-05-27 11:43:49 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2015-05-27 11:43:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2021-03-22 18:06:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2015-05-27 11:43:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2020-04-07 08:23:57 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
2016-06-09 09:44:42 +00:00
|
|
|
"gopkg.in/urfave/cli.v1"
|
2015-05-27 11:43:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-11-30 11:34:24 +00:00
|
|
|
initCommand = cli.Command{
|
2017-05-02 08:55:45 +00:00
|
|
|
Action: utils.MigrateFlags(initGenesis),
|
2016-11-30 11:34:24 +00:00
|
|
|
Name: "init",
|
|
|
|
Usage: "Bootstrap and initialize a new genesis block",
|
|
|
|
ArgsUsage: "<genesisPath>",
|
2017-05-02 08:55:45 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
2016-11-30 11:34:24 +00:00
|
|
|
Description: `
|
|
|
|
The init command initializes a new genesis block and definition for the network.
|
|
|
|
This is a destructive action and changes the network in which you will be
|
|
|
|
participating.
|
2017-05-02 08:55:45 +00:00
|
|
|
|
|
|
|
It expects the genesis file as argument.`,
|
2020-02-04 10:49:13 +00:00
|
|
|
}
|
|
|
|
dumpGenesisCommand = cli.Command{
|
|
|
|
Action: utils.MigrateFlags(dumpGenesis),
|
|
|
|
Name: "dumpgenesis",
|
|
|
|
Usage: "Dumps genesis block JSON configuration to stdout",
|
|
|
|
ArgsUsage: "",
|
|
|
|
Flags: []cli.Flag{
|
2021-03-09 09:50:25 +00:00
|
|
|
utils.MainnetFlag,
|
|
|
|
utils.RopstenFlag,
|
|
|
|
utils.RinkebyFlag,
|
|
|
|
utils.GoerliFlag,
|
2020-02-04 10:49:13 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
|
|
|
Description: `
|
|
|
|
The dumpgenesis command dumps the genesis block configuration in JSON format to stdout.`,
|
2016-11-30 11:34:24 +00:00
|
|
|
}
|
2015-05-27 11:43:49 +00:00
|
|
|
importCommand = cli.Command{
|
2017-05-02 08:55:45 +00:00
|
|
|
Action: utils.MigrateFlags(importChain),
|
2016-11-10 11:00:09 +00:00
|
|
|
Name: "import",
|
|
|
|
Usage: "Import a blockchain file",
|
2017-03-08 11:26:19 +00:00
|
|
|
ArgsUsage: "<filename> (<filename 2> ... <filename N>) ",
|
2017-05-02 08:55:45 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
utils.CacheFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.SyncModeFlag,
|
2018-02-15 08:16:59 +00:00
|
|
|
utils.GCModeFlag,
|
2020-01-19 19:57:56 +00:00
|
|
|
utils.SnapshotFlag,
|
2018-02-15 08:16:59 +00:00
|
|
|
utils.CacheDatabaseFlag,
|
|
|
|
utils.CacheGCFlag,
|
2020-04-07 08:23:57 +00:00
|
|
|
utils.MetricsEnabledFlag,
|
|
|
|
utils.MetricsEnabledExpensiveFlag,
|
2020-07-03 17:12:22 +00:00
|
|
|
utils.MetricsHTTPFlag,
|
|
|
|
utils.MetricsPortFlag,
|
2020-04-07 08:23:57 +00:00
|
|
|
utils.MetricsEnableInfluxDBFlag,
|
2021-08-17 16:40:14 +00:00
|
|
|
utils.MetricsEnableInfluxDBV2Flag,
|
2020-04-07 08:23:57 +00:00
|
|
|
utils.MetricsInfluxDBEndpointFlag,
|
|
|
|
utils.MetricsInfluxDBDatabaseFlag,
|
|
|
|
utils.MetricsInfluxDBUsernameFlag,
|
|
|
|
utils.MetricsInfluxDBPasswordFlag,
|
|
|
|
utils.MetricsInfluxDBTagsFlag,
|
2021-08-17 16:40:14 +00:00
|
|
|
utils.MetricsInfluxDBTokenFlag,
|
|
|
|
utils.MetricsInfluxDBBucketFlag,
|
|
|
|
utils.MetricsInfluxDBOrganizationFlag,
|
2020-05-11 15:58:43 +00:00
|
|
|
utils.TxLookupLimitFlag,
|
2017-05-02 08:55:45 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
2016-11-10 11:00:09 +00:00
|
|
|
Description: `
|
2017-05-03 10:35:47 +00:00
|
|
|
The import command imports blocks from an RLP-encoded form. The form can be one file
|
|
|
|
with several RLP-encoded blocks, or several files can be used.
|
2017-05-02 08:55:45 +00:00
|
|
|
|
2017-07-10 14:48:42 +00:00
|
|
|
If only one file is used, import error will result in failure. If several files are used,
|
2017-05-02 08:55:45 +00:00
|
|
|
processing will proceed even if an individual RLP-file import failure occurs.`,
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
exportCommand = cli.Command{
|
2017-05-02 08:55:45 +00:00
|
|
|
Action: utils.MigrateFlags(exportChain),
|
2016-11-10 11:00:09 +00:00
|
|
|
Name: "export",
|
|
|
|
Usage: "Export blockchain into file",
|
|
|
|
ArgsUsage: "<filename> [<blockNumFirst> <blockNumLast>]",
|
2017-05-02 08:55:45 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
utils.CacheFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.SyncModeFlag,
|
2017-05-02 08:55:45 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
2015-06-06 04:02:32 +00:00
|
|
|
Description: `
|
|
|
|
Requires a first argument of the file to write to.
|
|
|
|
Optional second and third arguments control the first and
|
|
|
|
last block to write. In this mode, the file will be appended
|
2018-07-26 11:26:24 +00:00
|
|
|
if already existing. If the file ends with .gz, the output will
|
|
|
|
be gzipped.`,
|
2018-03-26 10:34:21 +00:00
|
|
|
}
|
|
|
|
importPreimagesCommand = cli.Command{
|
|
|
|
Action: utils.MigrateFlags(importPreimages),
|
|
|
|
Name: "import-preimages",
|
|
|
|
Usage: "Import the preimage database from an RLP stream",
|
|
|
|
ArgsUsage: "<datafile>",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
utils.CacheFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.SyncModeFlag,
|
2018-03-26 10:34:21 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
|
|
|
Description: `
|
|
|
|
The import-preimages command imports hash preimages from an RLP encoded stream.`,
|
|
|
|
}
|
|
|
|
exportPreimagesCommand = cli.Command{
|
|
|
|
Action: utils.MigrateFlags(exportPreimages),
|
|
|
|
Name: "export-preimages",
|
|
|
|
Usage: "Export the preimage database into an RLP stream",
|
|
|
|
ArgsUsage: "<dumpfile>",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
utils.CacheFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.SyncModeFlag,
|
2018-03-26 10:34:21 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
|
|
|
Description: `
|
|
|
|
The export-preimages command export hash preimages to an RLP encoded stream`,
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
dumpCommand = cli.Command{
|
2017-05-02 08:55:45 +00:00
|
|
|
Action: utils.MigrateFlags(dump),
|
2016-11-10 11:00:09 +00:00
|
|
|
Name: "dump",
|
|
|
|
Usage: "Dump a specific block from storage",
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
ArgsUsage: "[? <blockHash> | <blockNum>]",
|
2017-05-02 08:55:45 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
utils.DataDirFlag,
|
|
|
|
utils.CacheFlag,
|
2019-06-24 14:16:44 +00:00
|
|
|
utils.IterativeOutputFlag,
|
|
|
|
utils.ExcludeCodeFlag,
|
|
|
|
utils.ExcludeStorageFlag,
|
|
|
|
utils.IncludeIncompletesFlag,
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
utils.StartKeyFlag,
|
|
|
|
utils.DumpLimitFlag,
|
2017-05-02 08:55:45 +00:00
|
|
|
},
|
|
|
|
Category: "BLOCKCHAIN COMMANDS",
|
2015-05-27 11:43:49 +00:00
|
|
|
Description: `
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
This command dumps out the state for a given block (or latest, if none provided).
|
|
|
|
`,
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2016-11-30 11:34:24 +00:00
|
|
|
// initGenesis will initialise the given JSON format genesis file and writes it as
|
|
|
|
// the zero'd block (i.e. genesis) or will fail hard if it can't succeed.
|
|
|
|
func initGenesis(ctx *cli.Context) error {
|
2017-05-03 10:35:47 +00:00
|
|
|
// Make sure we have a valid genesis JSON
|
2016-11-30 11:34:24 +00:00
|
|
|
genesisPath := ctx.Args().First()
|
|
|
|
if len(genesisPath) == 0 {
|
2017-05-03 10:35:47 +00:00
|
|
|
utils.Fatalf("Must supply path to genesis JSON file")
|
2016-11-30 11:34:24 +00:00
|
|
|
}
|
2017-03-02 13:03:33 +00:00
|
|
|
file, err := os.Open(genesisPath)
|
2016-11-30 11:34:24 +00:00
|
|
|
if err != nil {
|
2017-05-03 10:35:47 +00:00
|
|
|
utils.Fatalf("Failed to read genesis file: %v", err)
|
2016-11-30 11:34:24 +00:00
|
|
|
}
|
2017-03-02 13:03:33 +00:00
|
|
|
defer file.Close()
|
2016-11-30 11:34:24 +00:00
|
|
|
|
2017-03-02 13:03:33 +00:00
|
|
|
genesis := new(core.Genesis)
|
|
|
|
if err := json.NewDecoder(file).Decode(genesis); err != nil {
|
|
|
|
utils.Fatalf("invalid genesis file: %v", err)
|
|
|
|
}
|
2020-08-06 07:24:36 +00:00
|
|
|
// Open and initialise both full and light databases
|
2020-08-03 17:40:46 +00:00
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 10:40:36 +00:00
|
|
|
defer stack.Close()
|
|
|
|
|
2017-05-03 10:35:47 +00:00
|
|
|
for _, name := range []string{"chaindata", "lightchaindata"} {
|
2021-03-22 18:06:30 +00:00
|
|
|
chaindb, err := stack.OpenDatabase(name, 0, 0, "", false)
|
2017-05-03 10:35:47 +00:00
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Failed to open database: %v", err)
|
|
|
|
}
|
|
|
|
_, hash, err := core.SetupGenesisBlock(chaindb, genesis)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Failed to write genesis block: %v", err)
|
|
|
|
}
|
2018-09-24 12:57:49 +00:00
|
|
|
chaindb.Close()
|
2017-05-03 10:35:47 +00:00
|
|
|
log.Info("Successfully wrote genesis state", "database", name, "hash", hash)
|
2016-11-30 11:34:24 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-04 10:49:13 +00:00
|
|
|
func dumpGenesis(ctx *cli.Context) error {
|
2021-03-09 09:50:25 +00:00
|
|
|
// TODO(rjl493456442) support loading from the custom datadir
|
2020-02-04 10:49:13 +00:00
|
|
|
genesis := utils.MakeGenesis(ctx)
|
|
|
|
if genesis == nil {
|
|
|
|
genesis = core.DefaultGenesisBlock()
|
|
|
|
}
|
|
|
|
if err := json.NewEncoder(os.Stdout).Encode(genesis); err != nil {
|
|
|
|
utils.Fatalf("could not encode genesis")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-10 08:23:00 +00:00
|
|
|
func importChain(ctx *cli.Context) error {
|
2017-03-08 11:26:19 +00:00
|
|
|
if len(ctx.Args()) < 1 {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("This command requires an argument.")
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
2020-04-07 08:23:57 +00:00
|
|
|
// Start metrics export if enabled
|
|
|
|
utils.SetupMetrics(ctx)
|
|
|
|
// Start system runtime metrics collection
|
|
|
|
go metrics.CollectProcessMetrics(3 * time.Second)
|
2020-08-06 05:02:05 +00:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 10:40:36 +00:00
|
|
|
defer stack.Close()
|
|
|
|
|
2021-03-22 18:06:30 +00:00
|
|
|
chain, db := utils.MakeChain(ctx, stack)
|
2018-09-24 12:57:49 +00:00
|
|
|
defer db.Close()
|
2016-10-18 10:45:16 +00:00
|
|
|
|
2016-10-21 08:40:00 +00:00
|
|
|
// Start periodically gathering memory profiles
|
|
|
|
var peakMemAlloc, peakMemSys uint64
|
|
|
|
go func() {
|
|
|
|
stats := new(runtime.MemStats)
|
|
|
|
for {
|
|
|
|
runtime.ReadMemStats(stats)
|
|
|
|
if atomic.LoadUint64(&peakMemAlloc) < stats.Alloc {
|
|
|
|
atomic.StoreUint64(&peakMemAlloc, stats.Alloc)
|
|
|
|
}
|
|
|
|
if atomic.LoadUint64(&peakMemSys) < stats.Sys {
|
|
|
|
atomic.StoreUint64(&peakMemSys, stats.Sys)
|
|
|
|
}
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
|
|
|
}()
|
2016-10-18 10:45:16 +00:00
|
|
|
// Import the chain
|
2015-05-27 11:43:49 +00:00
|
|
|
start := time.Now()
|
2017-03-08 11:26:19 +00:00
|
|
|
|
2020-06-24 20:01:58 +00:00
|
|
|
var importErr error
|
|
|
|
|
2017-03-08 11:26:19 +00:00
|
|
|
if len(ctx.Args()) == 1 {
|
|
|
|
if err := utils.ImportChain(chain, ctx.Args().First()); err != nil {
|
2020-06-24 20:01:58 +00:00
|
|
|
importErr = err
|
2018-02-05 16:40:32 +00:00
|
|
|
log.Error("Import error", "err", err)
|
2017-03-08 11:26:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, arg := range ctx.Args() {
|
|
|
|
if err := utils.ImportChain(chain, arg); err != nil {
|
2020-06-24 20:01:58 +00:00
|
|
|
importErr = err
|
2017-03-08 11:26:19 +00:00
|
|
|
log.Error("Import error", "file", arg, "err", err)
|
|
|
|
}
|
|
|
|
}
|
2015-05-27 14:02:08 +00:00
|
|
|
}
|
2018-02-05 16:40:32 +00:00
|
|
|
chain.Stop()
|
2016-10-21 08:40:00 +00:00
|
|
|
fmt.Printf("Import done in %v.\n\n", time.Since(start))
|
2016-10-18 10:45:16 +00:00
|
|
|
|
2016-10-21 08:40:00 +00:00
|
|
|
// Output pre-compaction stats mostly to see the import trashing
|
2021-02-23 10:27:32 +00:00
|
|
|
showLeveldbStats(db)
|
2018-03-08 12:59:00 +00:00
|
|
|
|
2016-10-21 08:40:00 +00:00
|
|
|
// Print the memory statistics used by the importing
|
|
|
|
mem := new(runtime.MemStats)
|
|
|
|
runtime.ReadMemStats(mem)
|
|
|
|
|
|
|
|
fmt.Printf("Object memory: %.3f MB current, %.3f MB peak\n", float64(mem.Alloc)/1024/1024, float64(atomic.LoadUint64(&peakMemAlloc))/1024/1024)
|
|
|
|
fmt.Printf("System memory: %.3f MB current, %.3f MB peak\n", float64(mem.Sys)/1024/1024, float64(atomic.LoadUint64(&peakMemSys))/1024/1024)
|
|
|
|
fmt.Printf("Allocations: %.3f million\n", float64(mem.Mallocs)/1000000)
|
|
|
|
fmt.Printf("GC pause: %v\n\n", time.Duration(mem.PauseTotalNs))
|
|
|
|
|
2019-06-24 14:16:44 +00:00
|
|
|
if ctx.GlobalBool(utils.NoCompactionFlag.Name) {
|
2017-03-08 11:26:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-10-21 08:40:00 +00:00
|
|
|
// Compact the entire database to more accurately measure disk io and print the stats
|
|
|
|
start = time.Now()
|
|
|
|
fmt.Println("Compacting entire database...")
|
2021-02-23 10:27:32 +00:00
|
|
|
if err := db.Compact(nil, nil); err != nil {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Compaction failed: %v", err)
|
2016-10-18 10:45:16 +00:00
|
|
|
}
|
2016-10-21 08:40:00 +00:00
|
|
|
fmt.Printf("Compaction done in %v.\n\n", time.Since(start))
|
|
|
|
|
2021-02-23 10:27:32 +00:00
|
|
|
showLeveldbStats(db)
|
2020-06-24 20:01:58 +00:00
|
|
|
return importErr
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
2016-06-10 08:23:00 +00:00
|
|
|
func exportChain(ctx *cli.Context) error {
|
2015-06-06 13:50:23 +00:00
|
|
|
if len(ctx.Args()) < 1 {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("This command requires an argument.")
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
2020-08-06 05:02:05 +00:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 10:40:36 +00:00
|
|
|
defer stack.Close()
|
|
|
|
|
2021-03-22 18:06:30 +00:00
|
|
|
chain, _ := utils.MakeChain(ctx, stack)
|
2015-05-27 11:43:49 +00:00
|
|
|
start := time.Now()
|
2015-06-06 04:02:32 +00:00
|
|
|
|
|
|
|
var err error
|
2015-06-06 14:04:13 +00:00
|
|
|
fp := ctx.Args().First()
|
2015-06-06 04:02:32 +00:00
|
|
|
if len(ctx.Args()) < 3 {
|
2015-06-06 14:04:13 +00:00
|
|
|
err = utils.ExportChain(chain, fp)
|
2015-06-06 04:02:32 +00:00
|
|
|
} else {
|
|
|
|
// This can be improved to allow for numbers larger than 9223372036854775807
|
|
|
|
first, ferr := strconv.ParseInt(ctx.Args().Get(1), 10, 64)
|
|
|
|
last, lerr := strconv.ParseInt(ctx.Args().Get(2), 10, 64)
|
|
|
|
if ferr != nil || lerr != nil {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Export error in parsing parameters: block number not an integer\n")
|
2015-06-06 04:02:32 +00:00
|
|
|
}
|
2015-06-06 14:04:13 +00:00
|
|
|
if first < 0 || last < 0 {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Export error: block number must be greater than 0\n")
|
2015-06-06 14:04:13 +00:00
|
|
|
}
|
2021-03-22 18:11:10 +00:00
|
|
|
if head := chain.CurrentFastBlock(); uint64(last) > head.NumberU64() {
|
|
|
|
utils.Fatalf("Export error: block number %d larger than head block %d\n", uint64(last), head.NumberU64())
|
|
|
|
}
|
2015-06-06 14:04:13 +00:00
|
|
|
err = utils.ExportAppendChain(chain, fp, uint64(first), uint64(last))
|
2015-06-06 04:02:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Export error: %v\n", err)
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
2018-03-26 10:34:21 +00:00
|
|
|
fmt.Printf("Export done in %v\n", time.Since(start))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// importPreimages imports preimage data from the specified file.
|
|
|
|
func importPreimages(ctx *cli.Context) error {
|
|
|
|
if len(ctx.Args()) < 1 {
|
|
|
|
utils.Fatalf("This command requires an argument.")
|
|
|
|
}
|
2020-08-06 07:24:36 +00:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 10:40:36 +00:00
|
|
|
defer stack.Close()
|
2018-03-26 10:34:21 +00:00
|
|
|
|
2021-03-22 18:06:30 +00:00
|
|
|
db := utils.MakeChainDatabase(ctx, stack, false)
|
2018-03-26 10:34:21 +00:00
|
|
|
start := time.Now()
|
2019-02-07 10:40:36 +00:00
|
|
|
|
2018-09-24 12:57:49 +00:00
|
|
|
if err := utils.ImportPreimages(db, ctx.Args().First()); err != nil {
|
2018-09-19 10:29:40 +00:00
|
|
|
utils.Fatalf("Import error: %v\n", err)
|
2018-03-26 10:34:21 +00:00
|
|
|
}
|
2018-09-19 10:29:40 +00:00
|
|
|
fmt.Printf("Import done in %v\n", time.Since(start))
|
2018-03-26 10:34:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// exportPreimages dumps the preimage data to specified json file in streaming way.
|
|
|
|
func exportPreimages(ctx *cli.Context) error {
|
|
|
|
if len(ctx.Args()) < 1 {
|
|
|
|
utils.Fatalf("This command requires an argument.")
|
|
|
|
}
|
2020-08-06 07:24:36 +00:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 10:40:36 +00:00
|
|
|
defer stack.Close()
|
2018-03-26 10:34:21 +00:00
|
|
|
|
2021-03-22 18:06:30 +00:00
|
|
|
db := utils.MakeChainDatabase(ctx, stack, true)
|
2018-03-26 10:34:21 +00:00
|
|
|
start := time.Now()
|
2019-02-07 10:40:36 +00:00
|
|
|
|
2018-09-24 12:57:49 +00:00
|
|
|
if err := utils.ExportPreimages(db, ctx.Args().First()); err != nil {
|
2018-03-26 10:34:21 +00:00
|
|
|
utils.Fatalf("Export error: %v\n", err)
|
|
|
|
}
|
|
|
|
fmt.Printf("Export done in %v\n", time.Since(start))
|
2016-06-10 08:23:00 +00:00
|
|
|
return nil
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
func parseDumpConfig(ctx *cli.Context, stack *node.Node) (*state.DumpConfig, ethdb.Database, common.Hash, error) {
|
2021-03-22 18:06:30 +00:00
|
|
|
db := utils.MakeChainDatabase(ctx, stack, true)
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
var header *types.Header
|
|
|
|
if ctx.NArg() > 1 {
|
|
|
|
return nil, nil, common.Hash{}, fmt.Errorf("expected 1 argument (number or hash), got %d", ctx.NArg())
|
|
|
|
}
|
|
|
|
if ctx.NArg() == 1 {
|
|
|
|
arg := ctx.Args().First()
|
2015-05-27 11:43:49 +00:00
|
|
|
if hashish(arg) {
|
2021-03-22 18:06:30 +00:00
|
|
|
hash := common.HexToHash(arg)
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
if number := rawdb.ReadHeaderNumber(db, hash); number != nil {
|
2021-03-22 18:06:30 +00:00
|
|
|
header = rawdb.ReadHeader(db, hash, *number)
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
} else {
|
|
|
|
return nil, nil, common.Hash{}, fmt.Errorf("block %x not found", hash)
|
2021-03-22 18:06:30 +00:00
|
|
|
}
|
2015-05-27 11:43:49 +00:00
|
|
|
} else {
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
number, err := strconv.Atoi(arg)
|
2015-10-06 14:35:55 +00:00
|
|
|
if err != nil {
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
return nil, nil, common.Hash{}, err
|
2015-10-06 14:35:55 +00:00
|
|
|
}
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
if hash := rawdb.ReadCanonicalHash(db, uint64(number)); hash != (common.Hash{}) {
|
|
|
|
header = rawdb.ReadHeader(db, hash, uint64(number))
|
2019-06-24 14:16:44 +00:00
|
|
|
} else {
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
return nil, nil, common.Hash{}, fmt.Errorf("header for block %d not found", number)
|
2019-06-24 14:16:44 +00:00
|
|
|
}
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
cmd/geth, eth, core: snapshot dump + unify with trie dump (#22795)
* cmd/geth, eth, core: snapshot dump + unify with trie dump
* cmd/evm: dump API fixes
* cmd/geth, core, eth: fix some remaining errors
* cmd/evm: dump - add limit, support address startkey, address review concerns
* cmd, core/state, eth: minor polishes, fix snap dump crash, unify format
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-05-12 08:05:39 +00:00
|
|
|
} else {
|
|
|
|
// Use latest
|
|
|
|
header = rawdb.ReadHeadHeader(db)
|
|
|
|
}
|
|
|
|
if header == nil {
|
|
|
|
return nil, nil, common.Hash{}, errors.New("no head block found")
|
|
|
|
}
|
|
|
|
startArg := common.FromHex(ctx.String(utils.StartKeyFlag.Name))
|
|
|
|
var start common.Hash
|
|
|
|
switch len(startArg) {
|
|
|
|
case 0: // common.Hash
|
|
|
|
case 32:
|
|
|
|
start = common.BytesToHash(startArg)
|
|
|
|
case 20:
|
|
|
|
start = crypto.Keccak256Hash(startArg)
|
|
|
|
log.Info("Converting start-address to hash", "address", common.BytesToAddress(startArg), "hash", start.Hex())
|
|
|
|
default:
|
|
|
|
return nil, nil, common.Hash{}, fmt.Errorf("invalid start argument: %x. 20 or 32 hex-encoded bytes required", startArg)
|
|
|
|
}
|
|
|
|
var conf = &state.DumpConfig{
|
|
|
|
SkipCode: ctx.Bool(utils.ExcludeCodeFlag.Name),
|
|
|
|
SkipStorage: ctx.Bool(utils.ExcludeStorageFlag.Name),
|
|
|
|
OnlyWithAddresses: !ctx.Bool(utils.IncludeIncompletesFlag.Name),
|
|
|
|
Start: start.Bytes(),
|
|
|
|
Max: ctx.Uint64(utils.DumpLimitFlag.Name),
|
|
|
|
}
|
|
|
|
log.Info("State dump configured", "block", header.Number, "hash", header.Hash().Hex(),
|
|
|
|
"skipcode", conf.SkipCode, "skipstorage", conf.SkipStorage,
|
|
|
|
"start", hexutil.Encode(conf.Start), "limit", conf.Max)
|
|
|
|
return conf, db, header.Root, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func dump(ctx *cli.Context) error {
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
|
|
|
defer stack.Close()
|
|
|
|
|
|
|
|
conf, db, root, err := parseDumpConfig(ctx, stack)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
state, err := state.New(root, state.NewDatabase(db), nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ctx.Bool(utils.IterativeOutputFlag.Name) {
|
|
|
|
state.IterativeDump(conf, json.NewEncoder(os.Stdout))
|
|
|
|
} else {
|
|
|
|
if conf.OnlyWithAddresses {
|
|
|
|
fmt.Fprintf(os.Stderr, "If you want to include accounts with missing preimages, you need iterative output, since"+
|
|
|
|
" otherwise the accounts will overwrite each other in the resulting mapping.")
|
|
|
|
return fmt.Errorf("incompatible options")
|
|
|
|
}
|
|
|
|
fmt.Println(string(state.Dump(conf)))
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
2016-06-10 08:23:00 +00:00
|
|
|
return nil
|
2015-05-27 11:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// hashish returns true for strings that look like hashes.
|
|
|
|
func hashish(x string) bool {
|
|
|
|
_, err := strconv.Atoi(x)
|
|
|
|
return err != nil
|
|
|
|
}
|