main.go 18.1 KB
Newer Older
O
obscuren 已提交
1 2
/*
	This file is part of go-ethereum
F
Felix Lange 已提交
3

O
obscuren 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
	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
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.
*/
/**
 * @authors
 * 	Jeffrey Wilcke <i@jev.io>
 */
21 22 23
package main

import (
O
obscuren 已提交
24
	"fmt"
25
	"io"
26
	"io/ioutil"
O
obscuren 已提交
27
	"os"
28
	"path/filepath"
O
obscuren 已提交
29
	"runtime"
30
	"strconv"
31
	"strings"
O
obscuren 已提交
32
	"time"
O
obscuren 已提交
33

34
	"github.com/codegangsta/cli"
35
	"github.com/ethereum/ethash"
Z
zelig 已提交
36
	"github.com/ethereum/go-ethereum/accounts"
O
obscuren 已提交
37
	"github.com/ethereum/go-ethereum/cmd/utils"
Z
zelig 已提交
38
	"github.com/ethereum/go-ethereum/common"
39
	"github.com/ethereum/go-ethereum/core"
O
bump  
obscuren 已提交
40
	"github.com/ethereum/go-ethereum/core/state"
41
	"github.com/ethereum/go-ethereum/core/types"
O
obscuren 已提交
42
	"github.com/ethereum/go-ethereum/eth"
O
obscuren 已提交
43
	"github.com/ethereum/go-ethereum/logger"
O
obscuren 已提交
44 45
	"github.com/mattn/go-colorable"
	"github.com/mattn/go-isatty"
46
)
O
obscuren 已提交
47
import _ "net/http/pprof"
48

Z
zelig 已提交
49
const (
O
obscuren 已提交
50
	ClientIdentifier = "Geth"
O
obscuren 已提交
51
	Version          = "0.9.24"
Z
zelig 已提交
52 53
)

54 55 56 57 58
var (
	gitCommit       string // set via linker flag
	nodeNameVersion string
	app             *cli.App
)
59

