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
|
|
|
|
2015-07-07 03:08:16 +00:00
|
|
|
// geth is the official command-line client for Ethereum.
|
2014-06-23 11:20:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-08-06 07:53:12 +00:00
|
|
|
"fmt"
|
2018-05-25 07:48:16 +00:00
|
|
|
"math"
|
2014-08-06 07:53:12 +00:00
|
|
|
"os"
|
2018-05-25 07:48:16 +00:00
|
|
|
godebug "runtime/debug"
|
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
|
|
|
|
2018-05-25 07:48:16 +00:00
|
|
|
"github.com/elastic/gosigar"
|
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"
|
2016-05-06 09:40:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/console"
|
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"
|
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"
|
2019-01-29 08:14:24 +00:00
|
|
|
cli "gopkg.in/urfave/cli.v1"
|
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 (
|
2016-09-05 11:08:41 +00:00
|
|
|
// Git SHA1 commit hash of the release (set via linker flags)
|
|
|
|
gitCommit = ""
|
|
|
|
// The app that holds all commands and flags.
|
|
|
|
app = utils.NewApp(gitCommit, "the go-ethereum command line interface")
|
2017-05-03 10:26:09 +00:00
|
|
|
// flags that configure the node
|
|
|
|
nodeFlags = []cli.Flag{
|
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,
|
2017-05-10 14:51:52 +00:00
|
|
|
utils.BootnodesV4Flag,
|
|
|
|
utils.BootnodesV5Flag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.DataDirFlag,
|
2016-03-07 22:38:56 +00:00
|
|
|
utils.KeyStoreDirFlag,
|
2017-04-20 11:01:51 +00:00
|
|
|
utils.NoUSBFlag,
|
2017-11-14 17:34:00 +00:00
|
|
|
utils.DashboardEnabledFlag,
|
|
|
|
utils.DashboardAddrFlag,
|
|
|
|
utils.DashboardPortFlag,
|
|
|
|
utils.DashboardRefreshFlag,
|
2017-03-06 09:37:32 +00:00
|
|
|
utils.EthashCacheDirFlag,
|
|
|
|
utils.EthashCachesInMemoryFlag,
|
|
|
|
utils.EthashCachesOnDiskFlag,
|
|
|
|
utils.EthashDatasetDirFlag,
|
2017-03-06 15:20:25 +00:00
|
|
|
utils.EthashDatasetsInMemoryFlag,
|
2017-03-06 09:37:32 +00:00
|
|
|
utils.EthashDatasetsOnDiskFlag,
|
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,
|
2019-01-24 11:18:26 +00:00
|
|
|
utils.ULCModeConfigFlag,
|
|
|
|
utils.OnlyAnnounceModeFlag,
|
|
|
|
utils.ULCTrustedNodesFlag,
|
|
|
|
utils.ULCMinTrustedFractionFlag,
|
2017-04-12 14:27:23 +00:00
|
|
|
utils.SyncModeFlag,
|
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,
|
2016-01-13 18:35:48 +00:00
|
|
|
utils.LightServFlag,
|
|
|
|
utils.LightPeersFlag,
|
2015-11-10 13:47:19 +00:00
|
|
|
utils.LightKDFFlag,
|
2018-11-02 20:26:45 +00:00
|
|
|
utils.WhitelistFlag,
|
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,
|
2018-02-05 16:40:32 +00:00
|
|
|
utils.CacheGCFlag,
|
2016-10-19 11:55:13 +00:00
|
|
|
utils.TrieCacheGenFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.ListenPortFlag,
|
|
|
|
utils.MaxPeersFlag,
|
2015-05-04 14:35:49 +00:00
|
|
|
utils.MaxPendingPeersFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.MiningEnabledFlag,
|
2018-08-08 09:15:08 +00:00
|
|
|
utils.MinerThreadsFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.MinerLegacyThreadsFlag,
|
2018-08-08 09:15:08 +00:00
|
|
|
utils.MinerNotifyFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.MinerGasTargetFlag,
|
|
|
|
utils.MinerLegacyGasTargetFlag,
|
2018-08-29 09:21:12 +00:00
|
|
|
utils.MinerGasLimitFlag,
|
2018-08-15 08:01:49 +00:00
|
|
|
utils.MinerGasPriceFlag,
|
|
|
|
utils.MinerLegacyGasPriceFlag,
|
|
|
|
utils.MinerEtherbaseFlag,
|
|
|
|
utils.MinerLegacyEtherbaseFlag,
|
|
|
|
utils.MinerExtraDataFlag,
|
|
|
|
utils.MinerLegacyExtraDataFlag,
|
2018-08-21 19:56:54 +00:00
|
|
|
utils.MinerRecommitIntervalFlag,
|
2018-08-28 13:59:05 +00:00
|
|
|
utils.MinerNoVerfiyFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.NATFlag,
|
2015-05-26 16:07:24 +00:00
|
|
|
utils.NoDiscoverFlag,
|
2016-10-19 11:04:55 +00:00
|
|
|
utils.DiscoveryV5Flag,
|
2016-11-22 19:52:31 +00:00
|
|
|
utils.NetrestrictFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
utils.NodeKeyFileFlag,
|
|
|
|
utils.NodeKeyHexFlag,
|
2017-10-24 10:40:42 +00:00
|
|
|
utils.DeveloperFlag,
|
|
|
|
utils.DeveloperPeriodFlag,
|
2017-05-04 09:36:20 +00:00
|
|
|
utils.TestnetFlag,
|
|
|
|
utils.RinkebyFlag,
|
2018-11-16 15:58:24 +00:00
|
|
|
utils.GoerliFlag,
|
2017-01-17 11:19:50 +00:00
|
|
|
utils.VMEnableDebugFlag,
|
2015-03-18 07:44:58 +00:00
|
|
|
utils.NetworkIdFlag,
|
2018-12-11 12:19:03 +00:00
|
|
|
utils.ConstantinopleOverrideFlag,
|
2015-03-29 19:21:14 +00:00
|
|
|
utils.RPCCORSDomainFlag,
|
2018-02-12 12:52:07 +00:00
|
|
|
utils.RPCVirtualHostsFlag,
|
2016-11-25 15:55:06 +00:00
|
|
|
utils.EthStatsURLFlag,
|
2015-06-29 13:11:01 +00:00
|
|
|
utils.MetricsEnabledFlag,
|
2016-04-21 09:14:57 +00:00
|
|
|
utils.FakePoWFlag,
|
2017-03-08 11:26:19 +00:00
|
|
|
utils.NoCompactionFlag,
|
2017-04-06 14:20:42 +00:00
|
|
|
utils.GpoBlocksFlag,
|
|
|
|
utils.GpoPercentileFlag,
|
2018-09-20 07:44:35 +00:00
|
|
|
utils.EWASMInterpreterFlag,
|
|
|
|
utils.EVMInterpreterFlag,
|
2017-04-12 14:27:23 +00:00
|
|
|
configFileFlag,
|
2015-03-06 02:00:41 +00:00
|
|
|
}
|
2017-05-03 10:26:09 +00:00
|
|
|
|
|
|
|
rpcFlags = []cli.Flag{
|
|
|
|
utils.RPCEnabledFlag,
|
|
|
|
utils.RPCListenAddrFlag,
|
|
|
|
utils.RPCPortFlag,
|
2019-01-21 14:38:13 +00:00
|
|
|
utils.GraphQLEnabledFlag,
|
|
|
|
utils.GraphQLListenAddrFlag,
|
|
|
|
utils.GraphQLPortFlag,
|
|
|
|
utils.GraphQLCORSDomainFlag,
|
|
|
|
utils.GraphQLVirtualHostsFlag,
|
2017-05-03 10:26:09 +00:00
|
|
|
utils.RPCApiFlag,
|
|
|
|
utils.WSEnabledFlag,
|
|
|
|
utils.WSListenAddrFlag,
|
|
|
|
utils.WSPortFlag,
|
|
|
|
utils.WSApiFlag,
|
|
|
|
utils.WSAllowedOriginsFlag,
|
|
|
|
utils.IPCDisabledFlag,
|
|
|
|
utils.IPCPathFlag,
|
|
|
|
}
|
2017-06-21 08:49:14 +00:00
|
|
|
|
|
|
|
whisperFlags = []cli.Flag{
|
|
|
|
utils.WhisperEnabledFlag,
|
|
|
|
utils.WhisperMaxMessageSizeFlag,
|
|
|
|
utils.WhisperMinPOWFlag,
|
2018-09-05 08:57:45 +00:00
|
|
|
utils.WhisperRestrictConnectionBetweenLightClientsFlag,
|
2017-06-21 08:49:14 +00:00
|
|
|
}
|
2018-07-02 12:51:02 +00:00
|
|
|
|
|
|
|
metricsFlags = []cli.Flag{
|
|
|
|
utils.MetricsEnableInfluxDBFlag,
|
|
|
|
utils.MetricsInfluxDBEndpointFlag,
|
|
|
|
utils.MetricsInfluxDBDatabaseFlag,
|
|
|
|
utils.MetricsInfluxDBUsernameFlag,
|
|
|
|
utils.MetricsInfluxDBPasswordFlag,
|
2019-01-29 08:14:24 +00:00
|
|
|
utils.MetricsInfluxDBTagsFlag,
|
2018-07-02 12:51:02 +00:00
|
|
|
}
|
2017-05-03 10:26:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Initialize the CLI app and start Geth
|
|
|
|
app.Action = geth
|
|
|
|
app.HideVersion = true // we have a command to print the version
|
2019-01-15 23:21:50 +00:00
|
|
|
app.Copyright = "Copyright 2013-2019 The go-ethereum Authors"
|
2017-05-03 10:26:09 +00:00
|
|
|
app.Commands = []cli.Command{
|
|
|
|
// See chaincmd.go:
|
|
|
|
initCommand,
|
|
|
|
importCommand,
|
|
|
|
exportCommand,
|
2018-03-26 10:34:21 +00:00
|
|
|
importPreimagesCommand,
|
|
|
|
exportPreimagesCommand,
|
2017-07-10 14:48:42 +00:00
|
|
|
copydbCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
removedbCommand,
|
|
|
|
dumpCommand,
|
|
|
|
// See monitorcmd.go:
|
|
|
|
monitorCommand,
|
|
|
|
// See accountcmd.go:
|
|
|
|
accountCommand,
|
|
|
|
walletCommand,
|
|
|
|
// See consolecmd.go:
|
|
|
|
consoleCommand,
|
|
|
|
attachCommand,
|
|
|
|
javascriptCommand,
|
|
|
|
// See misccmd.go:
|
2017-08-03 04:32:47 +00:00
|
|
|
makecacheCommand,
|
2017-05-03 10:26:09 +00:00
|
|
|
makedagCommand,
|
|
|
|
versionCommand,
|
|
|
|
bugCommand,
|
|
|
|
licenseCommand,
|
|
|
|
// See config.go
|
|
|
|
dumpConfigCommand,
|
|
|
|
}
|
2017-08-11 11:29:05 +00:00
|
|
|
sort.Sort(cli.CommandsByName(app.Commands))
|
2017-05-03 10:26:09 +00:00
|
|
|
|
|
|
|
app.Flags = append(app.Flags, nodeFlags...)
|
|
|
|
app.Flags = append(app.Flags, rpcFlags...)
|
|
|
|
app.Flags = append(app.Flags, consoleFlags...)
|
2016-01-26 13:39:21 +00:00
|
|
|
app.Flags = append(app.Flags, debug.Flags...)
|
2017-06-21 08:49:14 +00:00
|
|
|
app.Flags = append(app.Flags, whisperFlags...)
|
2018-07-02 12:51:02 +00:00
|
|
|
app.Flags = append(app.Flags, metricsFlags...)
|
2016-01-26 13:39:21 +00:00
|
|
|
|
2015-04-20 15:59:41 +00:00
|
|
|
app.Before = func(ctx *cli.Context) error {
|
cmd, dashboard, log: log collection and exploration (#17097)
* cmd, dashboard, internal, log, node: logging feature
* cmd, dashboard, internal, log: requested changes
* dashboard, vendor: gofmt, govendor, use vendored file watcher
* dashboard, log: gofmt -s -w, goimports
* dashboard, log: gosimple
2018-07-11 07:59:04 +00:00
|
|
|
logdir := ""
|
|
|
|
if ctx.GlobalBool(utils.DashboardEnabledFlag.Name) {
|
|
|
|
logdir = (&node.Config{DataDir: utils.MakeDataDir(ctx)}).ResolvePath("logs")
|
|
|
|
}
|
|
|
|
if err := debug.Setup(ctx, logdir); err != nil {
|
2016-01-26 13:39:21 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-07-09 08:38:52 +00:00
|
|
|
// Cap the cache allowance and tune the garbage collector
|
2018-05-25 07:48:16 +00:00
|
|
|
var mem gosigar.Mem
|
|
|
|
if err := mem.Get(); err == nil {
|
|
|
|
allowance := int(mem.Total / 1024 / 1024 / 3)
|
|
|
|
if cache := ctx.GlobalInt(utils.CacheFlag.Name); cache > allowance {
|
|
|
|
log.Warn("Sanitizing cache to Go's GC limits", "provided", cache, "updated", allowance)
|
|
|
|
ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(allowance))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Ensure Go's GC ignores the database cache for trigger percentage
|
|
|
|
cache := ctx.GlobalInt(utils.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-07-02 12:51:02 +00:00
|
|
|
// Start metrics export if enabled
|
|
|
|
utils.SetupMetrics(ctx)
|
|
|
|
|
2016-01-26 13:39:21 +00:00
|
|
|
// Start system runtime metrics collection
|
|
|
|
go metrics.CollectProcessMetrics(3 * time.Second)
|
2015-12-08 16:05:43 +00:00
|
|
|
|
2015-04-20 15:59:41 +00:00
|
|
|
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()
|
2016-05-30 14:30:17 +00:00
|
|
|
console.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
|
|
|
|
2015-03-06 02:00:41 +00:00
|
|
|
func main() {
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 09:47:45 +00:00
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
// geth is the main entry point into the system if no special subcommand is ran.
|
|
|
|
// 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 {
|
2018-07-26 10:57:20 +00:00
|
|
|
if args := ctx.Args(); len(args) > 0 {
|
|
|
|
return fmt.Errorf("invalid command: %q", args[0])
|
|
|
|
}
|
2016-08-15 16:38:32 +00:00
|
|
|
node := makeFullNode(ctx)
|
2015-11-17 16:33:25 +00:00
|
|
|
startNode(ctx, node)
|
|
|
|
node.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.
|
|
|
|
func startNode(ctx *cli.Context, stack *node.Node) {
|
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
|
|
|
|
utils.StartNode(stack)
|
2015-07-01 14:15:02 +00:00
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
// Unlock any account specifically requested
|
2017-02-07 10:47:34 +00:00
|
|
|
ks := stack.AccountManager().Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore)
|
2017-01-24 09:49:20 +00:00
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
passwords := utils.MakePasswordList(ctx)
|
2017-02-08 18:25:52 +00:00
|
|
|
unlocks := strings.Split(ctx.GlobalString(utils.UnlockedAccountFlag.Name), ",")
|
|
|
|
for i, account := range unlocks {
|
2015-11-17 16:33:25 +00:00
|
|
|
if trimmed := strings.TrimSpace(account); trimmed != "" {
|
2017-01-24 09:49:20 +00:00
|
|
|
unlockAccount(ctx, ks, trimmed, i, passwords)
|
2015-03-24 12:37:00 +00:00
|
|
|
}
|
2015-03-23 13:00:06 +00:00
|
|
|
}
|
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)
|
|
|
|
|
|
|
|
go func() {
|
2018-04-19 13:32:02 +00:00
|
|
|
// Create a chain state reader for self-derivation
|
2017-02-08 18:25:52 +00:00
|
|
|
rpcClient, err := stack.Attach()
|
|
|
|
if err != nil {
|
2017-02-22 15:22:50 +00:00
|
|
|
utils.Fatalf("Failed to attach to self: %v", err)
|
2017-02-08 18:25:52 +00:00
|
|
|
}
|
|
|
|
stateReader := ethclient.NewClient(rpcClient)
|
|
|
|
|
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)
|
|
|
|
|
2018-07-24 00:09:24 +00:00
|
|
|
derivationPath := accounts.DefaultBaseDerivationPath
|
2017-08-01 15:45:17 +00:00
|
|
|
if event.Wallet.URL().Scheme == "ledger" {
|
2018-07-24 00:09:24 +00:00
|
|
|
derivationPath = accounts.DefaultLedgerBaseDerivationPath
|
2017-02-08 18:25:52 +00:00
|
|
|
}
|
2018-07-24 00:09:24 +00:00
|
|
|
event.Wallet.SelfDerive(derivationPath, stateReader)
|
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.
|
|
|
|
if ctx.GlobalBool(utils.ExitWhenSyncedFlag.Name) {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
if timestamp := time.Unix(done.Latest.Time.Int64(), 0); time.Since(timestamp) < 10*time.Minute {
|
|
|
|
log.Info("Synchronisation completed", "latestnum", done.Latest.Number, "latesthash", done.Latest.Hash(),
|
|
|
|
"age", common.PrettyAge(timestamp))
|
|
|
|
stack.Stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-02-02 17:06:43 +00:00
|
|
|
// Start auxiliary services if enabled
|
2017-10-24 10:40:42 +00:00
|
|
|
if ctx.GlobalBool(utils.MiningEnabledFlag.Name) || ctx.GlobalBool(utils.DeveloperFlag.Name) {
|
2017-06-22 11:58:07 +00:00
|
|
|
// Mining only makes sense if a full Ethereum node is running
|
2018-08-15 08:01:49 +00:00
|
|
|
if ctx.GlobalString(utils.SyncModeFlag.Name) == "light" {
|
2018-01-12 09:59:18 +00:00
|
|
|
utils.Fatalf("Light clients do not support mining")
|
|
|
|
}
|
2016-06-30 10:03:26 +00:00
|
|
|
var ethereum *eth.Ethereum
|
2015-12-16 03:26:23 +00:00
|
|
|
if err := stack.Service(ðereum); err != nil {
|
2018-01-12 09:59:18 +00:00
|
|
|
utils.Fatalf("Ethereum service not running: %v", err)
|
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
|
2018-08-15 08:01:49 +00:00
|
|
|
gasprice := utils.GlobalBig(ctx, utils.MinerLegacyGasPriceFlag.Name)
|
|
|
|
if ctx.IsSet(utils.MinerGasPriceFlag.Name) {
|
|
|
|
gasprice = utils.GlobalBig(ctx, utils.MinerGasPriceFlag.Name)
|
|
|
|
}
|
|
|
|
ethereum.TxPool().SetGasPrice(gasprice)
|
2018-08-23 10:02:36 +00:00
|
|
|
|
|
|
|
threads := ctx.GlobalInt(utils.MinerLegacyThreadsFlag.Name)
|
|
|
|
if ctx.GlobalIsSet(utils.MinerThreadsFlag.Name) {
|
|
|
|
threads = ctx.GlobalInt(utils.MinerThreadsFlag.Name)
|
|
|
|
}
|
|
|
|
if err := ethereum.StartMining(threads); 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
|
|
|
}
|
|
|
|
}
|