main.go 17.4 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 (
F
Felix Lange 已提交
24
	"bufio"
O
obscuren 已提交
25
	"fmt"
26
	"io"
27
	"io/ioutil"
O
obscuren 已提交
28
	"os"
29
	"path"
30
	"path/filepath"
O
obscuren 已提交
31
	"runtime"
32
	"strconv"
33
	"strings"
O
obscuren 已提交
34
	"time"
O
obscuren 已提交
35

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

Z
zelig 已提交
52
const (
O
obscuren 已提交
53
	ClientIdentifier = "Geth"
O
obscuren 已提交
54
	Version          = "0.9.19"
Z
zelig 已提交
55 56
)

57 58 59 60 61
var (
	gitCommit       string // set via linker flag
	nodeNameVersion string
	app             *cli.App
)
62

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

	app = utils.NewApp(Version, "the go-ethereum command line interface")
71 72 73
	app.Action = run
	app.HideVersion = true // we have a command to print the version
	app.Commands = []cli.Command{
74
		blocktestCmd,
75 76 77 78 79 80 81 82 83 84 85
		{
			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.
`,
		},
86 87 88 89 90 91 92 93
		{
			Action: version,
			Name:   "version",
			Usage:  "print ethereum version numbers",
			Description: `
The output of this command is supposed to be machine-readable.
`,
		},
94 95

		{
96 97
			Name:  "wallet",
			Usage: "ethereum presale wallet",
98 99 100 101 102 103 104 105
			Subcommands: []cli.Command{
				{
					Action: importWallet,
					Name:   "import",
					Usage:  "import ethereum presale wallet",
				},
			},
		},
F
Felix Lange 已提交
106 107 108 109
		{
			Action: accountList,
			Name:   "account",
			Usage:  "manage accounts",
110 111 112 113 114
			Description: `

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

115 116
'account help' shows a list of subcommands or help for one subcommand.

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
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 已提交
134 135 136 137 138 139 140 141 142 143
			Subcommands: []cli.Command{
				{
					Action: accountList,
					Name:   "list",
					Usage:  "print account addresses",
				},
				{
					Action: accountCreate,
					Name:   "new",
					Usage:  "create a new account",
Z
zelig 已提交
144 145 146 147
					Description: `

    ethereum account new

148 149 150 151 152 153
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 已提交
154 155 156 157
For non-interactive use the passphrase can be specified with the --password flag:

    ethereum --password <passwordfile> account new

158 159
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 已提交
160 161 162 163 164 165 166 167 168 169
					`,
				},
				{
					Action: accountImport,
					Name:   "import",
					Usage:  "import a private key into a new account",
					Description: `

    ethereum account import <keyfile>

170 171 172
Imports an unencrypted private key from <keyfile> and creates a new account.
Prints the address.

173
The keyfile is assumed to contain an unencrypted private key in hexadecimal format.
Z
zelig 已提交
174 175 176

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

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

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

181
    ethereum --password <passwordfile> account import <keyfile>
Z
zelig 已提交
182 183

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

	// 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")
283

284
}
O
obscuren 已提交
285

286
func main() {
287 288
	//fmt.Printf("\n              🌞\n\n        ᴡᴇʟᴄᴏᴍᴇ ᴛᴏ ᴛʜᴇ\n       𝐅 𝐑 𝐎 𝐍 𝐓 𝐈 𝐄 𝐑\n\n🌾      🌵🌾🌾  🐎    🌾      🌵   🌾\n\n")
	fmt.Println("\n   Welcome to the\n      FRONTIER\n")
289 290 291 292 293 294 295
	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 已提交
296

297
func run(ctx *cli.Context) {
298
	utils.HandleInterrupt()
299
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
300
	ethereum, err := eth.New(cfg)
301
	if err != nil {
302 303 304
		utils.Fatalf("%v", err)
	}

305
	startEth(ctx, ethereum)
306
	// this blocks the thread
307
	ethereum.WaitForShutdown()
308
}
309

Z
CLI:  
zelig 已提交
310
func console(ctx *cli.Context) {
311 312 313 314 315 316 317 318
	// 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
		}
	}

319
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
320
	ethereum, err := eth.New(cfg)
321
	if err != nil {
322 323 324
		utils.Fatalf("%v", err)
	}

325
	startEth(ctx, ethereum)
326 327 328 329 330 331 332 333
	repl := newJSRE(
		ethereum,
		ctx.String(utils.JSpathFlag.Name),
		ctx.String(utils.SolcPathFlag.Name),
		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
		true,
		nil,
	)
Z
CLI:  
zelig 已提交
334 335 336 337 338 339 340
	repl.interactive()

	ethereum.Stop()
	ethereum.WaitForShutdown()
}

func execJSFiles(ctx *cli.Context) {
341
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
Z
CLI:  
zelig 已提交
342 343 344
	ethereum, err := eth.New(cfg)
	if err != nil {
		utils.Fatalf("%v", err)
O
obscuren 已提交
345
	}
Z
CLI:  
zelig 已提交
346 347

	startEth(ctx, ethereum)
348 349 350 351 352 353 354 355
	repl := newJSRE(
		ethereum,
		ctx.String(utils.JSpathFlag.Name),
		ctx.String(utils.SolcPathFlag.Name),
		ctx.GlobalString(utils.RPCCORSDomainFlag.Name),
		false,
		nil,
	)
Z
CLI:  
zelig 已提交
356 357 358 359
	for _, file := range ctx.Args() {
		repl.exec(file)
	}

360 361
	ethereum.Stop()
	ethereum.WaitForShutdown()
362
}
O
obscuren 已提交
363

Z
zelig 已提交
364
func unlockAccount(ctx *cli.Context, am *accounts.Manager, account string) (passphrase string) {
365 366 367 368 369 370 371 372 373 374 375
	var err error
	// Load startup keys. XXX we are going to need a different format
	// Attempt to unlock the account
	passphrase = getPassPhrase(ctx, "", false)
	accbytes := common.FromHex(account)
	if len(accbytes) == 0 {
		utils.Fatalf("Invalid account address '%s'", account)
	}
	err = am.Unlock(accbytes, passphrase)
	if err != nil {
		utils.Fatalf("Unlock account failed '%v'", err)
376
	}
Z
zelig 已提交
377 378 379 380
	return
}

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

Z
zelig 已提交
383 384 385 386 387
	utils.StartEthereum(eth)
	am := eth.AccountManager()

	account := ctx.GlobalString(utils.UnlockedAccountFlag.Name)
	if len(account) > 0 {
Z
zelig 已提交
388 389
		if account == "primary" {
			accbytes, err := am.Primary()
390
			if err != nil {
Z
zelig 已提交
391
				utils.Fatalf("no primary account: %v", err)
392 393
			}
			account = common.ToHex(accbytes)
Z
zelig 已提交
394
		}
Z
zelig 已提交
395 396
		unlockAccount(ctx, am, account)
	}
397
	// Start auxiliary services if enabled.
398
	if ctx.GlobalBool(utils.RPCEnabledFlag.Name) {
399 400 401
		if err := utils.StartRPC(eth, ctx); err != nil {
			utils.Fatalf("Error starting RPC: %v", err)
		}
402 403
	}
	if ctx.GlobalBool(utils.MiningEnabledFlag.Name) {
404 405 406
		if err := eth.StartMining(); err != nil {
			utils.Fatalf("%v", err)
		}
407 408
	}
}
O
Merge  
obscuren 已提交
409

F
Felix Lange 已提交
410 411 412 413 414 415
func accountList(ctx *cli.Context) {
	am := utils.GetAccountManager(ctx)
	accts, err := am.Accounts()
	if err != nil {
		utils.Fatalf("Could not list accounts: %v", err)
	}
416 417 418 419
	name := "Primary"
	for i, acct := range accts {
		fmt.Printf("%s #%d: %x\n", name, i, acct)
		name = "Account"
F
Felix Lange 已提交
420 421 422
	}
}

423
func getPassPhrase(ctx *cli.Context, desc string, confirmation bool) (passphrase string) {
424 425 426 427 428 429 430 431 432
	passfile := ctx.GlobalString(utils.PasswordFileFlag.Name)
	if len(passfile) == 0 {
		fmt.Println(desc)
		auth, err := readPassword("Passphrase: ", true)
		if err != nil {
			utils.Fatalf("%v", err)
		}
		if confirmation {
			confirm, err := readPassword("Repeat Passphrase: ", false)
Z
zelig 已提交
433 434 435
			if err != nil {
				utils.Fatalf("%v", err)
			}
436 437
			if auth != confirm {
				utils.Fatalf("Passphrases did not match.")
Z
zelig 已提交
438
			}
439 440
		}
		passphrase = auth
Z
zelig 已提交
441

442 443 444 445
	} else {
		passbytes, err := ioutil.ReadFile(passfile)
		if err != nil {
			utils.Fatalf("Unable to read password file '%s': %v", passfile, err)
446
		}
447
		passphrase = string(passbytes)
F
Felix Lange 已提交
448
	}
Z
zelig 已提交
449 450 451 452 453
	return
}

func accountCreate(ctx *cli.Context) {
	am := utils.GetAccountManager(ctx)
454
	passphrase := getPassPhrase(ctx, "Your new account is locked with a password. Please give a password. Do not forget this password.", true)
455
	acct, err := am.NewAccount(passphrase)
F
Felix Lange 已提交
456 457 458
	if err != nil {
		utils.Fatalf("Could not create the account: %v", err)
	}
Z
zelig 已提交
459 460 461
	fmt.Printf("Address: %x\n", acct)
}

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
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 已提交
482 483 484 485 486 487
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)
488
	passphrase := getPassPhrase(ctx, "Your new account is locked with a password. Please give a password. Do not forget this password.", true)
Z
zelig 已提交
489 490 491 492 493 494 495
	acct, err := am.Import(keyfile, passphrase)
	if err != nil {
		utils.Fatalf("Could not create the account: %v", err)
	}
	fmt.Printf("Address: %x\n", acct)
}

496 497 498 499
func importchain(ctx *cli.Context) {
	if len(ctx.Args()) != 1 {
		utils.Fatalf("This command requires an argument.")
	}
500 501 502 503 504 505 506 507 508 509

	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()
510
	start := time.Now()
511
	err = utils.ImportChain(chainmgr, ctx.Args().First())
O
obscuren 已提交
512
	if err != nil {
513
		utils.Fatalf("Import error: %v\n", err)
O
obscuren 已提交
514
	}
515 516 517 518 519 520

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

521
	fmt.Printf("Import done in %v", time.Since(start))
522

523 524 525 526 527 528 529
	return
}

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

531
	cfg := utils.MakeEthConfig(ClientIdentifier, nodeNameVersion, ctx)
532 533 534 535 536 537 538 539
	cfg.SkipBcVersionCheck = true

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

	chainmgr := ethereum.ChainManager()
540
	start := time.Now()
541
	err = utils.ExportChain(chainmgr, ctx.Args().First())
542 543 544 545
	if err != nil {
		utils.Fatalf("Export error: %v\n", err)
	}
	fmt.Printf("Export done in %v", time.Since(start))
546 547
	return
}
O
Merge  
obscuren 已提交
548

549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
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
	}

	filename := fmt.Sprintf("blockchain_%d_%s.chain", bcVersion, time.Now().Format("2006-01-02_15:04:05"))
	exportFile := path.Join(ctx.GlobalString(utils.DataDirFlag.Name), filename)

	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()

	os.RemoveAll(path.Join(ctx.GlobalString(utils.DataDirFlag.Name), "blockchain"))

	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")
}

603
func dump(ctx *cli.Context) {
604
	chainmgr, _, stateDb := utils.GetChain(ctx)
605
	for _, arg := range ctx.Args() {
O
obscuren 已提交
606
		var block *types.Block
607
		if hashish(arg) {
O
obscuren 已提交
608
			block = chainmgr.GetBlock(common.HexToHash(arg))
O
obscuren 已提交
609
		} else {
610
			num, _ := strconv.Atoi(arg)
611
			block = chainmgr.GetBlockByNumber(uint64(num))
O
obscuren 已提交
612 613 614
		}
		if block == nil {
			fmt.Println("{}")
615 616
			utils.Fatalf("block not found")
		} else {
617
			statedb := state.New(block.Root(), stateDb)
618
			fmt.Printf("%s\n", statedb.Dump())
O
obscuren 已提交
619
		}
O
obscuren 已提交
620
	}
621
}
O
obscuren 已提交
622

623
func makedag(ctx *cli.Context) {
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
	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()
	}
650 651
}

652
func version(c *cli.Context) {
653 654 655 656 657 658 659 660 661 662 663
	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 已提交
664
}
F
Felix Lange 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685

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

func readPassword(prompt string, warnTerm bool) (string, error) {
	if liner.TerminalSupported() {
		lr := liner.NewLiner()
		defer lr.Close()
		return lr.PasswordPrompt(prompt)
	}
	if warnTerm {
		fmt.Println("!! Unsupported terminal, password will be echoed.")
	}
	fmt.Print(prompt)
	input, err := bufio.NewReader(os.Stdin).ReadString('\n')
	fmt.Println()
	return input, err
}