2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-23 13:48:53 +00:00
|
|
|
|
2024-01-23 08:26:00 +00:00
|
|
|
// geth is a command-line client for Ethereum.
|
2023-06-13 15:22:32 +00:00
|
|
|
package geth
|
2014-06-23 11:20:59 +00:00
|
|
|
|
|
|
|
import (
|
2014-08-06 07:53:12 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2023-06-29 04:44:54 +00:00
|
|
|
"path/filepath"
|
2017-08-11 11:29:05 +00:00
|
|
|
"sort"
|
2018-05-25 07:48:16 +00:00
|
|
|
"strconv"
|
2015-05-05 06:24:15 +00:00
|
|
|
"strings"
|
2015-06-25 10:47:06 +00:00
|
|
|
"time"
|
2014-07-29 23:05:40 +00:00
|
|
|
|
2017-02-08 18:25:52 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
2017-01-24 09:49:20 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts/keystore"
|
2014-10-31 13:20:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
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 07:40:36 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2020-05-19 08:44:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/console/prompt"
|
2015-01-04 13:20:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
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 07:40:36 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/downloader"
|
2017-02-08 18:25:52 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
2016-01-26 13:39:21 +00:00
|
|
|
"github.com/ethereum/go-ethereum/internal/debug"
|
2020-08-03 17:40:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/internal/ethapi"
|
2020-07-14 08:35:32 +00:00
|
|
|
"github.com/ethereum/go-ethereum/internal/flags"
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2015-06-27 15:12:58 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2015-11-17 16:33:25 +00:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
2023-08-01 16:02:36 +00:00
|
|
|
"go.uber.org/automaxprocs/maxprocs"
|
2023-09-13 19:57:48 +00:00
|
|
|
|
2021-06-25 15:57:56 +00:00
|
|
|
"github.com/ethereum/go-ethereum/plugins"
|
2021-11-06 00:26:53 +00:00
|
|
|
"github.com/ethereum/go-ethereum/plugins/wrappers/backendwrapper"
|
2021-11-05 10:48:21 +00:00
|
|
|
|
2021-11-09 11:09:35 +00:00
|
|
|
// Force-load the tracer engines to trigger registration
|
|
|
|
_ "github.com/ethereum/go-ethereum/eth/tracers/js"
|
2021-11-05 10:48:21 +00:00
|
|
|
_ "github.com/ethereum/go-ethereum/eth/tracers/native"
|
|
|
|
|
2022-06-27 16:22:36 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2014-06-23 11:20:59 +00:00
|
|
|
)
|
|
|
|
|
2014-07-03 16:36:24 +00:00
|
|
|
const (
|
2016-08-18 11:28:17 +00:00
|
|
|
clientIdentifier = "geth" // Client identifier to advertise over the network
|
2014-07-03 16:36:24 +00:00
|
|
|
)
|
|
|
|
|
2015-04-28 11:14:53 +00:00
|
|
|
var (
|
2017-05-03 10:26:09 +00:00
|
|
|
// flags that configure the node
|
2022-07-25 09:07:44 +00:00
|
|
|
nodeFlags = flags.Merge([]cli.Flag{
|
2023-06-29 04:44:54 +00:00
|
|
|
//begin PluGeth code injection
|
|
|
|
utils.PluginsDirFlag,
|
|
|
|
//end PluGeth code injection
|
2015-04-18 21:53:30 +00:00
|
|
|
utils.IdentityFlag,
|
2015-03-11 00:08:42 +00:00
|
|
|
utils.UnlockedAccountFlag,
|
2015-03-23 13:00:06 +00:00
|
|
|
utils.PasswordFileFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.BootnodesFlag,
|
2021-01-19 08:26:42 +00:00
|
|
|
utils.MinFreeDiskSpaceFlag,
|
2016-03-07 22:38:56 +00:00
|
|
|
utils.KeyStoreDirFlag,
|
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 10:23:57 +00:00
|
|
|
utils.ExternalSignerFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.NoUSBFlag, // deprecated
|
2021-01-05 10:18:22 +00:00
|
|
|
utils.USBFlag,
|
2019-05-31 09:30:28 +00:00
|
|
|
utils.SmartCardDaemonPathFlag,
|
2023-04-26 15:17:37 +00:00
|
|
|
utils.OverrideCancun,
|
2023-06-28 09:08:48 +00:00
|
|
|
utils.OverrideVerkle,
|
2023-02-02 11:52:19 +00:00
|
|
|
utils.EnablePersonal,
|
2018-08-21 17:30:06 +00:00
|
|
|
utils.TxPoolLocalsFlag,
|
2017-07-05 14:06:05 +00:00
|
|
|
utils.TxPoolNoLocalsFlag,
|
2017-07-28 13:09:39 +00:00
|
|
|
utils.TxPoolJournalFlag,
|
|
|
|
utils.TxPoolRejournalFlag,
|
2017-05-26 10:40:47 +00:00
|
|
|
utils.TxPoolPriceLimitFlag,
|
|
|
|
utils.TxPoolPriceBumpFlag,
|
|
|
|
utils.TxPoolAccountSlotsFlag,
|
|
|
|
utils.TxPoolGlobalSlotsFlag,
|
|
|
|
utils.TxPoolAccountQueueFlag,
|
|
|
|
utils.TxPoolGlobalQueueFlag,
|
|
|
|
utils.TxPoolLifetimeFlag,
|
2023-07-27 10:45:35 +00:00
|
|
|
utils.BlobPoolDataDirFlag,
|
|
|
|
utils.BlobPoolDataCapFlag,
|
|
|
|
utils.BlobPoolPriceBumpFlag,
|
2017-04-12 14:27:23 +00:00
|
|
|
utils.SyncModeFlag,
|
2022-10-28 12:48:08 +00:00
|
|
|
utils.SyncTargetFlag,
|
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 07:40:36 +00:00
|
|
|
utils.ExitWhenSyncedFlag,
|
2018-02-05 16:40:32 +00:00
|
|
|
utils.GCModeFlag,
|
2020-01-19 19:57:56 +00:00
|
|
|
utils.SnapshotFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.TxLookupLimitFlag, // deprecated
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
utils.TransactionHistoryFlag,
|
|
|
|
utils.StateHistoryFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.LightServeFlag, // deprecated
|
|
|
|
utils.LightIngressFlag, // deprecated
|
|
|
|
utils.LightEgressFlag, // deprecated
|
|
|
|
utils.LightMaxPeersFlag, // deprecated
|
|
|
|
utils.LightNoPruneFlag, // deprecated
|
2015-11-10 13:47:19 +00:00
|
|
|
utils.LightKDFFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.LightNoSyncServeFlag, // deprecated
|
2022-05-04 16:55:17 +00:00
|
|
|
utils.EthRequiredBlocksFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.LegacyWhitelistFlag, // deprecated
|
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 11:16:30 +00:00
|
|
|
utils.BloomFilterSizeFlag,
|
2016-11-09 17:18:20 +00:00
|
|
|
utils.CacheFlag,
|
2018-02-05 16:40:32 +00:00
|
|
|
utils.CacheDatabaseFlag,
|
2018-11-12 16:47:34 +00:00
|
|
|
utils.CacheTrieFlag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.CacheTrieJournalFlag, // deprecated
|
|
|
|
utils.CacheTrieRejournalFlag, // deprecated
|
2018-02-05 16:40:32 +00:00
|
|
|
utils.CacheGCFlag,
|
2019-11-26 07:48:29 +00:00
|
|
|
utils.CacheSnapshotFlag,
|
2019-04-01 08:52:11 +00:00
|
|
|
utils.CacheNoPrefetchFlag,
|
2020-11-18 09:51:33 +00:00
|
|
|
utils.CachePreimagesFlag,
|
2022-08-19 09:14:59 +00:00
|
|
|
utils.CacheLogSizeFlag,
|
2022-03-07 08:21:06 +00:00
|
|
|
utils.FDLimitFlag,
|
2023-05-10 11:54:14 +00:00
|
|
|
utils.CryptoKZGFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.ListenPortFlag,
|
2022-06-28 15:25:47 +00:00
|
|
|
utils.DiscoveryPortFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.MaxPeersFlag,
|
2015-05-04 14:35:49 +00:00
|
|
|
utils.MaxPendingPeersFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.MiningEnabledFlag,
|
2018-08-29 09:21:12 +00:00
|
|
|
utils.MinerGasLimitFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.MinerGasPriceFlag,
|
|
|
|
utils.MinerEtherbaseFlag,
|
|
|
|
utils.MinerExtraDataFlag,
|
2018-08-21 19:56:54 +00:00
|
|
|
utils.MinerRecommitIntervalFlag,
|
2022-10-03 12:10:00 +00:00
|
|
|
utils.MinerNewPayloadTimeout,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.NATFlag,
|
2015-05-26 16:07:24 +00:00
|
|
|
utils.NoDiscoverFlag,
|
2023-07-11 19:21:32 +00:00
|
|
|
utils.DiscoveryV4Flag,
|
2016-10-19 11:04:55 +00:00
|
|
|
utils.DiscoveryV5Flag,
|
2023-11-23 14:28:26 +00:00
|
|
|
utils.LegacyDiscoveryV5Flag, // deprecated
|
2016-11-22 19:52:31 +00:00
|
|
|
utils.NetrestrictFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.NodeKeyFileFlag,
|
|
|
|
utils.NodeKeyHexFlag,
|
2020-02-13 13:38:30 +00:00
|
|
|
utils.DNSDiscoveryFlag,
|
2017-10-24 10:40:42 +00:00
|
|
|
utils.DeveloperFlag,
|
2021-11-16 12:45:02 +00:00
|
|
|
utils.DeveloperGasLimitFlag,
|
2023-07-06 08:42:34 +00:00
|
|
|
utils.DeveloperPeriodFlag,
|
2017-01-17 11:19:50 +00:00
|
|
|
utils.VMEnableDebugFlag,
|
2015-03-18 07:44:58 +00:00
|
|
|
utils.NetworkIdFlag,
|
2016-11-25 15:55:06 +00:00
|
|
|
utils.EthStatsURLFlag,
|
2017-03-08 11:26:19 +00:00
|
|
|
utils.NoCompactionFlag,
|
2017-04-06 14:20:42 +00:00
|
|
|
utils.GpoBlocksFlag,
|
|
|
|
utils.GpoPercentileFlag,
|
2020-09-09 15:38:47 +00:00
|
|
|
utils.GpoMaxGasPriceFlag,
|
2021-05-11 09:25:51 +00:00
|
|
|
utils.GpoIgnoreGasPriceFlag,
|
2017-04-12 14:27:23 +00:00
|
|
|
configFileFlag,
|
2023-11-29 07:33:50 +00:00
|
|
|
utils.LogDebugFlag,
|
|
|
|
utils.LogBacktraceAtFlag,
|
2023-09-22 11:56:48 +00:00
|
|
|
}, utils.NetworkFlags, utils.DatabaseFlags)
|
2017-05-03 10:26:09 +00:00
|
|
|
|
|
|
|
rpcFlags = []cli.Flag{
|
2020-05-05 08:19:17 +00:00
|
|
|
utils.HTTPEnabledFlag,
|
|
|
|
utils.HTTPListenAddrFlag,
|
|
|
|
utils.HTTPPortFlag,
|
|
|
|
utils.HTTPCORSDomainFlag,
|
2022-03-17 15:20:03 +00:00
|
|
|
utils.AuthListenFlag,
|
2022-03-07 07:30:27 +00:00
|
|
|
utils.AuthPortFlag,
|
2022-03-17 15:20:03 +00:00
|
|
|
utils.AuthVirtualHostsFlag,
|
2022-03-07 07:30:27 +00:00
|
|
|
utils.JWTSecretFlag,
|
2020-05-05 08:19:17 +00:00
|
|
|
utils.HTTPVirtualHostsFlag,
|
2019-01-21 14:38:13 +00:00
|
|
|
utils.GraphQLEnabledFlag,
|
|
|
|
utils.GraphQLCORSDomainFlag,
|
|
|
|
utils.GraphQLVirtualHostsFlag,
|
2020-05-05 08:19:17 +00:00
|
|
|
utils.HTTPApiFlag,
|
2021-02-02 09:05:46 +00:00
|
|
|
utils.HTTPPathPrefixFlag,
|
2017-05-03 10:26:09 +00:00
|
|
|
utils.WSEnabledFlag,
|
|
|
|
utils.WSListenAddrFlag,
|
|
|
|
utils.WSPortFlag,
|
|
|
|
utils.WSApiFlag,
|
|
|
|
utils.WSAllowedOriginsFlag,
|
2021-02-02 09:05:46 +00:00
|
|
|
utils.WSPathPrefixFlag,
|
2017-05-03 10:26:09 +00:00
|
|
|
utils.IPCDisabledFlag,
|
|
|
|
utils.IPCPathFlag,
|
2019-04-08 11:49:52 +00:00
|
|
|
utils.InsecureUnlockAllowedFlag,
|
2020-10-13 11:33:10 +00:00
|
|
|
utils.RPCGlobalGasCapFlag,
|
2021-10-12 08:46:04 +00:00
|
|
|
utils.RPCGlobalEVMTimeoutFlag,
|
2020-10-13 11:33:10 +00:00
|
|
|
utils.RPCGlobalTxFeeCapFlag,
|
2021-02-23 12:09:19 +00:00
|
|
|
utils.AllowUnprotectedTxs,
|
rpc: add limit for batch request items and response size (#26681)
This PR adds server-side limits for JSON-RPC batch requests. Before this change, batches
were limited only by processing time. The server would pick calls from the batch and
answer them until the response timeout occurred, then stop processing the remaining batch
items.
Here, we are adding two additional limits which can be configured:
- the 'item limit': batches can have at most N items
- the 'response size limit': batches can contain at most X response bytes
These limits are optional in package rpc. In Geth, we set a default limit of 1000 items
and 25MB response size.
When a batch goes over the limit, an error response is returned to the client. However,
doing this correctly isn't always possible. In JSON-RPC, only method calls with a valid
`id` can be responded to. Since batches may also contain non-call messages or
notifications, the best effort thing we can do to report an error with the batch itself is
reporting the limit violation as an error for the first method call in the batch. If a batch is
too large, but contains only notifications and responses, the error will be reported with
a null `id`.
The RPC client was also changed so it can deal with errors resulting from too large
batches. An older client connected to the server code in this PR could get stuck
until the request timeout occurred when the batch is too large. **Upgrading to a version
of the RPC client containing this change is strongly recommended to avoid timeout issues.**
For some weird reason, when writing the original client implementation, @fjl worked off of
the assumption that responses could be distributed across batches arbitrarily. So for a
batch request containing requests `[A B C]`, the server could respond with `[A B C]` but
also with `[A B] [C]` or even `[A] [B] [C]` and it wouldn't make a difference to the
client.
So in the implementation of BatchCallContext, the client waited for all requests in the
batch individually. If the server didn't respond to some of the requests in the batch, the
client would eventually just time out (if a context was used).
With the addition of batch limits into the server, we anticipate that people will hit this
kind of error way more often. To handle this properly, the client now waits for a single
response batch and expects it to contain all responses to the requests.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
Co-authored-by: Martin Holst Swende <martin@swende.se>
2023-06-13 11:38:58 +00:00
|
|
|
utils.BatchRequestLimit,
|
|
|
|
utils.BatchResponseMaxSize,
|
2017-05-03 10:26:09 +00:00
|
|
|
}
|
2017-06-21 08:49:14 +00:00
|
|
|
|
2018-07-02 12:51:02 +00:00
|
|
|
metricsFlags = []cli.Flag{
|
2019-03-25 08:01:18 +00:00
|
|
|
utils.MetricsEnabledFlag,
|
|
|
|
utils.MetricsEnabledExpensiveFlag,
|
2020-07-03 17:12:22 +00:00
|
|
|
utils.MetricsHTTPFlag,
|
|
|
|
utils.MetricsPortFlag,
|
2018-07-02 12:51:02 +00:00
|
|
|
utils.MetricsEnableInfluxDBFlag,
|
|
|
|
utils.MetricsInfluxDBEndpointFlag,
|
|
|
|
utils.MetricsInfluxDBDatabaseFlag,
|
|
|
|
utils.MetricsInfluxDBUsernameFlag,
|
|
|
|
utils.MetricsInfluxDBPasswordFlag,
|
2019-01-29 08:14:24 +00:00
|
|
|
utils.MetricsInfluxDBTagsFlag,
|
2021-08-17 16:40:14 +00:00
|
|
|
utils.MetricsEnableInfluxDBV2Flag,
|
|
|
|
utils.MetricsInfluxDBTokenFlag,
|
|
|
|
utils.MetricsInfluxDBBucketFlag,
|
|
|
|
utils.MetricsInfluxDBOrganizationFlag,
|
2018-07-02 12:51:02 +00:00
|
|
|
}
|
2017-05-03 10:26:09 +00:00
|
|
|
)
|
|
|
|
|
2022-09-23 12:08:25 +00:00
|
|
|
var app = flags.NewApp("the go-ethereum command line interface")
|
|
|
|
|
2017-05-03 10:26:09 +00:00
|
|
|
func init() {
|
|
|
|
// Initialize the CLI app and start Geth
|
|
|
|
app.Action = geth
|
2022-06-27 16:22:36 +00:00
|
|
|
app.Commands = []*cli.Command{
|
2017-05-03 10:26:09 +00:00
|
|
|
// See chaincmd.go:
|
|
|
|
initCommand,
|
|
|
|
importCommand,
|
|
|
|
exportCommand,
|
2024-02-07 16:18:27 +00:00
|
|
|
importHistoryCommand,
|
|
|
|
exportHistoryCommand,
|
2018-03-26 10:34:21 +00:00
|
|
|
importPreimagesCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
removedbCommand,
|
|
|
|
dumpCommand,
|
2020-02-04 10:49:13 +00:00
|
|
|
dumpGenesisCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
// See accountcmd.go:
|
|
|
|
accountCommand,
|
|
|
|
walletCommand,
|
|
|
|
// See consolecmd.go:
|
|
|
|
consoleCommand,
|
|
|
|
attachCommand,
|
|
|
|
javascriptCommand,
|
|
|
|
// See misccmd.go:
|
|
|
|
versionCommand,
|
2020-12-04 14:01:47 +00:00
|
|
|
versionCheckCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
licenseCommand,
|
|
|
|
// See config.go
|
|
|
|
dumpConfigCommand,
|
2021-02-23 10:27:32 +00:00
|
|
|
// see dbcmd.go
|
|
|
|
dbCommand,
|
2020-05-05 08:19:17 +00:00
|
|
|
// See cmd/utils/flags_legacy.go
|
|
|
|
utils.ShowDeprecated,
|
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 11:16:30 +00:00
|
|
|
// See snapshot.go
|
|
|
|
snapshotCommand,
|
2022-09-14 10:05:03 +00:00
|
|
|
// See verkle.go
|
|
|
|
verkleCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
}
|
2023-10-25 15:57:12 +00:00
|
|
|
if logTestCommand != nil {
|
|
|
|
app.Commands = append(app.Commands, logTestCommand)
|
|
|
|
}
|
2017-08-11 11:29:05 +00:00
|
|
|
sort.Sort(cli.CommandsByName(app.Commands))
|
2017-05-03 10:26:09 +00:00
|
|
|
|
2022-07-25 09:07:44 +00:00
|
|
|
app.Flags = flags.Merge(
|
2022-06-27 16:22:36 +00:00
|
|
|
nodeFlags,
|
2022-05-03 06:46:17 +00:00
|
|
|
rpcFlags,
|
|
|
|
consoleFlags,
|
|
|
|
debug.Flags,
|
2022-06-27 16:22:36 +00:00
|
|
|
metricsFlags,
|
|
|
|
)
|
2023-09-14 07:33:59 +00:00
|
|
|
flags.AutoEnvVars(app.Flags, "GETH")
|
2016-01-26 13:39:21 +00:00
|
|
|
|
2015-04-20 15:59:41 +00:00
|
|
|
app.Before = func(ctx *cli.Context) error {
|
2023-08-01 16:02:36 +00:00
|
|
|
maxprocs.Set() // Automatically set GOMAXPROCS to match Linux container CPU quota.
|
2022-06-27 16:22:36 +00:00
|
|
|
flags.MigrateGlobalFlags(ctx)
|
2023-09-15 12:52:53 +00:00
|
|
|
if err := debug.Setup(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
flags.CheckEnvVars(ctx, app.Flags, "GETH")
|
|
|
|
return nil
|
2015-03-06 02:00:41 +00:00
|
|
|
}
|
2016-01-26 13:39:21 +00:00
|
|
|
app.After = func(ctx *cli.Context) error {
|
|
|
|
debug.Exit()
|
2020-05-19 08:44:46 +00:00
|
|
|
prompt.Stdin.Close() // Resets terminal mode.
|
2016-01-26 13:39:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-03-06 02:00:41 +00:00
|
|
|
}
|
2014-12-23 13:33:15 +00:00
|
|
|
|
2023-06-13 15:22:32 +00:00
|
|
|
// FIXME workaround https://github.com/golang/go/issues/31354 by wrapping main
|
|
|
|
func main() { Main() }
|
|
|
|
|
|
|
|
func Main() {
|
2015-03-06 02:00:41 +00:00
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 09:47:45 +00:00
|
|
|
|
2019-08-15 12:54:16 +00:00
|
|
|
// prepare manipulates memory cache allowance and setups metric system.
|
|
|
|
// This function should be called before launching devp2p stack.
|
|
|
|
func prepare(ctx *cli.Context) {
|
2020-04-09 09:09:58 +00:00
|
|
|
// If we're running a known preset, log it for convenience.
|
|
|
|
switch {
|
2022-06-27 16:22:36 +00:00
|
|
|
case ctx.IsSet(utils.GoerliFlag.Name):
|
2020-04-09 09:09:58 +00:00
|
|
|
log.Info("Starting Geth on Görli testnet...")
|
|
|
|
|
2022-06-27 16:22:36 +00:00
|
|
|
case ctx.IsSet(utils.SepoliaFlag.Name):
|
2022-05-03 06:46:17 +00:00
|
|
|
log.Info("Starting Geth on Sepolia testnet...")
|
|
|
|
|
2023-08-25 15:11:40 +00:00
|
|
|
case ctx.IsSet(utils.HoleskyFlag.Name):
|
|
|
|
log.Info("Starting Geth on Holesky testnet...")
|
|
|
|
|
2022-06-27 16:22:36 +00:00
|
|
|
case ctx.IsSet(utils.DeveloperFlag.Name):
|
2020-04-09 09:09:58 +00:00
|
|
|
log.Info("Starting Geth in ephemeral dev mode...")
|
2022-05-10 22:29:22 +00:00
|
|
|
log.Warn(`You are running Geth in --dev mode. Please note the following:
|
|
|
|
|
|
|
|
1. This mode is only intended for fast, iterative development without assumptions on
|
|
|
|
security or persistence.
|
|
|
|
2. The database is created in memory unless specified otherwise. Therefore, shutting down
|
|
|
|
your computer or losing power will wipe your entire block data and chain state for
|
|
|
|
your dev environment.
|
|
|
|
3. A random, pre-allocated developer account will be available and unlocked as
|
|
|
|
eth.coinbase, which can be used for testing. The random dev account is temporary,
|
|
|
|
stored on a ramdisk, and will be lost if your machine is restarted.
|
|
|
|
4. Mining is enabled by default. However, the client will only seal blocks if transactions
|
|
|
|
are pending in the mempool. The miner's minimum accepted gas price is 1.
|
|
|
|
5. Networking is disabled; there is no listen-address, the maximum number of peers is set
|
|
|
|
to 0, and discovery is disabled.
|
|
|
|
`)
|
2020-04-09 09:09:58 +00:00
|
|
|
|
2022-06-27 16:22:36 +00:00
|
|
|
case !ctx.IsSet(utils.NetworkIdFlag.Name):
|
2020-04-09 09:09:58 +00:00
|
|
|
log.Info("Starting Geth on Ethereum mainnet...")
|
|
|
|
}
|
2019-08-15 12:54:16 +00:00
|
|
|
// If we're a full node on mainnet without --cache specified, bump default cache allowance
|
2023-11-23 14:28:26 +00:00
|
|
|
if !ctx.IsSet(utils.CacheFlag.Name) && !ctx.IsSet(utils.NetworkIdFlag.Name) {
|
2019-08-15 12:54:16 +00:00
|
|
|
// Make sure we're not on any supported preconfigured testnet either
|
2023-08-25 15:11:40 +00:00
|
|
|
if !ctx.IsSet(utils.HoleskyFlag.Name) &&
|
|
|
|
!ctx.IsSet(utils.SepoliaFlag.Name) &&
|
2022-06-27 16:22:36 +00:00
|
|
|
!ctx.IsSet(utils.GoerliFlag.Name) &&
|
|
|
|
!ctx.IsSet(utils.DeveloperFlag.Name) {
|
2019-08-15 12:54:16 +00:00
|
|
|
// Nope, we're really on mainnet. Bump that cache up!
|
2022-06-27 16:22:36 +00:00
|
|
|
log.Info("Bumping default cache on mainnet", "provided", ctx.Int(utils.CacheFlag.Name), "updated", 4096)
|
|
|
|
ctx.Set(utils.CacheFlag.Name, strconv.Itoa(4096))
|
2019-08-15 12:54:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start metrics export if enabled
|
|
|
|
utils.SetupMetrics(ctx)
|
|
|
|
|
|
|
|
// Start system runtime metrics collection
|
|
|
|
go metrics.CollectProcessMetrics(3 * time.Second)
|
|
|
|
}
|
|
|
|
|
2022-12-05 17:59:00 +00:00
|
|
|
// geth is the main entry point into the system if no special subcommand is run.
|
2015-11-17 16:33:25 +00:00
|
|
|
// It creates a default node based on the command line arguments and runs it in
|
|
|
|
// blocking mode, waiting for it to be shut down.
|
2016-06-10 08:23:00 +00:00
|
|
|
func geth(ctx *cli.Context) error {
|
2022-03-29 03:02:51 +00:00
|
|
|
//begin PluGeth code injection
|
2023-06-29 04:44:54 +00:00
|
|
|
var pluginsDir string
|
|
|
|
if ctx.IsSet(utils.PluginsDirFlag.Name) {
|
|
|
|
pluginsDir = ctx.String(utils.PluginsDirFlag.Name)
|
|
|
|
} else {
|
|
|
|
pluginsDir = filepath.Join(ctx.String(utils.DataDirFlag.Name), "plugins")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := plugins.Initialize(pluginsDir, ctx); err != nil {
|
2021-11-06 00:26:53 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-08-12 19:42:14 +00:00
|
|
|
prepare(ctx)
|
2022-07-27 17:38:42 +00:00
|
|
|
if !plugins.ParseFlags(ctx.Args().Slice()) {
|
|
|
|
if args := ctx.Args().Slice(); len(args) > 0 {
|
2021-09-21 14:01:03 +00:00
|
|
|
return fmt.Errorf("invalid command: %q", args[0])
|
|
|
|
}
|
|
|
|
}
|
2023-09-13 19:57:48 +00:00
|
|
|
|
2021-08-12 19:42:14 +00:00
|
|
|
stack, backend := makeFullNode(ctx)
|
2021-11-06 00:26:53 +00:00
|
|
|
wrapperBackend := backendwrapper.NewBackend(backend)
|
2023-09-13 19:57:48 +00:00
|
|
|
|
2021-08-31 20:29:09 +00:00
|
|
|
pluginsInitializeNode(stack, wrapperBackend)
|
2021-08-17 21:11:59 +00:00
|
|
|
if ok, err := plugins.RunSubcommand(ctx); ok {
|
|
|
|
stack.Close()
|
|
|
|
return err
|
|
|
|
}
|
2021-08-12 19:42:14 +00:00
|
|
|
defer stack.Close()
|
2022-07-29 20:34:42 +00:00
|
|
|
defer pluginsOnShutdown()
|
2021-08-31 20:29:09 +00:00
|
|
|
stack.RegisterAPIs(pluginGetAPIs(stack, wrapperBackend))
|
2021-12-11 15:51:05 +00:00
|
|
|
startNode(ctx, stack, backend, false)
|
2023-06-12 20:37:29 +00:00
|
|
|
pluginBlockChain()
|
2023-06-12 16:52:46 +00:00
|
|
|
//end PluGeth code injection
|
2020-08-03 17:40:46 +00:00
|
|
|
stack.Wait()
|
2016-06-10 08:23:00 +00:00
|
|
|
return nil
|
2015-03-06 02:00:41 +00:00
|
|
|
}
|
2014-07-11 14:04:27 +00:00
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
// startNode boots up the system node and all registered protocols, after which
|
|
|
|
// it unlocks any requested accounts, and starts the RPC/IPC interfaces and the
|
|
|
|
// miner.
|
2021-12-11 15:51:05 +00:00
|
|
|
func startNode(ctx *cli.Context, stack *node.Node, backend ethapi.Backend, isConsole bool) {
|
2018-04-23 13:20:39 +00:00
|
|
|
debug.Memsize.Add("node", stack)
|
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
// Start up the node itself
|
2021-12-11 15:51:05 +00:00
|
|
|
utils.StartNode(ctx, stack, isConsole)
|
2015-07-01 14:15:02 +00:00
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
// Unlock any account specifically requested
|
2019-04-04 11:03:10 +00:00
|
|
|
unlockAccounts(ctx, stack)
|
|
|
|
|
2017-02-08 18:25:52 +00:00
|
|
|
// Register wallet event handlers to open and auto-derive wallets
|
|
|
|
events := make(chan accounts.WalletEvent, 16)
|
|
|
|
stack.AccountManager().Subscribe(events)
|
|
|
|
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
// Create a client to interact with local geth node.
|
2023-06-14 12:24:47 +00:00
|
|
|
rpcClient := stack.Attach()
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
ethClient := ethclient.NewClient(rpcClient)
|
|
|
|
|
|
|
|
go func() {
|
2017-08-01 15:45:17 +00:00
|
|
|
// Open any wallets already attached
|
2017-02-09 12:39:26 +00:00
|
|
|
for _, wallet := range stack.AccountManager().Wallets() {
|
|
|
|
if err := wallet.Open(""); err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Warn("Failed to open wallet", "url", wallet.URL(), "err", err)
|
2017-02-09 12:39:26 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-08 18:25:52 +00:00
|
|
|
// Listen for wallet event till termination
|
|
|
|
for event := range events {
|
2017-08-01 15:45:17 +00:00
|
|
|
switch event.Kind {
|
|
|
|
case accounts.WalletArrived:
|
2017-02-08 18:25:52 +00:00
|
|
|
if err := event.Wallet.Open(""); err != nil {
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Warn("New wallet appeared, failed to open", "url", event.Wallet.URL(), "err", err)
|
2017-08-01 15:45:17 +00:00
|
|
|
}
|
|
|
|
case accounts.WalletOpened:
|
2017-08-09 09:51:16 +00:00
|
|
|
status, _ := event.Wallet.Status()
|
|
|
|
log.Info("New wallet appeared", "url", event.Wallet.URL(), "status", status)
|
|
|
|
|
2019-04-10 10:09:08 +00:00
|
|
|
var derivationPaths []accounts.DerivationPath
|
2017-08-01 15:45:17 +00:00
|
|
|
if event.Wallet.URL().Scheme == "ledger" {
|
2019-04-10 10:09:08 +00:00
|
|
|
derivationPaths = append(derivationPaths, accounts.LegacyLedgerBaseDerivationPath)
|
2017-02-08 18:25:52 +00:00
|
|
|
}
|
2019-04-10 10:09:08 +00:00
|
|
|
derivationPaths = append(derivationPaths, accounts.DefaultBaseDerivationPath)
|
|
|
|
|
all: on-chain oracle checkpoint syncing (#19543)
* all: implement simple checkpoint syncing
cmd, les, node: remove callback mechanism
cmd, node: remove callback definition
les: simplify the registrar
les: expose checkpoint rpc services in the light client
les, light: don't store untrusted receipt
cmd, contracts, les: discard stale checkpoint
cmd, contracts/registrar: loose restriction of registeration
cmd, contracts: add replay-protection
all: off-chain multi-signature contract
params: deploy checkpoint contract for rinkeby
cmd/registrar: add raw signing mode for registrar
cmd/registrar, contracts/registrar, les: fixed messages
* cmd/registrar, contracts/registrar: fix lints
* accounts/abi/bind, les: address comments
* cmd, contracts, les, light, params: minor checkpoint sync cleanups
* cmd, eth, les, light: move checkpoint config to config file
* cmd, eth, les, params: address comments
* eth, les, params: address comments
* cmd: polish up the checkpoint admin CLI
* cmd, contracts, params: deploy new version contract
* cmd/checkpoint-admin: add another flag for clef mode signing
* cmd, contracts, les: rename and regen checkpoint oracle with abigen
2019-06-28 07:34:02 +00:00
|
|
|
event.Wallet.SelfDerive(derivationPaths, ethClient)
|
2017-08-01 15:45:17 +00:00
|
|
|
|
|
|
|
case accounts.WalletDropped:
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Info("Old wallet dropped", "url", event.Wallet.URL())
|
2017-02-09 12:39:26 +00:00
|
|
|
event.Wallet.Close()
|
2017-02-08 18:25:52 +00: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 07:40:36 +00:00
|
|
|
|
|
|
|
// Spawn a standalone goroutine for status synchronization monitoring,
|
|
|
|
// close the node when synchronization is complete if user required.
|
2022-06-27 16:22:36 +00:00
|
|
|
if ctx.Bool(utils.ExitWhenSyncedFlag.Name) {
|
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 07:40:36 +00:00
|
|
|
go func() {
|
|
|
|
sub := stack.EventMux().Subscribe(downloader.DoneEvent{})
|
|
|
|
defer sub.Unsubscribe()
|
|
|
|
for {
|
|
|
|
event := <-sub.Chan()
|
|
|
|
if event == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
done, ok := event.Data.(downloader.DoneEvent)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
2019-04-02 20:28:48 +00:00
|
|
|
if timestamp := time.Unix(int64(done.Latest.Time), 0); time.Since(timestamp) < 10*time.Minute {
|
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 07:40:36 +00:00
|
|
|
log.Info("Synchronisation completed", "latestnum", done.Latest.Number, "latesthash", done.Latest.Hash(),
|
|
|
|
"age", common.PrettyAge(timestamp))
|
2020-08-03 17:40:46 +00:00
|
|
|
stack.Close()
|
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 07:40:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-02-02 17:06:43 +00:00
|
|
|
// Start auxiliary services if enabled
|
2023-07-06 08:42:34 +00:00
|
|
|
if ctx.Bool(utils.MiningEnabledFlag.Name) {
|
2017-06-22 11:58:07 +00:00
|
|
|
// Mining only makes sense if a full Ethereum node is running
|
2022-06-27 16:22:36 +00:00
|
|
|
if ctx.String(utils.SyncModeFlag.Name) == "light" {
|
2018-01-12 09:59:18 +00:00
|
|
|
utils.Fatalf("Light clients do not support mining")
|
|
|
|
}
|
2020-08-03 17:40:46 +00:00
|
|
|
ethBackend, ok := backend.(*eth.EthAPIBackend)
|
|
|
|
if !ok {
|
2021-10-08 12:57:49 +00:00
|
|
|
utils.Fatalf("Ethereum service not running")
|
2015-12-16 03:26:23 +00:00
|
|
|
}
|
2017-06-22 11:58:07 +00:00
|
|
|
// Set the gas price to the limits from the CLI and start mining
|
2022-06-27 16:22:36 +00:00
|
|
|
gasprice := flags.GlobalBig(ctx, utils.MinerGasPriceFlag.Name)
|
2023-06-06 09:53:29 +00:00
|
|
|
ethBackend.TxPool().SetGasTip(gasprice)
|
2023-05-03 09:58:39 +00:00
|
|
|
if err := ethBackend.StartMining(); err != nil {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Failed to start mining: %v", err)
|
2015-04-22 00:36:28 +00:00
|
|
|
}
|
2015-03-06 02:00:41 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-04 11:03:10 +00:00
|
|
|
|
|
|
|
// unlockAccounts unlocks any account specifically requested.
|
|
|
|
func unlockAccounts(ctx *cli.Context, stack *node.Node) {
|
|
|
|
var unlocks []string
|
2022-06-27 16:22:36 +00:00
|
|
|
inputs := strings.Split(ctx.String(utils.UnlockedAccountFlag.Name), ",")
|
2019-04-04 11:03:10 +00:00
|
|
|
for _, input := range inputs {
|
|
|
|
if trimmed := strings.TrimSpace(input); trimmed != "" {
|
|
|
|
unlocks = append(unlocks, trimmed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Short circuit if there is no account to unlock.
|
|
|
|
if len(unlocks) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// If insecure account unlocking is not allowed if node's APIs are exposed to external.
|
|
|
|
// Print warning log to user and skip unlocking.
|
|
|
|
if !stack.Config().InsecureUnlockAllowed && stack.Config().ExtRPCEnabled() {
|
|
|
|
utils.Fatalf("Account unlock with HTTP access is forbidden!")
|
|
|
|
}
|
2023-04-03 09:08:06 +00:00
|
|
|
backends := stack.AccountManager().Backends(keystore.KeyStoreType)
|
|
|
|
if len(backends) == 0 {
|
|
|
|
log.Warn("Failed to unlock accounts, keystore is not available")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ks := backends[0].(*keystore.KeyStore)
|
2019-04-04 11:03:10 +00:00
|
|
|
passwords := utils.MakePasswordList(ctx)
|
|
|
|
for i, account := range unlocks {
|
|
|
|
unlockAccount(ks, account, i, passwords)
|
|
|
|
}
|
|
|
|
}
|