2015-07-06 19:54:22 -05: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 11:48:40 -05:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-06 19:54:22 -05:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 11:48:40 -05:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-06 19:54:22 -05:00
|
|
|
|
2015-05-27 06:43:49 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-03-02 07:03:33 -06: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 03:05:39 -05:00
|
|
|
"errors"
|
2015-05-27 06:43:49 -05:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2016-10-21 03:40:00 -05:00
|
|
|
"runtime"
|
2024-10-31 12:26:02 -05:00
|
|
|
"slices"
|
2015-05-27 06:43:49 -05:00
|
|
|
"strconv"
|
2016-10-21 03:40:00 -05:00
|
|
|
"sync/atomic"
|
2015-05-27 06:43:49 -05: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 03:05:39 -05:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2015-05-27 06:43:49 -05:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2021-03-22 13:06:30 -05:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2015-05-27 06:43:49 -05: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 03:05:39 -05:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2024-02-07 10:18:27 -06:00
|
|
|
"github.com/ethereum/go-ethereum/internal/era"
|
2017-02-22 06:10:07 -06:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2024-02-07 10:18:27 -06:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2022-06-27 11:22:36 -05:00
|
|
|
"github.com/urfave/cli/v2"
|
2015-05-27 06:43:49 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-06-27 11:22:36 -05:00
|
|
|
initCommand = &cli.Command{
|
|
|
|
Action: initGenesis,
|
2016-11-30 05:34:24 -06:00
|
|
|
Name: "init",
|
|
|
|
Usage: "Bootstrap and initialize a new genesis block",
|
|
|
|
ArgsUsage: "<genesisPath>",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 14:21:36 -05:00
|
|
|
utils.CachePreimagesFlag,
|
2023-10-26 21:15:14 -05:00
|
|
|
utils.OverrideCancun,
|
|
|
|
utils.OverrideVerkle,
|
2023-09-22 06:56:48 -05:00
|
|
|
}, utils.DatabaseFlags),
|
2016-11-30 05:34:24 -06: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 03:55:45 -05:00
|
|
|
|
|
|
|
It expects the genesis file as argument.`,
|
2020-02-04 04:49:13 -06:00
|
|
|
}
|
2022-06-27 11:22:36 -05:00
|
|
|
dumpGenesisCommand = &cli.Command{
|
|
|
|
Action: dumpGenesis,
|
2020-02-04 04:49:13 -06:00
|
|
|
Name: "dumpgenesis",
|
|
|
|
Usage: "Dumps genesis block JSON configuration to stdout",
|
|
|
|
ArgsUsage: "",
|
2022-09-26 06:55:18 -05:00
|
|
|
Flags: append([]cli.Flag{utils.DataDirFlag}, utils.NetworkFlags...),
|
2020-02-04 04:49:13 -06:00
|
|
|
Description: `
|
2022-09-26 06:55:18 -05:00
|
|
|
The dumpgenesis command prints the genesis configuration of the network preset
|
|
|
|
if one is set. Otherwise it prints the genesis from the datadir.`,
|
2016-11-30 05:34:24 -06:00
|
|
|
}
|
2022-06-27 11:22:36 -05:00
|
|
|
importCommand = &cli.Command{
|
|
|
|
Action: importChain,
|
2016-11-10 05:00:09 -06:00
|
|
|
Name: "import",
|
|
|
|
Usage: "Import a blockchain file",
|
2017-03-08 05:26:19 -06:00
|
|
|
ArgsUsage: "<filename> (<filename 2> ... <filename N>) ",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
2017-05-02 03:55:45 -05:00
|
|
|
utils.CacheFlag,
|
2018-08-15 03:01:49 -05:00
|
|
|
utils.SyncModeFlag,
|
2018-02-15 02:16:59 -06:00
|
|
|
utils.GCModeFlag,
|
2020-01-19 13:57:56 -06:00
|
|
|
utils.SnapshotFlag,
|
2018-02-15 02:16:59 -06:00
|
|
|
utils.CacheDatabaseFlag,
|
|
|
|
utils.CacheGCFlag,
|
2020-04-07 03:23:57 -05:00
|
|
|
utils.MetricsEnabledFlag,
|
|
|
|
utils.MetricsEnabledExpensiveFlag,
|
2020-07-03 12:12:22 -05:00
|
|
|
utils.MetricsHTTPFlag,
|
|
|
|
utils.MetricsPortFlag,
|
2020-04-07 03:23:57 -05:00
|
|
|
utils.MetricsEnableInfluxDBFlag,
|
2021-08-17 11:40:14 -05:00
|
|
|
utils.MetricsEnableInfluxDBV2Flag,
|
2020-04-07 03:23:57 -05:00
|
|
|
utils.MetricsInfluxDBEndpointFlag,
|
|
|
|
utils.MetricsInfluxDBDatabaseFlag,
|
|
|
|
utils.MetricsInfluxDBUsernameFlag,
|
|
|
|
utils.MetricsInfluxDBPasswordFlag,
|
|
|
|
utils.MetricsInfluxDBTagsFlag,
|
2021-08-17 11:40:14 -05:00
|
|
|
utils.MetricsInfluxDBTokenFlag,
|
|
|
|
utils.MetricsInfluxDBBucketFlag,
|
|
|
|
utils.MetricsInfluxDBOrganizationFlag,
|
2020-05-11 10:58:43 -05:00
|
|
|
utils.TxLookupLimitFlag,
|
2024-03-22 12:53:53 -05:00
|
|
|
utils.VMTraceFlag,
|
2024-04-24 00:53:16 -05:00
|
|
|
utils.VMTraceJsonConfigFlag,
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 14:21:36 -05:00
|
|
|
utils.TransactionHistoryFlag,
|
|
|
|
utils.StateHistoryFlag,
|
2023-09-22 06:56:48 -05:00
|
|
|
}, utils.DatabaseFlags),
|
2016-11-10 05:00:09 -06:00
|
|
|
Description: `
|
2017-05-03 05:35:47 -05: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 03:55:45 -05:00
|
|
|
|
2017-07-10 09:48:42 -05:00
|
|
|
If only one file is used, import error will result in failure. If several files are used,
|
2017-05-02 03:55:45 -05:00
|
|
|
processing will proceed even if an individual RLP-file import failure occurs.`,
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
2022-06-27 11:22:36 -05:00
|
|
|
exportCommand = &cli.Command{
|
|
|
|
Action: exportChain,
|
2016-11-10 05:00:09 -06:00
|
|
|
Name: "export",
|
|
|
|
Usage: "Export blockchain into file",
|
|
|
|
ArgsUsage: "<filename> [<blockNumFirst> <blockNumLast>]",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
2017-05-02 03:55:45 -05:00
|
|
|
utils.CacheFlag,
|
2018-08-15 03:01:49 -05:00
|
|
|
utils.SyncModeFlag,
|
2023-09-22 06:56:48 -05:00
|
|
|
}, utils.DatabaseFlags),
|
2015-06-05 23:02:32 -05: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 06:26:24 -05:00
|
|
|
if already existing. If the file ends with .gz, the output will
|
|
|
|
be gzipped.`,
|
2024-02-07 10:18:27 -06:00
|
|
|
}
|
|
|
|
importHistoryCommand = &cli.Command{
|
|
|
|
Action: importHistory,
|
|
|
|
Name: "import-history",
|
|
|
|
Usage: "Import an Era archive",
|
|
|
|
ArgsUsage: "<dir>",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
2024-02-07 10:18:27 -06:00
|
|
|
utils.TxLookupLimitFlag,
|
|
|
|
},
|
|
|
|
utils.DatabaseFlags,
|
|
|
|
utils.NetworkFlags,
|
|
|
|
),
|
|
|
|
Description: `
|
|
|
|
The import-history command will import blocks and their corresponding receipts
|
|
|
|
from Era archives.
|
|
|
|
`,
|
|
|
|
}
|
|
|
|
exportHistoryCommand = &cli.Command{
|
|
|
|
Action: exportHistory,
|
|
|
|
Name: "export-history",
|
|
|
|
Usage: "Export blockchain history to Era archives",
|
|
|
|
ArgsUsage: "<dir> <first> <last>",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat(utils.DatabaseFlags),
|
2024-02-07 10:18:27 -06:00
|
|
|
Description: `
|
|
|
|
The export-history command will export blocks and their corresponding receipts
|
|
|
|
into Era archives. Eras are typically packaged in steps of 8192 blocks.
|
|
|
|
`,
|
2018-03-26 05:34:21 -05:00
|
|
|
}
|
2022-06-27 11:22:36 -05:00
|
|
|
importPreimagesCommand = &cli.Command{
|
|
|
|
Action: importPreimages,
|
2018-03-26 05:34:21 -05:00
|
|
|
Name: "import-preimages",
|
|
|
|
Usage: "Import the preimage database from an RLP stream",
|
|
|
|
ArgsUsage: "<datafile>",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
2018-03-26 05:34:21 -05:00
|
|
|
utils.CacheFlag,
|
2018-08-15 03:01:49 -05:00
|
|
|
utils.SyncModeFlag,
|
2023-09-22 06:56:48 -05:00
|
|
|
}, utils.DatabaseFlags),
|
2018-03-26 05:34:21 -05:00
|
|
|
Description: `
|
2021-11-02 05:31:45 -05:00
|
|
|
The import-preimages command imports hash preimages from an RLP encoded stream.
|
|
|
|
It's deprecated, please use "geth db import" instead.
|
|
|
|
`,
|
2018-03-26 05:34:21 -05:00
|
|
|
}
|
2023-11-22 07:48:25 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
dumpCommand = &cli.Command{
|
|
|
|
Action: dump,
|
2016-11-10 05:00:09 -06: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 03:05:39 -05:00
|
|
|
ArgsUsage: "[? <blockHash> | <blockNum>]",
|
2024-10-31 12:26:02 -05:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
2017-05-02 03:55:45 -05:00
|
|
|
utils.CacheFlag,
|
2019-06-24 09:16:44 -05: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 03:05:39 -05:00
|
|
|
utils.StartKeyFlag,
|
|
|
|
utils.DumpLimitFlag,
|
2023-09-22 06:56:48 -05:00
|
|
|
}, utils.DatabaseFlags),
|
2015-05-27 06:43:49 -05: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 03:05:39 -05:00
|
|
|
This command dumps out the state for a given block (or latest, if none provided).
|
|
|
|
`,
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2016-11-30 05:34:24 -06: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 {
|
2022-07-04 12:52:19 -05:00
|
|
|
if ctx.Args().Len() != 1 {
|
|
|
|
utils.Fatalf("need genesis.json file as the only argument")
|
|
|
|
}
|
2016-11-30 05:34:24 -06:00
|
|
|
genesisPath := ctx.Args().First()
|
|
|
|
if len(genesisPath) == 0 {
|
2022-07-04 12:52:19 -05:00
|
|
|
utils.Fatalf("invalid path to genesis file")
|
2016-11-30 05:34:24 -06:00
|
|
|
}
|
2017-03-02 07:03:33 -06:00
|
|
|
file, err := os.Open(genesisPath)
|
2016-11-30 05:34:24 -06:00
|
|
|
if err != nil {
|
2017-05-03 05:35:47 -05:00
|
|
|
utils.Fatalf("Failed to read genesis file: %v", err)
|
2016-11-30 05:34:24 -06:00
|
|
|
}
|
2017-03-02 07:03:33 -06:00
|
|
|
defer file.Close()
|
2016-11-30 05:34:24 -06:00
|
|
|
|
2017-03-02 07:03:33 -06:00
|
|
|
genesis := new(core.Genesis)
|
|
|
|
if err := json.NewDecoder(file).Decode(genesis); err != nil {
|
|
|
|
utils.Fatalf("invalid genesis file: %v", err)
|
|
|
|
}
|
2020-08-06 02:24:36 -05:00
|
|
|
// Open and initialise both full and light databases
|
2020-08-03 12:40:46 -05:00
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 04:40:36 -06:00
|
|
|
defer stack.Close()
|
2022-11-28 07:31:28 -06:00
|
|
|
|
2023-10-26 21:15:14 -05:00
|
|
|
var overrides core.ChainOverrides
|
|
|
|
if ctx.IsSet(utils.OverrideCancun.Name) {
|
|
|
|
v := ctx.Uint64(utils.OverrideCancun.Name)
|
|
|
|
overrides.OverrideCancun = &v
|
|
|
|
}
|
|
|
|
if ctx.IsSet(utils.OverrideVerkle.Name) {
|
|
|
|
v := ctx.Uint64(utils.OverrideVerkle.Name)
|
|
|
|
overrides.OverrideVerkle = &v
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 14:21:36 -05:00
|
|
|
|
2024-09-30 11:32:39 -05:00
|
|
|
chaindb, err := stack.OpenDatabaseWithFreezer("chaindata", 0, 0, ctx.String(utils.AncientFlag.Name), "", false)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Failed to open database: %v", err)
|
|
|
|
}
|
|
|
|
defer chaindb.Close()
|
|
|
|
|
|
|
|
triedb := utils.MakeTrieDatabase(ctx, chaindb, ctx.Bool(utils.CachePreimagesFlag.Name), false, genesis.IsVerkle())
|
|
|
|
defer triedb.Close()
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 14:21:36 -05:00
|
|
|
|
cmd, core, miner: rework genesis setup (#30907)
This pull request refactors the genesis setup function, the major
changes are highlighted here:
**(a) Triedb is opened in verkle mode if `EnableVerkleAtGenesis` is
configured in chainConfig or the database has been initialized previously with
`EnableVerkleAtGenesis` configured**.
A new config field `EnableVerkleAtGenesis` has been added in the
chainConfig. This field must be configured with True if Geth wants to initialize
the genesis in Verkle mode.
In the verkle devnet-7, the verkle transition is activated at genesis.
Therefore, the verkle rules should be used since the genesis. In production
networks (mainnet and public testnets), verkle activation always occurs after
the genesis block. Therefore, this flag is only made for devnet and should be
deprecated later. Besides, verkle transition at non-genesis block hasn't been
implemented yet, it should be done in the following PRs.
**(b) The genesis initialization condition has been simplified**
There is a special mode supported by the Geth is that: Geth can be
initialized with an existing chain segment, which can fasten the node sync
process by retaining the chain freezer folder.
Originally, if the triedb is regarded as uninitialized and the genesis block can
be found in the chain freezer, the genesis block along with genesis state will be
committed. This condition has been simplified to checking the presence of chain
config in key-value store. The existence of chain config can represent the genesis
has been committed.
2025-01-14 04:49:30 -06:00
|
|
|
_, hash, _, err := core.SetupGenesisBlockWithOverride(chaindb, triedb, genesis, &overrides)
|
2024-09-30 11:32:39 -05:00
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Failed to write genesis block: %v", err)
|
2016-11-30 05:34:24 -06:00
|
|
|
}
|
2024-09-30 11:32:39 -05:00
|
|
|
log.Info("Successfully wrote genesis state", "database", "chaindata", "hash", hash)
|
|
|
|
|
2016-11-30 05:34:24 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-04 04:49:13 -06:00
|
|
|
func dumpGenesis(ctx *cli.Context) error {
|
2023-11-22 05:08:39 -06:00
|
|
|
// check if there is a testnet preset enabled
|
|
|
|
var genesis *core.Genesis
|
2022-09-26 06:55:18 -05:00
|
|
|
if utils.IsNetworkPreset(ctx) {
|
2023-11-22 05:08:39 -06:00
|
|
|
genesis = utils.MakeGenesis(ctx)
|
|
|
|
} else if ctx.IsSet(utils.DeveloperFlag.Name) && !ctx.IsSet(utils.DataDirFlag.Name) {
|
|
|
|
genesis = core.DeveloperGenesisBlock(11_500_000, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if genesis != nil {
|
2022-09-26 06:55:18 -05:00
|
|
|
if err := json.NewEncoder(os.Stdout).Encode(genesis); err != nil {
|
|
|
|
utils.Fatalf("could not encode genesis: %s", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2023-11-22 05:08:39 -06:00
|
|
|
|
2022-09-26 06:55:18 -05:00
|
|
|
// dump whatever already exists in the datadir
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
|
|
|
|
2024-09-30 11:32:39 -05:00
|
|
|
db, err := stack.OpenDatabase("chaindata", 0, 0, "", true)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
genesis, err = core.ReadGenesis(db)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("failed to read genesis: %s", err)
|
2020-02-04 04:49:13 -06:00
|
|
|
}
|
2024-09-30 11:32:39 -05:00
|
|
|
|
|
|
|
if err := json.NewEncoder(os.Stdout).Encode(*genesis); err != nil {
|
|
|
|
utils.Fatalf("could not encode stored genesis: %s", err)
|
2020-02-04 04:49:13 -06:00
|
|
|
}
|
2024-09-30 11:32:39 -05:00
|
|
|
|
2020-02-04 04:49:13 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-06-10 03:23:00 -05:00
|
|
|
func importChain(ctx *cli.Context) error {
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Args().Len() < 1 {
|
2017-02-22 09:22:50 -06:00
|
|
|
utils.Fatalf("This command requires an argument.")
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
metrics, cmd/geth: change init-process of metrics (#30814)
This PR modifies how the metrics library handles `Enabled`: previously,
the package `init` decided whether to serve real metrics or just
dummy-types.
This has several drawbacks:
- During pkg init, we need to determine whether metrics are enabled or
not. So we first hacked in a check if certain geth-specific
commandline-flags were enabled. Then we added a similar check for
geth-env-vars. Then we almost added a very elaborate check for
toml-config-file, plus toml parsing.
- Using "real" types and dummy types interchangeably means that
everything is hidden behind interfaces. This has a performance penalty,
and also it just adds a lot of code.
This PR removes the interface stuff, uses concrete types, and allows for
the setting of Enabled to happen later. It is still assumed that
`metrics.Enable()` is invoked early on.
The somewhat 'heavy' operations, such as ticking meters and exp-decay,
now checks the enable-flag to prevent resource leak.
The change may be large, but it's mostly pretty trivial, and from the
last time I gutted the metrics, I ensured that we have fairly good test
coverage.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-12-10 06:27:29 -06:00
|
|
|
stack, cfg := makeConfigNode(ctx)
|
2019-02-07 04:40:36 -06:00
|
|
|
defer stack.Close()
|
|
|
|
|
metrics, cmd/geth: change init-process of metrics (#30814)
This PR modifies how the metrics library handles `Enabled`: previously,
the package `init` decided whether to serve real metrics or just
dummy-types.
This has several drawbacks:
- During pkg init, we need to determine whether metrics are enabled or
not. So we first hacked in a check if certain geth-specific
commandline-flags were enabled. Then we added a similar check for
geth-env-vars. Then we almost added a very elaborate check for
toml-config-file, plus toml parsing.
- Using "real" types and dummy types interchangeably means that
everything is hidden behind interfaces. This has a performance penalty,
and also it just adds a lot of code.
This PR removes the interface stuff, uses concrete types, and allows for
the setting of Enabled to happen later. It is still assumed that
`metrics.Enable()` is invoked early on.
The somewhat 'heavy' operations, such as ticking meters and exp-decay,
now checks the enable-flag to prevent resource leak.
The change may be large, but it's mostly pretty trivial, and from the
last time I gutted the metrics, I ensured that we have fairly good test
coverage.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-12-10 06:27:29 -06:00
|
|
|
// Start metrics export if enabled
|
|
|
|
utils.SetupMetrics(&cfg.Metrics)
|
|
|
|
|
2022-10-19 01:20:39 -05:00
|
|
|
chain, db := utils.MakeChain(ctx, stack, false)
|
2018-09-24 07:57:49 -05:00
|
|
|
defer db.Close()
|
2016-10-18 05:45:16 -05:00
|
|
|
|
2016-10-21 03:40:00 -05:00
|
|
|
// Start periodically gathering memory profiles
|
2023-07-24 05:22:54 -05:00
|
|
|
var peakMemAlloc, peakMemSys atomic.Uint64
|
2016-10-21 03:40:00 -05:00
|
|
|
go func() {
|
|
|
|
stats := new(runtime.MemStats)
|
|
|
|
for {
|
|
|
|
runtime.ReadMemStats(stats)
|
2023-07-24 05:22:54 -05:00
|
|
|
if peakMemAlloc.Load() < stats.Alloc {
|
|
|
|
peakMemAlloc.Store(stats.Alloc)
|
2016-10-21 03:40:00 -05:00
|
|
|
}
|
2023-07-24 05:22:54 -05:00
|
|
|
if peakMemSys.Load() < stats.Sys {
|
|
|
|
peakMemSys.Store(stats.Sys)
|
2016-10-21 03:40:00 -05:00
|
|
|
}
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
|
|
|
}()
|
2016-10-18 05:45:16 -05:00
|
|
|
// Import the chain
|
2015-05-27 06:43:49 -05:00
|
|
|
start := time.Now()
|
2017-03-08 05:26:19 -06:00
|
|
|
|
2020-06-24 15:01:58 -05:00
|
|
|
var importErr error
|
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Args().Len() == 1 {
|
2017-03-08 05:26:19 -06:00
|
|
|
if err := utils.ImportChain(chain, ctx.Args().First()); err != nil {
|
2020-06-24 15:01:58 -05:00
|
|
|
importErr = err
|
2018-02-05 10:40:32 -06:00
|
|
|
log.Error("Import error", "err", err)
|
2017-03-08 05:26:19 -06:00
|
|
|
}
|
|
|
|
} else {
|
2022-06-27 11:22:36 -05:00
|
|
|
for _, arg := range ctx.Args().Slice() {
|
2017-03-08 05:26:19 -06:00
|
|
|
if err := utils.ImportChain(chain, arg); err != nil {
|
2020-06-24 15:01:58 -05:00
|
|
|
importErr = err
|
2017-03-08 05:26:19 -06:00
|
|
|
log.Error("Import error", "file", arg, "err", err)
|
|
|
|
}
|
|
|
|
}
|
2015-05-27 09:02:08 -05:00
|
|
|
}
|
2018-02-05 10:40:32 -06:00
|
|
|
chain.Stop()
|
2016-10-21 03:40:00 -05:00
|
|
|
fmt.Printf("Import done in %v.\n\n", time.Since(start))
|
2016-10-18 05:45:16 -05:00
|
|
|
|
2016-10-21 03:40:00 -05:00
|
|
|
// Output pre-compaction stats mostly to see the import trashing
|
2024-06-19 01:47:17 -05:00
|
|
|
showDBStats(db)
|
2018-03-08 06:59:00 -06:00
|
|
|
|
2016-10-21 03:40:00 -05:00
|
|
|
// Print the memory statistics used by the importing
|
|
|
|
mem := new(runtime.MemStats)
|
|
|
|
runtime.ReadMemStats(mem)
|
|
|
|
|
2023-07-24 05:22:54 -05:00
|
|
|
fmt.Printf("Object memory: %.3f MB current, %.3f MB peak\n", float64(mem.Alloc)/1024/1024, float64(peakMemAlloc.Load())/1024/1024)
|
|
|
|
fmt.Printf("System memory: %.3f MB current, %.3f MB peak\n", float64(mem.Sys)/1024/1024, float64(peakMemSys.Load())/1024/1024)
|
2016-10-21 03:40:00 -05:00
|
|
|
fmt.Printf("Allocations: %.3f million\n", float64(mem.Mallocs)/1000000)
|
|
|
|
fmt.Printf("GC pause: %v\n\n", time.Duration(mem.PauseTotalNs))
|
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Bool(utils.NoCompactionFlag.Name) {
|
2017-03-08 05:26:19 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-10-21 03:40:00 -05: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 04:27:32 -06:00
|
|
|
if err := db.Compact(nil, nil); err != nil {
|
2017-02-22 09:22:50 -06:00
|
|
|
utils.Fatalf("Compaction failed: %v", err)
|
2016-10-18 05:45:16 -05:00
|
|
|
}
|
2016-10-21 03:40:00 -05:00
|
|
|
fmt.Printf("Compaction done in %v.\n\n", time.Since(start))
|
|
|
|
|
2024-06-19 01:47:17 -05:00
|
|
|
showDBStats(db)
|
2020-06-24 15:01:58 -05:00
|
|
|
return importErr
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
|
|
|
|
2016-06-10 03:23:00 -05:00
|
|
|
func exportChain(ctx *cli.Context) error {
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Args().Len() < 1 {
|
2017-02-22 09:22:50 -06:00
|
|
|
utils.Fatalf("This command requires an argument.")
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
2020-08-06 00:02:05 -05:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 04:40:36 -06:00
|
|
|
defer stack.Close()
|
|
|
|
|
2023-09-25 11:28:20 -05:00
|
|
|
chain, db := utils.MakeChain(ctx, stack, true)
|
|
|
|
defer db.Close()
|
2015-05-27 06:43:49 -05:00
|
|
|
start := time.Now()
|
2015-06-05 23:02:32 -05:00
|
|
|
|
|
|
|
var err error
|
2015-06-06 09:04:13 -05:00
|
|
|
fp := ctx.Args().First()
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Args().Len() < 3 {
|
2015-06-06 09:04:13 -05:00
|
|
|
err = utils.ExportChain(chain, fp)
|
2015-06-05 23:02:32 -05: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 09:22:50 -06:00
|
|
|
utils.Fatalf("Export error in parsing parameters: block number not an integer\n")
|
2015-06-05 23:02:32 -05:00
|
|
|
}
|
2015-06-06 09:04:13 -05:00
|
|
|
if first < 0 || last < 0 {
|
2017-02-22 09:22:50 -06:00
|
|
|
utils.Fatalf("Export error: block number must be greater than 0\n")
|
2015-06-06 09:04:13 -05:00
|
|
|
}
|
2023-03-02 00:29:15 -06:00
|
|
|
if head := chain.CurrentSnapBlock(); uint64(last) > head.Number.Uint64() {
|
|
|
|
utils.Fatalf("Export error: block number %d larger than head block %d\n", uint64(last), head.Number.Uint64())
|
2021-03-22 13:11:10 -05:00
|
|
|
}
|
2015-06-06 09:04:13 -05:00
|
|
|
err = utils.ExportAppendChain(chain, fp, uint64(first), uint64(last))
|
2015-06-05 23:02:32 -05:00
|
|
|
}
|
2024-02-07 10:18:27 -06:00
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Export error: %v\n", err)
|
|
|
|
}
|
|
|
|
fmt.Printf("Export done in %v\n", time.Since(start))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func importHistory(ctx *cli.Context) error {
|
|
|
|
if ctx.Args().Len() != 1 {
|
|
|
|
utils.Fatalf("usage: %s", ctx.Command.ArgsUsage)
|
|
|
|
}
|
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
|
|
|
defer stack.Close()
|
|
|
|
|
|
|
|
chain, db := utils.MakeChain(ctx, stack, false)
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
var (
|
|
|
|
start = time.Now()
|
|
|
|
dir = ctx.Args().Get(0)
|
|
|
|
network string
|
|
|
|
)
|
|
|
|
|
|
|
|
// Determine network.
|
|
|
|
if utils.IsNetworkPreset(ctx) {
|
|
|
|
switch {
|
|
|
|
case ctx.Bool(utils.MainnetFlag.Name):
|
|
|
|
network = "mainnet"
|
|
|
|
case ctx.Bool(utils.SepoliaFlag.Name):
|
|
|
|
network = "sepolia"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// No network flag set, try to determine network based on files
|
|
|
|
// present in directory.
|
|
|
|
var networks []string
|
|
|
|
for _, n := range params.NetworkNames {
|
|
|
|
entries, err := era.ReadDir(dir, n)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error reading %s: %w", dir, err)
|
|
|
|
}
|
|
|
|
if len(entries) > 0 {
|
|
|
|
networks = append(networks, n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(networks) == 0 {
|
|
|
|
return fmt.Errorf("no era1 files found in %s", dir)
|
|
|
|
}
|
|
|
|
if len(networks) > 1 {
|
2024-02-29 03:56:46 -06:00
|
|
|
return errors.New("multiple networks found, use a network flag to specify desired network")
|
2024-02-07 10:18:27 -06:00
|
|
|
}
|
|
|
|
network = networks[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := utils.ImportHistory(chain, db, dir, network); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Printf("Import done in %v\n", time.Since(start))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// exportHistory exports chain history in Era archives at a specified
|
|
|
|
// directory.
|
|
|
|
func exportHistory(ctx *cli.Context) error {
|
|
|
|
if ctx.Args().Len() != 3 {
|
|
|
|
utils.Fatalf("usage: %s", ctx.Command.ArgsUsage)
|
|
|
|
}
|
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
|
|
|
defer stack.Close()
|
|
|
|
|
|
|
|
chain, _ := utils.MakeChain(ctx, stack, true)
|
|
|
|
start := time.Now()
|
2015-06-05 23:02:32 -05:00
|
|
|
|
2024-02-07 10:18:27 -06:00
|
|
|
var (
|
|
|
|
dir = ctx.Args().Get(0)
|
|
|
|
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 {
|
|
|
|
utils.Fatalf("Export error in parsing parameters: block number not an integer\n")
|
|
|
|
}
|
|
|
|
if first < 0 || last < 0 {
|
|
|
|
utils.Fatalf("Export error: block number must be greater than 0\n")
|
|
|
|
}
|
|
|
|
if head := chain.CurrentSnapBlock(); uint64(last) > head.Number.Uint64() {
|
|
|
|
utils.Fatalf("Export error: block number %d larger than head block %d\n", uint64(last), head.Number.Uint64())
|
|
|
|
}
|
|
|
|
err := utils.ExportHistory(chain, dir, uint64(first), uint64(last), uint64(era.MaxEra1Size))
|
2015-06-05 23:02:32 -05:00
|
|
|
if err != nil {
|
2017-02-22 09:22:50 -06:00
|
|
|
utils.Fatalf("Export error: %v\n", err)
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
2018-03-26 05:34:21 -05:00
|
|
|
fmt.Printf("Export done in %v\n", time.Since(start))
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// importPreimages imports preimage data from the specified file.
|
2023-11-22 07:48:25 -06:00
|
|
|
// it is deprecated, and the export function has been removed, but
|
|
|
|
// the import function is kept around for the time being so that
|
|
|
|
// older file formats can still be imported.
|
2018-03-26 05:34:21 -05:00
|
|
|
func importPreimages(ctx *cli.Context) error {
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Args().Len() < 1 {
|
2018-03-26 05:34:21 -05:00
|
|
|
utils.Fatalf("This command requires an argument.")
|
|
|
|
}
|
2020-08-06 02:24:36 -05:00
|
|
|
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
2019-02-07 04:40:36 -06:00
|
|
|
defer stack.Close()
|
2018-03-26 05:34:21 -05:00
|
|
|
|
2021-03-22 13:06:30 -05:00
|
|
|
db := utils.MakeChainDatabase(ctx, stack, false)
|
2023-09-25 11:28:20 -05:00
|
|
|
defer db.Close()
|
2018-03-26 05:34:21 -05:00
|
|
|
start := time.Now()
|
2019-02-07 04:40:36 -06:00
|
|
|
|
2018-09-24 07:57:49 -05:00
|
|
|
if err := utils.ImportPreimages(db, ctx.Args().First()); err != nil {
|
2018-09-19 05:29:40 -05:00
|
|
|
utils.Fatalf("Import error: %v\n", err)
|
2018-03-26 05:34:21 -05:00
|
|
|
}
|
2018-09-19 05:29:40 -05:00
|
|
|
fmt.Printf("Import done in %v\n", time.Since(start))
|
2018-03-26 05:34:21 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-08 06:04:16 -05:00
|
|
|
func parseDumpConfig(ctx *cli.Context, db ethdb.Database) (*state.DumpConfig, common.Hash, error) {
|
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 03:05:39 -05:00
|
|
|
var header *types.Header
|
|
|
|
if ctx.NArg() > 1 {
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, fmt.Errorf("expected 1 argument (number or hash), got %d", ctx.NArg())
|
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 03:05:39 -05:00
|
|
|
}
|
|
|
|
if ctx.NArg() == 1 {
|
|
|
|
arg := ctx.Args().First()
|
2015-05-27 06:43:49 -05:00
|
|
|
if hashish(arg) {
|
2021-03-22 13:06:30 -05: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 03:05:39 -05:00
|
|
|
if number := rawdb.ReadHeaderNumber(db, hash); number != nil {
|
2021-03-22 13:06:30 -05: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 03:05:39 -05:00
|
|
|
} else {
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, fmt.Errorf("block %x not found", hash)
|
2021-03-22 13:06:30 -05:00
|
|
|
}
|
2015-05-27 06:43:49 -05:00
|
|
|
} else {
|
2022-08-19 01:03:45 -05:00
|
|
|
number, err := strconv.ParseUint(arg, 10, 64)
|
2015-10-06 09:35:55 -05:00
|
|
|
if err != nil {
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, err
|
2015-10-06 09:35:55 -05:00
|
|
|
}
|
2022-08-19 01:03:45 -05:00
|
|
|
if hash := rawdb.ReadCanonicalHash(db, number); hash != (common.Hash{}) {
|
|
|
|
header = rawdb.ReadHeader(db, hash, number)
|
2019-06-24 09:16:44 -05:00
|
|
|
} else {
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, fmt.Errorf("header for block %d not found", number)
|
2019-06-24 09:16:44 -05:00
|
|
|
}
|
2015-05-27 06:43:49 -05: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 03:05:39 -05:00
|
|
|
} else {
|
|
|
|
// Use latest
|
|
|
|
header = rawdb.ReadHeadHeader(db)
|
|
|
|
}
|
|
|
|
if header == nil {
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, errors.New("no head block found")
|
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 03:05:39 -05:00
|
|
|
}
|
|
|
|
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:
|
2024-02-29 03:56:17 -06:00
|
|
|
return nil, common.Hash{}, fmt.Errorf("invalid start argument: %x. 20 or 32 hex-encoded bytes required", startArg)
|
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 03:05:39 -05:00
|
|
|
}
|
2024-09-30 11:32:39 -05:00
|
|
|
conf := &state.DumpConfig{
|
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 03:05:39 -05:00
|
|
|
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)
|
2024-02-29 03:56:17 -06:00
|
|
|
return conf, header.Root, 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 03:05:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func dump(ctx *cli.Context) error {
|
|
|
|
stack, _ := makeConfigNode(ctx)
|
|
|
|
defer stack.Close()
|
|
|
|
|
2024-02-29 03:56:17 -06:00
|
|
|
db := utils.MakeChainDatabase(ctx, stack, true)
|
|
|
|
defer db.Close()
|
|
|
|
|
2024-06-08 06:04:16 -05:00
|
|
|
conf, root, err := parseDumpConfig(ctx, db)
|
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 03:05:39 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-11-14 06:09:40 -06:00
|
|
|
triedb := utils.MakeTrieDatabase(ctx, db, true, true, false) // always enable preimage lookup
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 14:21:36 -05:00
|
|
|
defer triedb.Close()
|
|
|
|
|
2024-09-05 05:10:47 -05:00
|
|
|
state, err := state.New(root, state.NewDatabase(triedb, 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 03:05:39 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ctx.Bool(utils.IterativeOutputFlag.Name) {
|
|
|
|
state.IterativeDump(conf, json.NewEncoder(os.Stdout))
|
|
|
|
} else {
|
|
|
|
fmt.Println(string(state.Dump(conf)))
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
2016-06-10 03:23:00 -05:00
|
|
|
return nil
|
2015-05-27 06:43:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// hashish returns true for strings that look like hashes.
|
|
|
|
func hashish(x string) bool {
|
|
|
|
_, err := strconv.Atoi(x)
|
|
|
|
return err != nil
|
|
|
|
}
|