chaincmd.go 14.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// Copyright 2015 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
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU General Public License for more details.
//
// 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

17 18 19
package main

import (
20
	"encoding/json"
21 22
	"fmt"
	"os"
23
	"runtime"
24
	"strconv"
25
	"sync/atomic"
26 27 28 29
	"time"

	"github.com/ethereum/go-ethereum/cmd/utils"
	"github.com/ethereum/go-ethereum/common"
30
	"github.com/ethereum/go-ethereum/console"
31 32 33
	"github.com/ethereum/go-ethereum/core"
	"github.com/ethereum/go-ethereum/core/state"
	"github.com/ethereum/go-ethereum/core/types"
34
	"github.com/ethereum/go-ethereum/eth/downloader"
35
	"github.com/ethereum/go-ethereum/ethdb"
36
	"github.com/ethereum/go-ethereum/event"
37
	"github.com/ethereum/go-ethereum/log"
38
	"github.com/ethereum/go-ethereum/trie"
39
	"github.com/syndtr/goleveldb/leveldb/util"
40
	"gopkg.in/urfave/cli.v1"
41 42 43
)

var (
44
	initCommand = cli.Command{
45
		Action:    utils.MigrateFlags(initGenesis),
46 47 48
		Name:      "init",
		Usage:     "Bootstrap and initialize a new genesis block",
		ArgsUsage: "<genesisPath>",
49 50 51 52 53
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
54 55 56 57
		Description: `
The init command initializes a new genesis block and definition for the network.
This is a destructive action and changes the network in which you will be
participating.
58 59

It expects the genesis file as argument.`,
60
	}
61
	importCommand = cli.Command{
62
		Action:    utils.MigrateFlags(importChain),
63 64
		Name:      "import",
		Usage:     "Import a blockchain file",
65
		ArgsUsage: "<filename> (<filename 2> ... <filename N>) ",
66 67 68 69
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.LightModeFlag,
70 71 72
			utils.GCModeFlag,
			utils.CacheDatabaseFlag,
			utils.CacheGCFlag,
73 74
		},
		Category: "BLOCKCHAIN COMMANDS",
75
		Description: `
76 77
The import command imports blocks from an RLP-encoded form. The form can be one file
with several RLP-encoded blocks, or several files can be used.
78

79
If only one file is used, import error will result in failure. If several files are used,
80
processing will proceed even if an individual RLP-file import failure occurs.`,
81 82
	}
	exportCommand = cli.Command{
83
		Action:    utils.MigrateFlags(exportChain),
84 85 86
		Name:      "export",
		Usage:     "Export blockchain into file",
		ArgsUsage: "<filename> [<blockNumFirst> <blockNumLast>]",
87 88 89 90 91 92
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
93 94 95 96
		Description: `
Requires a first argument of the file to write to.
Optional second and third arguments control the first and
last block to write. In this mode, the file will be appended
97 98
if already existing. If the file ends with .gz, the output will
be gzipped.`,
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	}
	importPreimagesCommand = cli.Command{
		Action:    utils.MigrateFlags(importPreimages),
		Name:      "import-preimages",
		Usage:     "Import the preimage database from an RLP stream",
		ArgsUsage: "<datafile>",
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
		Description: `
	The import-preimages command imports hash preimages from an RLP encoded stream.`,
	}
	exportPreimagesCommand = cli.Command{
		Action:    utils.MigrateFlags(exportPreimages),
		Name:      "export-preimages",
		Usage:     "Export the preimage database into an RLP stream",
		ArgsUsage: "<dumpfile>",
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
		Description: `
The export-preimages command export hash preimages to an RLP encoded stream`,
127 128 129 130
	}
	copydbCommand = cli.Command{
		Action:    utils.MigrateFlags(copyDb),
		Name:      "copydb",
131 132
		Usage:     "Create a local chain from a target chaindata folder",
		ArgsUsage: "<sourceChaindataDir>",
133 134 135 136 137
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.SyncModeFlag,
			utils.FakePoWFlag,
138 139
			utils.TestnetFlag,
			utils.RinkebyFlag,
140 141 142 143
		},
		Category: "BLOCKCHAIN COMMANDS",
		Description: `
The first argument must be the directory containing the blockchain to download from`,
144 145
	}
	removedbCommand = cli.Command{
146
		Action:    utils.MigrateFlags(removeDB),
147 148 149
		Name:      "removedb",
		Usage:     "Remove blockchain and state databases",
		ArgsUsage: " ",
150 151 152 153 154
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
155
		Description: `
156
Remove blockchain and state databases`,
157 158
	}
	dumpCommand = cli.Command{
159
		Action:    utils.MigrateFlags(dump),
160 161 162
		Name:      "dump",
		Usage:     "Dump a specific block from storage",
		ArgsUsage: "[<blockHash> | <blockNum>]...",
163 164 165 166 167 168
		Flags: []cli.Flag{
			utils.DataDirFlag,
			utils.CacheFlag,
			utils.LightModeFlag,
		},
		Category: "BLOCKCHAIN COMMANDS",
169 170
		Description: `
The arguments are interpreted as block numbers or hashes.
171
Use "ethereum dump 0" to dump the genesis block.`,
172 173 174
	}
)