60
func init() {
61 62 63 64 65 66 67
	if gitCommit == "" {
		nodeNameVersion = Version
	} else {
		nodeNameVersion = Version + "-" + gitCommit[:8]
	}

	app = utils.NewApp(Version, "the go-ethereum command line interface")
68 69 70
	app.Action = run
	app.HideVersion = true // we have a command to print the version
	app.Commands = []cli.Command{
71
		blocktestCmd,
72 73 74 75 76 77 78 79 80 81 82
		{
			Action: makedag,
			Name:   "makedag",
			Usage:  "generate ethash dag (for testing)",
			Description: `
The makedag command generates an ethash DAG in /tmp/dag.

This command exists to support the system testing project.
Regular users do not need to execute it.
`,
		},
83 84 85 86 87 88 89 90
		{
			Action: version,
			Name:   "version",
			Usage:  "print ethereum version numbers",
			Description: `
The output of this command is supposed to be machine-readable.
`,
		},
91 92

		{
93 94
			Name:  "wallet",
			Usage: "ethereum presale wallet",
95 96 97 98 99 100 101
			Subcommands: []cli.Command{
				{
					Action: importWallet,
					Name:   "import",
					Usage:  "import ethereum presale wallet",
				},
			},
Z
zelig 已提交
102 103 104 105 106 107 108 109 110
			Description: `

    get wallet import /path/to/my/presale.wallet

will prompt for your password and imports your ether presale account.
It can be used non-interactively with the --password option taking a
passwordfile as argument containing the wallet password in plaintext.

`},
F
Felix Lange 已提交
111 112 113 114
		{
			Action: accountList,
			Name:   "account",
			Usage:  "manage accounts",
115 116 117 118 119
			Description: `

Manage accounts lets you create new accounts, list all existing accounts,
import a private key into a new account.

120
'            help' shows a list of subcommands or help for one subcommand.
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
It supports interactive mode, when you are prompted for password as well as
non-interactive mode where passwords are supplied via a given password file.
Non-interactive mode is only meant for scripted use on test networks or known
safe environments.

Make sure you remember the password you gave when creating a new account (with
either new or import). Without it you are not able to unlock your account.

Note that exporting your key in unencrypted format is NOT supported.

Keys are stored under <DATADIR>/keys.
It is safe to transfer the entire directory or the individual keys therein
between ethereum nodes.
Make sure you backup your keys regularly.

And finally. DO NOT FORGET YOUR PASSWORD.
`,
F
Felix Lange 已提交
139 140 141 142 143 144 145 146 147 148
			Subcommands: []cli.Command{
				{
					Action: accountList,
					Name:   "list",
					Usage:  "print account addresses",
				},
				{
					Action: accountCreate,
					Name:   "new",
					Usage:  "create a new account",
Z
zelig 已提交
149 150 151 152
					Description: `

    ethereum account new

153 154 155 156 157 158
Creates a new account. Prints the address.

The account is saved in encrypted format, you are prompted for a passphrase.

You must remember this passphrase to unlock your account in the future.

Z
zelig 已提交
159 160 161 162
For non-interactive use the passphrase can be specified with the --password flag:

    ethereum --password <passwordfile> account new

163 164
Note, this is meant to be used for testing only, it is a bad idea to save your
password to file or expose in any other way.
Z
zelig 已提交
165 166 167 168 169 170 171 172 173 174
					`,
				},
				{
					Action: accountImport,
					Name:   "import",
					Usage:  "import a private key into a new account",
					Description: `

    ethereum account import <keyfile>

175 176 177
Imports an unencrypted private key from <keyfile> and creates a new account.
Prints the address.

178
The keyfile is assumed to contain an unencrypted private key in hexadecimal format.
Z
zelig 已提交
179 180 181

The account is saved in encrypted format, you are prompted for a passphrase.

182
You must remember this passphrase to unlock your account in the future.
Z
zelig 已提交
183

184
For non-interactive use the passphrase can be specified with the -password flag:
Z
zelig 已提交
185

186
    ethereum --password <passwordfile> account import <keyfile>
Z
zelig 已提交
187 188

Note:
Z
zelig 已提交
189
As you can directly copy your encrypted accounts to another ethereum instance,
190
this import mechanism is not needed when you transfer an account between
Z
zelig 已提交
191
nodes.
Z
zelig 已提交
192
					`,
F
Felix Lange 已提交
193 194 195
				},
			},
		},
196 197 198 199 200 201 202 203 204 205
		{
			Action: dump,
			Name:   "dump",
			Usage:  `dump a specific block from storage`,
			Description: `
The arguments are interpreted as block numbers or hashes.
Use "ethereum dump 0" to dump the genesis block.
`,
		},
		{
Z
CLI:  
zelig 已提交
206 207
			Action: console,
			Name:   "console",
O
obscuren 已提交
208
			Usage:  `Geth Console: interactive JavaScript environment`,
Z
CLI:  
zelig 已提交
209
			Description: `
O
obscuren 已提交
210
The Geth console is an interactive shell for the JavaScript runtime environment
211 212
which exposes a node admin interface as well as the Ðapp JavaScript API.
See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console
Z
CLI:  
zelig 已提交
213 214 215 216
`,
		},
		{
			Action: execJSFiles,
217
			Name:   "js",
O
obscuren 已提交
218
			Usage:  `executes the given JavaScript files in the Geth JavaScript VM`,
219
			Description: `
220
The JavaScript VM exposes a node admin interface as well as the Ðapp
Z
zelig 已提交
221
JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Console
222 223 224 225 226 227 228
`,
		},
		{
			Action: importchain,
			Name:   "import",
			Usage:  `import a blockchain file`,
		},
229 230 231 232 233
		{
			Action: exportchain,
			Name:   "export",
			Usage:  `export blockchain into file`,
		},
234 235 236 237 238
		{
			Action: upgradeDb,
			Name:   "upgradedb",
			Usage:  "upgrade chainblock database",
		},
T
Taylor Gerring 已提交
239 240 241 242 243
		{
			Action: removeDb,
			Name:   "removedb",
			Usage:  "Remove blockchain and state databases",
		},
244 245
	}
	app.Flags = []cli.Flag{
246
		utils.IdentityFlag,
247
		utils.UnlockedAccountFlag,
Z
zelig 已提交
248
		utils.PasswordFileFlag,
249 250
		utils.BootnodesFlag,
		utils.DataDirFlag,
251
		utils.BlockchainVersionFlag,
Z
CLI:  
zelig 已提交
252
		utils.JSpathFlag,
253 254
		utils.ListenPortFlag,
		utils.MaxPeersFlag,
255
		utils.MaxPendingPeersFlag,
Z
zelig 已提交
256
		utils.EtherbaseFlag,
257
		utils.GasPriceFlag,
258 259
		utils.MinerThreadsFlag,
		utils.MiningEnabledFlag,
260
		utils.AutoDAGFlag,
261
		utils.NATFlag,
262
		utils.NatspecEnabledFlag,
263 264 265 266 267
		utils.NodeKeyFileFlag,
		utils.NodeKeyHexFlag,
		utils.RPCEnabledFlag,
		utils.RPCListenAddrFlag,
		utils.RPCPortFlag,
268
		utils.WhisperEnabledFlag,
269
		utils.VMDebugFlag,
Z
zelig 已提交
270 271
		utils.ProtocolVersionFlag,
		utils.NetworkIdFlag,
272
		utils.RPCCORSDomainFlag,
273
		utils.VerbosityFlag,
O
obscuren 已提交
274 275
		utils.BacktraceAtFlag,
		utils.LogToStdErrFlag,
O
obscuren 已提交
276 277 278
		utils.LogVModuleFlag,
		utils.LogFileFlag,
		utils.LogJSONFlag,
279
		utils.PProfEanbledFlag,
280
		utils.PProfPortFlag,
281
		utils.SolcPathFlag,
282
	}
283
	app.Before = func(ctx *cli.Context) error {
284
		if ctx.GlobalBool(utils.PProfEanbledFlag.Name) {
285 286 287
			utils.StartPProf(ctx)
		}
		return nil
288 289 290 291 292 293
	}

	// missing:
	// flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file")
	// flag.BoolVar(&DiffTool, "difftool", false, "creates output for diff'ing. Sets LogLevel=0")
	// flag.StringVar(&DiffType, "diff", "all", "sets the level of diff output [vm, all]. Has no effect if difftool=false")
294

295
}
O
obscuren 已提交
296

