aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/evm/runner.go
blob: 22538d7b13af0b683c708474c0332dca87febb01 (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
// Copyright 2017 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 (
    "bytes"
    "fmt"
    "io/ioutil"
    "os"
    "runtime/pprof"
    "time"

    goruntime "runtime"

    "github.com/ethereum/go-ethereum/cmd/evm/internal/compiler"
    "github.com/ethereum/go-ethereum/cmd/utils"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core/state"
    "github.com/ethereum/go-ethereum/core/vm"
    "github.com/ethereum/go-ethereum/core/vm/runtime"
    "github.com/ethereum/go-ethereum/ethdb"
    "github.com/ethereum/go-ethereum/log"
    cli "gopkg.in/urfave/cli.v1"
)

var runCommand = cli.Command{
    Action:      runCmd,
    Name:        "run",
    Usage:       "run arbitrary evm binary",
    ArgsUsage:   "<code>",
    Description: `The run command runs arbitrary EVM code.`,
}

func runCmd(ctx *cli.Context) error {
    glogger := log.NewGlogHandler(log.StreamHandler(os.Stderr, log.TerminalFormat(false)))
    glogger.Verbosity(log.Lvl(ctx.GlobalInt(VerbosityFlag.Name)))
    log.Root().SetHandler(glogger)

    var (
        db, _      = ethdb.NewMemDatabase()
        statedb, _ = state.New(common.Hash{}, db)
        sender     = common.StringToAddress("sender")
        logger     = vm.NewStructLogger(nil)
    )
    statedb.CreateAccount(sender)

    var (
        code []byte
        ret  []byte
        err  error
    )
    if fn := ctx.Args().First(); len(fn) > 0 {
        src, err := ioutil.ReadFile(fn)
        if err != nil {
            return err
        }

        bin, err := compiler.Compile(fn, src, false)
        if err != nil {
            return err
        }
        code = common.Hex2Bytes(bin)
    } else if ctx.GlobalString(CodeFlag.Name) != "" {
        code = common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name))
    } else {
        var hexcode []byte
        if ctx.GlobalString(CodeFileFlag.Name) != "" {
            var err error
            hexcode, err = ioutil.ReadFile(ctx.GlobalString(CodeFileFlag.Name))
            if err != nil {
                fmt.Printf("Could not load code from file: %v\n", err)
                os.Exit(1)
            }
        } else {
            var err error
            hexcode, err = ioutil.ReadAll(os.Stdin)
            if err != nil {
                fmt.Printf("Could not load code from stdin: %v\n", err)
                os.Exit(1)
            }
        }
        code = common.Hex2Bytes(string(bytes.TrimRight(hexcode, "\n")))
    }

    runtimeConfig := runtime.Config{
        Origin:   sender,
        State:    statedb,
        GasLimit: ctx.GlobalUint64(GasFlag.Name),
        GasPrice: utils.GlobalBig(ctx, PriceFlag.Name),
        Value:    utils.GlobalBig(ctx, ValueFlag.Name),
        EVMConfig: vm.Config{
            Tracer:             logger,
            Debug:              ctx.GlobalBool(DebugFlag.Name),
            DisableGasMetering: ctx.GlobalBool(DisableGasMeteringFlag.Name),
        },
    }

    if cpuProfilePath := ctx.GlobalString(CPUProfileFlag.Name); cpuProfilePath != "" {
        f, err := os.Create(cpuProfilePath)
        if err != nil {
            fmt.Println("could not create CPU profile: ", err)
            os.Exit(1)
        }
        if err := pprof.StartCPUProfile(f); err != nil {
            fmt.Println("could not start CPU profile: ", err)
            os.Exit(1)
        }
        defer pprof.StopCPUProfile()
    }

    tstart := time.Now()
    if ctx.GlobalBool(CreateFlag.Name) {
        input := append(code, common.Hex2Bytes(ctx.GlobalString(InputFlag.Name))...)
        ret, _, err = runtime.Create(input, &runtimeConfig)
    } else {
        receiver := common.StringToAddress("receiver")
        statedb.SetCode(receiver, code)

        ret, err = runtime.Call(receiver, common.Hex2Bytes(ctx.GlobalString(InputFlag.Name)), &runtimeConfig)
    }
    execTime := time.Since(tstart)

    if ctx.GlobalBool(DumpFlag.Name) {
        statedb.Commit(true)
        fmt.Println(string(statedb.Dump()))
    }

    if memProfilePath := ctx.GlobalString(MemProfileFlag.Name); memProfilePath != "" {
        f, err := os.Create(memProfilePath)
        if err != nil {
            fmt.Println("could not create memory profile: ", err)
            os.Exit(1)
        }
        if err := pprof.WriteHeapProfile(f); err != nil {
            fmt.Println("could not write memory profile: ", err)
            os.Exit(1)
        }
        f.Close()
    }

    if ctx.GlobalBool(DebugFlag.Name) {
        fmt.Fprintln(os.Stderr, "#### TRACE ####")
        vm.WriteTrace(os.Stderr, logger.StructLogs())
        fmt.Fprintln(os.Stderr, "#### LOGS ####")
        vm.WriteLogs(os.Stderr, statedb.Logs())
    }

    if ctx.GlobalBool(StatDumpFlag.Name) {
        var mem goruntime.MemStats
        goruntime.ReadMemStats(&mem)
        fmt.Fprintf(os.Stderr, `evm execution time: %v
heap objects:       %d
allocations:        %d
total allocations:  %d
GC calls:           %d

`, execTime, mem.HeapObjects, mem.Alloc, mem.TotalAlloc, mem.NumGC)
    }

    fmt.Printf("0x%x", ret)
    if err != nil {
        fmt.Printf(" error: %v", err)
    }
    fmt.Println()
    return nil
}