175 176 177
// initGenesis will initialise the given JSON format genesis file and writes it as
// the zero'd block (i.e. genesis) or will fail hard if it can't succeed.
func initGenesis(ctx *cli.Context) error {
178
	// Make sure we have a valid genesis JSON
179 180
	genesisPath := ctx.Args().First()
	if len(genesisPath) == 0 {
181
		utils.Fatalf("Must supply path to genesis JSON file")
182
	}
183
	file, err := os.Open(genesisPath)
184
	if err != nil {
185
		utils.Fatalf("Failed to read genesis file: %v", err)
186
	}
187
	defer file.Close()
188

189 190 191 192
	genesis := new(core.Genesis)
	if err := json.NewDecoder(file).Decode(genesis); err != nil {
		utils.Fatalf("invalid genesis file: %v", err)
	}
193 194 195 196 197 198 199 200 201 202 203 204
	// Open an initialise both full and light databases
	stack := makeFullNode(ctx)
	for _, name := range []string{"chaindata", "lightchaindata"} {
		chaindb, err := stack.OpenDatabase(name, 0, 0)
		if err != nil {
			utils.Fatalf("Failed to open database: %v", err)
		}
		_, hash, err := core.SetupGenesisBlock(chaindb, genesis)
		if err != nil {
			utils.Fatalf("Failed to write genesis block: %v", err)
		}
		log.Info("Successfully wrote genesis state", "database", name, "hash", hash)
205 206 207 208
	}
	return nil
}

209
func importChain(ctx *cli.Context) error {
210
	if len(ctx.Args()) < 1 {
211
		utils.Fatalf("This command requires an argument.")
212
	}
213 214
	stack := makeFullNode(ctx)
	chain, chainDb := utils.MakeChain(ctx, stack)
215 216
	defer chainDb.Close()

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	// Start periodically gathering memory profiles
	var peakMemAlloc, peakMemSys uint64
	go func() {
		stats := new(runtime.MemStats)
		for {
			runtime.ReadMemStats(stats)
			if atomic.LoadUint64(&peakMemAlloc) < stats.Alloc {
				atomic.StoreUint64(&peakMemAlloc, stats.Alloc)
			}
			if atomic.LoadUint64(&peakMemSys) < stats.Sys {
				atomic.StoreUint64(&peakMemSys, stats.Sys)
			}
			time.Sleep(5 * time.Second)
		}
	}()
232
	// Import the chain
233
	start := time.Now()
234 235 236

	if len(ctx.Args()) == 1 {
		if err := utils.ImportChain(chain, ctx.Args().First()); err != nil {
237
			log.Error("Import error", "err", err)
238 239 240 241 242 243 244
		}
	} else {
		for _, arg := range ctx.Args() {
			if err := utils.ImportChain(chain, arg); err != nil {
				log.Error("Import error", "file", arg, "err", err)
			}
		}
245
	}
246
	chain.Stop()
247
	fmt.Printf("Import done in %v.\n\n", time.Since(start))
248

249 250
	// Output pre-compaction stats mostly to see the import trashing
	db := chainDb.(*ethdb.LDBDatabase)
251

252 253
	stats, err := db.LDB().GetProperty("leveldb.stats")
	if err != nil {
254
		utils.Fatalf("Failed to read database stats: %v", err)
255 256
	}
	fmt.Println(stats)
257 258 259 260 261 262 263

	ioStats, err := db.LDB().GetProperty("leveldb.iostats")
	if err != nil {
		utils.Fatalf("Failed to read database iostats: %v", err)
	}
	fmt.Println(ioStats)

264 265
	fmt.Printf("Trie cache misses:  %d\n", trie.CacheMisses())
	fmt.Printf("Trie cache unloads: %d\n\n", trie.CacheUnloads())
266

267 268 269 270 271 272 273 274 275
	// Print the memory statistics used by the importing
	mem := new(runtime.MemStats)
	runtime.ReadMemStats(mem)

	fmt.Printf("Object memory: %.3f MB current, %.3f MB peak\n", float64(mem.Alloc)/1024/1024, float64(atomic.LoadUint64(&peakMemAlloc))/1024/1024)
	fmt.Printf("System memory: %.3f MB current, %.3f MB peak\n", float64(mem.Sys)/1024/1024, float64(atomic.LoadUint64(&peakMemSys))/1024/1024)
	fmt.Printf("Allocations:   %.3f million\n", float64(mem.Mallocs)/1000000)
	fmt.Printf("GC pause:      %v\n\n", time.Duration(mem.PauseTotalNs))

276 277 278 279
	if ctx.GlobalIsSet(utils.NoCompactionFlag.Name) {
		return nil
	}

280 281 282 283
	// Compact the entire database to more accurately measure disk io and print the stats
	start = time.Now()
	fmt.Println("Compacting entire database...")
	if err = db.LDB().CompactRange(util.Range{}); err != nil {
284
		utils.Fatalf("Compaction failed: %v", err)
285
	}
286 287 288 289
	fmt.Printf("Compaction done in %v.\n\n", time.Since(start))

	stats, err = db.LDB().GetProperty("leveldb.stats")
	if err != nil {
290
		utils.Fatalf("Failed to read database stats: %v", err)
291 292 293
	}
	fmt.Println(stats)

294 295 296 297 298 299
	ioStats, err = db.LDB().GetProperty("leveldb.iostats")
	if err != nil {
		utils.Fatalf("Failed to read database iostats: %v", err)
	}
	fmt.Println(ioStats)

300
	return nil
301 302
}

