main.go 6.6 KB
Newer Older
F
Felix Lange 已提交
1 2 3 4 5 6 7 8 9 10
// Copyright 2014 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
F
Felix Lange 已提交
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/>.
O
obscuren 已提交
16

17
// evm executes EVM code snippets.
O
obscuren 已提交
18 19 20 21 22 23 24 25 26
package main

import (
	"fmt"
	"math/big"
	"os"
	"runtime"
	"time"

27 28
	"github.com/codegangsta/cli"
	"github.com/ethereum/go-ethereum/cmd/utils"
O
obscuren 已提交
29
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
30
	"github.com/ethereum/go-ethereum/core"
O
obscuren 已提交
31
	"github.com/ethereum/go-ethereum/core/state"
O
obscuren 已提交
32
	"github.com/ethereum/go-ethereum/core/types"
O
obscuren 已提交
33
	"github.com/ethereum/go-ethereum/core/vm"
O
obscuren 已提交
34
	"github.com/ethereum/go-ethereum/ethdb"
35
	"github.com/ethereum/go-ethereum/logger/glog"
O
obscuren 已提交
36 37 38
)

var (
39 40 41 42 43
	app       *cli.App
	DebugFlag = cli.BoolFlag{
		Name:  "debug",
		Usage: "output full trace logs",
	}
44 45 46 47 48 49 50 51
	ForceJitFlag = cli.BoolFlag{
		Name:  "forcejit",
		Usage: "forces jit compilation",
	}
	DisableJitFlag = cli.BoolFlag{
		Name:  "nojit",
		Usage: "disabled jit compilation",
	}
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
	CodeFlag = cli.StringFlag{
		Name:  "code",
		Usage: "EVM code",
	}
	GasFlag = cli.StringFlag{
		Name:  "gas",
		Usage: "gas limit for the evm",
		Value: "10000000000",
	}
	PriceFlag = cli.StringFlag{
		Name:  "price",
		Usage: "price set for the evm",
		Value: "0",
	}
	ValueFlag = cli.StringFlag{
		Name:  "value",
		Usage: "value set for the evm",
		Value: "0",
	}
	DumpFlag = cli.BoolFlag{
		Name:  "dump",
		Usage: "dumps the state after the run",
	}
	InputFlag = cli.StringFlag{
		Name:  "input",
		Usage: "input for the EVM",
	}
	SysStatFlag = cli.BoolFlag{
		Name:  "sysstat",
		Usage: "display system stats",
	}
83 84 85 86
	VerbosityFlag = cli.IntFlag{
		Name:  "verbosity",
		Usage: "sets the verbosity level",
	}
O
obscuren 已提交
87 88
)

89 90 91 92
func init() {
	app = utils.NewApp("0.2", "the evm command line interface")
	app.Flags = []cli.Flag{
		DebugFlag,
93
		VerbosityFlag,
94 95
		ForceJitFlag,
		DisableJitFlag,
96 97 98 99 100 101 102 103 104
		SysStatFlag,
		CodeFlag,
		GasFlag,
		PriceFlag,
		ValueFlag,
		DumpFlag,
		InputFlag,
	}
	app.Action = run
O
obscuren 已提交
105 106
}

107 108
func run(ctx *cli.Context) {
	vm.Debug = ctx.GlobalBool(DebugFlag.Name)
109
	vm.ForceJit = ctx.GlobalBool(ForceJitFlag.Name)
110
	vm.EnableJit = !ctx.GlobalBool(DisableJitFlag.Name)
111 112

	glog.SetToStderr(true)
113
	glog.SetV(ctx.GlobalInt(VerbosityFlag.Name))
O
obscuren 已提交
114

O
obscuren 已提交
115
	db, _ := ethdb.NewMemDatabase()
O
obscuren 已提交
116
	statedb := state.New(common.Hash{}, db)
O
obscuren 已提交
117 118
	sender := statedb.CreateAccount(common.StringToAddress("sender"))
	receiver := statedb.CreateAccount(common.StringToAddress("receiver"))
119
	receiver.SetCode(common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name)))
O
obscuren 已提交
120

121
	vmenv := NewEnv(statedb, common.StringToAddress("evmuser"), common.Big(ctx.GlobalString(ValueFlag.Name)))
O
obscuren 已提交
122 123

	tstart := time.Now()
124 125 126 127 128 129 130 131 132
	ret, e := vmenv.Call(
		sender,
		receiver.Address(),
		common.Hex2Bytes(ctx.GlobalString(InputFlag.Name)),
		common.Big(ctx.GlobalString(GasFlag.Name)),
		common.Big(ctx.GlobalString(PriceFlag.Name)),
		common.Big(ctx.GlobalString(ValueFlag.Name)),
	)
	vmdone := time.Since(tstart)
O
obscuren 已提交
133