297 298 299 300 301 302 303 304
func main() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	defer logger.Flush()
	if err := app.Run(os.Args); err != nil {
		fmt.Fprintln(os.Stderr, err)
		os.Exit(1)
	}
}
Z
zelig 已提交
305

306
func run(ctx *cli.Context) {
307
	utils.HandleInterrupt()
308
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
309
	ethereum, err := eth.New(cfg)
310
	if err != nil {
311 312 313
		utils.Fatalf("%v", err)
	}

314
	startEth(ctx, ethereum)
315
	// this blocks the thread
316
	ethereum.WaitForShutdown()
317
}
318

Z
CLI:  
zelig 已提交
319
func console(ctx *cli.Context) {
320 321 322 323 324 325 326 327
	// Wrap the standard output with a colorified stream (windows)
	if isatty.IsTerminal(os.Stdout.Fd()) {
		if pr, pw, err := os.Pipe(); err == nil {
			go io.Copy(colorable.NewColorableStdout(), pr)
			os.Stdout = pw
		}
	}

328
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
329
	ethereum, err := eth.New(cfg)
330
	if err != nil {
331 332 333
		utils.Fatalf("%v", err)
	}

334
	startEth(ctx, ethereum)
335 336 337 338 339 340 341
	repl := newJSRE(
		ethereum,
		ctx.String(utils.JSpathFlag.Name),
		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
		true,
		nil,
	)
Z
CLI:  
zelig 已提交
342 343 344 345 346 347 348
	repl.interactive()

	ethereum.Stop()
	ethereum.WaitForShutdown()
}

func execJSFiles(ctx *cli.Context) {
349
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
Z
CLI:  
zelig 已提交
350 351 352
	ethereum, err := eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v", err)
O
obscuren 已提交
353
	}
Z
CLI:  
zelig 已提交
354 355

	startEth(ctx, ethereum)
356 357 358 359 360 361 362
	repl := newJSRE(
		ethereum,
		ctx.String(utils.JSpathFlag.Name),
		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
		false,
		nil,
	)
Z
CLI:  
zelig 已提交
363 364 365 366
	for _, file := range ctx.Args() {
		repl.exec(file)
	}

367 368
	ethereum.Stop()
	ethereum.WaitForShutdown()
369
}
O
obscuren 已提交
370

