2015-07-06 19:54:22 -05: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 11:48:40 -05:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-06 19:54:22 -05:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2015-07-22 11:48:40 -05:00
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-23 08:48:53 -05:00
|
|
|
|
2015-07-06 22:08:16 -05:00
|
|
|
// geth is the official command-line client for Ethereum.
|
2014-06-23 06:20:59 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-04-28 04:00:11 -05:00
|
|
|
"encoding/hex"
|
2014-08-06 02:53:12 -05:00
|
|
|
"fmt"
|
|
|
|
"os"
|
2014-07-29 18:05:40 -05:00
|
|
|
"runtime"
|
2015-05-05 01:24:15 -05:00
|
|
|
"strings"
|
2015-06-25 05:47:06 -05:00
|
|
|
"time"
|
2014-07-29 18:05:40 -05:00
|
|
|
|
2017-01-24 03:49:20 -06:00
|
|
|
"github.com/ethereum/go-ethereum/accounts/keystore"
|
2014-10-31 08:20:11 -05:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
2015-03-16 10:49:39 -05:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2016-05-06 04:40:23 -05:00
|
|
|
"github.com/ethereum/go-ethereum/console"
|
2016-08-29 12:22:34 -05:00
|
|
|
"github.com/ethereum/go-ethereum/contracts/release"
|
2015-01-04 07:20:16 -06:00
|
|
|
"github.com/ethereum/go-ethereum/eth"
|
2016-01-26 07:39:21 -06:00
|
|
|
"github.com/ethereum/go-ethereum/internal/debug"
|
2014-10-31 06:56:05 -05:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2015-06-30 17:52:44 -05:00
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
2015-06-27 10:12:58 -05:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2015-11-17 10:33:25 -06:00
|
|
|
"github.com/ethereum/go-ethereum/node"
|
2016-11-25 09:55:06 -06:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
2016-06-09 04:44:42 -05:00
|
|
|
"gopkg.in/urfave/cli.v1"
|
2014-06-23 06:20:59 -05:00
|
|
|
)
|
|
|
|
|
2014-07-03 11:36:24 -05:00
|
|
|
const (
|
2016-08-18 06:28:17 -05:00
|
|
|
clientIdentifier = "geth" // Client identifier to advertise over the network
|
2014-07-03 11:36:24 -05:00
|
|
|
)
|
|
|
|
|
2015-04-28 06:14:53 -05:00
|
|
|
var (
|
2016-09-05 06:08:41 -05:00
|
|
|
// Git SHA1 commit hash of the release (set via linker flags)
|
|
|
|
gitCommit = ""
|
|
|
|
// Ethereum address of the Geth release oracle.
|
|
|
|
relOracle = common.HexToAddress("0xfa7b9770ca4cb04296cac84f37736d4041251cdf")
|
|
|
|
// The app that holds all commands and flags.
|
|
|
|
app = utils.NewApp(gitCommit, "the go-ethereum command line interface")
|
2015-04-28 06:14:53 -05:00
|
|
|
)
|
2014-06-23 06:20:59 -05:00
|
|
|
|
2015-03-05 20:00:41 -06:00
|
|
|
func init() {
|
2016-04-28 04:00:11 -05:00
|
|
|
// Initialize the CLI app and start Geth
|
2015-11-17 10:33:25 -06:00
|
|
|
app.Action = geth
|
2015-03-05 20:00:41 -06:00
|
|
|
app.HideVersion = true // we have a command to print the version
|
2016-11-10 05:00:09 -06:00
|
|
|
app.Copyright = "Copyright 2013-2016 The go-ethereum Authors"
|
2015-03-05 20:00:41 -06:00
|
|
|
app.Commands = []cli.Command{
|
2016-11-30 05:34:24 -06:00
|
|
|
// See chaincmd.go:
|
|
|
|
initCommand,
|
2015-05-27 06:43:49 -05:00
|
|
|
importCommand,
|
|
|
|
exportCommand,
|
|
|
|
upgradedbCommand,
|
|
|
|
removedbCommand,
|
|
|
|
dumpCommand,
|
2016-11-30 05:34:24 -06:00
|
|
|
// See monitorcmd.go:
|
2015-06-25 02:36:47 -05:00
|
|
|
monitorCommand,
|
2016-11-30 05:34:24 -06:00
|
|
|
// See accountcmd.go:
|
2016-03-17 07:09:18 -05:00
|
|
|
accountCommand,
|
|
|
|
walletCommand,
|
2016-11-30 05:34:24 -06:00
|
|
|
// See consolecmd.go:
|
2016-05-06 04:40:23 -05:00
|
|
|
consoleCommand,
|
|
|
|
attachCommand,
|
|
|
|
javascriptCommand,
|
2016-11-30 05:34:24 -06:00
|
|
|
// See misccmd.go:
|
|
|
|
makedagCommand,
|
|
|
|
versionCommand,
|
|
|
|
licenseCommand,
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
2016-03-17 07:09:18 -05:00
|
|
|
|
2015-03-05 20:00:41 -06:00
|
|
|
app.Flags = []cli.Flag{
|
2015-04-18 16:53:30 -05:00
|
|
|
utils.IdentityFlag,
|
2015-03-10 19:08:42 -05:00
|
|
|
utils.UnlockedAccountFlag,
|
2015-03-23 08:00:06 -05:00
|
|
|
utils.PasswordFileFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
utils.BootnodesFlag,
|
|
|
|
utils.DataDirFlag,
|
2016-03-07 16:38:56 -06:00
|
|
|
utils.KeyStoreDirFlag,
|
2015-10-09 10:36:31 -05:00
|
|
|
utils.FastSyncFlag,
|
2016-01-13 12:35:48 -06:00
|
|
|
utils.LightModeFlag,
|
|
|
|
utils.LightServFlag,
|
|
|
|
utils.LightPeersFlag,
|
2015-11-10 07:47:19 -06:00
|
|
|
utils.LightKDFFlag,
|
2016-11-09 11:18:20 -06:00
|
|
|
utils.CacheFlag,
|
2016-10-19 06:55:13 -05:00
|
|
|
utils.TrieCacheGenFlag,
|
2015-03-15 01:31:40 -05:00
|
|
|
utils.JSpathFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
utils.ListenPortFlag,
|
|
|
|
utils.MaxPeersFlag,
|
2015-05-04 09:35:49 -05:00
|
|
|
utils.MaxPendingPeersFlag,
|
2015-03-26 16:49:22 -05:00
|
|
|
utils.EtherbaseFlag,
|
2015-05-09 05:00:51 -05:00
|
|
|
utils.GasPriceFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
utils.MinerThreadsFlag,
|
|
|
|
utils.MiningEnabledFlag,
|
2015-05-20 10:56:17 -05:00
|
|
|
utils.AutoDAGFlag,
|
2016-04-04 04:04:04 -05:00
|
|
|
utils.TargetGasLimitFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
utils.NATFlag,
|
2015-05-26 11:07:24 -05:00
|
|
|
utils.NoDiscoverFlag,
|
2016-10-19 06:04:55 -05:00
|
|
|
utils.DiscoveryV5Flag,
|
2016-11-22 13:52:31 -06:00
|
|
|
utils.NetrestrictFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
utils.NodeKeyFileFlag,
|
|
|
|
utils.NodeKeyHexFlag,
|
|
|
|
utils.RPCEnabledFlag,
|
|
|
|
utils.RPCListenAddrFlag,
|
|
|
|
utils.RPCPortFlag,
|
2015-12-16 03:58:01 -06:00
|
|
|
utils.RPCApiFlag,
|
|
|
|
utils.WSEnabledFlag,
|
|
|
|
utils.WSListenAddrFlag,
|
|
|
|
utils.WSPortFlag,
|
|
|
|
utils.WSApiFlag,
|
2016-03-14 03:38:54 -05:00
|
|
|
utils.WSAllowedOriginsFlag,
|
2015-06-08 04:01:02 -05:00
|
|
|
utils.IPCDisabledFlag,
|
|
|
|
utils.IPCApiFlag,
|
|
|
|
utils.IPCPathFlag,
|
2015-06-19 07:04:18 -05:00
|
|
|
utils.ExecFlag,
|
2016-05-06 04:40:23 -05:00
|
|
|
utils.PreloadJSFlag,
|
2015-04-20 10:45:37 -05:00
|
|
|
utils.WhisperEnabledFlag,
|
2015-09-06 08:46:54 -05:00
|
|
|
utils.DevModeFlag,
|
2015-10-05 06:01:34 -05:00
|
|
|
utils.TestNetFlag,
|
2015-07-17 16:09:36 -05:00
|
|
|
utils.VMForceJitFlag,
|
|
|
|
utils.VMJitCacheFlag,
|
|
|
|
utils.VMEnableJitFlag,
|
2017-01-17 05:19:50 -06:00
|
|
|
utils.VMEnableDebugFlag,
|
2015-03-18 02:44:58 -05:00
|
|
|
utils.NetworkIdFlag,
|
2015-03-29 14:21:14 -05:00
|
|
|
utils.RPCCORSDomainFlag,
|
2016-11-25 09:55:06 -06:00
|
|
|
utils.EthStatsURLFlag,
|
2015-06-29 08:11:01 -05:00
|
|
|
utils.MetricsEnabledFlag,
|
2016-04-21 04:14:57 -05:00
|
|
|
utils.FakePoWFlag,
|
2015-04-22 17:11:11 -05:00
|
|
|
utils.SolcPathFlag,
|
2015-05-26 07:17:43 -05:00
|
|
|
utils.GpoMinGasPriceFlag,
|
|
|
|
utils.GpoMaxGasPriceFlag,
|
|
|
|
utils.GpoFullBlockRatioFlag,
|
|
|
|
utils.GpobaseStepDownFlag,
|
|
|
|
utils.GpobaseStepUpFlag,
|
|
|
|
utils.GpobaseCorrectionFactorFlag,
|
2015-09-22 03:34:58 -05:00
|
|
|
utils.ExtraDataFlag,
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
2016-01-26 07:39:21 -06:00
|
|
|
app.Flags = append(app.Flags, debug.Flags...)
|
|
|
|
|
2015-04-20 10:59:41 -05:00
|
|
|
app.Before = func(ctx *cli.Context) error {
|
2015-12-08 10:05:43 -06:00
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
2016-01-26 07:39:21 -06:00
|
|
|
if err := debug.Setup(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Start system runtime metrics collection
|
|
|
|
go metrics.CollectProcessMetrics(3 * time.Second)
|
2015-12-08 10:05:43 -06:00
|
|
|
|
2016-05-24 11:49:54 -05:00
|
|
|
// This should be the only place where reporting is enabled
|
|
|
|
// because it is not intended to run while testing.
|
|
|
|
// In addition to this check, bad block reports are sent only
|
|
|
|
// for chains with the main network genesis block and network id 1.
|
|
|
|
eth.EnableBadBlockReporting = true
|
|
|
|
|
2015-10-07 10:21:13 -05:00
|
|
|
utils.SetupNetwork(ctx)
|
2015-04-20 10:59:41 -05:00
|
|
|
return nil
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
2016-01-26 07:39:21 -06:00
|
|
|
|
|
|
|
app.After = func(ctx *cli.Context) error {
|
|
|
|
debug.Exit()
|
2016-05-30 09:30:17 -05:00
|
|
|
console.Stdin.Close() // Resets terminal mode.
|
2016-01-26 07:39:21 -06:00
|
|
|
return nil
|
|
|
|
}
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
2014-12-23 07:33:15 -06:00
|
|
|
|
2015-03-05 20:00:41 -06:00
|
|
|
func main() {
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
2014-06-26 04:47:45 -05:00
|
|
|
|
2015-11-17 10:33:25 -06: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 03:23:00 -05:00
|
|
|
func geth(ctx *cli.Context) error {
|
2016-08-15 11:38:32 -05:00
|
|
|
node := makeFullNode(ctx)
|
2015-11-17 10:33:25 -06:00
|
|
|
startNode(ctx, node)
|
|
|
|
node.Wait()
|
2016-06-10 03:23:00 -05:00
|
|
|
return nil
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
2014-07-11 09:04:27 -05:00
|
|
|
|
2016-08-15 11:38:32 -05:00
|
|
|
func makeFullNode(ctx *cli.Context) *node.Node {
|
2016-11-25 09:55:06 -06:00
|
|
|
// Create the default extradata and construct the base node
|
|
|
|
var clientInfo = struct {
|
|
|
|
Version uint
|
|
|
|
Name string
|
|
|
|
GoVersion string
|
|
|
|
Os string
|
|
|
|
}{uint(params.VersionMajor<<16 | params.VersionMinor<<8 | params.VersionPatch), clientIdentifier, runtime.Version(), runtime.GOOS}
|
|
|
|
extra, err := rlp.EncodeToBytes(clientInfo)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(logger.Warn).Infoln("error setting canonical miner information:", err)
|
|
|
|
}
|
2017-02-02 08:25:42 -06:00
|
|
|
if uint64(len(extra)) > params.MaximumExtraDataSize {
|
2016-11-25 09:55:06 -06:00
|
|
|
glog.V(logger.Warn).Infoln("error setting canonical miner information: extra exceeds", params.MaximumExtraDataSize)
|
|
|
|
glog.V(logger.Debug).Infof("extra: %x\n", extra)
|
|
|
|
extra = nil
|
|
|
|
}
|
2016-09-05 06:08:41 -05:00
|
|
|
stack := utils.MakeNode(ctx, clientIdentifier, gitCommit)
|
2016-11-25 09:55:06 -06:00
|
|
|
utils.RegisterEthService(ctx, stack, extra)
|
2016-09-05 06:08:41 -05:00
|
|
|
|
2016-08-15 11:38:32 -05:00
|
|
|
// Whisper must be explicitly enabled, but is auto-enabled in --dev mode.
|
|
|
|
shhEnabled := ctx.GlobalBool(utils.WhisperEnabledFlag.Name)
|
|
|
|
shhAutoEnabled := !ctx.GlobalIsSet(utils.WhisperEnabledFlag.Name) && ctx.GlobalIsSet(utils.DevModeFlag.Name)
|
|
|
|
if shhEnabled || shhAutoEnabled {
|
2016-09-05 06:08:41 -05:00
|
|
|
utils.RegisterShhService(stack)
|
2016-08-15 11:38:32 -05:00
|
|
|
}
|
2016-11-25 09:55:06 -06:00
|
|
|
// Add the Ethereum Stats daemon if requested
|
|
|
|
if url := ctx.GlobalString(utils.EthStatsURLFlag.Name); url != "" {
|
|
|
|
utils.RegisterEthStatsService(stack, url)
|
|
|
|
}
|
2016-09-05 06:08:41 -05:00
|
|
|
// Add the release oracle service so it boots along with node.
|
|
|
|
if err := stack.Register(func(ctx *node.ServiceContext) (node.Service, error) {
|
|
|
|
config := release.Config{
|
|
|
|
Oracle: relOracle,
|
2016-11-25 09:55:06 -06:00
|
|
|
Major: uint32(params.VersionMajor),
|
|
|
|
Minor: uint32(params.VersionMinor),
|
|
|
|
Patch: uint32(params.VersionPatch),
|
2016-09-05 06:08:41 -05:00
|
|
|
}
|
|
|
|
commit, _ := hex.DecodeString(gitCommit)
|
|
|
|
copy(config.Commit[:], commit)
|
|
|
|
return release.NewReleaseService(ctx, config)
|
|
|
|
}); err != nil {
|
|
|
|
utils.Fatalf("Failed to register the Geth release oracle service: %v", err)
|
2016-08-15 11:38:32 -05:00
|
|
|
}
|
2016-09-05 06:08:41 -05:00
|
|
|
return stack
|
2016-08-15 11:38:32 -05:00
|
|
|
}
|
|
|
|
|
2015-11-17 10:33:25 -06: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) {
|
|
|
|
// Start up the node itself
|
|
|
|
utils.StartNode(stack)
|
2015-07-01 09:15:02 -05:00
|
|
|
|
2015-11-17 10:33:25 -06:00
|
|
|
// Unlock any account specifically requested
|
2017-01-24 03:49:20 -06:00
|
|
|
ks := stack.AccountManager().Backend(keystore.BackendType).(*keystore.KeyStore)
|
|
|
|
|
2015-11-17 10:33:25 -06:00
|
|
|
passwords := utils.MakePasswordList(ctx)
|
|
|
|
accounts := strings.Split(ctx.GlobalString(utils.UnlockedAccountFlag.Name), ",")
|
2015-06-18 10:20:00 -05:00
|
|
|
for i, account := range accounts {
|
2015-11-17 10:33:25 -06:00
|
|
|
if trimmed := strings.TrimSpace(account); trimmed != "" {
|
2017-01-24 03:49:20 -06:00
|
|
|
unlockAccount(ctx, ks, trimmed, i, passwords)
|
2015-03-24 07:37:00 -05:00
|
|
|
}
|
2015-03-23 08:00:06 -05:00
|
|
|
}
|
2016-02-02 11:06:43 -06:00
|
|
|
// Start auxiliary services if enabled
|
2015-03-05 20:00:41 -06:00
|
|
|
if ctx.GlobalBool(utils.MiningEnabledFlag.Name) {
|
2016-06-30 05:03:26 -05:00
|
|
|
var ethereum *eth.Ethereum
|
2015-12-15 21:26:23 -06:00
|
|
|
if err := stack.Service(ðereum); err != nil {
|
|
|
|
utils.Fatalf("ethereum service not running: %v", err)
|
|
|
|
}
|
2016-10-28 12:05:01 -05:00
|
|
|
if err := ethereum.StartMining(ctx.GlobalInt(utils.MinerThreadsFlag.Name)); err != nil {
|
2015-11-17 10:33:25 -06:00
|
|
|
utils.Fatalf("Failed to start mining: %v", err)
|
2015-04-21 19:36:28 -05:00
|
|
|
}
|
2015-03-05 20:00:41 -06:00
|
|
|
}
|
|
|
|
}
|