303
func exportChain(ctx *cli.Context) error {
Taylor Gerring's avatar
Taylor Gerring committed
304
	if len(ctx.Args()) < 1 {
305
		utils.Fatalf("This command requires an argument.")
306
	}
307 308
	stack := makeFullNode(ctx)
	chain, _ := utils.MakeChain(ctx, stack)
309
	start := time.Now()
310 311

	var err error
312
	fp := ctx.Args().First()
313
	if len(ctx.Args()) < 3 {
314
		err = utils.ExportChain(chain, fp)
315 316 317 318 319
	} else {
		// This can be improved to allow for numbers larger than 9223372036854775807
		first, ferr := strconv.ParseInt(ctx.Args().Get(1), 10, 64)
		last, lerr := strconv.ParseInt(ctx.Args().Get(2), 10, 64)
		if ferr != nil || lerr != nil {
320
			utils.Fatalf("Export error in parsing parameters: block number not an integer\n")
321
		}
322
		if first < 0 || last < 0 {
323
			utils.Fatalf("Export error: block number must be greater than 0\n")
324 325
		}
		err = utils.ExportAppendChain(chain, fp, uint64(first), uint64(last))
326 327 328
	}

	if err != nil {
329
		utils.Fatalf("Export error: %v\n", err)
330
	}
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
	fmt.Printf("Export done in %v\n", time.Since(start))
	return nil
}

// importPreimages imports preimage data from the specified file.
func importPreimages(ctx *cli.Context) error {
	if len(ctx.Args()) < 1 {
		utils.Fatalf("This command requires an argument.")
	}
	stack := makeFullNode(ctx)
	diskdb := utils.MakeChainDatabase(ctx, stack).(*ethdb.LDBDatabase)

	start := time.Now()
	if err := utils.ImportPreimages(diskdb, ctx.Args().First()); err != nil {
		utils.Fatalf("Export error: %v\n", err)
	}
	fmt.Printf("Export done in %v\n", time.Since(start))
	return nil
}

// exportPreimages dumps the preimage data to specified json file in streaming way.
func exportPreimages(ctx *cli.Context) error {
	if len(ctx.Args()) < 1 {
		utils.Fatalf("This command requires an argument.")
	}
	stack := makeFullNode(ctx)
	diskdb := utils.MakeChainDatabase(ctx, stack).(*ethdb.LDBDatabase)

	start := time.Now()
	if err := utils.ExportPreimages(diskdb, ctx.Args().First()); err != nil {
		utils.Fatalf("Export error: %v\n", err)
	}
	fmt.Printf("Export done in %v\n", time.Since(start))
364
	return nil
365 366
}

