2015-07-07 03:54:22 +03: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 19:48:40 +03:00
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-07-07 03:54:22 +03:00
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
2015-07-22 19:48:40 +03:00
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
2015-07-07 03:54:22 +03:00
2016-11-25 18:55:06 +03:00
// Package utils contains internal helper functions for go-ethereum commands.
2015-03-06 04:00:41 +02:00
package utils
import (
"crypto/ecdsa"
2015-04-20 18:45:37 +03:00
"fmt"
2019-08-22 14:32:26 +03:00
"io"
2015-11-17 18:33:25 +02:00
"io/ioutil"
2021-04-06 17:23:35 +03:00
"math"
2015-05-09 13:00:51 +03:00
"math/big"
2015-03-10 00:00:27 +02:00
"os"
2015-05-12 15:24:11 +03:00
"path/filepath"
2021-04-06 17:23:35 +03:00
godebug "runtime/debug"
2015-07-07 11:32:05 +03:00
"strconv"
2015-11-17 18:33:25 +02:00
"strings"
2019-08-22 14:32:26 +03:00
"text/tabwriter"
"text/template"
2018-07-02 15:51:02 +03:00
"time"
2015-05-12 15:24:11 +03:00
2022-07-05 06:14:21 +03:00
pcsclite "github.com/gballet/go-libpcsclite"
gopsutil "github.com/shirou/gopsutil/mem"
"gopkg.in/urfave/cli.v1"
2015-03-07 13:39:52 +02:00
"github.com/ethereum/go-ethereum/accounts"
2017-01-24 12:49:20 +03:00
"github.com/ethereum/go-ethereum/accounts/keystore"
2015-03-18 09:44:58 +02:00
"github.com/ethereum/go-ethereum/common"
2018-01-11 23:55:21 +03:00
"github.com/ethereum/go-ethereum/common/fdlimit"
2017-10-10 15:51:09 +03:00
"github.com/ethereum/go-ethereum/consensus"
"github.com/ethereum/go-ethereum/consensus/clique"
2017-04-05 01:16:29 +03:00
"github.com/ethereum/go-ethereum/consensus/ethash"
2015-03-06 04:00:41 +02:00
"github.com/ethereum/go-ethereum/core"
2020-07-21 15:53:47 +03:00
"github.com/ethereum/go-ethereum/core/rawdb"
2017-01-17 14:19:50 +03:00
"github.com/ethereum/go-ethereum/core/vm"
2015-03-06 04:00:41 +02:00
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/eth"
2022-01-31 15:22:35 +03:00
ethcatalyst "github.com/ethereum/go-ethereum/eth/catalyst"
2017-04-12 17:27:23 +03:00
"github.com/ethereum/go-ethereum/eth/downloader"
2021-02-05 15:51:15 +03:00
"github.com/ethereum/go-ethereum/eth/ethconfig"
2017-04-12 17:27:23 +03:00
"github.com/ethereum/go-ethereum/eth/gasprice"
2021-01-25 16:36:39 +03:00
"github.com/ethereum/go-ethereum/eth/tracers"
2015-03-06 04:00:41 +02:00
"github.com/ethereum/go-ethereum/ethdb"
2016-11-25 18:55:06 +03:00
"github.com/ethereum/go-ethereum/ethstats"
2019-06-12 11:24:24 +03:00
"github.com/ethereum/go-ethereum/graphql"
2020-08-03 20:40:46 +03:00
"github.com/ethereum/go-ethereum/internal/ethapi"
2020-07-14 11:35:32 +03:00
"github.com/ethereum/go-ethereum/internal/flags"
2016-01-13 20:35:48 +02:00
"github.com/ethereum/go-ethereum/les"
2022-01-31 15:22:35 +03:00
lescatalyst "github.com/ethereum/go-ethereum/les/catalyst"
2017-02-22 15:10:07 +03:00
"github.com/ethereum/go-ethereum/log"
2015-08-07 10:56:49 +03:00
"github.com/ethereum/go-ethereum/metrics"
2020-07-03 20:12:22 +03:00
"github.com/ethereum/go-ethereum/metrics/exp"
2018-07-02 15:51:02 +03:00
"github.com/ethereum/go-ethereum/metrics/influxdb"
2019-04-23 10:08:51 +03:00
"github.com/ethereum/go-ethereum/miner"
2015-11-17 18:33:25 +02:00
"github.com/ethereum/go-ethereum/node"
2017-04-12 17:27:23 +03:00
"github.com/ethereum/go-ethereum/p2p"
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 01:59:00 +03:00
"github.com/ethereum/go-ethereum/p2p/enode"
2015-03-06 04:00:41 +02:00
"github.com/ethereum/go-ethereum/p2p/nat"
2016-11-22 22:52:31 +03:00
"github.com/ethereum/go-ethereum/p2p/netutil"
2015-10-07 18:21:13 +03:00
"github.com/ethereum/go-ethereum/params"
2017-05-25 10:15:51 +03:00
)
2015-03-10 17:44:48 +02:00
func init ( ) {
cli . AppHelpTemplate = ` { { . Name } } { { if . Flags } } [ global options ] { { end } } command { { if . Flags } } [ command options ] { { end } } [ arguments ... ]
VERSION :
{ { . Version } }
COMMANDS :
{ { range . Commands } } { { . Name } } { { with . ShortName } } , { { . } } { { end } } { { "\t" } } { { . Usage } }
{ { end } } { { if . Flags } }
GLOBAL OPTIONS :
{ { range . Flags } } { { . } }
{ { end } } { { end } }
`
2020-07-14 11:35:32 +03:00
cli . CommandHelpTemplate = flags . CommandHelpTemplate
2019-08-22 14:32:26 +03:00
cli . HelpPrinter = printHelp
2015-03-10 17:44:48 +02:00
}
2019-08-22 14:32:26 +03:00
func printHelp ( out io . Writer , templ string , data interface { } ) {
funcMap := template . FuncMap { "join" : strings . Join }
t := template . Must ( template . New ( "help" ) . Funcs ( funcMap ) . Parse ( templ ) )
w := tabwriter . NewWriter ( out , 38 , 8 , 2 , ' ' , 0 )
err := t . Execute ( w , data )
if err != nil {
panic ( err )
}
w . Flush ( )
}
2015-03-06 04:00:41 +02:00
// These are all the command line flags we support.
// If you add to this list, please remember to include the
// flag in the appropriate command definition.
//
// The flags are defined here so their names and help texts
// are the same for all commands.
var (
// General settings
2015-04-08 16:43:55 +03:00
DataDirFlag = DirectoryFlag {
2015-03-06 04:00:41 +02:00
Name : "datadir" ,
2015-10-29 20:53:24 +03:00
Usage : "Data directory for the databases and keystore" ,
2019-08-22 14:32:26 +03:00
Value : DirectoryString ( node . DefaultDataDir ( ) ) ,
2015-03-06 04:00:41 +02:00
}
2021-03-03 12:50:30 +03:00
DirectBroadcastFlag = cli . BoolFlag {
Name : "directbroadcast" ,
Usage : "Enable directly broadcast mined block to all peers" ,
}
2022-07-05 06:14:21 +03:00
DisableSnapProtocolFlag = cli . BoolFlag {
Name : "disablesnapprotocol" ,
Usage : "Disable snap protocol" ,
}
DisableDiffProtocolFlag = cli . BoolFlag {
Name : "disablediffprotocol" ,
Usage : "Disable diff protocol" ,
}
EnableTrustProtocolFlag = cli . BoolFlag {
Name : "enabletrustprotocol" ,
Usage : "Enable trust protocol" ,
}
DiffSyncFlag = cli . BoolFlag {
Name : "diffsync" ,
Usage : "Enable diffy sync, Please note that enable diffsync will improve the syncing speed, " +
"but will degrade the security to light client level" ,
}
PipeCommitFlag = cli . BoolFlag {
Name : "pipecommit" ,
Usage : "Enable MPT pipeline commit, it will improve syncing performance. It is an experimental feature(default is false), diffsync will be disable if pipeline commit is enabled" ,
}
2021-02-23 10:12:41 +03:00
RangeLimitFlag = cli . BoolFlag {
Name : "rangelimit" ,
Usage : "Enable 5000 blocks limit for range query" ,
}
2019-03-08 16:56:20 +03:00
AncientFlag = DirectoryFlag {
Name : "datadir.ancient" ,
2022-07-22 11:11:34 +03:00
Usage : "Data directory for ancient chain segments (default = inside chaindata, '${datadir}/geth/chaindata/ancient/')" ,
2019-03-08 16:56:20 +03:00
}
2022-07-05 06:14:21 +03:00
DiffFlag = DirectoryFlag {
Name : "datadir.diff" ,
Usage : "Data directory for difflayer segments (default = inside chaindata)" ,
}
2021-01-19 11:26:42 +03:00
MinFreeDiskSpaceFlag = DirectoryFlag {
Name : "datadir.minfreedisk" ,
Usage : "Minimum free disk space in MB, once reached triggers auto shut down (default = --cache.gc converted to MB, 0 = disabled)" ,
}
2016-03-08 00:38:56 +02:00
KeyStoreDirFlag = DirectoryFlag {
Name : "keystore" ,
Usage : "Directory for the keystore (default = inside the datadir)" ,
}
2021-01-05 13:18:22 +03:00
USBFlag = cli . BoolFlag {
Name : "usb" ,
Usage : "Enable monitoring and management of USB hardware wallets" ,
2017-04-20 14:01:51 +03:00
}
2019-05-31 12:30:28 +03:00
SmartCardDaemonPathFlag = cli . StringFlag {
Name : "pcscdpath" ,
Usage : "Path to the smartcard daemon (pcscd) socket file" ,
Value : pcsclite . PCSCDSockName ,
}
2017-04-25 14:31:15 +03:00
NetworkIdFlag = cli . Uint64Flag {
2015-03-18 09:44:58 +02:00
Name : "networkid" ,
2020-09-16 14:17:50 +03:00
Usage : "Explicitly set network id (integer)(For testnets: use --ropsten, --rinkeby, --goerli instead)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . NetworkId ,
2015-03-18 09:44:58 +02:00
}
2021-01-05 16:31:23 +03:00
MainnetFlag = cli . BoolFlag {
Name : "mainnet" ,
Usage : "Ethereum mainnet" ,
2020-04-09 12:09:58 +03:00
}
GoerliFlag = cli . BoolFlag {
Name : "goerli" ,
Usage : "Görli network: pre-configured proof-of-authority test network" ,
2015-07-10 15:29:40 +03:00
}
2017-05-04 12:36:20 +03:00
RinkebyFlag = cli . BoolFlag {
Name : "rinkeby" ,
Usage : "Rinkeby network: pre-configured proof-of-authority test network" ,
}
2020-04-09 12:09:58 +03:00
RopstenFlag = cli . BoolFlag {
Name : "ropsten" ,
Usage : "Ropsten network: pre-configured proof-of-work test network" ,
2018-11-16 18:58:24 +03:00
}
2021-11-08 14:06:01 +03:00
SepoliaFlag = cli . BoolFlag {
Name : "sepolia" ,
Usage : "Sepolia network: pre-configured proof-of-work test network" ,
}
2017-10-24 13:40:42 +03:00
DeveloperFlag = cli . BoolFlag {
2015-09-06 16:46:54 +03:00
Name : "dev" ,
2017-10-24 13:40:42 +03:00
Usage : "Ephemeral proof-of-authority network with a pre-funded developer account, mining enabled" ,
}
DeveloperPeriodFlag = cli . IntFlag {
Name : "dev.period" ,
Usage : "Block period to use in developer mode (0 = mine only if transaction pending)" ,
2015-09-06 16:46:54 +03:00
}
2021-11-16 15:45:02 +03:00
DeveloperGasLimitFlag = cli . Uint64Flag {
Name : "dev.gaslimit" ,
Usage : "Initial block gas limit" ,
Value : 11500000 ,
}
2015-04-19 00:53:30 +03:00
IdentityFlag = cli . StringFlag {
Name : "identity" ,
2015-04-22 02:41:34 +03:00
Usage : "Custom node name" ,
2015-04-19 00:53:30 +03:00
}
2015-10-27 00:24:09 +03:00
DocRootFlag = DirectoryFlag {
Name : "docroot" ,
Usage : "Document Root for HTTPClient file scheme" ,
2020-09-23 00:22:54 +03:00
Value : DirectoryString ( HomeDir ( ) ) ,
2015-10-27 00:24:09 +03:00
}
cmd,eth: 16400 Add an option to stop geth once in sync. WIP for light mode (#17321)
* cmd, eth: Added in the flag to step geth once sync based on input
* cmd, eth: 16400 Add an option to stop geth once in sync.
* cmd: 16400 Add an option to stop geth once in sync. WIP
* cmd/geth/main, les/fletcher: added in light mode support
* cmd/geth/main, les/fletcher: Cleaned Comments and code for light mode
* cmd: 16400 Fixed formatting issue and cleaned code
* cmd, eth, les: 16400 Fixed formatting issues
* cmd, eth, les: Performed gofmt to update formatting
* cmd, eth, les: Fixed bugs resulting formatting
* cmd/geth, eth/, les: switched to downloader event
* eth: Fixed styling and gen_config
* eth/: Fix nil error in config file
* cmd/geth: Updated countdown log
* les/fetcher.go: Removed depcreated channel
* eth/downloader.go: Removed deprecated select
* cmd/geth, cmd/utils: Fixed minor issues
* eth: Reverted config files to proper format
* eth: Fixed typo in config file
* cmd/geth, eth/down: Updated code to use header time stamp
* eth/downloader: Changed the time threshold to 10 minutes
* cmd/geth, eth/downloader: Updated downloading event to pass latest header
* cmd/geth: Updated main to use right timer object
* cmd/geth: Removed unused failed event
* cmd/geth: added in correct time field with type assertion
* cmd/geth, cmd/utils: Updated flag to use boolean
* cmd/geth, cmd/utils, eth/downloader: Cleaned up code based on recommendations
* cmd/geth: Removed unneeded import
* cmd/geth, eth/downloader: fixed event field and suggested changes
* cmd/geth, cmd/utils: Updated flag and linting issue
2019-01-30 10:40:36 +03:00
ExitWhenSyncedFlag = cli . BoolFlag {
Name : "exitwhensynced" ,
2019-04-02 10:40:30 +03:00
Usage : "Exits after block synchronisation completes" ,
cmd,eth: 16400 Add an option to stop geth once in sync. WIP for light mode (#17321)
* cmd, eth: Added in the flag to step geth once sync based on input
* cmd, eth: 16400 Add an option to stop geth once in sync.
* cmd: 16400 Add an option to stop geth once in sync. WIP
* cmd/geth/main, les/fletcher: added in light mode support
* cmd/geth/main, les/fletcher: Cleaned Comments and code for light mode
* cmd: 16400 Fixed formatting issue and cleaned code
* cmd, eth, les: 16400 Fixed formatting issues
* cmd, eth, les: Performed gofmt to update formatting
* cmd, eth, les: Fixed bugs resulting formatting
* cmd/geth, eth/, les: switched to downloader event
* eth: Fixed styling and gen_config
* eth/: Fix nil error in config file
* cmd/geth: Updated countdown log
* les/fetcher.go: Removed depcreated channel
* eth/downloader.go: Removed deprecated select
* cmd/geth, cmd/utils: Fixed minor issues
* eth: Reverted config files to proper format
* eth: Fixed typo in config file
* cmd/geth, eth/down: Updated code to use header time stamp
* eth/downloader: Changed the time threshold to 10 minutes
* cmd/geth, eth/downloader: Updated downloading event to pass latest header
* cmd/geth: Updated main to use right timer object
* cmd/geth: Removed unused failed event
* cmd/geth: added in correct time field with type assertion
* cmd/geth, cmd/utils: Updated flag to use boolean
* cmd/geth, cmd/utils, eth/downloader: Cleaned up code based on recommendations
* cmd/geth: Removed unneeded import
* cmd/geth, eth/downloader: fixed event field and suggested changes
* cmd/geth, cmd/utils: Updated flag and linting issue
2019-01-30 10:40:36 +03: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 11:05:39 +03:00
IterativeOutputFlag = cli . BoolTFlag {
2019-06-24 17:16:44 +03:00
Name : "iterative" ,
Usage : "Print streaming JSON iteratively, delimited by newlines" ,
}
ExcludeStorageFlag = cli . BoolFlag {
Name : "nostorage" ,
Usage : "Exclude storage entries (save db lookups)" ,
}
IncludeIncompletesFlag = cli . BoolFlag {
Name : "incompletes" ,
Usage : "Include accounts for which we don't have the address (missing preimage)" ,
}
ExcludeCodeFlag = cli . BoolFlag {
Name : "nocode" ,
Usage : "Exclude contract code (save db lookups)" ,
}
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 11:05:39 +03:00
StartKeyFlag = cli . StringFlag {
Name : "start" ,
Usage : "Start position. Either a hash or address" ,
Value : "0x0000000000000000000000000000000000000000000000000000000000000000" ,
}
DumpLimitFlag = cli . Uint64Flag {
Name : "limit" ,
Usage : "Max number of elements (0 = no limit)" ,
Value : 0 ,
}
2021-02-05 15:51:15 +03:00
defaultSyncMode = ethconfig . Defaults . SyncMode
2017-04-12 17:27:23 +03:00
SyncModeFlag = TextMarshalerFlag {
Name : "syncmode" ,
2021-11-26 14:26:03 +03:00
Usage : ` Blockchain sync mode ("snap", "full" or "light") ` ,
2017-04-12 17:27:23 +03:00
Value : & defaultSyncMode ,
}
2018-02-05 19:40:32 +03:00
GCModeFlag = cli . StringFlag {
Name : "gcmode" ,
Usage : ` Blockchain garbage collection mode ("full", "archive") ` ,
Value : "full" ,
}
2021-02-07 21:13:59 +03:00
SnapshotFlag = cli . BoolTFlag {
2020-01-19 22:57:56 +03:00
Name : "snapshot" ,
2021-02-07 21:13:59 +03:00
Usage : ` Enables snapshot-database mode (default = enable) ` ,
2020-01-19 22:57:56 +03:00
}
2021-02-08 21:44:05 +03:00
TxLookupLimitFlag = cli . Uint64Flag {
2020-05-11 18:58:43 +03:00
Name : "txlookuplimit" ,
2021-02-08 21:44:05 +03:00
Usage : "Number of recent blocks to maintain transactions index for (default = about one year, 0 = entire chain)" ,
Value : ethconfig . Defaults . TxLookupLimit ,
2020-01-19 22:57:56 +03:00
}
2019-07-10 05:08:59 +03:00
LightKDFFlag = cli . BoolFlag {
Name : "lightkdf" ,
Usage : "Reduce key-derivation RAM & CPU usage at some expense of KDF strength" ,
}
WhitelistFlag = cli . StringFlag {
Name : "whitelist" ,
Usage : "Comma separated block number-to-hash mappings to enforce (<number>=<hash>)" ,
}
all: bloom-filter based pruning mechanism (#21724)
* cmd, core, tests: initial state pruner
core: fix db inspector
cmd/geth: add verify-state
cmd/geth: add verification tool
core/rawdb: implement flatdb
cmd, core: fix rebase
core/state: use new contract code layout
core/state/pruner: avoid deleting genesis state
cmd/geth: add helper function
core, cmd: fix extract genesis
core: minor fixes
contracts: remove useless
core/state/snapshot: plugin stacktrie
core: polish
core/state/snapshot: iterate storage concurrently
core/state/snapshot: fix iteration
core: add comments
core/state/snapshot: polish code
core/state: polish
core/state/snapshot: rebase
core/rawdb: add comments
core/rawdb: fix tests
core/rawdb: improve tests
core/state/snapshot: fix concurrent iteration
core/state: run pruning during the recovery
core, trie: implement martin's idea
core, eth: delete flatdb and polish pruner
trie: fix import
core/state/pruner: add log
core/state/pruner: fix issues
core/state/pruner: don't read back
core/state/pruner: fix contract code write
core/state/pruner: check root node presence
cmd, core: polish log
core/state: use HEAD-127 as the target
core/state/snapshot: improve tests
cmd/geth: fix verification tool
cmd/geth: use HEAD as the verification default target
all: replace the bloomfilter with martin's fork
cmd, core: polish code
core, cmd: forcibly delete state root
core/state/pruner: add hash64
core/state/pruner: fix blacklist
core/state: remove blacklist
cmd, core: delete trie clean cache before pruning
cmd, core: fix lint
cmd, core: fix rebase
core/state: fix the special case for clique networks
core/state/snapshot: remove useless code
core/state/pruner: capping the snapshot after pruning
cmd, core, eth: fixes
core/rawdb: update db inspector
cmd/geth: polish code
core/state/pruner: fsync bloom filter
cmd, core: print warning log
core/state/pruner: adjust the parameters for bloom filter
cmd, core: create the bloom filter by size
core: polish
core/state/pruner: sanitize invalid bloomfilter size
cmd: address comments
cmd/geth: address comments
cmd/geth: address comment
core/state/pruner: address comments
core/state/pruner: rename homedir to datadir
cmd, core: address comments
core/state/pruner: address comment
core/state: address comments
core, cmd, tests: address comments
core: address comments
core/state/pruner: release the iterator after each commit
core/state/pruner: improve pruner
cmd, core: adjust bloom paramters
core/state/pruner: fix lint
core/state/pruner: fix tests
core: fix rebase
core/state/pruner: remove atomic rename
core/state/pruner: address comments
all: run go mod tidy
core/state/pruner: avoid false-positive for the middle state roots
core/state/pruner: add checks for middle roots
cmd/geth: replace crit with error
* core/state/pruner: fix lint
* core: drop legacy bloom filter
* core/state/snapshot: improve pruner
* core/state/snapshot: polish concurrent logs to report ETA vs. hashes
* core/state/pruner: add progress report for pruning and compaction too
* core: fix snapshot test API
* core/state: fix some pruning logs
* core/state/pruner: support recovering from bloom flush fail
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-02-08 14:16:30 +03:00
BloomFilterSizeFlag = cli . Uint64Flag {
Name : "bloomfilter.size" ,
Usage : "Megabytes of memory allocated to bloom-filter for pruning" ,
Value : 2048 ,
2019-08-23 12:09:27 +03:00
}
2021-10-28 23:18:14 +03:00
OverrideArrowGlacierFlag = cli . Uint64Flag {
Name : "override.arrowglacier" ,
Usage : "Manually specify Arrow Glacier fork-block, overriding the bundled setting" ,
2021-02-25 10:10:30 +03:00
}
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 14:23:02 +03:00
OverrideTerminalTotalDifficulty = cli . Uint64Flag {
Name : "override.terminaltotaldifficulty" ,
Usage : "Manually specify TerminalTotalDifficulty, overriding the bundled setting" ,
2019-12-06 12:36:40 +03:00
}
2022-07-05 06:14:21 +03:00
TriesInMemoryFlag = cli . Uint64Flag {
Name : "triesInMemory" ,
Usage : "The layer of tries trees that keep in memory" ,
Value : 128 ,
}
defaultVerifyMode = ethconfig . Defaults . TriesVerifyMode
TriesVerifyModeFlag = TextMarshalerFlag {
Name : "tries-verify-mode" ,
2022-06-29 12:57:12 +03:00
Usage : ` tries verify mode :
" local ( default ) : a normal full node with complete state world ( both MPT and snapshot ) , merkle state root will
be verified against the block header . " ,
" full : a fast node with only snapshot state world . Merkle state root is verified by the trustworthy remote verify node
by comparing the diffhash ( an identify of difflayer generated by the block ) and state root . " ,
"insecure: same as full mode, except that it can tolerate without verifying the diffhash when verify node does not have it." ,
2022-07-05 06:14:21 +03:00
" none : no merkle state root verification at all , there is no need to setup or connect remote verify node at all ,
it is more light comparing to full and insecure mode , but get a very small chance that the state is not consistent
with other peers . " ` ,
Value : & defaultVerifyMode ,
}
OverrideBerlinFlag = cli . Uint64Flag {
Name : "override.berlin" ,
Usage : "Manually specify Berlin fork-block, overriding the bundled setting" ,
}
2019-07-10 08:54:06 +03:00
// Light server and client settings
LightServeFlag = cli . IntFlag {
Name : "light.serve" ,
2019-02-26 14:32:48 +03:00
Usage : "Maximum percentage of time allowed for serving LES requests (multi-threaded processing allows values over 100)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . LightServ ,
2016-01-13 20:35:48 +02:00
}
2019-07-10 08:54:06 +03:00
LightIngressFlag = cli . IntFlag {
Name : "light.ingress" ,
Usage : "Incoming bandwidth limit for serving light clients (kilobytes/sec, 0 = unlimited)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . LightIngress ,
2019-02-26 14:32:48 +03:00
}
2019-07-10 08:54:06 +03:00
LightEgressFlag = cli . IntFlag {
Name : "light.egress" ,
Usage : "Outgoing bandwidth limit for serving light clients (kilobytes/sec, 0 = unlimited)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . LightEgress ,
2019-07-10 08:54:06 +03:00
}
LightMaxPeersFlag = cli . IntFlag {
Name : "light.maxpeers" ,
Usage : "Maximum number of light clients to serve, or light servers to attach to" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . LightPeers ,
2016-01-13 20:35:48 +02:00
}
2019-07-10 05:08:59 +03:00
UltraLightServersFlag = cli . StringFlag {
Name : "ulc.servers" ,
Usage : "List of trusted ultra-light servers" ,
2021-02-05 15:51:15 +03:00
Value : strings . Join ( ethconfig . Defaults . UltraLightServers , "," ) ,
2015-10-23 17:49:36 +03:00
}
2019-07-10 05:08:59 +03:00
UltraLightFractionFlag = cli . IntFlag {
Name : "ulc.fraction" ,
Usage : "Minimum % of trusted ultra-light servers required to announce a new head" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . UltraLightFraction ,
2019-07-10 05:08:59 +03:00
}
UltraLightOnlyAnnounceFlag = cli . BoolFlag {
Name : "ulc.onlyannounce" ,
Usage : "Ultra light server sends announcements only" ,
2018-11-02 23:26:45 +03:00
}
2020-07-13 12:02:54 +03:00
LightNoPruneFlag = cli . BoolFlag {
Name : "light.nopruning" ,
Usage : "Disable ancient light chain data pruning" ,
}
2021-02-25 15:55:07 +03:00
LightNoSyncServeFlag = cli . BoolFlag {
Name : "light.nosyncserve" ,
Usage : "Enables serving light clients before syncing" ,
}
2017-05-26 13:40:47 +03:00
// Ethash settings
EthashCacheDirFlag = DirectoryFlag {
Name : "ethash.cachedir" ,
Usage : "Directory to store the ethash verification caches (default = inside the datadir)" ,
}
EthashCachesInMemoryFlag = cli . IntFlag {
Name : "ethash.cachesinmem" ,
Usage : "Number of recent ethash caches to keep in memory (16MB each)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Ethash . CachesInMem ,
2017-05-26 13:40:47 +03:00
}
EthashCachesOnDiskFlag = cli . IntFlag {
Name : "ethash.cachesondisk" ,
Usage : "Number of recent ethash caches to keep on disk (16MB each)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Ethash . CachesOnDisk ,
2017-05-26 13:40:47 +03:00
}
2020-03-31 11:44:04 +03:00
EthashCachesLockMmapFlag = cli . BoolFlag {
Name : "ethash.cacheslockmmap" ,
Usage : "Lock memory maps of recent ethash caches" ,
}
2017-05-26 13:40:47 +03:00
EthashDatasetDirFlag = DirectoryFlag {
Name : "ethash.dagdir" ,
2019-08-22 14:32:26 +03:00
Usage : "Directory to store the ethash mining DAGs" ,
2021-02-05 15:51:15 +03:00
Value : DirectoryString ( ethconfig . Defaults . Ethash . DatasetDir ) ,
2017-05-26 13:40:47 +03:00
}
EthashDatasetsInMemoryFlag = cli . IntFlag {
Name : "ethash.dagsinmem" ,
Usage : "Number of recent ethash mining DAGs to keep in memory (1+GB each)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Ethash . DatasetsInMem ,
2017-05-26 13:40:47 +03:00
}
EthashDatasetsOnDiskFlag = cli . IntFlag {
Name : "ethash.dagsondisk" ,
Usage : "Number of recent ethash mining DAGs to keep on disk (1+GB each)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Ethash . DatasetsOnDisk ,
2017-05-26 13:40:47 +03:00
}
2020-03-31 11:44:04 +03:00
EthashDatasetsLockMmapFlag = cli . BoolFlag {
Name : "ethash.dagslockmmap" ,
Usage : "Lock memory maps for recent ethash mining DAGs" ,
}
2017-05-26 13:40:47 +03:00
// Transaction pool settings
2018-08-21 20:30:06 +03:00
TxPoolLocalsFlag = cli . StringFlag {
Name : "txpool.locals" ,
Usage : "Comma separated accounts to treat as locals (no flush, priority inclusion)" ,
}
2017-07-05 17:06:05 +03:00
TxPoolNoLocalsFlag = cli . BoolFlag {
Name : "txpool.nolocals" ,
Usage : "Disables price exemptions for locally submitted transactions" ,
}
2017-07-28 16:09:39 +03:00
TxPoolJournalFlag = cli . StringFlag {
Name : "txpool.journal" ,
Usage : "Disk journal for local transaction to survive node restarts" ,
Value : core . DefaultTxPoolConfig . Journal ,
}
TxPoolRejournalFlag = cli . DurationFlag {
Name : "txpool.rejournal" ,
Usage : "Time interval to regenerate the local transaction journal" ,
Value : core . DefaultTxPoolConfig . Rejournal ,
}
2017-05-26 13:40:47 +03:00
TxPoolPriceLimitFlag = cli . Uint64Flag {
Name : "txpool.pricelimit" ,
Usage : "Minimum gas price limit to enforce for acceptance into the pool" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . PriceLimit ,
2017-05-26 13:40:47 +03:00
}
TxPoolPriceBumpFlag = cli . Uint64Flag {
Name : "txpool.pricebump" ,
Usage : "Price bump percentage to replace an already existing transaction" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . PriceBump ,
2017-05-26 13:40:47 +03:00
}
TxPoolAccountSlotsFlag = cli . Uint64Flag {
Name : "txpool.accountslots" ,
Usage : "Minimum number of executable transaction slots guaranteed per account" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . AccountSlots ,
2017-05-26 13:40:47 +03:00
}
TxPoolGlobalSlotsFlag = cli . Uint64Flag {
Name : "txpool.globalslots" ,
Usage : "Maximum number of executable transaction slots for all accounts" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . GlobalSlots ,
2017-05-26 13:40:47 +03:00
}
TxPoolAccountQueueFlag = cli . Uint64Flag {
Name : "txpool.accountqueue" ,
Usage : "Maximum number of non-executable transaction slots permitted per account" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . AccountQueue ,
2017-05-26 13:40:47 +03:00
}
TxPoolGlobalQueueFlag = cli . Uint64Flag {
Name : "txpool.globalqueue" ,
Usage : "Maximum number of non-executable transaction slots for all accounts" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . GlobalQueue ,
2017-05-26 13:40:47 +03:00
}
TxPoolLifetimeFlag = cli . DurationFlag {
Name : "txpool.lifetime" ,
Usage : "Maximum amount of time non-executable transaction are queued" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TxPool . Lifetime ,
2017-05-26 13:40:47 +03:00
}
2022-07-05 06:14:21 +03:00
TxPoolReannounceTimeFlag = cli . DurationFlag {
Name : "txpool.reannouncetime" ,
Usage : "Duration for announcing local pending transactions again (default = 10 years, minimum = 1 minute)" ,
Value : ethconfig . Defaults . TxPool . ReannounceTime ,
}
2016-10-19 14:55:13 +03:00
// Performance tuning settings
CacheFlag = cli . IntFlag {
Name : "cache" ,
2019-04-12 12:06:43 +03:00
Usage : "Megabytes of memory allocated to internal caching (default = 4096 mainnet full node, 128 light mode)" ,
2018-02-05 19:40:32 +03:00
Value : 1024 ,
}
CacheDatabaseFlag = cli . IntFlag {
Name : "cache.database" ,
Usage : "Percentage of cache memory allowance to use for database io" ,
2022-07-05 06:14:21 +03:00
Value : 40 ,
2018-11-12 19:47:34 +03:00
}
CacheTrieFlag = cli . IntFlag {
Name : "cache.trie" ,
2019-11-26 10:48:29 +03:00
Usage : "Percentage of cache memory allowance to use for trie caching (default = 15% full mode, 30% archive mode)" ,
Value : 15 ,
2018-02-05 19:40:32 +03:00
}
2020-07-28 16:30:31 +03:00
CacheTrieJournalFlag = cli . StringFlag {
Name : "cache.trie.journal" ,
Usage : "Disk journal directory for trie cache to survive node restarts" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TrieCleanCacheJournal ,
2020-07-28 16:30:31 +03:00
}
CacheTrieRejournalFlag = cli . DurationFlag {
Name : "cache.trie.rejournal" ,
Usage : "Time interval to regenerate the trie cache journal" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . TrieCleanCacheRejournal ,
2020-07-28 16:30:31 +03:00
}
2018-02-05 19:40:32 +03:00
CacheGCFlag = cli . IntFlag {
Name : "cache.gc" ,
2019-02-05 13:49:59 +03:00
Usage : "Percentage of cache memory allowance to use for trie pruning (default = 25% full mode, 0% archive mode)" ,
2018-02-05 19:40:32 +03:00
Value : 25 ,
2016-10-19 14:55:13 +03:00
}
2019-11-26 10:48:29 +03:00
CacheSnapshotFlag = cli . IntFlag {
Name : "cache.snapshot" ,
2022-07-05 06:14:21 +03:00
Usage : "Percentage of cache memory allowance to use for snapshot caching (default = 20%)" ,
Value : 20 ,
2019-04-01 11:52:11 +03:00
}
2021-02-19 16:53:05 +03:00
CachePreimagesFlag = cli . BoolFlag {
2020-11-18 12:51:33 +03:00
Name : "cache.preimages" ,
2021-02-19 16:53:05 +03:00
Usage : "Enable recording the SHA3/keccak preimages of trie keys" ,
2020-11-18 12:51:33 +03:00
}
2022-07-05 06:14:21 +03:00
PersistDiffFlag = cli . BoolFlag {
Name : "persistdiff" ,
Usage : "Enable persistence of the diff layer" ,
}
DiffBlockFlag = cli . Uint64Flag {
Name : "diffblock" ,
Usage : "The number of blocks should be persisted in db (default = 86400)" ,
Value : uint64 ( 86400 ) ,
}
PruneAncientDataFlag = cli . BoolFlag {
Name : "pruneancient" ,
Usage : "Prune ancient data, recommends to the user who don't care about the ancient data. Note that once be turned on, the ancient data will not be recovered again" ,
}
2015-10-29 20:53:24 +03:00
// Miner settings
MiningEnabledFlag = cli . BoolFlag {
Name : "mine" ,
Usage : "Enable mining" ,
2015-06-12 08:45:23 +03:00
}
2015-03-06 04:00:41 +02:00
MinerThreadsFlag = cli . IntFlag {
2018-08-08 12:15:08 +03:00
Name : "miner.threads" ,
2015-10-29 20:53:24 +03:00
Usage : "Number of CPU threads to use for mining" ,
2018-08-08 12:15:08 +03:00
Value : 0 ,
}
MinerNotifyFlag = cli . StringFlag {
Name : "miner.notify" ,
Usage : "Comma separated HTTP URL list to notify of new work packages" ,
2015-03-06 04:00:41 +02:00
}
2021-03-26 20:30:10 +03:00
MinerNotifyFullFlag = cli . BoolFlag {
Name : "miner.notify.full" ,
Usage : "Notify with pending block headers instead of work packages" ,
}
2018-08-29 12:21:12 +03:00
MinerGasLimitFlag = cli . Uint64Flag {
Name : "miner.gaslimit" ,
Usage : "Target gas ceiling for mined blocks" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Miner . GasCeil ,
2016-03-02 00:32:43 +02:00
}
2018-08-15 11:01:49 +03:00
MinerGasPriceFlag = BigFlag {
Name : "miner.gasprice" ,
2018-09-10 15:22:34 +03:00
Usage : "Minimum gas price for mining a transaction" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Miner . GasPrice ,
2015-05-09 13:00:51 +03:00
}
2018-08-15 11:01:49 +03:00
MinerEtherbaseFlag = cli . StringFlag {
Name : "miner.etherbase" ,
Usage : "Public address for block mining rewards (default = first account)" ,
Value : "0" ,
}
MinerExtraDataFlag = cli . StringFlag {
Name : "miner.extradata" ,
2015-10-29 20:53:24 +03:00
Usage : "Block extra data set by the miner (default = client version)" ,
2015-09-22 11:34:58 +03:00
}
2018-08-21 22:56:54 +03:00
MinerRecommitIntervalFlag = cli . DurationFlag {
Name : "miner.recommit" ,
2018-08-28 16:59:05 +03:00
Usage : "Time interval to recreate the block being mined" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . Miner . Recommit ,
2018-08-21 22:56:54 +03:00
}
2021-03-19 08:23:44 +03:00
MinerDelayLeftoverFlag = cli . DurationFlag {
Name : "miner.delayleftover" ,
Usage : "Time interval to for broadcast block" ,
2021-04-16 07:45:26 +03:00
Value : ethconfig . Defaults . Miner . DelayLeftOver ,
2021-03-19 08:23:44 +03:00
}
2018-08-28 16:59:05 +03:00
MinerNoVerfiyFlag = cli . BoolFlag {
Name : "miner.noverify" ,
Usage : "Disable remote sealing verification" ,
}
2015-10-29 20:53:24 +03:00
// Account settings
2015-03-18 09:44:58 +02:00
UnlockedAccountFlag = cli . StringFlag {
Name : "unlock" ,
2015-11-17 18:33:25 +02:00
Usage : "Comma separated list of accounts to unlock" ,
2015-03-23 15:00:06 +02:00
Value : "" ,
}
PasswordFileFlag = cli . StringFlag {
Name : "password" ,
2017-09-27 03:28:26 +03:00
Usage : "Password file to use for non-interactive password input" ,
2015-03-23 15:00:06 +02:00
Value : "" ,
2015-03-18 09:44:58 +02:00
}
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 13:23:57 +03:00
ExternalSignerFlag = cli . StringFlag {
Name : "signer" ,
Usage : "External signer (url or path to ipc file)" ,
Value : "" ,
}
2017-01-17 14:19:50 +03:00
VMEnableDebugFlag = cli . BoolFlag {
Name : "vmdebug" ,
Usage : "Record information useful for VM and contract debugging" ,
}
2019-04-04 14:03:10 +03:00
InsecureUnlockAllowedFlag = cli . BoolFlag {
Name : "allow-insecure-unlock" ,
Usage : "Allow insecure account unlocking when account-related RPCs are exposed by http" ,
}
2020-10-13 14:33:10 +03:00
RPCGlobalGasCapFlag = cli . Uint64Flag {
2019-04-08 14:49:52 +03:00
Name : "rpc.gascap" ,
2020-07-01 20:54:21 +03:00
Usage : "Sets a cap on gas that can be used in eth_call/estimateGas (0=infinite)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . RPCGasCap ,
2019-04-08 14:49:52 +03:00
}
2021-10-12 11:46:04 +03:00
RPCGlobalEVMTimeoutFlag = cli . DurationFlag {
Name : "rpc.evmtimeout" ,
Usage : "Sets a timeout used for eth_call (0=infinite)" ,
Value : ethconfig . Defaults . RPCEVMTimeout ,
}
2020-10-13 14:33:10 +03:00
RPCGlobalTxFeeCapFlag = cli . Float64Flag {
2020-06-17 10:46:31 +03:00
Name : "rpc.txfeecap" ,
Usage : "Sets a cap on transaction fee (in ether) that can be sent via the RPC APIs (0 = no cap)" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . RPCTxFeeCap ,
2019-04-08 14:49:52 +03:00
}
2016-11-25 18:55:06 +03:00
// Logging and debug settings
EthStatsURLFlag = cli . StringFlag {
Name : "ethstats" ,
Usage : "Reporting URL of a ethstats service (nodename:secret@host:port)" ,
}
2016-04-21 12:14:57 +03:00
FakePoWFlag = cli . BoolFlag {
Name : "fakepow" ,
Usage : "Disables proof-of-work verification" ,
}
2017-03-08 14:26:19 +03:00
NoCompactionFlag = cli . BoolFlag {
Name : "nocompaction" ,
Usage : "Disables db compaction after import" ,
}
2015-03-06 04:00:41 +02:00
// RPC settings
2019-06-12 11:24:24 +03:00
IPCDisabledFlag = cli . BoolFlag {
Name : "ipcdisable" ,
Usage : "Disable the IPC-RPC server" ,
}
IPCPathFlag = DirectoryFlag {
Name : "ipcpath" ,
Usage : "Filename for IPC socket/pipe within the datadir (explicit paths escape it)" ,
}
2020-05-05 11:19:17 +03:00
HTTPEnabledFlag = cli . BoolFlag {
Name : "http" ,
2015-10-29 20:53:24 +03:00
Usage : "Enable the HTTP-RPC server" ,
2015-03-06 04:00:41 +02:00
}
2020-05-05 11:19:17 +03:00
HTTPListenAddrFlag = cli . StringFlag {
Name : "http.addr" ,
2015-10-29 20:53:24 +03:00
Usage : "HTTP-RPC server listening interface" ,
2016-09-16 12:53:50 +03:00
Value : node . DefaultHTTPHost ,
2015-03-06 04:00:41 +02:00
}
2020-05-05 11:19:17 +03:00
HTTPPortFlag = cli . IntFlag {
Name : "http.port" ,
2015-10-29 20:53:24 +03:00
Usage : "HTTP-RPC server listening port" ,
2016-09-16 12:53:50 +03:00
Value : node . DefaultHTTPPort ,
2015-03-06 04:00:41 +02:00
}
2020-05-05 11:19:17 +03:00
HTTPCORSDomainFlag = cli . StringFlag {
Name : "http.corsdomain" ,
2016-02-24 12:19:00 +02:00
Usage : "Comma separated list of domains from which to accept cross origin requests (browser enforced)" ,
2015-03-29 22:21:14 +03:00
Value : "" ,
}
2020-05-05 11:19:17 +03:00
HTTPVirtualHostsFlag = cli . StringFlag {
Name : "http.vhosts" ,
2018-02-12 15:52:07 +03:00
Usage : "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard." ,
2018-03-05 14:02:32 +03:00
Value : strings . Join ( node . DefaultConfig . HTTPVirtualHosts , "," ) ,
2018-02-12 15:52:07 +03:00
}
2020-05-05 11:19:17 +03:00
HTTPApiFlag = cli . StringFlag {
Name : "http.api" ,
2015-10-29 20:53:24 +03:00
Usage : "API's offered over the HTTP-RPC interface" ,
2017-04-12 17:27:23 +03:00
Value : "" ,
2015-06-16 14:30:53 +03:00
}
2021-02-02 12:05:46 +03:00
HTTPPathPrefixFlag = cli . StringFlag {
Name : "http.rpcprefix" ,
Usage : "HTTP path path prefix on which JSON-RPC is served. Use '/' to serve on all paths." ,
Value : "" ,
}
2020-08-03 20:40:46 +03:00
GraphQLEnabledFlag = cli . BoolFlag {
Name : "graphql" ,
Usage : "Enable GraphQL on the HTTP-RPC server. Note that GraphQL can only be started if an HTTP server is started as well." ,
}
GraphQLCORSDomainFlag = cli . StringFlag {
Name : "graphql.corsdomain" ,
Usage : "Comma separated list of domains from which to accept cross origin requests (browser enforced)" ,
Value : "" ,
}
GraphQLVirtualHostsFlag = cli . StringFlag {
Name : "graphql.vhosts" ,
Usage : "Comma separated list of virtual hostnames from which to accept requests (server enforced). Accepts '*' wildcard." ,
Value : strings . Join ( node . DefaultConfig . GraphQLVirtualHosts , "," ) ,
}
2015-12-16 11:58:01 +02:00
WSEnabledFlag = cli . BoolFlag {
2016-01-26 15:39:21 +02:00
Name : "ws" ,
2015-12-16 11:58:01 +02:00
Usage : "Enable the WS-RPC server" ,
}
WSListenAddrFlag = cli . StringFlag {
2020-05-05 11:19:17 +03:00
Name : "ws.addr" ,
2015-12-16 11:58:01 +02:00
Usage : "WS-RPC server listening interface" ,
2016-09-16 12:53:50 +03:00
Value : node . DefaultWSHost ,
2015-12-16 11:58:01 +02:00
}
WSPortFlag = cli . IntFlag {
2020-05-05 11:19:17 +03:00
Name : "ws.port" ,
2015-12-16 11:58:01 +02:00
Usage : "WS-RPC server listening port" ,
2016-09-16 12:53:50 +03:00
Value : node . DefaultWSPort ,
2015-12-16 11:58:01 +02:00
}
WSApiFlag = cli . StringFlag {
2020-05-05 11:19:17 +03:00
Name : "ws.api" ,
2015-12-16 11:58:01 +02:00
Usage : "API's offered over the WS-RPC interface" ,
2017-04-12 17:27:23 +03:00
Value : "" ,
2015-12-16 11:58:01 +02:00
}
2016-03-14 10:38:54 +02:00
WSAllowedOriginsFlag = cli . StringFlag {
2020-05-05 11:19:17 +03:00
Name : "ws.origins" ,
2016-03-14 10:38:54 +02:00
Usage : "Origins from which to accept websockets requests" ,
2015-12-16 11:58:01 +02:00
Value : "" ,
2015-10-15 17:07:19 +03:00
}
2021-02-02 12:05:46 +03:00
WSPathPrefixFlag = cli . StringFlag {
Name : "ws.rpcprefix" ,
Usage : "HTTP path prefix on which JSON-RPC is served. Use '/' to serve on all paths." ,
2019-06-12 11:24:24 +03:00
Value : "" ,
}
2015-06-19 15:04:18 +03:00
ExecFlag = cli . StringFlag {
Name : "exec" ,
2017-05-03 13:26:09 +03:00
Usage : "Execute JavaScript statement" ,
2015-06-19 15:04:18 +03:00
}
2016-05-06 12:40:23 +03:00
PreloadJSFlag = cli . StringFlag {
2016-04-07 14:48:24 +03:00
Name : "preload" ,
Usage : "Comma separated list of JavaScript files to preload into the console" ,
}
2021-02-23 15:09:19 +03:00
AllowUnprotectedTxs = cli . BoolFlag {
Name : "rpc.allow-unprotected-txs" ,
Usage : "Allow for unprotected (non EIP155 signed) transactions to be submitted via RPC" ,
}
2016-01-26 15:39:21 +02:00
2015-03-06 04:00:41 +02:00
// Network Settings
MaxPeersFlag = cli . IntFlag {
Name : "maxpeers" ,
2015-04-22 02:41:34 +03:00
Usage : "Maximum number of network peers (network disabled if set to 0)" ,
2019-04-25 12:54:33 +03:00
Value : node . DefaultConfig . P2P . MaxPeers ,
2015-03-06 04:00:41 +02:00
}
2015-05-04 17:35:49 +03:00
MaxPendingPeersFlag = cli . IntFlag {
Name : "maxpendpeers" ,
Usage : "Maximum number of pending connection attempts (defaults used if set to 0)" ,
2019-04-25 12:54:33 +03:00
Value : node . DefaultConfig . P2P . MaxPendingPeers ,
2015-05-04 17:35:49 +03:00
}
2015-03-06 04:00:41 +02:00
ListenPortFlag = cli . IntFlag {
Name : "port" ,
Usage : "Network listening port" ,
Value : 30303 ,
}
2017-01-10 23:11:34 +03:00
BootnodesFlag = cli . StringFlag {
2015-03-06 04:00:41 +02:00
Name : "bootnodes" ,
2020-05-11 11:16:32 +03:00
Usage : "Comma separated enode URLs for P2P discovery bootstrap" ,
2017-01-10 23:11:34 +03:00
Value : "" ,
2015-03-06 04:00:41 +02:00
}
NodeKeyFileFlag = cli . StringFlag {
Name : "nodekey" ,
Usage : "P2P node key file" ,
}
NodeKeyHexFlag = cli . StringFlag {
Name : "nodekeyhex" ,
Usage : "P2P node key as hex (for testing)" ,
}
NATFlag = cli . StringFlag {
Name : "nat" ,
2015-04-22 02:41:34 +03:00
Usage : "NAT port mapping mechanism (any|none|upnp|pmp|extip:<IP>)" ,
2015-03-06 04:00:41 +02:00
Value : "any" ,
}
2015-05-26 19:07:24 +03:00
NoDiscoverFlag = cli . BoolFlag {
Name : "nodiscover" ,
Usage : "Disables the peer discovery mechanism (manual peer addition)" ,
}
2016-10-19 14:04:55 +03:00
DiscoveryV5Flag = cli . BoolFlag {
Name : "v5disc" ,
Usage : "Enables the experimental RLPx V5 (Topic Discovery) mechanism" ,
}
2016-11-22 22:52:31 +03:00
NetrestrictFlag = cli . StringFlag {
Name : "netrestrict" ,
Usage : "Restricts network communication to the given IP networks (CIDR masks)" ,
}
2020-02-13 16:38:30 +03:00
DNSDiscoveryFlag = cli . StringFlag {
Name : "discovery.dns" ,
Usage : "Sets DNS discovery entry points (use \"\" to disable DNS)" ,
}
2016-11-22 22:52:31 +03:00
2015-04-23 01:11:11 +03:00
// ATM the url is left to the user and deployment to
2021-05-18 20:54:10 +03:00
JSpathFlag = DirectoryFlag {
2015-03-15 08:31:40 +02:00
Name : "jspath" ,
2016-11-25 14:31:06 +03:00
Usage : "JavaScript root path for `loadScript`" ,
2021-05-18 20:54:10 +03:00
Value : DirectoryString ( "." ) ,
2015-03-15 08:31:40 +02:00
}
2015-10-29 20:53:24 +03:00
// Gas price oracle settings
2017-04-06 17:20:42 +03:00
GpoBlocksFlag = cli . IntFlag {
2020-05-05 11:19:17 +03:00
Name : "gpo.blocks" ,
2017-04-06 17:20:42 +03:00
Usage : "Number of recent blocks to check for gas prices" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . GPO . Blocks ,
2015-05-26 15:17:43 +03:00
}
2017-04-06 17:20:42 +03:00
GpoPercentileFlag = cli . IntFlag {
2020-05-05 11:19:17 +03:00
Name : "gpo.percentile" ,
2017-04-06 17:20:42 +03:00
Usage : "Suggested gas price is the given percentile of a set of recent transaction gas prices" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . GPO . Percentile ,
2017-06-21 11:49:14 +03:00
}
2020-09-09 18:38:47 +03:00
GpoMaxGasPriceFlag = cli . Int64Flag {
Name : "gpo.maxprice" ,
2021-10-18 23:35:08 +03:00
Usage : "Maximum transaction priority fee (or gasprice before London fork) to be recommended by gpo" ,
2021-02-05 15:51:15 +03:00
Value : ethconfig . Defaults . GPO . MaxPrice . Int64 ( ) ,
2018-09-05 11:57:45 +03:00
}
2021-05-11 12:25:51 +03:00
GpoIgnoreGasPriceFlag = cli . Int64Flag {
Name : "gpo.ignoreprice" ,
Usage : "Gas price below which gpo will ignore transactions" ,
Value : ethconfig . Defaults . GPO . IgnorePrice . Int64 ( ) ,
}
2018-07-02 15:51:02 +03:00
// Metrics flags
MetricsEnabledFlag = cli . BoolFlag {
2019-03-25 11:01:18 +03:00
Name : "metrics" ,
2018-07-02 15:51:02 +03:00
Usage : "Enable metrics collection and reporting" ,
}
2019-03-25 11:01:18 +03:00
MetricsEnabledExpensiveFlag = cli . BoolFlag {
Name : "metrics.expensive" ,
Usage : "Enable expensive metrics collection and reporting" ,
}
2020-07-03 20:12:22 +03:00
// MetricsHTTPFlag defines the endpoint for a stand-alone metrics HTTP endpoint.
// Since the pprof service enables sensitive/vulnerable behavior, this allows a user
// to enable a public-OK metrics endpoint without having to worry about ALSO exposing
// other profiling behavior or information.
MetricsHTTPFlag = cli . StringFlag {
Name : "metrics.addr" ,
Usage : "Enable stand-alone metrics HTTP server listening interface" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . HTTP ,
2020-07-03 20:12:22 +03:00
}
MetricsPortFlag = cli . IntFlag {
Name : "metrics.port" ,
Usage : "Metrics HTTP server listening port" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . Port ,
2020-07-03 20:12:22 +03:00
}
2018-07-02 15:51:02 +03:00
MetricsEnableInfluxDBFlag = cli . BoolFlag {
Name : "metrics.influxdb" ,
Usage : "Enable metrics export/push to an external InfluxDB database" ,
}
MetricsInfluxDBEndpointFlag = cli . StringFlag {
Name : "metrics.influxdb.endpoint" ,
Usage : "InfluxDB API endpoint to report metrics to" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . InfluxDBEndpoint ,
2018-07-02 15:51:02 +03:00
}
MetricsInfluxDBDatabaseFlag = cli . StringFlag {
Name : "metrics.influxdb.database" ,
Usage : "InfluxDB database name to push reported metrics to" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . InfluxDBDatabase ,
2018-07-02 15:51:02 +03:00
}
MetricsInfluxDBUsernameFlag = cli . StringFlag {
Name : "metrics.influxdb.username" ,
Usage : "Username to authorize access to the database" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . InfluxDBUsername ,
2018-07-02 15:51:02 +03:00
}
MetricsInfluxDBPasswordFlag = cli . StringFlag {
Name : "metrics.influxdb.password" ,
Usage : "Password to authorize access to the database" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . InfluxDBPassword ,
2018-07-02 15:51:02 +03:00
}
2019-01-29 11:14:24 +03:00
// Tags are part of every measurement sent to InfluxDB. Queries on tags are faster in InfluxDB.
// For example `host` tag could be used so that we can group all nodes and average a measurement
// across all of them, but also so that we can select a specific node and inspect its measurements.
2018-07-02 15:51:02 +03:00
// https://docs.influxdata.com/influxdb/v1.4/concepts/key_concepts/#tag-key
2019-01-29 11:14:24 +03:00
MetricsInfluxDBTagsFlag = cli . StringFlag {
Name : "metrics.influxdb.tags" ,
Usage : "Comma-separated InfluxDB tags (key/values) attached to all measurements" ,
2021-01-18 16:36:05 +03:00
Value : metrics . DefaultConfig . InfluxDBTags ,
2018-07-02 15:51:02 +03:00
}
2021-04-16 22:29:22 +03:00
2021-08-17 19:40:14 +03:00
MetricsEnableInfluxDBV2Flag = cli . BoolFlag {
Name : "metrics.influxdbv2" ,
Usage : "Enable metrics export/push to an external InfluxDB v2 database" ,
2018-09-20 10:44:35 +03:00
}
2021-08-17 19:40:14 +03:00
MetricsInfluxDBTokenFlag = cli . StringFlag {
Name : "metrics.influxdb.token" ,
Usage : "Token to authorize access to the database (v2 only)" ,
Value : metrics . DefaultConfig . InfluxDBToken ,
}
MetricsInfluxDBBucketFlag = cli . StringFlag {
Name : "metrics.influxdb.bucket" ,
Usage : "InfluxDB bucket name to push reported metrics to (v2 only)" ,
Value : metrics . DefaultConfig . InfluxDBBucket ,
2018-09-20 10:44:35 +03:00
}
2020-05-20 06:46:45 +03:00
// Init network
InitNetworkSize = cli . IntFlag {
Name : "init.size" ,
Usage : "the size of the network" ,
Value : 1 ,
}
InitNetworkDir = cli . StringFlag {
Name : "init.dir" ,
Usage : "the direction to store initial network data" ,
Value : "" ,
}
2021-03-03 12:50:30 +03:00
InitNetworkIps = cli . StringFlag {
2020-05-20 06:46:45 +03:00
Name : "init.ips" ,
Usage : "the ips of each node in the network, example '192.168.0.1,192.168.0.2'" ,
Value : "" ,
}
2021-03-03 12:50:30 +03:00
InitNetworkPort = cli . IntFlag {
2020-05-20 06:46:45 +03:00
Name : "init.p2p-port" ,
Usage : "the p2p port of the nodes in the network" ,
Value : 30311 ,
}
2021-08-17 19:40:14 +03:00
MetricsInfluxDBOrganizationFlag = cli . StringFlag {
Name : "metrics.influxdb.organization" ,
Usage : "InfluxDB organization name (v2 only)" ,
Value : metrics . DefaultConfig . InfluxDBOrganization ,
2021-04-16 22:29:22 +03:00
}
2022-07-05 06:14:21 +03:00
BlockAmountReserved = cli . Uint64Flag {
Name : "block-amount-reserved" ,
Usage : "Sets the expected remained amount of blocks for offline block prune" ,
}
CheckSnapshotWithMPT = cli . BoolFlag {
Name : "check-snapshot-with-mpt" ,
Usage : "Enable checking between snapshot and MPT " ,
}
2015-03-06 04:00:41 +02:00
)
2016-08-18 14:28:17 +03:00
// MakeDataDir retrieves the currently requested data directory, terminating
2015-11-17 18:33:25 +02:00
// if none (or the empty string) is specified. If the node is starting a testnet,
2020-04-09 12:09:58 +03:00
// then a subdirectory of the specified datadir will be used.
2016-08-18 14:28:17 +03:00
func MakeDataDir ( ctx * cli . Context ) string {
2015-11-17 18:33:25 +02:00
if path := ctx . GlobalString ( DataDirFlag . Name ) ; path != "" {
2021-02-24 16:07:58 +03:00
if ctx . GlobalBool ( RopstenFlag . Name ) {
2020-04-09 12:09:58 +03:00
// Maintain compatibility with older Geth configurations storing the
// Ropsten database in `testnet` instead of `ropsten`.
return filepath . Join ( path , "ropsten" )
2015-11-17 18:33:25 +02:00
}
2017-05-04 12:36:20 +03:00
if ctx . GlobalBool ( RinkebyFlag . Name ) {
return filepath . Join ( path , "rinkeby" )
}
2018-11-16 18:58:24 +03:00
if ctx . GlobalBool ( GoerliFlag . Name ) {
return filepath . Join ( path , "goerli" )
}
2021-11-08 14:06:01 +03:00
if ctx . GlobalBool ( SepoliaFlag . Name ) {
return filepath . Join ( path , "sepolia" )
2020-06-03 12:05:15 +03:00
}
2015-11-17 18:33:25 +02:00
return path
2015-03-06 04:00:41 +02:00
}
2017-02-22 18:22:50 +03:00
Fatalf ( "Cannot determine default data directory, please set manually (--datadir)" )
2015-11-17 18:33:25 +02:00
return ""
2015-03-06 04:00:41 +02:00
}
2017-04-12 17:27:23 +03:00
// setNodeKey creates a node key from set command line flags, either loading it
2015-11-17 18:33:25 +02:00
// from a file or as a specified hex value. If neither flags were provided, this
// method returns nil and an emphemeral key is to be generated.
2017-04-12 17:27:23 +03:00
func setNodeKey ( ctx * cli . Context , cfg * p2p . Config ) {
2015-11-17 18:33:25 +02:00
var (
hex = ctx . GlobalString ( NodeKeyHexFlag . Name )
file = ctx . GlobalString ( NodeKeyFileFlag . Name )
2017-04-12 17:27:23 +03:00
key * ecdsa . PrivateKey
err error
2015-11-17 18:33:25 +02:00
)
2015-03-06 04:00:41 +02:00
switch {
case file != "" && hex != "" :
2017-02-22 18:22:50 +03:00
Fatalf ( "Options %q and %q are mutually exclusive" , NodeKeyFileFlag . Name , NodeKeyHexFlag . Name )
2015-03-06 04:00:41 +02:00
case file != "" :
if key , err = crypto . LoadECDSA ( file ) ; err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Option %q: %v" , NodeKeyFileFlag . Name , err )
2015-03-06 04:00:41 +02:00
}
2017-04-12 17:27:23 +03:00
cfg . PrivateKey = key
2015-03-06 04:00:41 +02:00
case hex != "" :
if key , err = crypto . HexToECDSA ( hex ) ; err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Option %q: %v" , NodeKeyHexFlag . Name , err )
2015-03-06 04:00:41 +02:00
}
2017-04-12 17:27:23 +03:00
cfg . PrivateKey = key
2015-03-06 04:00:41 +02:00
}
}
2017-04-12 17:27:23 +03:00
// setNodeUserIdent creates the user identifier from CLI flags.
func setNodeUserIdent ( ctx * cli . Context , cfg * node . Config ) {
2015-11-17 18:33:25 +02:00
if identity := ctx . GlobalString ( IdentityFlag . Name ) ; len ( identity ) > 0 {
2017-04-12 17:27:23 +03:00
cfg . UserIdent = identity
2015-11-17 18:33:25 +02:00
}
}
2017-04-12 17:27:23 +03:00
// setBootstrapNodes creates a list of bootstrap nodes from the command line
2015-11-17 18:33:25 +02:00
// flags, reverting to pre-configured ones if none have been specified.
2017-04-12 17:27:23 +03:00
func setBootstrapNodes ( ctx * cli . Context , cfg * p2p . Config ) {
2017-01-05 15:56:06 +03:00
urls := params . MainnetBootnodes
2017-05-04 12:36:20 +03:00
switch {
2021-02-24 16:07:58 +03:00
case ctx . GlobalIsSet ( BootnodesFlag . Name ) :
urls = SplitAndTrim ( ctx . GlobalString ( BootnodesFlag . Name ) )
case ctx . GlobalBool ( RopstenFlag . Name ) :
2020-04-09 12:09:58 +03:00
urls = params . RopstenBootnodes
2021-11-08 14:06:01 +03:00
case ctx . GlobalBool ( SepoliaFlag . Name ) :
urls = params . SepoliaBootnodes
2017-05-04 12:36:20 +03:00
case ctx . GlobalBool ( RinkebyFlag . Name ) :
urls = params . RinkebyBootnodes
2018-11-16 18:58:24 +03:00
case ctx . GlobalBool ( GoerliFlag . Name ) :
urls = params . GoerliBootnodes
2015-11-17 18:33:25 +02:00
}
2022-06-29 12:57:12 +03:00
// don't apply defaults if BootstrapNodes is already set
if cfg . BootstrapNodes != nil {
return
}
all: new p2p node representation (#17643)
Package p2p/enode provides a generalized representation of p2p nodes
which can contain arbitrary information in key/value pairs. It is also
the new home for the node database. The "v4" identity scheme is also
moved here from p2p/enr to remove the dependency on Ethereum crypto from
that package.
Record signature handling is changed significantly. The identity scheme
registry is removed and acceptable schemes must be passed to any method
that needs identity. This means records must now be validated explicitly
after decoding.
The enode API is designed to make signature handling easy and safe: most
APIs around the codebase work with enode.Node, which is a wrapper around
a valid record. Going from enr.Record to enode.Node requires a valid
signature.
* p2p/discover: port to p2p/enode
This ports the discovery code to the new node representation in
p2p/enode. The wire protocol is unchanged, this can be considered a
refactoring change. The Kademlia table can now deal with nodes using an
arbitrary identity scheme. This requires a few incompatible API changes:
- Table.Lookup is not available anymore. It used to take a public key
as argument because v4 protocol requires one. Its replacement is
LookupRandom.
- Table.Resolve takes *enode.Node instead of NodeID. This is also for
v4 protocol compatibility because nodes cannot be looked up by ID
alone.
- Types Node and NodeID are gone. Further commits in the series will be
fixes all over the the codebase to deal with those removals.
* p2p: port to p2p/enode and discovery changes
This adapts package p2p to the changes in p2p/discover. All uses of
discover.Node and discover.NodeID are replaced by their equivalents from
p2p/enode.
New API is added to retrieve the enode.Node instance of a peer. The
behavior of Server.Self with discovery disabled is improved. It now
tries much harder to report a working IP address, falling back to
127.0.0.1 if no suitable address can be determined through other means.
These changes were needed for tests of other packages later in the
series.
* p2p/simulations, p2p/testing: port to p2p/enode
No surprises here, mostly replacements of discover.Node, discover.NodeID
with their new equivalents. The 'interesting' API changes are:
- testing.ProtocolSession tracks complete nodes, not just their IDs.
- adapters.NodeConfig has a new method to create a complete node.
These changes were needed to make swarm tests work.
Note that the NodeID change makes the code incompatible with old
simulation snapshots.
* whisper/whisperv5, whisper/whisperv6: port to p2p/enode
This port was easy because whisper uses []byte for node IDs and
URL strings in the API.
* eth: port to p2p/enode
Again, easy to port because eth uses strings for node IDs and doesn't
care about node information in any way.
* les: port to p2p/enode
Apart from replacing discover.NodeID with enode.ID, most changes are in
the server pool code. It now deals with complete nodes instead
of (Pubkey, IP, Port) triples. The database format is unchanged for now,
but we should probably change it to use the node database later.
* node: port to p2p/enode
This change simply replaces discover.Node and discover.NodeID with their
new equivalents.
* swarm/network: port to p2p/enode
Swarm has its own node address representation, BzzAddr, containing both
an overlay address (the hash of a secp256k1 public key) and an underlay
address (enode:// URL).
There are no changes to the BzzAddr format in this commit, but certain
operations such as creating a BzzAddr from a node ID are now impossible
because node IDs aren't public keys anymore.
Most swarm-related changes in the series remove uses of
NewAddrFromNodeID, replacing it with NewAddr which takes a complete node
as argument. ToOverlayAddr is removed because we can just use the node
ID directly.
2018-09-25 01:59:00 +03:00
cfg . BootstrapNodes = make ( [ ] * enode . Node , 0 , len ( urls ) )
2017-01-05 15:56:06 +03:00
for _ , url := range urls {
2019-01-24 15:02:30 +03:00
if url != "" {
2019-06-07 16:31:00 +03:00
node , err := enode . Parse ( enode . ValidSchemes , url )
2019-01-24 15:02:30 +03:00
if err != nil {
log . Crit ( "Bootstrap URL invalid" , "enode" , url , "err" , err )
2019-03-15 08:20:21 +03:00
continue
2019-01-24 15:02:30 +03:00
}
cfg . BootstrapNodes = append ( cfg . BootstrapNodes , node )
2015-11-17 18:33:25 +02:00
}
}
}
2017-04-12 17:27:23 +03:00
// setBootstrapNodesV5 creates a list of bootstrap nodes from the command line
2016-11-09 17:35:04 +03:00
// flags, reverting to pre-configured ones if none have been specified.
2017-04-12 17:27:23 +03:00
func setBootstrapNodesV5 ( ctx * cli . Context , cfg * p2p . Config ) {
2021-01-26 23:41:35 +03:00
urls := params . V5Bootnodes
2017-05-04 12:36:20 +03:00
switch {
2021-02-24 16:07:58 +03:00
case ctx . GlobalIsSet ( BootnodesFlag . Name ) :
urls = SplitAndTrim ( ctx . GlobalString ( BootnodesFlag . Name ) )
2017-05-04 12:36:20 +03:00
case cfg . BootstrapNodesV5 != nil :
2017-04-12 17:27:23 +03:00
return // already set, don't apply defaults.
2016-11-09 17:35:04 +03:00
}
2021-01-26 23:41:35 +03:00
cfg . BootstrapNodesV5 = make ( [ ] * enode . Node , 0 , len ( urls ) )
2017-01-05 15:56:06 +03:00
for _ , url := range urls {
2019-03-15 08:20:21 +03:00
if url != "" {
2021-01-26 23:41:35 +03:00
node , err := enode . Parse ( enode . ValidSchemes , url )
2019-03-15 08:20:21 +03:00
if err != nil {
log . Error ( "Bootstrap URL invalid" , "enode" , url , "err" , err )
continue
}
cfg . BootstrapNodesV5 = append ( cfg . BootstrapNodesV5 , node )
2016-11-09 17:35:04 +03:00
}
}
}
2017-04-12 17:27:23 +03:00
// setListenAddress creates a TCP listening address string from set command
2015-11-17 18:33:25 +02:00
// line flags.
2017-04-12 17:27:23 +03:00
func setListenAddress ( ctx * cli . Context , cfg * p2p . Config ) {
if ctx . GlobalIsSet ( ListenPortFlag . Name ) {
cfg . ListenAddr = fmt . Sprintf ( ":%d" , ctx . GlobalInt ( ListenPortFlag . Name ) )
}
2015-11-17 18:33:25 +02:00
}
2017-04-12 17:27:23 +03:00
// setNAT creates a port mapper from command line flags.
func setNAT ( ctx * cli . Context , cfg * p2p . Config ) {
if ctx . GlobalIsSet ( NATFlag . Name ) {
natif , err := nat . Parse ( ctx . GlobalString ( NATFlag . Name ) )
if err != nil {
Fatalf ( "Option %s: %v" , NATFlag . Name , err )
}
cfg . NAT = natif
2015-11-17 18:33:25 +02:00
}
}
2020-09-23 00:22:54 +03:00
// SplitAndTrim splits input separated by a comma
2017-04-13 00:04:14 +03:00
// and trims excessive white space from the substrings.
2020-09-23 00:22:54 +03:00
func SplitAndTrim ( input string ) ( ret [ ] string ) {
2020-07-06 23:09:30 +03:00
l := strings . Split ( input , "," )
for _ , r := range l {
2020-09-23 00:22:54 +03:00
if r = strings . TrimSpace ( r ) ; r != "" {
2020-07-06 23:09:30 +03:00
ret = append ( ret , r )
}
2016-04-14 17:18:35 +03:00
}
2020-07-06 23:09:30 +03:00
return ret
2016-04-14 17:18:35 +03:00
}
2017-04-12 17:27:23 +03:00
// setHTTP creates the HTTP RPC listener interface string from the set
2016-02-05 13:45:36 +02:00
// command line flags, returning empty if the HTTP endpoint is disabled.
2017-04-12 17:27:23 +03:00
func setHTTP ( ctx * cli . Context , cfg * node . Config ) {
2022-09-21 10:44:34 +03:00
if ctx . GlobalBool ( HTTPEnabledFlag . Name ) {
if cfg . HTTPHost == "" {
cfg . HTTPHost = "127.0.0.1"
}
2020-05-05 11:19:17 +03:00
if ctx . GlobalIsSet ( HTTPListenAddrFlag . Name ) {
cfg . HTTPHost = ctx . GlobalString ( HTTPListenAddrFlag . Name )
2017-04-12 17:27:23 +03:00
}
}
2020-05-05 11:19:17 +03:00
if ctx . GlobalIsSet ( HTTPPortFlag . Name ) {
cfg . HTTPPort = ctx . GlobalInt ( HTTPPortFlag . Name )
2017-04-12 17:27:23 +03:00
}
2020-05-05 11:19:17 +03:00
if ctx . GlobalIsSet ( HTTPCORSDomainFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . HTTPCors = SplitAndTrim ( ctx . GlobalString ( HTTPCORSDomainFlag . Name ) )
2020-05-05 11:19:17 +03:00
}
if ctx . GlobalIsSet ( HTTPApiFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . HTTPModules = SplitAndTrim ( ctx . GlobalString ( HTTPApiFlag . Name ) )
2020-05-05 11:19:17 +03:00
}
if ctx . GlobalIsSet ( HTTPVirtualHostsFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . HTTPVirtualHosts = SplitAndTrim ( ctx . GlobalString ( HTTPVirtualHostsFlag . Name ) )
2018-03-05 14:02:32 +03:00
}
2021-02-02 12:05:46 +03:00
if ctx . GlobalIsSet ( HTTPPathPrefixFlag . Name ) {
cfg . HTTPPathPrefix = ctx . GlobalString ( HTTPPathPrefixFlag . Name )
}
2021-02-23 15:09:19 +03:00
if ctx . GlobalIsSet ( AllowUnprotectedTxs . Name ) {
cfg . AllowUnprotectedTxs = ctx . GlobalBool ( AllowUnprotectedTxs . Name )
2018-03-05 14:02:32 +03:00
}
2016-02-05 13:45:36 +02:00
}
2019-01-21 17:38:13 +03:00
// setGraphQL creates the GraphQL listener interface string from the set
// command line flags, returning empty if the GraphQL endpoint is disabled.
func setGraphQL ( ctx * cli . Context , cfg * node . Config ) {
if ctx . GlobalIsSet ( GraphQLCORSDomainFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . GraphQLCors = SplitAndTrim ( ctx . GlobalString ( GraphQLCORSDomainFlag . Name ) )
2019-01-21 17:38:13 +03:00
}
if ctx . GlobalIsSet ( GraphQLVirtualHostsFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . GraphQLVirtualHosts = SplitAndTrim ( ctx . GlobalString ( GraphQLVirtualHostsFlag . Name ) )
2019-01-21 17:38:13 +03:00
}
}
2017-04-12 17:27:23 +03:00
// setWS creates the WebSocket RPC listener interface string from the set
2016-02-05 15:08:48 +02:00
// command line flags, returning empty if the HTTP endpoint is disabled.
2017-04-12 17:27:23 +03:00
func setWS ( ctx * cli . Context , cfg * node . Config ) {
if ctx . GlobalBool ( WSEnabledFlag . Name ) && cfg . WSHost == "" {
cfg . WSHost = "127.0.0.1"
if ctx . GlobalIsSet ( WSListenAddrFlag . Name ) {
cfg . WSHost = ctx . GlobalString ( WSListenAddrFlag . Name )
}
}
if ctx . GlobalIsSet ( WSPortFlag . Name ) {
cfg . WSPort = ctx . GlobalInt ( WSPortFlag . Name )
}
2020-05-05 11:19:17 +03:00
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( WSAllowedOriginsFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . WSOrigins = SplitAndTrim ( ctx . GlobalString ( WSAllowedOriginsFlag . Name ) )
2017-04-12 17:27:23 +03:00
}
2020-05-05 11:19:17 +03:00
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( WSApiFlag . Name ) {
2020-09-23 00:22:54 +03:00
cfg . WSModules = SplitAndTrim ( ctx . GlobalString ( WSApiFlag . Name ) )
2017-04-12 17:27:23 +03:00
}
2021-02-02 12:05:46 +03:00
if ctx . GlobalIsSet ( WSPathPrefixFlag . Name ) {
cfg . WSPathPrefix = ctx . GlobalString ( WSPathPrefixFlag . Name )
2017-04-12 17:27:23 +03:00
}
}
// setIPC creates an IPC path configuration from the set command line flags,
// returning an empty string if IPC was explicitly disabled, or the set path.
func setIPC ( ctx * cli . Context , cfg * node . Config ) {
2019-07-08 15:59:07 +03:00
CheckExclusive ( ctx , IPCDisabledFlag , IPCPathFlag )
2017-04-12 17:27:23 +03:00
switch {
case ctx . GlobalBool ( IPCDisabledFlag . Name ) :
cfg . IPCPath = ""
case ctx . GlobalIsSet ( IPCPathFlag . Name ) :
cfg . IPCPath = ctx . GlobalString ( IPCPathFlag . Name )
2016-02-05 15:08:48 +02:00
}
}
2019-07-10 05:08:59 +03:00
// setLes configures the les server and ultra light client settings from the command line flags.
2021-02-05 15:51:15 +03:00
func setLes ( ctx * cli . Context , cfg * ethconfig . Config ) {
2019-07-10 08:54:06 +03:00
if ctx . GlobalIsSet ( LightServeFlag . Name ) {
cfg . LightServ = ctx . GlobalInt ( LightServeFlag . Name )
}
if ctx . GlobalIsSet ( LightIngressFlag . Name ) {
cfg . LightIngress = ctx . GlobalInt ( LightIngressFlag . Name )
2019-07-10 05:08:59 +03:00
}
2019-07-10 08:54:06 +03:00
if ctx . GlobalIsSet ( LightEgressFlag . Name ) {
cfg . LightEgress = ctx . GlobalInt ( LightEgressFlag . Name )
2019-07-10 05:08:59 +03:00
}
2019-07-10 08:54:06 +03:00
if ctx . GlobalIsSet ( LightMaxPeersFlag . Name ) {
cfg . LightPeers = ctx . GlobalInt ( LightMaxPeersFlag . Name )
2019-07-10 05:08:59 +03:00
}
2019-07-09 20:30:24 +03:00
if ctx . GlobalIsSet ( UltraLightServersFlag . Name ) {
cfg . UltraLightServers = strings . Split ( ctx . GlobalString ( UltraLightServersFlag . Name ) , "," )
2019-01-24 14:18:26 +03:00
}
2019-07-09 20:30:24 +03:00
if ctx . GlobalIsSet ( UltraLightFractionFlag . Name ) {
cfg . UltraLightFraction = ctx . GlobalInt ( UltraLightFractionFlag . Name )
2019-01-24 14:18:26 +03:00
}
2019-07-09 20:30:24 +03:00
if cfg . UltraLightFraction <= 0 && cfg . UltraLightFraction > 100 {
2021-02-05 15:51:15 +03:00
log . Error ( "Ultra light fraction is invalid" , "had" , cfg . UltraLightFraction , "updated" , ethconfig . Defaults . UltraLightFraction )
cfg . UltraLightFraction = ethconfig . Defaults . UltraLightFraction
2019-01-24 14:18:26 +03:00
}
2019-07-09 20:30:24 +03:00
if ctx . GlobalIsSet ( UltraLightOnlyAnnounceFlag . Name ) {
cfg . UltraLightOnlyAnnounce = ctx . GlobalBool ( UltraLightOnlyAnnounceFlag . Name )
2019-01-24 14:18:26 +03:00
}
2020-07-13 12:02:54 +03:00
if ctx . GlobalIsSet ( LightNoPruneFlag . Name ) {
cfg . LightNoPrune = ctx . GlobalBool ( LightNoPruneFlag . Name )
}
2021-02-25 15:55:07 +03:00
if ctx . GlobalIsSet ( LightNoSyncServeFlag . Name ) {
cfg . LightNoSyncServe = ctx . GlobalBool ( LightNoSyncServeFlag . Name )
}
2019-01-24 14:18:26 +03:00
}
2021-02-23 13:27:32 +03:00
// MakeDatabaseHandles raises out the number of allowed file handles per process
2016-02-19 14:29:19 +02:00
// for Geth and returns half of the allowance to assign to the database.
2021-02-23 13:27:32 +03:00
func MakeDatabaseHandles ( ) int {
2018-11-29 13:47:29 +03:00
limit , err := fdlimit . Maximum ( )
2016-02-19 14:29:19 +02:00
if err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Failed to retrieve file descriptor allowance: %v" , err )
2016-02-19 14:29:19 +02:00
}
2019-02-12 13:29:05 +03:00
raised , err := fdlimit . Raise ( uint64 ( limit ) )
if err != nil {
2018-11-29 13:47:29 +03:00
Fatalf ( "Failed to raise file descriptor allowance: %v" , err )
2016-02-19 14:29:19 +02:00
}
2019-02-12 13:29:05 +03:00
return int ( raised / 2 ) // Leave half for networking and other stuff
2016-02-19 14:29:19 +02:00
}
2015-11-17 18:33:25 +02:00
// MakeAddress converts an account specified directly as a hex encoded string or
// a key index in the key store to an internal account representation.
2017-01-24 12:49:20 +03:00
func MakeAddress ( ks * keystore . KeyStore , account string ) ( accounts . Account , error ) {
2015-11-17 18:33:25 +02:00
// If the specified account is a valid address, return it
if common . IsHexAddress ( account ) {
2016-03-03 02:09:16 +02:00
return accounts . Account { Address : common . HexToAddress ( account ) } , nil
2015-11-17 18:33:25 +02:00
}
// Otherwise try to interpret the account as a keystore index
index , err := strconv . Atoi ( account )
2017-01-24 12:49:20 +03:00
if err != nil || index < 0 {
2016-03-03 02:09:16 +02:00
return accounts . Account { } , fmt . Errorf ( "invalid account address or index %q" , account )
2015-11-17 18:33:25 +02:00
}
2017-12-10 01:42:23 +03:00
log . Warn ( "-------------------------------------------------------------------" )
log . Warn ( "Referring to accounts by order in the keystore folder is dangerous!" )
log . Warn ( "This functionality is deprecated and will be removed in the future!" )
log . Warn ( "Please use explicit addresses! (can search via `geth account list`)" )
log . Warn ( "-------------------------------------------------------------------" )
2017-01-24 12:49:20 +03:00
accs := ks . Accounts ( )
if len ( accs ) <= index {
return accounts . Account { } , fmt . Errorf ( "index %d higher than number of accounts %d" , index , len ( accs ) )
}
return accs [ index ] , nil
2015-11-17 18:33:25 +02:00
}
2017-04-12 17:27:23 +03:00
// setEtherbase retrieves the etherbase either from the directly specified
2015-11-17 18:33:25 +02:00
// command line flags or from the keystore if CLI indexed.
2021-02-05 15:51:15 +03:00
func setEtherbase ( ctx * cli . Context , ks * keystore . KeyStore , cfg * ethconfig . Config ) {
2021-02-24 16:07:58 +03:00
// Extract the current etherbase
2018-08-15 11:01:49 +03:00
var etherbase string
if ctx . GlobalIsSet ( MinerEtherbaseFlag . Name ) {
etherbase = ctx . GlobalString ( MinerEtherbaseFlag . Name )
}
// Convert the etherbase into an address and configure it
if etherbase != "" {
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 13:23:57 +03:00
if ks != nil {
account , err := MakeAddress ( ks , etherbase )
if err != nil {
Fatalf ( "Invalid miner etherbase: %v" , err )
}
2019-04-23 10:08:51 +03:00
cfg . Miner . Etherbase = account . Address
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 13:23:57 +03:00
} else {
Fatalf ( "No etherbase configured" )
2017-04-12 17:27:23 +03:00
}
2015-07-07 13:53:36 +03:00
}
2015-11-17 18:33:25 +02:00
}
2017-04-28 13:38:49 +03:00
// MakePasswordList reads password lines from the file specified by the global --password flag.
2015-11-17 18:33:25 +02:00
func MakePasswordList ( ctx * cli . Context ) [ ] string {
2016-03-31 00:20:06 +03:00
path := ctx . GlobalString ( PasswordFileFlag . Name )
if path == "" {
return nil
}
text , err := ioutil . ReadFile ( path )
if err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Failed to read password file: %v" , err )
2016-03-31 00:20:06 +03:00
}
lines := strings . Split ( string ( text ) , "\n" )
// Sanitise DOS line endings.
for i := range lines {
lines [ i ] = strings . TrimRight ( lines [ i ] , "\r" )
2015-11-17 18:33:25 +02:00
}
2016-03-31 00:20:06 +03:00
return lines
2015-11-17 18:33:25 +02:00
}
2017-04-12 17:27:23 +03:00
func SetP2PConfig ( ctx * cli . Context , cfg * p2p . Config ) {
setNodeKey ( ctx , cfg )
setNAT ( ctx , cfg )
setListenAddress ( ctx , cfg )
setBootstrapNodes ( ctx , cfg )
setBootstrapNodesV5 ( ctx , cfg )
2018-08-15 11:01:49 +03:00
lightClient := ctx . GlobalString ( SyncModeFlag . Name ) == "light"
2021-02-24 16:07:58 +03:00
lightServer := ( ctx . GlobalInt ( LightServeFlag . Name ) != 0 )
2018-02-05 16:41:53 +03:00
2021-02-24 16:07:58 +03:00
lightPeers := ctx . GlobalInt ( LightMaxPeersFlag . Name )
if lightClient && ! ctx . GlobalIsSet ( LightMaxPeersFlag . Name ) {
2019-09-03 11:43:35 +03:00
// dynamic default - for clients we use 1/10th of the default for servers
lightPeers /= 10
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( MaxPeersFlag . Name ) {
cfg . MaxPeers = ctx . GlobalInt ( MaxPeersFlag . Name )
2021-02-24 16:07:58 +03:00
if lightServer && ! ctx . GlobalIsSet ( LightMaxPeersFlag . Name ) {
2018-03-09 12:55:03 +03:00
cfg . MaxPeers += lightPeers
}
2018-02-05 16:41:53 +03:00
} else {
if lightServer {
cfg . MaxPeers += lightPeers
}
2021-02-24 16:07:58 +03:00
if lightClient && ctx . GlobalIsSet ( LightMaxPeersFlag . Name ) && cfg . MaxPeers < lightPeers {
2018-02-05 16:41:53 +03:00
cfg . MaxPeers = lightPeers
}
2017-04-12 17:27:23 +03:00
}
2018-02-05 16:41:53 +03:00
if ! ( lightClient || lightServer ) {
lightPeers = 0
}
ethPeers := cfg . MaxPeers - lightPeers
if lightClient {
ethPeers = 0
}
log . Info ( "Maximum peer count" , "ETH" , ethPeers , "LES" , lightPeers , "total" , cfg . MaxPeers )
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( MaxPendingPeersFlag . Name ) {
cfg . MaxPendingPeers = ctx . GlobalInt ( MaxPendingPeersFlag . Name )
}
2018-02-05 16:41:53 +03:00
if ctx . GlobalIsSet ( NoDiscoverFlag . Name ) || lightClient {
2017-04-12 17:27:23 +03:00
cfg . NoDiscovery = true
2016-09-05 14:08:41 +03:00
}
2017-04-12 17:27:23 +03:00
// if we're running a light client or server, force enable the v5 peer discovery
// unless it is explicitly disabled with --nodiscover note that explicitly specifying
// --v5disc overrides --nodiscover, in which case the later only disables v4 discovery
2018-02-05 16:41:53 +03:00
forceV5Discovery := ( lightClient || lightServer ) && ! ctx . GlobalBool ( NoDiscoverFlag . Name )
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( DiscoveryV5Flag . Name ) {
cfg . DiscoveryV5 = ctx . GlobalBool ( DiscoveryV5Flag . Name )
} else if forceV5Discovery {
cfg . DiscoveryV5 = true
2016-08-15 19:38:32 +03:00
}
2017-04-12 17:27:23 +03:00
2016-11-22 22:52:31 +03:00
if netrestrict := ctx . GlobalString ( NetrestrictFlag . Name ) ; netrestrict != "" {
list , err := netutil . ParseNetlist ( netrestrict )
if err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Option %q: %v" , NetrestrictFlag . Name , err )
2016-11-22 22:52:31 +03:00
}
2017-04-12 17:27:23 +03:00
cfg . NetRestrict = list
2016-11-22 22:52:31 +03:00
}
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 14:23:02 +03:00
if ctx . GlobalBool ( DeveloperFlag . Name ) {
2017-04-12 17:27:23 +03:00
// --dev mode can't use p2p networking.
cfg . MaxPeers = 0
2021-04-16 22:29:22 +03:00
cfg . ListenAddr = ""
cfg . NoDial = true
2017-04-12 17:27:23 +03:00
cfg . NoDiscovery = true
cfg . DiscoveryV5 = false
2016-08-15 19:38:32 +03:00
}
}
2017-04-12 17:27:23 +03:00
// SetNodeConfig applies node-related command line flags to the config.
func SetNodeConfig ( ctx * cli . Context , cfg * node . Config ) {
SetP2PConfig ( ctx , & cfg . P2P )
setIPC ( ctx , cfg )
setHTTP ( ctx , cfg )
2019-01-21 17:38:13 +03:00
setGraphQL ( ctx , cfg )
2017-04-12 17:27:23 +03:00
setWS ( ctx , cfg )
setNodeUserIdent ( ctx , cfg )
2018-11-23 03:32:34 +03:00
setDataDir ( ctx , cfg )
2019-05-31 12:30:28 +03:00
setSmartCard ( ctx , cfg )
2017-04-12 17:27:23 +03:00
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 13:23:57 +03:00
if ctx . GlobalIsSet ( ExternalSignerFlag . Name ) {
cfg . ExternalSigner = ctx . GlobalString ( ExternalSignerFlag . Name )
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( KeyStoreDirFlag . Name ) {
cfg . KeyStoreDir = ctx . GlobalString ( KeyStoreDirFlag . Name )
}
2021-05-27 11:13:35 +03:00
if ctx . GlobalIsSet ( DeveloperFlag . Name ) {
cfg . UseLightweightKDF = true
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( LightKDFFlag . Name ) {
cfg . UseLightweightKDF = ctx . GlobalBool ( LightKDFFlag . Name )
}
2021-01-13 13:14:36 +03:00
if ctx . GlobalIsSet ( NoUSBFlag . Name ) || cfg . NoUSB {
2021-01-05 13:18:22 +03:00
log . Warn ( "Option nousb is deprecated and USB is deactivated by default. Use --usb to enable" )
2017-04-20 14:01:51 +03:00
}
2021-01-13 13:14:36 +03:00
if ctx . GlobalIsSet ( USBFlag . Name ) {
cfg . USB = ctx . GlobalBool ( USBFlag . Name )
2017-04-20 14:01:51 +03:00
}
2021-03-03 12:50:30 +03:00
if ctx . GlobalIsSet ( DirectBroadcastFlag . Name ) {
cfg . DirectBroadcast = ctx . GlobalBool ( DirectBroadcastFlag . Name )
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( DisableSnapProtocolFlag . Name ) {
cfg . DisableSnapProtocol = ctx . GlobalBool ( DisableSnapProtocolFlag . Name )
}
2021-02-23 10:12:41 +03:00
if ctx . GlobalIsSet ( RangeLimitFlag . Name ) {
cfg . RangeLimit = ctx . GlobalBool ( RangeLimitFlag . Name )
}
2019-04-04 14:03:10 +03:00
if ctx . GlobalIsSet ( InsecureUnlockAllowedFlag . Name ) {
cfg . InsecureUnlockAllowed = ctx . GlobalBool ( InsecureUnlockAllowedFlag . Name )
}
2017-04-12 17:27:23 +03:00
}
2019-05-31 12:30:28 +03:00
func setSmartCard ( ctx * cli . Context , cfg * node . Config ) {
// Skip enabling smartcards if no path is set
path := ctx . GlobalString ( SmartCardDaemonPathFlag . Name )
if path == "" {
return
}
// Sanity check that the smartcard path is valid
fi , err := os . Stat ( path )
if err != nil {
2019-06-04 22:17:12 +03:00
log . Info ( "Smartcard socket not found, disabling" , "err" , err )
2019-05-31 12:30:28 +03:00
return
}
if fi . Mode ( ) & os . ModeType != os . ModeSocket {
log . Error ( "Invalid smartcard daemon path" , "path" , path , "type" , fi . Mode ( ) . String ( ) )
return
}
// Smartcard daemon path exists and is a socket, enable it
cfg . SmartCardDaemonPath = path
}
2018-11-23 03:32:34 +03:00
func setDataDir ( ctx * cli . Context , cfg * node . Config ) {
switch {
case ctx . GlobalIsSet ( DataDirFlag . Name ) :
cfg . DataDir = ctx . GlobalString ( DataDirFlag . Name )
case ctx . GlobalBool ( DeveloperFlag . Name ) :
cfg . DataDir = "" // unless explicitly requested, use memory databases
2021-02-24 16:07:58 +03:00
case ctx . GlobalBool ( RopstenFlag . Name ) && cfg . DataDir == node . DefaultDataDir ( ) :
2020-04-09 12:09:58 +03:00
// Maintain compatibility with older Geth configurations storing the
// Ropsten database in `testnet` instead of `ropsten`.
legacyPath := filepath . Join ( node . DefaultDataDir ( ) , "testnet" )
if _ , err := os . Stat ( legacyPath ) ; ! os . IsNotExist ( err ) {
log . Warn ( "Using the deprecated `testnet` datadir. Future versions will store the Ropsten chain in `ropsten`." )
cfg . DataDir = legacyPath
} else {
cfg . DataDir = filepath . Join ( node . DefaultDataDir ( ) , "ropsten" )
}
2021-02-24 16:07:58 +03:00
cfg . DataDir = filepath . Join ( node . DefaultDataDir ( ) , "ropsten" )
2019-07-11 14:37:08 +03:00
case ctx . GlobalBool ( RinkebyFlag . Name ) && cfg . DataDir == node . DefaultDataDir ( ) :
2018-11-23 03:32:34 +03:00
cfg . DataDir = filepath . Join ( node . DefaultDataDir ( ) , "rinkeby" )
2019-07-11 14:37:08 +03:00
case ctx . GlobalBool ( GoerliFlag . Name ) && cfg . DataDir == node . DefaultDataDir ( ) :
2018-11-16 18:58:24 +03:00
cfg . DataDir = filepath . Join ( node . DefaultDataDir ( ) , "goerli" )
2021-11-08 14:06:01 +03:00
case ctx . GlobalBool ( SepoliaFlag . Name ) && cfg . DataDir == node . DefaultDataDir ( ) :
cfg . DataDir = filepath . Join ( node . DefaultDataDir ( ) , "sepolia" )
2018-11-23 03:32:34 +03:00
}
}
2020-07-03 15:50:35 +03:00
func setGPO ( ctx * cli . Context , cfg * gasprice . Config , light bool ) {
// If we are running the light client, apply another group
// settings for gas oracle.
if light {
2021-06-28 17:16:32 +03:00
* cfg = ethconfig . LightClientGPO
2020-07-03 15:50:35 +03:00
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( GpoBlocksFlag . Name ) {
cfg . Blocks = ctx . GlobalInt ( GpoBlocksFlag . Name )
}
if ctx . GlobalIsSet ( GpoPercentileFlag . Name ) {
cfg . Percentile = ctx . GlobalInt ( GpoPercentileFlag . Name )
}
2020-09-09 18:38:47 +03:00
if ctx . GlobalIsSet ( GpoMaxGasPriceFlag . Name ) {
cfg . MaxPrice = big . NewInt ( ctx . GlobalInt64 ( GpoMaxGasPriceFlag . Name ) )
}
2021-05-11 12:25:51 +03:00
if ctx . GlobalIsSet ( GpoIgnoreGasPriceFlag . Name ) {
cfg . IgnorePrice = big . NewInt ( ctx . GlobalInt64 ( GpoIgnoreGasPriceFlag . Name ) )
}
2017-04-12 17:27:23 +03:00
}
2017-05-26 13:40:47 +03:00
func setTxPool ( ctx * cli . Context , cfg * core . TxPoolConfig ) {
2018-08-21 20:30:06 +03:00
if ctx . GlobalIsSet ( TxPoolLocalsFlag . Name ) {
locals := strings . Split ( ctx . GlobalString ( TxPoolLocalsFlag . Name ) , "," )
for _ , account := range locals {
if trimmed := strings . TrimSpace ( account ) ; ! common . IsHexAddress ( trimmed ) {
Fatalf ( "Invalid account in --txpool.locals: %s" , trimmed )
} else {
cfg . Locals = append ( cfg . Locals , common . HexToAddress ( account ) )
}
}
}
2017-07-05 17:06:05 +03:00
if ctx . GlobalIsSet ( TxPoolNoLocalsFlag . Name ) {
cfg . NoLocals = ctx . GlobalBool ( TxPoolNoLocalsFlag . Name )
}
2017-07-28 16:09:39 +03:00
if ctx . GlobalIsSet ( TxPoolJournalFlag . Name ) {
cfg . Journal = ctx . GlobalString ( TxPoolJournalFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolRejournalFlag . Name ) {
cfg . Rejournal = ctx . GlobalDuration ( TxPoolRejournalFlag . Name )
}
2017-05-26 13:40:47 +03:00
if ctx . GlobalIsSet ( TxPoolPriceLimitFlag . Name ) {
cfg . PriceLimit = ctx . GlobalUint64 ( TxPoolPriceLimitFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolPriceBumpFlag . Name ) {
cfg . PriceBump = ctx . GlobalUint64 ( TxPoolPriceBumpFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolAccountSlotsFlag . Name ) {
cfg . AccountSlots = ctx . GlobalUint64 ( TxPoolAccountSlotsFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolGlobalSlotsFlag . Name ) {
cfg . GlobalSlots = ctx . GlobalUint64 ( TxPoolGlobalSlotsFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolAccountQueueFlag . Name ) {
cfg . AccountQueue = ctx . GlobalUint64 ( TxPoolAccountQueueFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolGlobalQueueFlag . Name ) {
cfg . GlobalQueue = ctx . GlobalUint64 ( TxPoolGlobalQueueFlag . Name )
}
if ctx . GlobalIsSet ( TxPoolLifetimeFlag . Name ) {
cfg . Lifetime = ctx . GlobalDuration ( TxPoolLifetimeFlag . Name )
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( TxPoolReannounceTimeFlag . Name ) {
cfg . ReannounceTime = ctx . GlobalDuration ( TxPoolReannounceTimeFlag . Name )
}
2017-05-26 13:40:47 +03:00
}
2021-02-05 15:51:15 +03:00
func setEthash ( ctx * cli . Context , cfg * ethconfig . Config ) {
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( EthashCacheDirFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . CacheDir = ctx . GlobalString ( EthashCacheDirFlag . Name )
2017-04-12 17:27:23 +03:00
}
if ctx . GlobalIsSet ( EthashDatasetDirFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . DatasetDir = ctx . GlobalString ( EthashDatasetDirFlag . Name )
2017-04-12 17:27:23 +03:00
}
if ctx . GlobalIsSet ( EthashCachesInMemoryFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . CachesInMem = ctx . GlobalInt ( EthashCachesInMemoryFlag . Name )
2017-04-12 17:27:23 +03:00
}
if ctx . GlobalIsSet ( EthashCachesOnDiskFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . CachesOnDisk = ctx . GlobalInt ( EthashCachesOnDiskFlag . Name )
2017-04-12 17:27:23 +03:00
}
2020-03-31 11:44:04 +03:00
if ctx . GlobalIsSet ( EthashCachesLockMmapFlag . Name ) {
cfg . Ethash . CachesLockMmap = ctx . GlobalBool ( EthashCachesLockMmapFlag . Name )
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( EthashDatasetsInMemoryFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . DatasetsInMem = ctx . GlobalInt ( EthashDatasetsInMemoryFlag . Name )
2017-04-12 17:27:23 +03:00
}
if ctx . GlobalIsSet ( EthashDatasetsOnDiskFlag . Name ) {
2017-11-24 17:10:27 +03:00
cfg . Ethash . DatasetsOnDisk = ctx . GlobalInt ( EthashDatasetsOnDiskFlag . Name )
2017-04-12 17:27:23 +03:00
}
2020-03-31 11:44:04 +03:00
if ctx . GlobalIsSet ( EthashDatasetsLockMmapFlag . Name ) {
cfg . Ethash . DatasetsLockMmap = ctx . GlobalBool ( EthashDatasetsLockMmapFlag . Name )
}
2017-04-12 17:27:23 +03:00
}
2019-04-23 10:08:51 +03:00
func setMiner ( ctx * cli . Context , cfg * miner . Config ) {
if ctx . GlobalIsSet ( MinerNotifyFlag . Name ) {
cfg . Notify = strings . Split ( ctx . GlobalString ( MinerNotifyFlag . Name ) , "," )
}
2021-03-26 20:30:10 +03:00
cfg . NotifyFull = ctx . GlobalBool ( MinerNotifyFullFlag . Name )
2019-04-23 10:08:51 +03:00
if ctx . GlobalIsSet ( MinerExtraDataFlag . Name ) {
cfg . ExtraData = [ ] byte ( ctx . GlobalString ( MinerExtraDataFlag . Name ) )
}
if ctx . GlobalIsSet ( MinerGasLimitFlag . Name ) {
cfg . GasCeil = ctx . GlobalUint64 ( MinerGasLimitFlag . Name )
}
if ctx . GlobalIsSet ( MinerGasPriceFlag . Name ) {
cfg . GasPrice = GlobalBig ( ctx , MinerGasPriceFlag . Name )
}
if ctx . GlobalIsSet ( MinerRecommitIntervalFlag . Name ) {
2020-06-30 10:05:25 +03:00
cfg . Recommit = ctx . GlobalDuration ( MinerRecommitIntervalFlag . Name )
2019-04-23 10:08:51 +03:00
}
2021-03-19 08:23:44 +03:00
if ctx . GlobalIsSet ( MinerDelayLeftoverFlag . Name ) {
cfg . DelayLeftOver = ctx . Duration ( MinerDelayLeftoverFlag . Name )
}
2019-04-23 10:08:51 +03:00
if ctx . GlobalIsSet ( MinerNoVerfiyFlag . Name ) {
2020-06-30 10:05:25 +03:00
cfg . Noverify = ctx . GlobalBool ( MinerNoVerfiyFlag . Name )
2019-04-23 10:08:51 +03:00
}
2021-08-10 11:28:33 +03:00
if ctx . GlobalIsSet ( LegacyMinerGasTargetFlag . Name ) {
log . Warn ( "The generic --miner.gastarget flag is deprecated and will be removed in the future!" )
}
2019-04-23 10:08:51 +03:00
}
2021-02-05 15:51:15 +03:00
func setWhitelist ( ctx * cli . Context , cfg * ethconfig . Config ) {
2018-12-10 15:47:01 +03:00
whitelist := ctx . GlobalString ( WhitelistFlag . Name )
if whitelist == "" {
return
}
cfg . Whitelist = make ( map [ uint64 ] common . Hash )
for _ , entry := range strings . Split ( whitelist , "," ) {
parts := strings . Split ( entry , "=" )
if len ( parts ) != 2 {
Fatalf ( "Invalid whitelist entry: %s" , entry )
2018-11-02 23:26:45 +03:00
}
2018-12-10 15:47:01 +03:00
number , err := strconv . ParseUint ( parts [ 0 ] , 0 , 64 )
if err != nil {
Fatalf ( "Invalid whitelist block number %s: %v" , parts [ 0 ] , err )
}
var hash common . Hash
if err = hash . UnmarshalText ( [ ] byte ( parts [ 1 ] ) ) ; err != nil {
Fatalf ( "Invalid whitelist hash %s: %v" , parts [ 1 ] , err )
}
cfg . Whitelist [ number ] = hash
2018-11-02 23:26:45 +03:00
}
}
2019-07-08 15:59:07 +03:00
// CheckExclusive verifies that only a single instance of the provided flags was
2017-11-24 18:07:22 +03:00
// set by the user. Each flag might optionally be followed by a string type to
// specialize it further.
2019-07-08 15:59:07 +03:00
func CheckExclusive ( ctx * cli . Context , args ... interface { } ) {
2017-04-12 17:27:23 +03:00
set := make ( [ ] string , 0 , 1 )
2017-11-24 18:07:22 +03:00
for i := 0 ; i < len ( args ) ; i ++ {
// Make sure the next argument is a flag and skip if not set
flag , ok := args [ i ] . ( cli . Flag )
if ! ok {
panic ( fmt . Sprintf ( "invalid argument, not cli.Flag type: %T" , args [ i ] ) )
}
// Check if next arg extends current and expand its name if so
name := flag . GetName ( )
if i + 1 < len ( args ) {
switch option := args [ i + 1 ] . ( type ) {
case string :
2018-10-08 17:08:56 +03:00
// Extended flag check, make sure value set doesn't conflict with passed in option
2017-11-24 18:07:22 +03:00
if ctx . GlobalString ( flag . GetName ( ) ) == option {
name += "=" + option
2018-10-08 17:08:56 +03:00
set = append ( set , "--" + name )
2017-11-24 18:07:22 +03:00
}
2018-10-08 17:08:56 +03:00
// shift arguments and continue
2017-11-24 18:07:22 +03:00
i ++
2018-10-08 17:08:56 +03:00
continue
2017-11-24 18:07:22 +03:00
case cli . Flag :
default :
panic ( fmt . Sprintf ( "invalid argument, not cli.Flag or string extension: %T" , args [ i + 1 ] ) )
}
}
// Mark the flag if it's set
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( flag . GetName ( ) ) {
2017-11-24 18:07:22 +03:00
set = append ( set , "--" + name )
2015-11-17 18:33:25 +02:00
}
}
2017-04-12 17:27:23 +03:00
if len ( set ) > 1 {
2017-11-24 18:07:22 +03:00
Fatalf ( "Flags %v can't be used at the same time" , strings . Join ( set , ", " ) )
2015-11-17 18:33:25 +02:00
}
2017-04-12 17:27:23 +03:00
}
// SetEthConfig applies eth-related command line flags to the config.
2021-02-05 15:51:15 +03:00
func SetEthConfig ( ctx * cli . Context , stack * node . Node , cfg * ethconfig . Config ) {
2017-04-12 17:27:23 +03:00
// Avoid conflicting network flags
2021-11-08 14:06:01 +03:00
CheckExclusive ( ctx , MainnetFlag , DeveloperFlag , RopstenFlag , RinkebyFlag , GoerliFlag , SepoliaFlag )
2021-02-24 16:07:58 +03:00
CheckExclusive ( ctx , LightServeFlag , SyncModeFlag , "light" )
2019-07-10 08:54:06 +03:00
CheckExclusive ( ctx , DeveloperFlag , ExternalSignerFlag ) // Can't use both ephemeral unlocked and external signer
2021-03-03 13:04:50 +03:00
if ctx . GlobalString ( GCModeFlag . Name ) == "archive" && ctx . GlobalUint64 ( TxLookupLimitFlag . Name ) != 0 {
ctx . GlobalSet ( TxLookupLimitFlag . Name , "0" )
log . Warn ( "Disable transaction unindexing for archive node" )
}
if ctx . GlobalIsSet ( LightServeFlag . Name ) && ctx . GlobalUint64 ( TxLookupLimitFlag . Name ) != 0 {
2020-12-15 22:12:14 +03:00
log . Warn ( "LES server cannot serve old transaction status and cannot connect below les/4 protocol version if transaction lookup index is limited" )
}
accounts, eth, clique, signer: support for external signer API (#18079)
* accounts, eth, clique: implement external backend + move sighash calc to backend
* signer: implement account_Version on external API
* accounts/external: enable ipc, add copyright
* accounts, internal, signer: formatting
* node: go fmt
* flags: disallow --dev in combo with --externalsigner
* accounts: remove clique-specific signing method, replace with more generic
* accounts, consensus: formatting + fix error in tests
* signer/core: remove (test-) import cycle
* clique: remove unused import
* accounts: remove CliqueHash and avoid dependency on package crypto
* consensus/clique: unduplicate header encoding
2019-02-05 13:23:57 +03:00
var ks * keystore . KeyStore
if keystores := stack . AccountManager ( ) . Backends ( keystore . KeyStoreType ) ; len ( keystores ) > 0 {
ks = keystores [ 0 ] . ( * keystore . KeyStore )
}
2017-04-12 17:27:23 +03:00
setEtherbase ( ctx , ks , cfg )
2020-07-03 15:50:35 +03:00
setGPO ( ctx , & cfg . GPO , ctx . GlobalString ( SyncModeFlag . Name ) == "light" )
2017-05-26 13:40:47 +03:00
setTxPool ( ctx , & cfg . TxPool )
2017-04-12 17:27:23 +03:00
setEthash ( ctx , cfg )
2019-04-23 10:08:51 +03:00
setMiner ( ctx , & cfg . Miner )
2018-11-02 23:26:45 +03:00
setWhitelist ( ctx , cfg )
2019-07-10 05:08:59 +03:00
setLes ( ctx , cfg )
2017-04-12 17:27:23 +03:00
2021-04-06 17:23:35 +03:00
// Cap the cache allowance and tune the garbage collector
mem , err := gopsutil . VirtualMemory ( )
if err == nil {
if 32 << ( ^ uintptr ( 0 ) >> 63 ) == 32 && mem . Total > 2 * 1024 * 1024 * 1024 {
log . Warn ( "Lowering memory allowance on 32bit arch" , "available" , mem . Total / 1024 / 1024 , "addressable" , 2 * 1024 )
mem . Total = 2 * 1024 * 1024 * 1024
}
allowance := int ( mem . Total / 1024 / 1024 / 3 )
if cache := ctx . GlobalInt ( CacheFlag . Name ) ; cache > allowance {
log . Warn ( "Sanitizing cache to Go's GC limits" , "provided" , cache , "updated" , allowance )
ctx . GlobalSet ( CacheFlag . Name , strconv . Itoa ( allowance ) )
}
}
// Ensure Go's GC ignores the database cache for trigger percentage
cache := ctx . GlobalInt ( CacheFlag . Name )
gogc := math . Max ( 20 , math . Min ( 100 , 100 / ( float64 ( cache ) / 1024 ) ) )
log . Debug ( "Sanitizing Go's GC trigger" , "percent" , int ( gogc ) )
godebug . SetGCPercent ( int ( gogc ) )
2018-08-15 11:01:49 +03:00
if ctx . GlobalIsSet ( SyncModeFlag . Name ) {
2017-04-12 17:27:23 +03:00
cfg . SyncMode = * GlobalTextMarshaler ( ctx , SyncModeFlag . Name ) . ( * downloader . SyncMode )
}
if ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
2017-04-25 14:31:15 +03:00
cfg . NetworkId = ctx . GlobalUint64 ( NetworkIdFlag . Name )
2017-04-12 17:27:23 +03:00
}
2018-02-05 19:40:32 +03:00
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheDatabaseFlag . Name ) {
cfg . DatabaseCache = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheDatabaseFlag . Name ) / 100
2017-04-12 17:27:23 +03:00
}
2021-02-23 13:27:32 +03:00
cfg . DatabaseHandles = MakeDatabaseHandles ( )
2019-03-08 16:56:20 +03:00
if ctx . GlobalIsSet ( AncientFlag . Name ) {
cfg . DatabaseFreezer = ctx . GlobalString ( AncientFlag . Name )
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( DiffFlag . Name ) {
cfg . DatabaseDiff = ctx . GlobalString ( DiffFlag . Name )
}
if ctx . GlobalIsSet ( PersistDiffFlag . Name ) {
cfg . PersistDiff = ctx . GlobalBool ( PersistDiffFlag . Name )
}
if ctx . GlobalIsSet ( DiffBlockFlag . Name ) {
cfg . DiffBlock = ctx . GlobalUint64 ( DiffBlockFlag . Name )
}
if ctx . GlobalIsSet ( PruneAncientDataFlag . Name ) {
if cfg . SyncMode == downloader . FullSync {
cfg . PruneAncientData = ctx . GlobalBool ( PruneAncientDataFlag . Name )
} else {
log . Crit ( "pruneancient parameter didn't take effect for current syncmode" )
}
}
2018-02-05 19:40:32 +03:00
if gcmode := ctx . GlobalString ( GCModeFlag . Name ) ; gcmode != "full" && gcmode != "archive" {
Fatalf ( "--%s must be either 'full' or 'archive'" , GCModeFlag . Name )
}
2019-10-15 11:19:20 +03:00
if ctx . GlobalIsSet ( GCModeFlag . Name ) {
cfg . NoPruning = ctx . GlobalString ( GCModeFlag . Name ) == "archive"
}
2021-03-03 12:50:30 +03:00
if ctx . GlobalIsSet ( DirectBroadcastFlag . Name ) {
cfg . DirectBroadcast = ctx . GlobalBool ( DirectBroadcastFlag . Name )
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( DisableSnapProtocolFlag . Name ) {
cfg . DisableSnapProtocol = ctx . GlobalBool ( DisableSnapProtocolFlag . Name )
}
if ctx . GlobalIsSet ( DisableDiffProtocolFlag . Name ) {
cfg . DisableDiffProtocol = ctx . GlobalIsSet ( DisableDiffProtocolFlag . Name )
}
if ctx . GlobalIsSet ( EnableTrustProtocolFlag . Name ) {
cfg . EnableTrustProtocol = ctx . GlobalIsSet ( EnableTrustProtocolFlag . Name )
}
if ctx . GlobalIsSet ( DiffSyncFlag . Name ) {
cfg . DiffSync = ctx . GlobalBool ( DiffSyncFlag . Name )
}
if ctx . GlobalIsSet ( PipeCommitFlag . Name ) {
cfg . PipeCommit = ctx . GlobalBool ( PipeCommitFlag . Name )
}
2021-02-23 10:12:41 +03:00
if ctx . GlobalIsSet ( RangeLimitFlag . Name ) {
cfg . RangeLimit = ctx . GlobalBool ( RangeLimitFlag . Name )
}
2020-11-18 12:51:33 +03:00
// Read the value from the flag no matter if it's set or not.
cfg . Preimages = ctx . GlobalBool ( CachePreimagesFlag . Name )
if cfg . NoPruning && ! cfg . Preimages {
cfg . Preimages = true
log . Info ( "Enabling recording of key preimages since archive mode is used" )
}
2020-05-11 18:58:43 +03:00
if ctx . GlobalIsSet ( TxLookupLimitFlag . Name ) {
cfg . TxLookupLimit = ctx . GlobalUint64 ( TxLookupLimitFlag . Name )
}
2018-11-12 19:47:34 +03:00
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheTrieFlag . Name ) {
cfg . TrieCleanCache = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheTrieFlag . Name ) / 100
}
2020-07-28 16:30:31 +03:00
if ctx . GlobalIsSet ( CacheTrieJournalFlag . Name ) {
cfg . TrieCleanCacheJournal = ctx . GlobalString ( CacheTrieJournalFlag . Name )
}
if ctx . GlobalIsSet ( CacheTrieRejournalFlag . Name ) {
cfg . TrieCleanCacheRejournal = ctx . GlobalDuration ( CacheTrieRejournalFlag . Name )
}
2018-02-05 19:40:32 +03:00
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheGCFlag . Name ) {
2018-11-12 19:47:34 +03:00
cfg . TrieDirtyCache = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheGCFlag . Name ) / 100
2018-02-05 19:40:32 +03:00
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( TriesInMemoryFlag . Name ) {
cfg . TriesInMemory = ctx . GlobalUint64 ( TriesInMemoryFlag . Name )
}
if ctx . GlobalIsSet ( TriesVerifyModeFlag . Name ) {
cfg . TriesVerifyMode = * GlobalTextMarshaler ( ctx , TriesVerifyModeFlag . Name ) . ( * core . VerifyMode )
// If a node sets verify mode to full or insecure, it's a fast node and need
// to verify blocks from verify nodes, then it should enable trust protocol.
if cfg . TriesVerifyMode . NeedRemoteVerify ( ) {
cfg . EnableTrustProtocol = true
}
}
2019-11-26 10:48:29 +03:00
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheSnapshotFlag . Name ) {
cfg . SnapshotCache = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheSnapshotFlag . Name ) / 100
}
2021-02-07 21:13:59 +03:00
if ! ctx . GlobalBool ( SnapshotFlag . Name ) {
2020-12-14 12:27:15 +03:00
// If snap-sync is requested, this flag is also required
if cfg . SyncMode == downloader . SnapSync {
log . Info ( "Snap sync requested, enabling --snapshot" )
} else {
cfg . TrieCleanCache += cfg . SnapshotCache
cfg . SnapshotCache = 0 // Disabled
}
2020-01-19 22:57:56 +03:00
}
2017-04-12 17:27:23 +03:00
if ctx . GlobalIsSet ( DocRootFlag . Name ) {
cfg . DocRoot = ctx . GlobalString ( DocRootFlag . Name )
}
if ctx . GlobalIsSet ( VMEnableDebugFlag . Name ) {
// TODO(fjl): force-enable this in --dev mode
cfg . EnablePreimageRecording = ctx . GlobalBool ( VMEnableDebugFlag . Name )
}
2015-11-17 18:33:25 +02:00
2020-10-13 14:33:10 +03:00
if ctx . GlobalIsSet ( RPCGlobalGasCapFlag . Name ) {
cfg . RPCGasCap = ctx . GlobalUint64 ( RPCGlobalGasCapFlag . Name )
2019-04-08 14:49:52 +03:00
}
2020-07-01 20:54:21 +03:00
if cfg . RPCGasCap != 0 {
log . Info ( "Set global gas cap" , "cap" , cfg . RPCGasCap )
} else {
log . Info ( "Global gas cap disabled" )
2019-04-08 14:49:52 +03:00
}
2021-10-12 11:46:04 +03:00
if ctx . GlobalIsSet ( RPCGlobalEVMTimeoutFlag . Name ) {
cfg . RPCEVMTimeout = ctx . GlobalDuration ( RPCGlobalEVMTimeoutFlag . Name )
}
2020-10-13 14:33:10 +03:00
if ctx . GlobalIsSet ( RPCGlobalTxFeeCapFlag . Name ) {
cfg . RPCTxFeeCap = ctx . GlobalFloat64 ( RPCGlobalTxFeeCapFlag . Name )
2020-06-17 10:46:31 +03:00
}
2020-12-01 12:03:41 +03:00
if ctx . GlobalIsSet ( NoDiscoverFlag . Name ) {
2022-07-05 06:14:21 +03:00
cfg . EthDiscoveryURLs , cfg . SnapDiscoveryURLs , cfg . TrustDiscoveryURLs = [ ] string { } , [ ] string { } , [ ] string { }
2020-12-01 12:03:41 +03:00
} else if ctx . GlobalIsSet ( DNSDiscoveryFlag . Name ) {
2020-02-13 16:38:30 +03:00
urls := ctx . GlobalString ( DNSDiscoveryFlag . Name )
if urls == "" {
2020-12-14 12:27:15 +03:00
cfg . EthDiscoveryURLs = [ ] string { }
2020-02-13 16:38:30 +03:00
} else {
2020-12-14 12:27:15 +03:00
cfg . EthDiscoveryURLs = SplitAndTrim ( urls )
2020-02-13 16:38:30 +03:00
}
}
2017-05-04 12:36:20 +03:00
// Override any default configs for hard coded networks.
2015-11-17 18:33:25 +02:00
switch {
2021-01-05 16:31:23 +03:00
case ctx . GlobalBool ( MainnetFlag . Name ) :
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
cfg . NetworkId = 1
}
cfg . Genesis = core . DefaultGenesisBlock ( )
SetDNSDiscoveryDefaults ( cfg , params . MainnetGenesisHash )
2021-02-24 16:07:58 +03:00
case ctx . GlobalBool ( RopstenFlag . Name ) :
2015-11-17 18:33:25 +02:00
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
2017-04-12 17:27:23 +03:00
cfg . NetworkId = 3
2015-11-17 18:33:25 +02:00
}
2020-04-09 12:09:58 +03:00
cfg . Genesis = core . DefaultRopstenGenesisBlock ( )
2020-10-05 13:50:26 +03:00
SetDNSDiscoveryDefaults ( cfg , params . RopstenGenesisHash )
2021-11-08 14:06:01 +03:00
case ctx . GlobalBool ( SepoliaFlag . Name ) :
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
cfg . NetworkId = 11155111
}
cfg . Genesis = core . DefaultSepoliaGenesisBlock ( )
SetDNSDiscoveryDefaults ( cfg , params . SepoliaGenesisHash )
2017-05-04 12:36:20 +03:00
case ctx . GlobalBool ( RinkebyFlag . Name ) :
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
cfg . NetworkId = 4
}
cfg . Genesis = core . DefaultRinkebyGenesisBlock ( )
2020-10-05 13:50:26 +03:00
SetDNSDiscoveryDefaults ( cfg , params . RinkebyGenesisHash )
2018-11-16 18:58:24 +03:00
case ctx . GlobalBool ( GoerliFlag . Name ) :
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
cfg . NetworkId = 5
}
cfg . Genesis = core . DefaultGoerliGenesisBlock ( )
2020-10-05 13:50:26 +03:00
SetDNSDiscoveryDefaults ( cfg , params . GoerliGenesisHash )
2017-10-24 13:40:42 +03:00
case ctx . GlobalBool ( DeveloperFlag . Name ) :
2018-06-14 12:31:31 +03:00
if ! ctx . GlobalIsSet ( NetworkIdFlag . Name ) {
cfg . NetworkId = 1337
}
2021-05-27 11:13:35 +03:00
cfg . SyncMode = downloader . FullSync
2017-10-24 13:40:42 +03:00
// Create new developer account or reuse existing one
var (
2020-07-23 06:47:34 +03:00
developer accounts . Account
passphrase string
err error
2017-10-24 13:40:42 +03:00
)
2020-07-23 06:47:34 +03:00
if list := MakePasswordList ( ctx ) ; len ( list ) > 0 {
// Just take the first value. Although the function returns a possible multiple values and
// some usages iterate through them as attempts, that doesn't make sense in this setting,
// when we're definitely concerned with only one account.
passphrase = list [ 0 ]
}
// setEtherbase has been called above, configuring the miner address from command line flags.
if cfg . Miner . Etherbase != ( common . Address { } ) {
developer = accounts . Account { Address : cfg . Miner . Etherbase }
} else if accs := ks . Accounts ( ) ; len ( accs ) > 0 {
2017-10-24 13:40:42 +03:00
developer = ks . Accounts ( ) [ 0 ]
} else {
2020-07-23 06:47:34 +03:00
developer , err = ks . NewAccount ( passphrase )
2017-10-24 13:40:42 +03:00
if err != nil {
Fatalf ( "Failed to create developer account: %v" , err )
}
}
2020-07-23 06:47:34 +03:00
if err := ks . Unlock ( developer , passphrase ) ; err != nil {
2017-10-24 13:40:42 +03:00
Fatalf ( "Failed to unlock developer account: %v" , err )
}
log . Info ( "Using developer account" , "address" , developer . Address )
2020-07-21 15:53:47 +03:00
// Create a new developer genesis block or reuse existing one
2021-11-16 15:45:02 +03:00
cfg . Genesis = core . DeveloperGenesisBlock ( uint64 ( ctx . GlobalInt ( DeveloperPeriodFlag . Name ) ) , ctx . GlobalUint64 ( DeveloperGasLimitFlag . Name ) , developer . Address )
2020-07-21 15:53:47 +03:00
if ctx . GlobalIsSet ( DataDirFlag . Name ) {
2022-01-27 12:06:40 +03:00
// If datadir doesn't exist we need to open db in write-mode
// so leveldb can create files.
readonly := true
if ! common . FileExist ( stack . ResolvePath ( "chaindata" ) ) {
readonly = false
}
2020-07-21 15:53:47 +03:00
// Check if we have an already initialized chain and fall back to
// that if so. Otherwise we need to generate a new genesis spec.
2022-07-05 06:14:21 +03:00
chaindb := MakeChainDatabase ( ctx , stack , readonly , false )
2020-07-21 15:53:47 +03:00
if rawdb . ReadCanonicalHash ( chaindb , 0 ) != ( common . Hash { } ) {
cfg . Genesis = nil // fallback to db content
}
chaindb . Close ( )
}
2021-02-24 16:07:58 +03:00
if ! ctx . GlobalIsSet ( MinerGasPriceFlag . Name ) {
2019-04-23 10:08:51 +03:00
cfg . Miner . GasPrice = big . NewInt ( 1 )
2015-09-06 16:46:54 +03:00
}
2020-02-13 16:38:30 +03:00
default :
if cfg . NetworkId == 1 {
2020-10-05 13:50:26 +03:00
SetDNSDiscoveryDefaults ( cfg , params . MainnetGenesisHash )
2020-02-13 16:38:30 +03:00
}
}
}
2020-10-05 13:50:26 +03:00
// SetDNSDiscoveryDefaults configures DNS discovery with the given URL if
2020-02-13 16:38:30 +03:00
// no URLs are set.
2021-02-05 15:51:15 +03:00
func SetDNSDiscoveryDefaults ( cfg * ethconfig . Config , genesis common . Hash ) {
2020-12-14 12:27:15 +03:00
if cfg . EthDiscoveryURLs != nil {
2020-05-22 14:46:34 +03:00
return // already set through flags/config
}
2020-05-25 20:50:36 +03:00
protocol := "all"
2020-05-22 14:46:34 +03:00
if cfg . SyncMode == downloader . LightSync {
protocol = "les"
}
if url := params . KnownDNSNetwork ( genesis , protocol ) ; url != "" {
2020-12-14 12:27:15 +03:00
cfg . EthDiscoveryURLs = [ ] string { url }
2021-05-04 12:29:32 +03:00
cfg . SnapDiscoveryURLs = cfg . EthDiscoveryURLs
2022-07-05 06:14:21 +03:00
cfg . TrustDiscoveryURLs = cfg . EthDiscoveryURLs
2015-09-06 16:46:54 +03:00
}
2017-04-12 17:27:23 +03:00
}
2015-12-16 05:26:23 +02:00
2017-04-12 17:27:23 +03:00
// RegisterEthService adds an Ethereum client to the stack.
2021-04-16 22:29:22 +03:00
// The second return value is the full node instance, which may be nil if the
// node is running as a light client.
func RegisterEthService ( stack * node . Node , cfg * ethconfig . Config ) ( ethapi . Backend , * eth . Ethereum ) {
2017-04-12 17:27:23 +03:00
if cfg . SyncMode == downloader . LightSync {
2020-08-03 20:40:46 +03:00
backend , err := les . New ( stack , cfg )
if err != nil {
Fatalf ( "Failed to register the Ethereum service: %v" , err )
}
2021-01-25 16:36:39 +03:00
stack . RegisterAPIs ( tracers . APIs ( backend . ApiBackend ) )
2022-02-02 18:57:34 +03:00
if backend . BlockChain ( ) . Config ( ) . TerminalTotalDifficulty != nil {
2022-01-31 15:22:35 +03:00
if err := lescatalyst . Register ( stack , backend ) ; err != nil {
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 14:23:02 +03:00
Fatalf ( "Failed to register the catalyst service: %v" , err )
}
}
2021-04-16 22:29:22 +03:00
return backend . ApiBackend , nil
2017-04-12 17:27:23 +03:00
}
2020-11-25 11:24:50 +03:00
backend , err := eth . New ( stack , cfg )
2017-04-12 17:27:23 +03:00
if err != nil {
Fatalf ( "Failed to register the Ethereum service: %v" , err )
2015-11-17 18:33:25 +02:00
}
2020-11-25 11:24:50 +03:00
if cfg . LightServ > 0 {
_ , err := les . NewLesServer ( stack , backend , cfg )
2020-08-03 20:40:46 +03:00
if err != nil {
2020-11-25 11:24:50 +03:00
Fatalf ( "Failed to create the LES server: %v" , err )
2020-08-03 20:40:46 +03:00
}
2016-08-15 19:38:32 +03:00
}
2022-02-02 18:57:34 +03:00
if backend . BlockChain ( ) . Config ( ) . TerminalTotalDifficulty != nil {
2022-01-31 15:22:35 +03:00
if err := ethcatalyst . Register ( stack , backend ) ; err != nil {
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 14:23:02 +03:00
Fatalf ( "Failed to register the catalyst service: %v" , err )
}
}
2021-01-25 16:36:39 +03:00
stack . RegisterAPIs ( tracers . APIs ( backend . APIBackend ) )
2021-04-16 22:29:22 +03:00
return backend . APIBackend , backend
2015-03-06 04:00:41 +02:00
}
2016-11-25 18:55:06 +03:00
// RegisterEthStatsService configures the Ethereum Stats daemon and adds it to
2018-07-26 10:59:05 +03:00
// the given node.
2020-08-03 20:40:46 +03:00
func RegisterEthStatsService ( stack * node . Node , backend ethapi . Backend , url string ) {
if err := ethstats . New ( stack , backend , backend . Engine ( ) , url ) ; err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Failed to register the Ethereum Stats service: %v" , err )
2016-11-25 18:55:06 +03:00
}
}
2019-06-12 11:24:24 +03:00
// RegisterGraphQLService is a utility function to construct a new service and register it against a node.
2020-08-03 20:40:46 +03:00
func RegisterGraphQLService ( stack * node . Node , backend ethapi . Backend , cfg node . Config ) {
if err := graphql . New ( stack , backend , cfg . GraphQLCors , cfg . GraphQLVirtualHosts ) ; err != nil {
2019-06-12 11:24:24 +03:00
Fatalf ( "Failed to register the GraphQL service: %v" , err )
}
}
2018-07-02 15:51:02 +03:00
func SetupMetrics ( ctx * cli . Context ) {
if metrics . Enabled {
log . Info ( "Enabling metrics collection" )
2020-07-03 20:12:22 +03:00
2018-07-02 15:51:02 +03:00
var (
2021-08-17 19:40:14 +03:00
enableExport = ctx . GlobalBool ( MetricsEnableInfluxDBFlag . Name )
enableExportV2 = ctx . GlobalBool ( MetricsEnableInfluxDBV2Flag . Name )
)
if enableExport || enableExportV2 {
CheckExclusive ( ctx , MetricsEnableInfluxDBFlag , MetricsEnableInfluxDBV2Flag )
v1FlagIsSet := ctx . GlobalIsSet ( MetricsInfluxDBUsernameFlag . Name ) ||
ctx . GlobalIsSet ( MetricsInfluxDBPasswordFlag . Name )
v2FlagIsSet := ctx . GlobalIsSet ( MetricsInfluxDBTokenFlag . Name ) ||
ctx . GlobalIsSet ( MetricsInfluxDBOrganizationFlag . Name ) ||
ctx . GlobalIsSet ( MetricsInfluxDBBucketFlag . Name )
if enableExport && v2FlagIsSet {
Fatalf ( "Flags --influxdb.metrics.organization, --influxdb.metrics.token, --influxdb.metrics.bucket are only available for influxdb-v2" )
} else if enableExportV2 && v1FlagIsSet {
Fatalf ( "Flags --influxdb.metrics.username, --influxdb.metrics.password are only available for influxdb-v1" )
}
}
var (
endpoint = ctx . GlobalString ( MetricsInfluxDBEndpointFlag . Name )
database = ctx . GlobalString ( MetricsInfluxDBDatabaseFlag . Name )
username = ctx . GlobalString ( MetricsInfluxDBUsernameFlag . Name )
password = ctx . GlobalString ( MetricsInfluxDBPasswordFlag . Name )
token = ctx . GlobalString ( MetricsInfluxDBTokenFlag . Name )
bucket = ctx . GlobalString ( MetricsInfluxDBBucketFlag . Name )
organization = ctx . GlobalString ( MetricsInfluxDBOrganizationFlag . Name )
2018-07-02 15:51:02 +03:00
)
if enableExport {
2019-01-29 11:14:24 +03:00
tagsMap := SplitTagsFlag ( ctx . GlobalString ( MetricsInfluxDBTagsFlag . Name ) )
2018-07-02 15:51:02 +03:00
log . Info ( "Enabling metrics export to InfluxDB" )
2019-01-29 11:14:24 +03:00
go influxdb . InfluxDBWithTags ( metrics . DefaultRegistry , 10 * time . Second , endpoint , database , username , password , "geth." , tagsMap )
2021-08-17 19:40:14 +03:00
} else if enableExportV2 {
tagsMap := SplitTagsFlag ( ctx . GlobalString ( MetricsInfluxDBTagsFlag . Name ) )
log . Info ( "Enabling metrics export to InfluxDB (v2)" )
go influxdb . InfluxDBV2WithTags ( metrics . DefaultRegistry , 10 * time . Second , endpoint , token , bucket , organization , "geth." , tagsMap )
2019-01-29 11:14:24 +03:00
}
2020-07-03 20:12:22 +03:00
if ctx . GlobalIsSet ( MetricsHTTPFlag . Name ) {
address := fmt . Sprintf ( "%s:%d" , ctx . GlobalString ( MetricsHTTPFlag . Name ) , ctx . GlobalInt ( MetricsPortFlag . Name ) )
log . Info ( "Enabling stand-alone metrics HTTP endpoint" , "address" , address )
exp . Setup ( address )
}
2019-01-29 11:14:24 +03:00
}
}
func SplitTagsFlag ( tagsFlag string ) map [ string ] string {
tags := strings . Split ( tagsFlag , "," )
tagsMap := map [ string ] string { }
for _ , t := range tags {
if t != "" {
kv := strings . Split ( t , "=" )
if len ( kv ) == 2 {
tagsMap [ kv [ 0 ] ] = kv [ 1 ]
}
2018-07-02 15:51:02 +03:00
}
}
2019-01-29 11:14:24 +03:00
return tagsMap
2018-07-02 15:51:02 +03:00
}
2016-03-02 00:32:43 +02:00
// MakeChainDatabase open an LevelDB using the flags passed to the client and will hard crash if it fails.
2022-07-05 06:14:21 +03:00
func MakeChainDatabase ( ctx * cli . Context , stack * node . Node , readonly , disableFreeze bool ) ethdb . Database {
2016-03-02 00:32:43 +02:00
var (
2018-02-05 19:40:32 +03:00
cache = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheDatabaseFlag . Name ) / 100
2021-02-23 13:27:32 +03:00
handles = MakeDatabaseHandles ( )
2020-07-13 12:02:54 +03:00
err error
chainDb ethdb . Database
2016-03-02 00:32:43 +02:00
)
2018-08-15 11:01:49 +03:00
if ctx . GlobalString ( SyncModeFlag . Name ) == "light" {
2020-07-13 12:02:54 +03:00
name := "lightchaindata"
2021-03-22 21:06:30 +03:00
chainDb , err = stack . OpenDatabase ( name , cache , handles , "" , readonly )
2020-07-13 12:02:54 +03:00
} else {
name := "chaindata"
2022-08-16 09:02:45 +03:00
chainDb , err = stack . OpenDatabaseWithFreezer ( name , cache , handles , ctx . GlobalString ( AncientFlag . Name ) , "" , readonly , disableFreeze , false , false , true )
2017-05-03 13:35:47 +03:00
}
2016-03-02 00:32:43 +02:00
if err != nil {
2017-02-22 18:22:50 +03:00
Fatalf ( "Could not open database: %v" , err )
2015-04-13 11:13:52 +03:00
}
2016-03-02 00:32:43 +02:00
return chainDb
}
2017-03-02 16:03:33 +03:00
func MakeGenesis ( ctx * cli . Context ) * core . Genesis {
var genesis * core . Genesis
switch {
2021-03-09 12:50:25 +03:00
case ctx . GlobalBool ( MainnetFlag . Name ) :
genesis = core . DefaultGenesisBlock ( )
2021-02-24 16:07:58 +03:00
case ctx . GlobalBool ( RopstenFlag . Name ) :
2020-04-09 12:09:58 +03:00
genesis = core . DefaultRopstenGenesisBlock ( )
2021-11-08 14:06:01 +03:00
case ctx . GlobalBool ( SepoliaFlag . Name ) :
genesis = core . DefaultSepoliaGenesisBlock ( )
2017-05-04 12:36:20 +03:00
case ctx . GlobalBool ( RinkebyFlag . Name ) :
genesis = core . DefaultRinkebyGenesisBlock ( )
2018-11-16 18:58:24 +03:00
case ctx . GlobalBool ( GoerliFlag . Name ) :
genesis = core . DefaultGoerliGenesisBlock ( )
2017-10-24 13:40:42 +03:00
case ctx . GlobalBool ( DeveloperFlag . Name ) :
Fatalf ( "Developer chains are ephemeral" )
2017-03-02 16:03:33 +03:00
}
return genesis
}
2016-03-02 00:32:43 +02:00
// MakeChain creates a chain manager from set command line flags.
2016-08-18 14:28:17 +03:00
func MakeChain ( ctx * cli . Context , stack * node . Node ) ( chain * core . BlockChain , chainDb ethdb . Database ) {
2016-03-02 00:32:43 +02:00
var err error
2022-07-05 06:14:21 +03:00
chainDb = MakeChainDatabase ( ctx , stack , false , false ) // TODO(rjl493456442) support read-only database
2017-03-02 16:03:33 +03:00
config , _ , err := core . SetupGenesisBlock ( chainDb , MakeGenesis ( ctx ) )
if err != nil {
Fatalf ( "%v" , err )
}
2017-10-10 15:51:09 +03:00
var engine consensus . Engine
if config . Clique != nil {
engine = clique . New ( config . Clique , chainDb )
} else {
engine = ethash . NewFaker ( )
if ! ctx . GlobalBool ( FakePoWFlag . Name ) {
2017-11-24 17:10:27 +03:00
engine = ethash . New ( ethash . Config {
2021-02-05 15:51:15 +03:00
CacheDir : stack . ResolvePath ( ethconfig . Defaults . Ethash . CacheDir ) ,
CachesInMem : ethconfig . Defaults . Ethash . CachesInMem ,
CachesOnDisk : ethconfig . Defaults . Ethash . CachesOnDisk ,
CachesLockMmap : ethconfig . Defaults . Ethash . CachesLockMmap ,
DatasetDir : stack . ResolvePath ( ethconfig . Defaults . Ethash . DatasetDir ) ,
DatasetsInMem : ethconfig . Defaults . Ethash . DatasetsInMem ,
DatasetsOnDisk : ethconfig . Defaults . Ethash . DatasetsOnDisk ,
DatasetsLockMmap : ethconfig . Defaults . Ethash . DatasetsLockMmap ,
2018-08-28 16:59:05 +03:00
} , nil , false )
2017-10-10 15:51:09 +03:00
}
}
2018-02-05 19:40:32 +03:00
if gcmode := ctx . GlobalString ( GCModeFlag . Name ) ; gcmode != "full" && gcmode != "archive" {
Fatalf ( "--%s must be either 'full' or 'archive'" , GCModeFlag . Name )
}
cache := & core . CacheConfig {
2022-07-05 06:14:21 +03:00
TrieCleanLimit : ethconfig . Defaults . TrieCleanCache ,
TrieDirtyLimit : ethconfig . Defaults . TrieDirtyCache ,
TrieDirtyDisabled : ctx . GlobalString ( GCModeFlag . Name ) == "archive" ,
TrieTimeLimit : ethconfig . Defaults . TrieTimeout ,
TriesInMemory : ethconfig . Defaults . TriesInMemory ,
SnapshotLimit : ethconfig . Defaults . SnapshotCache ,
Preimages : ctx . GlobalBool ( CachePreimagesFlag . Name ) ,
2018-11-12 19:47:34 +03:00
}
2020-11-18 12:51:33 +03:00
if cache . TrieDirtyDisabled && ! cache . Preimages {
cache . Preimages = true
log . Info ( "Enabling recording of key preimages since archive mode is used" )
2018-11-12 19:47:34 +03:00
}
2021-02-07 21:13:59 +03:00
if ! ctx . GlobalBool ( SnapshotFlag . Name ) {
2020-01-19 22:57:56 +03:00
cache . SnapshotLimit = 0 // Disabled
}
2018-11-12 19:47:34 +03:00
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheTrieFlag . Name ) {
cache . TrieCleanLimit = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheTrieFlag . Name ) / 100
2018-02-05 19:40:32 +03:00
}
if ctx . GlobalIsSet ( CacheFlag . Name ) || ctx . GlobalIsSet ( CacheGCFlag . Name ) {
2018-11-12 19:47:34 +03:00
cache . TrieDirtyLimit = ctx . GlobalInt ( CacheFlag . Name ) * ctx . GlobalInt ( CacheGCFlag . Name ) / 100
2018-02-05 19:40:32 +03:00
}
2022-07-05 06:14:21 +03:00
if ctx . GlobalIsSet ( TriesInMemoryFlag . Name ) {
cache . TriesInMemory = ctx . GlobalUint64 ( TriesInMemoryFlag . Name )
}
2017-03-02 16:03:33 +03:00
vmcfg := vm . Config { EnablePreimageRecording : ctx . GlobalBool ( VMEnableDebugFlag . Name ) }
2021-03-22 21:06:30 +03:00
// TODO(rjl493456442) disable snapshot generation/wiping if the chain is read only.
// Disable transaction indexing/unindexing by default.
chain , err = core . NewBlockChain ( chainDb , cache , config , engine , vmcfg , nil , nil )
2015-06-08 13:12:13 +03:00
if err != nil {
2017-03-02 16:03:33 +03:00
Fatalf ( "Can't create BlockChain: %v" , err )
2015-06-08 13:12:13 +03:00
}
2015-08-06 20:57:39 +03:00
return chain , chainDb
2015-03-06 04:00:41 +02:00
}
2016-05-06 12:40:23 +03:00
// MakeConsolePreloads retrieves the absolute paths for the console JavaScript
// scripts to preload before starting.
func MakeConsolePreloads ( ctx * cli . Context ) [ ] string {
// Skip preloading if there's nothing to preload
if ctx . GlobalString ( PreloadJSFlag . Name ) == "" {
return nil
}
// Otherwise resolve absolute paths and return them
2019-02-15 02:02:11 +03:00
var preloads [ ] string
2016-05-06 12:40:23 +03:00
for _ , file := range strings . Split ( ctx . GlobalString ( PreloadJSFlag . Name ) , "," ) {
2021-01-12 17:50:11 +03:00
preloads = append ( preloads , strings . TrimSpace ( file ) )
2016-05-06 12:40:23 +03:00
}
return preloads
}
2017-04-28 13:38:49 +03:00
// MigrateFlags sets the global flag from a local flag when it's set.
// This is a temporary function used for migrating old command/flags to the
// new format.
//
// e.g. geth account new --keystore /tmp/mykeystore --lightkdf
//
// is equivalent after calling this method with:
//
// geth --keystore /tmp/mykeystore --lightkdf account new
//
// This allows the use of the existing configuration functionality.
// When all flags are migrated this function can be removed and the existing
// configuration functionality must be changed that is uses local flags
func MigrateFlags ( action func ( ctx * cli . Context ) error ) func ( * cli . Context ) error {
return func ( ctx * cli . Context ) error {
for _ , name := range ctx . FlagNames ( ) {
if ctx . IsSet ( name ) {
ctx . GlobalSet ( name , ctx . String ( name ) )
}
}
return action ( ctx )
}
}