134
	if ctx.GlobalBool(DumpFlag.Name) {
O
obscuren 已提交
135
		fmt.Println(string(statedb.Dump()))
O
obscuren 已提交
136
	}
137 138
	vm.StdErrFormat(vmenv.StructLogs())

139 140 141 142 143
	if ctx.GlobalBool(SysStatFlag.Name) {
		var mem runtime.MemStats
		runtime.ReadMemStats(&mem)
		fmt.Printf("vm took %v\n", vmdone)
		fmt.Printf(`alloc:      %d
O
obscuren 已提交
144 145 146 147 148 149
tot alloc:  %d
no. malloc: %d
heap alloc: %d
heap objs:  %d
num gc:     %d
`, mem.Alloc, mem.TotalAlloc, mem.Mallocs, mem.HeapAlloc, mem.HeapObjects, mem.NumGC)
150
	}
O
obscuren 已提交
151

152 153 154 155 156
	fmt.Printf("OUT: 0x%x", ret)
	if e != nil {
		fmt.Printf(" error: %v", e)
	}
	fmt.Println()
157 158 159 160 161 162 163
}

func main() {
	if err := app.Run(os.Args); err != nil {
		fmt.Fprintln(os.Stderr, err)
		os.Exit(1)
	}
O
obscuren 已提交
164 165
}

O
obscuren 已提交
166
type VMEnv struct {
O
obscuren 已提交
167
	state *state.StateDB
O
obscuren 已提交
168 169
	block *types.Block

O
obscuren 已提交
170
	transactor *common.Address
O
obscuren 已提交
171 172 173 174
	value      *big.Int

	depth int
	Gas   *big.Int
175
	time  *big.Int
O
obscuren 已提交
176
	logs  []vm.StructLog
O
obscuren 已提交
177 178
}

O
obscuren 已提交
179
func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VMEnv {
O
obscuren 已提交
180 181
	return &VMEnv{
		state:      state,
O
obscuren 已提交
182
		transactor: &transactor,
O
obscuren 已提交
183
		value:      value,
184
		time:       big.NewInt(time.Now().Unix()),
O
obscuren 已提交
185 186 187
	}
}

188 189 190 191 192 193 194 195 196 197 198 199 200 201
func (self *VMEnv) Db() vm.Database            { return self.state }
func (self *VMEnv) MakeSnapshot() vm.Database  { return self.state.Copy() }
func (self *VMEnv) SetSnapshot(db vm.Database) { self.state.Set(db.(*state.StateDB)) }
func (self *VMEnv) Origin() common.Address     { return *self.transactor }
func (self *VMEnv) BlockNumber() *big.Int      { return common.Big0 }
func (self *VMEnv) Coinbase() common.Address   { return *self.transactor }
func (self *VMEnv) Time() *big.Int             { return self.time }
func (self *VMEnv) Difficulty() *big.Int       { return common.Big1 }
func (self *VMEnv) BlockHash() []byte          { return make([]byte, 32) }
func (self *VMEnv) Value() *big.Int            { return self.value }
func (self *VMEnv) GasLimit() *big.Int         { return big.NewInt(1000000000) }
func (self *VMEnv) VmType() vm.Type            { return vm.StdVmTy }
func (self *VMEnv) Depth() int                 { return 0 }
func (self *VMEnv) SetDepth(i int)             { self.depth = i }
O
obscuren 已提交
202
func (self *VMEnv) GetHash(n uint64) common.Hash {
203 204 205
	if self.block.Number().Cmp(big.NewInt(int64(n))) == 0 {
		return self.block.Hash()
	}
O
obscuren 已提交
206
	return common.Hash{}
207
}
O
obscuren 已提交
208 209 210 211 212 213
func (self *VMEnv) AddStructLog(log vm.StructLog) {
	self.logs = append(self.logs, log)
}
func (self *VMEnv) StructLogs() []vm.StructLog {
	return self.logs
}
214
func (self *VMEnv) AddLog(log *vm.Log) {
O
obscuren 已提交
215 216
	self.state.AddLog(log)
}
217 218
func (self *VMEnv) CanTransfer(from common.Address, balance *big.Int) bool {
	return self.state.GetBalance(from).Cmp(balance) >= 0
219
}
220 221
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
	core.Transfer(from, to, amount)
O
obscuren 已提交
222 223
}

224 225 226
func (self *VMEnv) Call(caller vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
	self.Gas = gas
	return core.Call(self, caller, addr, data, gas, price, value)
O
obscuren 已提交
227
}
228 229
func (self *VMEnv) CallCode(caller vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
	return core.CallCode(self, caller, addr, data, gas, price, value)
O
obscuren 已提交
230 231
}

232 233
func (self *VMEnv) Create(caller vm.ContractRef, data []byte, gas, price, value *big.Int) ([]byte, common.Address, error) {
	return core.Create(self, caller, data, gas, price, value)
O
obscuren 已提交
234
}