Z
zelig 已提交
371
func unlockAccount(ctx *cli.Context, am *accounts.Manager, account string) (passphrase string) {
372 373
	var err error
	// Load startup keys. XXX we are going to need a different format
374

375
	if len(account) == 0 {
376 377
		utils.Fatalf("Invalid account address '%s'", account)
	}
378 379 380 381 382 383 384 385 386 387
	// Attempt to unlock the account 3 times
	attempts := 3
	for tries := 0; tries < attempts; tries++ {
		msg := fmt.Sprintf("Unlocking account %s...%s | Attempt %d/%d", account[:8], account[len(account)-6:], tries+1, attempts)
		passphrase = getPassPhrase(ctx, msg, false)
		err = am.Unlock(common.HexToAddress(account), passphrase)
		if err == nil {
			break
		}
	}
388 389
	if err != nil {
		utils.Fatalf("Unlock account failed '%v'", err)
390
	}
391
	fmt.Printf("Account '%s' unlocked.\n", account)
Z
zelig 已提交
392 393 394 395
	return
}

func startEth(ctx *cli.Context, eth *eth.Ethereum) {
396
	// Start Ethereum itself
397

Z
zelig 已提交
398 399 400 401
	utils.StartEthereum(eth)
	am := eth.AccountManager()

	account := ctx.GlobalString(utils.UnlockedAccountFlag.Name)
402 403 404 405 406 407 408 409 410
	accounts := strings.Split(account, " ")
	for _, account := range accounts {
		if len(account) > 0 {
			if account == "primary" {
				primaryAcc, err := am.Primary()
				if err != nil {
					utils.Fatalf("no primary account: %v", err)
				}
				account = primaryAcc.Hex()
411
			}
412
			unlockAccount(ctx, am, account)
Z
zelig 已提交
413
		}
Z
zelig 已提交
414
	}
415
	// Start auxiliary services if enabled.
416
	if ctx.GlobalBool(utils.RPCEnabledFlag.Name) {
417 418 419
		if err := utils.StartRPC(eth, ctx); err != nil {
			utils.Fatalf("Error starting RPC: %v", err)
		}
420 421
	}
	if ctx.GlobalBool(utils.MiningEnabledFlag.Name) {
422
		if err := eth.StartMining(ctx.GlobalInt(utils.MinerThreadsFlag.Name)); err != nil {
423 424
			utils.Fatalf("%v", err)
		}
425 426
	}
}
O
Merge  
obscuren 已提交
427

F
Felix Lange 已提交
428 429 430 431 432 433
func accountList(ctx *cli.Context) {
	am := utils.GetAccountManager(ctx)
	accts, err := am.Accounts()
	if err != nil {
		utils.Fatalf("Could not list accounts: %v", err)
	}
434 435 436 437
	name := "Primary"
	for i, acct := range accts {
		fmt.Printf("%s #%d: %x\n", name, i, acct)
		name = "Account"
F
Felix Lange 已提交
438 439 440
	}
}

441
func getPassPhrase(ctx *cli.Context, desc string, confirmation bool) (passphrase string) {
442 443 444
	passfile := ctx.GlobalString(utils.PasswordFileFlag.Name)
	if len(passfile) == 0 {
		fmt.Println(desc)
445
		auth, err := utils.PromptPassword("Passphrase: ", true)
446 447 448 449
		if err != nil {
			utils.Fatalf("%v", err)
		}
		if confirmation {
450
			confirm, err := utils.PromptPassword("Repeat Passphrase: ", false)
Z
zelig 已提交
451 452 453
			if err != nil {
				utils.Fatalf("%v", err)
			}
454 455
			if auth != confirm {
				utils.Fatalf("Passphrases did not match.")
Z
zelig 已提交
456
			}
457 458
		}
		passphrase = auth
Z
zelig 已提交
459

460 461 462 463
	} else {
		passbytes, err := ioutil.ReadFile(passfile)
		if err != nil {
			utils.Fatalf("Unable to read password file '%s': %v", passfile, err)
464
		}
465
		passphrase = string(passbytes)
F
Felix Lange 已提交
466
	}
Z
zelig 已提交
467 468 469 470 471
	return
}