367
func copyDb(ctx *cli.Context) error {
368
	// Ensure we have a source chain directory to copy
369
	if len(ctx.Args()) != 1 {
370
		utils.Fatalf("Source chaindata directory path argument missing")
371
	}
372
	// Initialize a new chain for the running node to sync into
373 374 375 376
	stack := makeFullNode(ctx)
	chain, chainDb := utils.MakeChain(ctx, stack)

	syncmode := *utils.GlobalTextMarshaler(ctx, utils.SyncModeFlag.Name).(*downloader.SyncMode)
377
	dl := downloader.New(syncmode, chainDb, new(event.TypeMux), chain, nil, nil)
378

379 380
	// Create a source peer to satisfy downloader requests from
	db, err := ethdb.NewLDBDatabase(ctx.Args().First(), ctx.GlobalInt(utils.CacheFlag.Name), 256)
381 382 383
	if err != nil {
		return err
	}
384
	hc, err := core.NewHeaderChain(db, chain.Config(), chain.Engine(), func() bool { return false })
385 386 387
	if err != nil {
		return err
	}
388 389
	peer := downloader.NewFakePeer("local", db, hc, dl)
	if err = dl.RegisterPeer("local", 63, peer); err != nil {
390 391
		return err
	}
392 393
	// Synchronise with the simulated peer
	start := time.Now()
394 395

	currentHeader := hc.CurrentHeader()
396
	if err = dl.Synchronise("local", currentHeader.Hash(), hc.GetTd(currentHeader.Hash(), currentHeader.Number.Uint64()), syncmode); err != nil {
397 398 399 400 401
		return err
	}
	for dl.Synchronising() {
		time.Sleep(10 * time.Millisecond)
	}
402
	fmt.Printf("Database copy done in %v\n", time.Since(start))
403

404
	// Compact the entire database to remove any sync overhead
405 406 407 408 409 410 411 412 413 414
	start = time.Now()
	fmt.Println("Compacting entire database...")
	if err = chainDb.(*ethdb.LDBDatabase).LDB().CompactRange(util.Range{}); err != nil {
		utils.Fatalf("Compaction failed: %v", err)
	}
	fmt.Printf("Compaction done in %v.\n\n", time.Since(start))

	return nil
}

415
func removeDB(ctx *cli.Context) error {
416
	stack, _ := makeConfigNode(ctx)
417

418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
	for _, name := range []string{"chaindata", "lightchaindata"} {
		// Ensure the database exists in the first place
		logger := log.New("database", name)

		dbdir := stack.ResolvePath(name)
		if !common.FileExist(dbdir) {
			logger.Info("Database doesn't exist, skipping", "path", dbdir)
			continue
		}
		// Confirm removal and execute
		fmt.Println(dbdir)
		confirm, err := console.Stdin.PromptConfirm("Remove this database?")
		switch {
		case err != nil:
			utils.Fatalf("%v", err)
		case !confirm:
			logger.Warn("Database deletion aborted")
		default:
			start := time.Now()
			os.RemoveAll(dbdir)
			logger.Info("Database successfully deleted", "elapsed", common.PrettyDuration(time.Since(start)))
		}
440
	}
441
	return nil
442 443
}

444
func dump(ctx *cli.Context) error {
445 446
	stack := makeFullNode(ctx)
	chain, chainDb := utils.MakeChain(ctx, stack)
447 448 449
	for _, arg := range ctx.Args() {
		var block *types.Block
		if hashish(arg) {
450
			block = chain.GetBlockByHash(common.HexToHash(arg))
451 452 453 454 455 456
		} else {
			num, _ := strconv.Atoi(arg)
			block = chain.GetBlockByNumber(uint64(num))
		}
		if block == nil {
			fmt.Println("{}")
457
			utils.Fatalf("block not found")
458
		} else {
459
			state, err := state.New(block.Root(), state.NewDatabase(chainDb))
460
			if err != nil {
461
				utils.Fatalf("could not create new state: %v", err)
462
			}
463 464 465
			fmt.Printf("%s\n", state.Dump())
		}
	}
466
	chainDb.Close()
467
	return nil
468 469 470 471 472 473 474
}

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