aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/chaincmd.go
blob: 12bc1d7c66dda43178bb512c63dbdcb7385cd086 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
// 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
// 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/>.

package main

import (
    "encoding/json"
    "fmt"
    "os"
    "runtime"
    "strconv"
    "sync/atomic"
    "time"

    "github.com/ethereum/go-ethereum/cmd/utils"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/console"
    "github.com/ethereum/go-ethereum/core"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/ethdb"
    "github.com/ethereum/go-ethereum/log"
    "github.com/ethereum/go-ethereum/trie"
    "github.com/syndtr/goleveldb/leveldb/util"
    "gopkg.in/urfave/cli.v1"
)

var (
    initCommand = cli.Command{
        Action:    utils.MigrateFlags(initGenesis),
        Name:      "init",
        Usage:     "Bootstrap and initialize a new genesis block",
        ArgsUsage: "<genesisPath>",
        Flags: []cli.Flag{
            utils.DataDirFlag,
            utils.LightModeFlag,
        },
        Category: "BLOCKCHAIN COMMANDS",
        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.

It expects the genesis file as argument.`,
    }
    importCommand = cli.Command{
        Action:    utils.MigrateFlags(importChain),
        Name:      "import",
        Usage:     "Import a blockchain file",
        ArgsUsage: "<filename> (<filename 2> ... <filename N>) ",
        Flags: []cli.Flag{
            utils.DataDirFlag,
            utils.CacheFlag,
            utils.LightModeFlag,
        },
        Category: "BLOCKCHAIN COMMANDS",
        Description: `
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.

If only one file is used, import error will result in failure. If several files are used, 
processing will proceed even if an individual RLP-file import failure occurs.`,
    }
    exportCommand = cli.Command{
        Action:    utils.MigrateFlags(exportChain),
        Name:      "export",
        Usage:     "Export blockchain into file",
        ArgsUsage: "<filename> [<blockNumFirst> <blockNumLast>]",
        Flags: []cli.Flag{
            utils.DataDirFlag,
            utils.CacheFlag,
            utils.LightModeFlag,
        },
        Category: "BLOCKCHAIN COMMANDS",
        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
if already existing.`,
    }
    removedbCommand = cli.Command{
        Action:    utils.MigrateFlags(removeDB),
        Name:      "removedb",
        Usage:     "Remove blockchain and state databases",
        ArgsUsage: " ",
        Flags: []cli.Flag{
            utils.DataDirFlag,
            utils.LightModeFlag,
        },
        Category: "BLOCKCHAIN COMMANDS",
        Description: `
Remove blockchain and state databases`,
    }
    dumpCommand = cli.Command{
        Action:    utils.MigrateFlags(dump),
        Name:      "dump",
        Usage:     "Dump a specific block from storage",
        ArgsUsage: "[<blockHash> | <blockNum>]...",
        Flags: []cli.Flag{
            utils.DataDirFlag,
            utils.CacheFlag,
            utils.LightModeFlag,
        },
        Category: "BLOCKCHAIN COMMANDS",
        Description: `
The arguments are interpreted as block numbers or hashes.
Use "ethereum dump 0" to dump the genesis block.`,
    }
)

// 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 {
    // Make sure we have a valid genesis JSON
    genesisPath := ctx.Args().First()
    if len(genesisPath) == 0 {
        utils.Fatalf("Must supply path to genesis JSON file")
    }
    file, err := os.Open(genesisPath)
    if err != nil {
        utils.Fatalf("Failed to read genesis file: %v", err)
    }
    defer file.Close()

    genesis := new(core.Genesis)
    if err := json.NewDecoder(file).Decode(genesis); err != nil {
        utils.Fatalf("invalid genesis file: %v", err)
    }
    // 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)
    }
    return nil
}

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

    // 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)
        }
    }()
    // Import the chain
    start := time.Now()

    if len(ctx.Args()) == 1 {
        if err := utils.ImportChain(chain, ctx.Args().First()); err != nil {
            utils.Fatalf("Import error: %v", err)
        }
    } else {
        for _, arg := range ctx.Args() {
            if err := utils.ImportChain(chain, arg); err != nil {
                log.Error("Import error", "file", arg, "err", err)
            }
        }
    }

    fmt.Printf("Import done in %v.\n\n", time.Since(start))

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

    stats, err := db.LDB().GetProperty("leveldb.stats")
    if err != nil {
        utils.Fatalf("Failed to read database stats: %v", err)
    }
    fmt.Println(stats)
    fmt.Printf("Trie cache misses:  %d\n", trie.CacheMisses())
    fmt.Printf("Trie cache unloads: %d\n\n", trie.CacheUnloads())

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

    if ctx.GlobalIsSet(utils.NoCompactionFlag.Name) {
        return nil
    }

    // 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 {
        utils.Fatalf("Compaction failed: %v", err)
    }
    fmt.Printf("Compaction done in %v.\n\n", time.Since(start))

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

    return nil
}

func exportChain(ctx *cli.Context) error {
    if len(ctx.Args()) < 1 {
        utils.Fatalf("This command requires an argument.")
    }
    stack := makeFullNode(ctx)
    chain, _ := utils.MakeChain(ctx, stack)
    start := time.Now()

    var err error
    fp := ctx.Args().First()
    if len(ctx.Args()) < 3 {
        err = utils.ExportChain(chain, fp)
    } 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 {
            utils.Fatalf("Export error in parsing parameters: block number not an integer\n")
        }
        if first < 0 || last < 0 {
            utils.Fatalf("Export error: block number must be greater than 0\n")
        }
        err = utils.ExportAppendChain(chain, fp, uint64(first), uint64(last))
    }

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

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

    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)))
        }
    }
    return nil
}

func dump(ctx *cli.Context) error {
    stack := makeFullNode(ctx)
    chain, chainDb := utils.MakeChain(ctx, stack)
    for _, arg := range ctx.Args() {
        var block *types.Block
        if hashish(arg) {
            block = chain.GetBlockByHash(common.HexToHash(arg))
        } else {
            num, _ := strconv.Atoi(arg)
            block = chain.GetBlockByNumber(uint64(num))
        }
        if block == nil {
            fmt.Println("{}")
            utils.Fatalf("block not found")
        } else {
            state, err := state.New(block.Root(), state.NewDatabase(chainDb))
            if err != nil {
                utils.Fatalf("could not create new state: %v", err)
            }
            fmt.Printf("%s\n", state.Dump())
        }
    }
    chainDb.Close()
    return nil
}

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