func accountCreate(ctx *cli.Context) {
	am := utils.GetAccountManager(ctx)
472
	passphrase := getPassPhrase(ctx, "Your new account is locked with a password. Please give a password. Do not forget this password.", true)
473
	acct, err := am.NewAccount(passphrase)
F
Felix Lange 已提交
474 475 476
	if err != nil {
		utils.Fatalf("Could not create the account: %v", err)
	}
Z
zelig 已提交
477 478 479
	fmt.Printf("Address: %x\n", acct)
}

480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
func importWallet(ctx *cli.Context) {
	keyfile := ctx.Args().First()
	if len(keyfile) == 0 {
		utils.Fatalf("keyfile must be given as argument")
	}
	keyJson, err := ioutil.ReadFile(keyfile)
	if err != nil {
		utils.Fatalf("Could not read wallet file: %v", err)
	}

	am := utils.GetAccountManager(ctx)
	passphrase := getPassPhrase(ctx, "", false)

	acct, err := am.ImportPreSaleKey(keyJson, passphrase)
	if err != nil {
		utils.Fatalf("Could not create the account: %v", err)
	}
	fmt.Printf("Address: %x\n", acct)
}

Z
zelig 已提交
500 501 502 503 504 505
func accountImport(ctx *cli.Context) {
	keyfile := ctx.Args().First()
	if len(keyfile) == 0 {
		utils.Fatalf("keyfile must be given as argument")
	}
	am := utils.GetAccountManager(ctx)
506
	passphrase := getPassPhrase(ctx, "Your new account is locked with a password. Please give a password. Do not forget this password.", true)
Z
zelig 已提交
507 508 509 510 511 512 513
	acct, err := am.Import(keyfile, passphrase)
	if err != nil {
		utils.Fatalf("Could not create the account: %v", err)
	}
	fmt.Printf("Address: %x\n", acct)
}

514 515 516 517
func importchain(ctx *cli.Context) {
	if len(ctx.Args()) != 1 {
		utils.Fatalf("This command requires an argument.")
	}
518 519 520 521 522 523 524 525 526 527

	cfg := utils.MakeEthConfig(ClientIdentifier, Version, ctx)
	cfg.SkipBcVersionCheck = true

	ethereum, err := eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v\n", err)
	}

	chainmgr := ethereum.ChainManager()
528
	start := time.Now()
529
	err = utils.ImportChain(chainmgr, ctx.Args().First())
O
obscuren 已提交
530
	if err != nil {
531
		utils.Fatalf("Import error: %v\n", err)
O
obscuren 已提交
532
	}
533 534 535 536 537 538

	// force database flush
	ethereum.BlockDb().Close()
	ethereum.StateDb().Close()
	ethereum.ExtraDb().Close()

539
	fmt.Printf("Import done in %v", time.Since(start))
540

541 542 543 544 545 546 547
	return
}

func exportchain(ctx *cli.Context) {
	if len(ctx.Args()) != 1 {
		utils.Fatalf("This command requires an argument.")
	}
548

549
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
550 551 552 553 554 555 556 557
	cfg.SkipBcVersionCheck = true

	ethereum, err := eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v\n", err)
	}

	chainmgr := ethereum.ChainManager()
558
	start := time.Now()
559
	err = utils.ExportChain(chainmgr, ctx.Args().First())
560 561 562 563
	if err != nil {
		utils.Fatalf("Export error: %v\n", err)
	}
	fmt.Printf("Export done in %v", time.Since(start))
564 565
	return
}
O
Merge  
obscuren 已提交
566

T
Taylor Gerring 已提交
567
func removeDb(ctx *cli.Context) {
568
	confirm, err := utils.PromptConfirm("Remove local databases?")
569 570 571
	if err != nil {
		utils.Fatalf("%v", err)
	}
T
Taylor Gerring 已提交
572

573 574 575
	if confirm {
		fmt.Println("Removing chain and state databases...")
		start := time.Now()
T
Taylor Gerring 已提交
576

577 578 579 580 581 582 583
		os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "blockchain"))
		os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "state"))

		fmt.Printf("Removed in %v\n", time.Since(start))
	} else {
		fmt.Println("Operation aborted")
	}
T
Taylor Gerring 已提交
584 585
}

