main.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. // Copyright 2014 The go-ethereum Authors
  2. // This file is part of go-ethereum.
  3. //
  4. // go-ethereum is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // go-ethereum is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
  16. // geth is the official command-line client for Ethereum.
  17. package main
  18. import (
  19. "fmt"
  20. "math"
  21. "os"
  22. godebug "runtime/debug"
  23. "sort"
  24. "strconv"
  25. "strings"
  26. "time"
  27. "github.com/ethereum/go-ethereum/accounts"
  28. "github.com/ethereum/go-ethereum/accounts/keystore"
  29. "github.com/ethereum/go-ethereum/cmd/utils"
  30. "github.com/ethereum/go-ethereum/common"
  31. "github.com/ethereum/go-ethereum/console/prompt"
  32. "github.com/ethereum/go-ethereum/eth"
  33. "github.com/ethereum/go-ethereum/eth/downloader"
  34. "github.com/ethereum/go-ethereum/ethclient"
  35. "github.com/ethereum/go-ethereum/internal/debug"
  36. "github.com/ethereum/go-ethereum/internal/ethapi"
  37. "github.com/ethereum/go-ethereum/internal/flags"
  38. "github.com/ethereum/go-ethereum/log"
  39. "github.com/ethereum/go-ethereum/metrics"
  40. "github.com/ethereum/go-ethereum/node"
  41. gopsutil "github.com/shirou/gopsutil/mem"
  42. "gopkg.in/urfave/cli.v1"
  43. )
  44. const (
  45. clientIdentifier = "geth" // Client identifier to advertise over the network
  46. )
  47. var (
  48. // Git SHA1 commit hash of the release (set via linker flags)
  49. gitCommit = ""
  50. gitDate = ""
  51. // The app that holds all commands and flags.
  52. app = flags.NewApp(gitCommit, gitDate, "the go-ethereum command line interface")
  53. // flags that configure the node
  54. nodeFlags = []cli.Flag{
  55. utils.IdentityFlag,
  56. utils.UnlockedAccountFlag,
  57. utils.PasswordFileFlag,
  58. utils.BootnodesFlag,
  59. utils.DataDirFlag,
  60. utils.AncientFlag,
  61. utils.MinFreeDiskSpaceFlag,
  62. utils.KeyStoreDirFlag,
  63. utils.ExternalSignerFlag,
  64. utils.NoUSBFlag,
  65. utils.USBFlag,
  66. utils.SmartCardDaemonPathFlag,
  67. utils.OverrideBerlinFlag,
  68. utils.EthashCacheDirFlag,
  69. utils.EthashCachesInMemoryFlag,
  70. utils.EthashCachesOnDiskFlag,
  71. utils.EthashCachesLockMmapFlag,
  72. utils.EthashDatasetDirFlag,
  73. utils.EthashDatasetsInMemoryFlag,
  74. utils.EthashDatasetsOnDiskFlag,
  75. utils.EthashDatasetsLockMmapFlag,
  76. utils.TxPoolLocalsFlag,
  77. utils.TxPoolNoLocalsFlag,
  78. utils.TxPoolJournalFlag,
  79. utils.TxPoolRejournalFlag,
  80. utils.TxPoolPriceLimitFlag,
  81. utils.TxPoolPriceBumpFlag,
  82. utils.TxPoolAccountSlotsFlag,
  83. utils.TxPoolGlobalSlotsFlag,
  84. utils.TxPoolAccountQueueFlag,
  85. utils.TxPoolGlobalQueueFlag,
  86. utils.TxPoolLifetimeFlag,
  87. utils.SyncModeFlag,
  88. utils.ExitWhenSyncedFlag,
  89. utils.GCModeFlag,
  90. utils.SnapshotFlag,
  91. utils.TxLookupLimitFlag,
  92. utils.LightServeFlag,
  93. utils.LightIngressFlag,
  94. utils.LightEgressFlag,
  95. utils.LightMaxPeersFlag,
  96. utils.LightNoPruneFlag,
  97. utils.LightKDFFlag,
  98. utils.UltraLightServersFlag,
  99. utils.UltraLightFractionFlag,
  100. utils.UltraLightOnlyAnnounceFlag,
  101. utils.LightNoSyncServeFlag,
  102. utils.WhitelistFlag,
  103. utils.BloomFilterSizeFlag,
  104. utils.CacheFlag,
  105. utils.CacheDatabaseFlag,
  106. utils.CacheTrieFlag,
  107. utils.CacheTrieJournalFlag,
  108. utils.CacheTrieRejournalFlag,
  109. utils.CacheGCFlag,
  110. utils.CacheSnapshotFlag,
  111. utils.CacheNoPrefetchFlag,
  112. utils.CachePreimagesFlag,
  113. utils.ListenPortFlag,
  114. utils.MaxPeersFlag,
  115. utils.MaxPendingPeersFlag,
  116. utils.MiningEnabledFlag,
  117. utils.MinerThreadsFlag,
  118. utils.MinerNotifyFlag,
  119. utils.MinerGasTargetFlag,
  120. utils.MinerGasLimitFlag,
  121. utils.MinerGasPriceFlag,
  122. utils.MinerEtherbaseFlag,
  123. utils.MinerExtraDataFlag,
  124. utils.MinerRecommitIntervalFlag,
  125. utils.MinerNoVerfiyFlag,
  126. utils.NATFlag,
  127. utils.NoDiscoverFlag,
  128. utils.DiscoveryV5Flag,
  129. utils.NetrestrictFlag,
  130. utils.NodeKeyFileFlag,
  131. utils.NodeKeyHexFlag,
  132. utils.DNSDiscoveryFlag,
  133. utils.MainnetFlag,
  134. utils.DeveloperFlag,
  135. utils.DeveloperPeriodFlag,
  136. utils.RopstenFlag,
  137. utils.RinkebyFlag,
  138. utils.GoerliFlag,
  139. utils.YoloV3Flag,
  140. utils.VMEnableDebugFlag,
  141. utils.NetworkIdFlag,
  142. utils.EthStatsURLFlag,
  143. utils.FakePoWFlag,
  144. utils.NoCompactionFlag,
  145. utils.GpoBlocksFlag,
  146. utils.GpoPercentileFlag,
  147. utils.GpoMaxGasPriceFlag,
  148. utils.EWASMInterpreterFlag,
  149. utils.EVMInterpreterFlag,
  150. utils.MinerNotifyFullFlag,
  151. configFileFlag,
  152. }
  153. rpcFlags = []cli.Flag{
  154. utils.HTTPEnabledFlag,
  155. utils.HTTPListenAddrFlag,
  156. utils.HTTPPortFlag,
  157. utils.HTTPCORSDomainFlag,
  158. utils.HTTPVirtualHostsFlag,
  159. utils.LegacyRPCEnabledFlag,
  160. utils.LegacyRPCListenAddrFlag,
  161. utils.LegacyRPCPortFlag,
  162. utils.LegacyRPCCORSDomainFlag,
  163. utils.LegacyRPCVirtualHostsFlag,
  164. utils.LegacyRPCApiFlag,
  165. utils.GraphQLEnabledFlag,
  166. utils.GraphQLCORSDomainFlag,
  167. utils.GraphQLVirtualHostsFlag,
  168. utils.HTTPApiFlag,
  169. utils.HTTPPathPrefixFlag,
  170. utils.WSEnabledFlag,
  171. utils.WSListenAddrFlag,
  172. utils.WSPortFlag,
  173. utils.WSApiFlag,
  174. utils.WSAllowedOriginsFlag,
  175. utils.WSPathPrefixFlag,
  176. utils.IPCDisabledFlag,
  177. utils.IPCPathFlag,
  178. utils.InsecureUnlockAllowedFlag,
  179. utils.RPCGlobalGasCapFlag,
  180. utils.RPCGlobalTxFeeCapFlag,
  181. utils.AllowUnprotectedTxs,
  182. }
  183. metricsFlags = []cli.Flag{
  184. utils.MetricsEnabledFlag,
  185. utils.MetricsEnabledExpensiveFlag,
  186. utils.MetricsHTTPFlag,
  187. utils.MetricsPortFlag,
  188. utils.MetricsEnableInfluxDBFlag,
  189. utils.MetricsInfluxDBEndpointFlag,
  190. utils.MetricsInfluxDBDatabaseFlag,
  191. utils.MetricsInfluxDBUsernameFlag,
  192. utils.MetricsInfluxDBPasswordFlag,
  193. utils.MetricsInfluxDBTagsFlag,
  194. }
  195. )
  196. func init() {
  197. // Initialize the CLI app and start Geth
  198. app.Action = geth
  199. app.HideVersion = true // we have a command to print the version
  200. app.Copyright = "Copyright 2013-2021 The go-ethereum Authors"
  201. app.Commands = []cli.Command{
  202. // See chaincmd.go:
  203. initCommand,
  204. importCommand,
  205. exportCommand,
  206. importPreimagesCommand,
  207. exportPreimagesCommand,
  208. removedbCommand,
  209. dumpCommand,
  210. dumpGenesisCommand,
  211. // See accountcmd.go:
  212. accountCommand,
  213. walletCommand,
  214. // See consolecmd.go:
  215. consoleCommand,
  216. attachCommand,
  217. javascriptCommand,
  218. // See misccmd.go:
  219. makecacheCommand,
  220. makedagCommand,
  221. versionCommand,
  222. versionCheckCommand,
  223. licenseCommand,
  224. // See config.go
  225. dumpConfigCommand,
  226. // see dbcmd.go
  227. dbCommand,
  228. // See cmd/utils/flags_legacy.go
  229. utils.ShowDeprecated,
  230. // See snapshot.go
  231. snapshotCommand,
  232. }
  233. sort.Sort(cli.CommandsByName(app.Commands))
  234. app.Flags = append(app.Flags, nodeFlags...)
  235. app.Flags = append(app.Flags, rpcFlags...)
  236. app.Flags = append(app.Flags, consoleFlags...)
  237. app.Flags = append(app.Flags, debug.Flags...)
  238. app.Flags = append(app.Flags, metricsFlags...)
  239. app.Before = func(ctx *cli.Context) error {
  240. return debug.Setup(ctx)
  241. }
  242. app.After = func(ctx *cli.Context) error {
  243. debug.Exit()
  244. prompt.Stdin.Close() // Resets terminal mode.
  245. return nil
  246. }
  247. }
  248. func main() {
  249. if err := app.Run(os.Args); err != nil {
  250. fmt.Fprintln(os.Stderr, err)
  251. os.Exit(1)
  252. }
  253. }
  254. // prepare manipulates memory cache allowance and setups metric system.
  255. // This function should be called before launching devp2p stack.
  256. func prepare(ctx *cli.Context) {
  257. // If we're running a known preset, log it for convenience.
  258. switch {
  259. case ctx.GlobalIsSet(utils.RopstenFlag.Name):
  260. log.Info("Starting Geth on Ropsten testnet...")
  261. case ctx.GlobalIsSet(utils.RinkebyFlag.Name):
  262. log.Info("Starting Geth on Rinkeby testnet...")
  263. case ctx.GlobalIsSet(utils.GoerliFlag.Name):
  264. log.Info("Starting Geth on Görli testnet...")
  265. case ctx.GlobalIsSet(utils.YoloV3Flag.Name):
  266. log.Info("Starting Geth on YOLOv3 testnet...")
  267. case ctx.GlobalIsSet(utils.DeveloperFlag.Name):
  268. log.Info("Starting Geth in ephemeral dev mode...")
  269. case !ctx.GlobalIsSet(utils.NetworkIdFlag.Name):
  270. log.Info("Starting Geth on Ethereum mainnet...")
  271. }
  272. // If we're a full node on mainnet without --cache specified, bump default cache allowance
  273. if ctx.GlobalString(utils.SyncModeFlag.Name) != "light" && !ctx.GlobalIsSet(utils.CacheFlag.Name) && !ctx.GlobalIsSet(utils.NetworkIdFlag.Name) {
  274. // Make sure we're not on any supported preconfigured testnet either
  275. if !ctx.GlobalIsSet(utils.RopstenFlag.Name) && !ctx.GlobalIsSet(utils.RinkebyFlag.Name) && !ctx.GlobalIsSet(utils.GoerliFlag.Name) && !ctx.GlobalIsSet(utils.DeveloperFlag.Name) {
  276. // Nope, we're really on mainnet. Bump that cache up!
  277. log.Info("Bumping default cache on mainnet", "provided", ctx.GlobalInt(utils.CacheFlag.Name), "updated", 4096)
  278. ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(4096))
  279. }
  280. }
  281. // If we're running a light client on any network, drop the cache to some meaningfully low amount
  282. if ctx.GlobalString(utils.SyncModeFlag.Name) == "light" && !ctx.GlobalIsSet(utils.CacheFlag.Name) {
  283. log.Info("Dropping default light client cache", "provided", ctx.GlobalInt(utils.CacheFlag.Name), "updated", 128)
  284. ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(128))
  285. }
  286. // Cap the cache allowance and tune the garbage collector
  287. mem, err := gopsutil.VirtualMemory()
  288. if err == nil {
  289. if 32<<(^uintptr(0)>>63) == 32 && mem.Total > 2*1024*1024*1024 {
  290. log.Warn("Lowering memory allowance on 32bit arch", "available", mem.Total/1024/1024, "addressable", 2*1024)
  291. mem.Total = 2 * 1024 * 1024 * 1024
  292. }
  293. allowance := int(mem.Total / 1024 / 1024 / 3)
  294. if cache := ctx.GlobalInt(utils.CacheFlag.Name); cache > allowance {
  295. log.Warn("Sanitizing cache to Go's GC limits", "provided", cache, "updated", allowance)
  296. ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(allowance))
  297. }
  298. }
  299. // Ensure Go's GC ignores the database cache for trigger percentage
  300. cache := ctx.GlobalInt(utils.CacheFlag.Name)
  301. gogc := math.Max(20, math.Min(100, 100/(float64(cache)/1024)))
  302. log.Debug("Sanitizing Go's GC trigger", "percent", int(gogc))
  303. godebug.SetGCPercent(int(gogc))
  304. // Start metrics export if enabled
  305. utils.SetupMetrics(ctx)
  306. // Start system runtime metrics collection
  307. go metrics.CollectProcessMetrics(3 * time.Second)
  308. }
  309. // geth is the main entry point into the system if no special subcommand is ran.
  310. // It creates a default node based on the command line arguments and runs it in
  311. // blocking mode, waiting for it to be shut down.
  312. func geth(ctx *cli.Context) error {
  313. if args := ctx.Args(); len(args) > 0 {
  314. return fmt.Errorf("invalid command: %q", args[0])
  315. }
  316. prepare(ctx)
  317. stack, backend := makeFullNode(ctx)
  318. defer stack.Close()
  319. startNode(ctx, stack, backend)
  320. stack.Wait()
  321. return nil
  322. }
  323. // startNode boots up the system node and all registered protocols, after which
  324. // it unlocks any requested accounts, and starts the RPC/IPC interfaces and the
  325. // miner.
  326. func startNode(ctx *cli.Context, stack *node.Node, backend ethapi.Backend) {
  327. debug.Memsize.Add("node", stack)
  328. // Start up the node itself
  329. utils.StartNode(ctx, stack)
  330. // Unlock any account specifically requested
  331. unlockAccounts(ctx, stack)
  332. // Register wallet event handlers to open and auto-derive wallets
  333. events := make(chan accounts.WalletEvent, 16)
  334. stack.AccountManager().Subscribe(events)
  335. // Create a client to interact with local geth node.
  336. rpcClient, err := stack.Attach()
  337. if err != nil {
  338. utils.Fatalf("Failed to attach to self: %v", err)
  339. }
  340. ethClient := ethclient.NewClient(rpcClient)
  341. go func() {
  342. // Open any wallets already attached
  343. for _, wallet := range stack.AccountManager().Wallets() {
  344. if err := wallet.Open(""); err != nil {
  345. log.Warn("Failed to open wallet", "url", wallet.URL(), "err", err)
  346. }
  347. }
  348. // Listen for wallet event till termination
  349. for event := range events {
  350. switch event.Kind {
  351. case accounts.WalletArrived:
  352. if err := event.Wallet.Open(""); err != nil {
  353. log.Warn("New wallet appeared, failed to open", "url", event.Wallet.URL(), "err", err)
  354. }
  355. case accounts.WalletOpened:
  356. status, _ := event.Wallet.Status()
  357. log.Info("New wallet appeared", "url", event.Wallet.URL(), "status", status)
  358. var derivationPaths []accounts.DerivationPath
  359. if event.Wallet.URL().Scheme == "ledger" {
  360. derivationPaths = append(derivationPaths, accounts.LegacyLedgerBaseDerivationPath)
  361. }
  362. derivationPaths = append(derivationPaths, accounts.DefaultBaseDerivationPath)
  363. event.Wallet.SelfDerive(derivationPaths, ethClient)
  364. case accounts.WalletDropped:
  365. log.Info("Old wallet dropped", "url", event.Wallet.URL())
  366. event.Wallet.Close()
  367. }
  368. }
  369. }()
  370. // Spawn a standalone goroutine for status synchronization monitoring,
  371. // close the node when synchronization is complete if user required.
  372. if ctx.GlobalBool(utils.ExitWhenSyncedFlag.Name) {
  373. go func() {
  374. sub := stack.EventMux().Subscribe(downloader.DoneEvent{})
  375. defer sub.Unsubscribe()
  376. for {
  377. event := <-sub.Chan()
  378. if event == nil {
  379. continue
  380. }
  381. done, ok := event.Data.(downloader.DoneEvent)
  382. if !ok {
  383. continue
  384. }
  385. if timestamp := time.Unix(int64(done.Latest.Time), 0); time.Since(timestamp) < 10*time.Minute {
  386. log.Info("Synchronisation completed", "latestnum", done.Latest.Number, "latesthash", done.Latest.Hash(),
  387. "age", common.PrettyAge(timestamp))
  388. stack.Close()
  389. }
  390. }
  391. }()
  392. }
  393. // Start auxiliary services if enabled
  394. if ctx.GlobalBool(utils.MiningEnabledFlag.Name) || ctx.GlobalBool(utils.DeveloperFlag.Name) {
  395. // Mining only makes sense if a full Ethereum node is running
  396. if ctx.GlobalString(utils.SyncModeFlag.Name) == "light" {
  397. utils.Fatalf("Light clients do not support mining")
  398. }
  399. ethBackend, ok := backend.(*eth.EthAPIBackend)
  400. if !ok {
  401. utils.Fatalf("Ethereum service not running: %v", err)
  402. }
  403. // Set the gas price to the limits from the CLI and start mining
  404. gasprice := utils.GlobalBig(ctx, utils.MinerGasPriceFlag.Name)
  405. ethBackend.TxPool().SetGasPrice(gasprice)
  406. // start mining
  407. threads := ctx.GlobalInt(utils.MinerThreadsFlag.Name)
  408. if err := ethBackend.StartMining(threads); err != nil {
  409. utils.Fatalf("Failed to start mining: %v", err)
  410. }
  411. }
  412. }
  413. // unlockAccounts unlocks any account specifically requested.
  414. func unlockAccounts(ctx *cli.Context, stack *node.Node) {
  415. var unlocks []string
  416. inputs := strings.Split(ctx.GlobalString(utils.UnlockedAccountFlag.Name), ",")
  417. for _, input := range inputs {
  418. if trimmed := strings.TrimSpace(input); trimmed != "" {
  419. unlocks = append(unlocks, trimmed)
  420. }
  421. }
  422. // Short circuit if there is no account to unlock.
  423. if len(unlocks) == 0 {
  424. return
  425. }
  426. // If insecure account unlocking is not allowed if node's APIs are exposed to external.
  427. // Print warning log to user and skip unlocking.
  428. if !stack.Config().InsecureUnlockAllowed && stack.Config().ExtRPCEnabled() {
  429. utils.Fatalf("Account unlock with HTTP access is forbidden!")
  430. }
  431. ks := stack.AccountManager().Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore)
  432. passwords := utils.MakePasswordList(ctx)
  433. for i, account := range unlocks {
  434. unlockAccount(ks, account, i, passwords)
  435. }
  436. }