586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
func upgradeDb(ctx *cli.Context) {
	fmt.Println("Upgrade blockchain DB")

	cfg := utils.MakeEthConfig(ClientIdentifier, Version, ctx)
	cfg.SkipBcVersionCheck = true

	ethereum, err := eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v\n", err)
	}

	v, _ := ethereum.BlockDb().Get([]byte("BlockchainVersion"))
	bcVersion := int(common.NewValue(v).Uint())

	if bcVersion == 0 {
		bcVersion = core.BlockChainVersion
	}

604
	filename := fmt.Sprintf("blockchain_%d_%s.chain", bcVersion, time.Now().Format("20060102_150405"))
605
	exportFile := filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), filename)
606 607 608 609 610 611 612 613 614 615

	err = utils.ExportChain(ethereum.ChainManager(), exportFile)
	if err != nil {
		utils.Fatalf("Unable to export chain for reimport %s\n", err)
	}

	ethereum.BlockDb().Close()
	ethereum.StateDb().Close()
	ethereum.ExtraDb().Close()

616
	os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "blockchain"))
617
	os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "state"))
618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640

	ethereum, err = eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v\n", err)
	}

	ethereum.BlockDb().Put([]byte("BlockchainVersion"), common.NewValue(core.BlockChainVersion).Bytes())

	err = utils.ImportChain(ethereum.ChainManager(), exportFile)
	if err != nil {
		utils.Fatalf("Import error %v (a backup is made in %s, use the import command to import it)\n", err, exportFile)
	}

	// force database flush
	ethereum.BlockDb().Close()
	ethereum.StateDb().Close()
	ethereum.ExtraDb().Close()

	os.Remove(exportFile)

	fmt.Println("Import finished")
}

641
func dump(ctx *cli.Context) {
642
	chainmgr, _, stateDb := utils.GetChain(ctx)
643
	for _, arg := range ctx.Args() {
O
obscuren 已提交
644
		var block *types.Block
645
		if hashish(arg) {
O
obscuren 已提交
646
			block = chainmgr.GetBlock(common.HexToHash(arg))
O
obscuren 已提交
647
		} else {
648
			num, _ := strconv.Atoi(arg)
649
			block = chainmgr.GetBlockByNumber(uint64(num))
O
obscuren 已提交
650 651 652
		}
		if block == nil {
			fmt.Println("{}")
653 654
			utils.Fatalf("block not found")
		} else {
655
			statedb := state.New(block.Root(), stateDb)
656
			fmt.Printf("%s\n", statedb.Dump())
O
obscuren 已提交
657
		}
O
obscuren 已提交
658
	}
659
}
O
obscuren 已提交
660

661
func makedag(ctx *cli.Context) {
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
	args := ctx.Args()
	wrongArgs := func() {
		utils.Fatalf(`Usage: geth makedag <block number> <outputdir>`)
	}
	switch {
	case len(args) == 2:
		blockNum, err := strconv.ParseUint(args[0], 0, 64)
		dir := args[1]
		if err != nil {
			wrongArgs()
		} else {
			dir = filepath.Clean(dir)
			// seems to require a trailing slash
			if !strings.HasSuffix(dir, "/") {
				dir = dir + "/"
			}
			_, err = ioutil.ReadDir(dir)
			if err != nil {
				utils.Fatalf("Can't find dir")
			}
			fmt.Println("making DAG, this could take awhile...")
			ethash.MakeDAG(blockNum, dir)
		}
	default:
		wrongArgs()
	}
688 689
}

690
func version(c *cli.Context) {
691 692 693 694 695 696 697 698 699 700 701
	fmt.Println(ClientIdentifier)
	fmt.Println("Version:", Version)
	if gitCommit != "" {
		fmt.Println("Git Commit:", gitCommit)
	}
	fmt.Println("Protocol Version:", c.GlobalInt(utils.ProtocolVersionFlag.Name))
	fmt.Println("Network Id:", c.GlobalInt(utils.NetworkIdFlag.Name))
	fmt.Println("Go Version:", runtime.Version())
	fmt.Println("OS:", runtime.GOOS)
	fmt.Printf("GOPATH=%s\n", os.Getenv("GOPATH"))
	fmt.Printf("GOROOT=%s\n", runtime.GOROOT())
O
obscuren 已提交
702
}
F
Felix Lange 已提交
703 704 705 706 707 708

// hashish returns true for strings that look like hashes.
func hashish(x string) bool {
	_, err := strconv.Atoi(x)
	return err != nil
}