main.go 7.78 KB
Newer Older
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
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/>.
obscuren's avatar
obscuren committed
16

17
// evm executes EVM code snippets.
obscuren's avatar
obscuren committed
18 19 20 21 22 23 24 25 26
package main

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

27
	"github.com/ethereum/go-ethereum/cmd/utils"
obscuren's avatar
obscuren committed
28
	"github.com/ethereum/go-ethereum/common"
obscuren's avatar
obscuren committed
29
	"github.com/ethereum/go-ethereum/core"
obscuren's avatar
obscuren committed
30
	"github.com/ethereum/go-ethereum/core/state"
obscuren's avatar
obscuren committed
31
	"github.com/ethereum/go-ethereum/core/types"
obscuren's avatar
obscuren committed
32
	"github.com/ethereum/go-ethereum/core/vm"
obscuren's avatar
obscuren committed
33
	"github.com/ethereum/go-ethereum/ethdb"
34
	"github.com/ethereum/go-ethereum/logger/glog"
35
	"gopkg.in/urfave/cli.v1"
obscuren's avatar
obscuren committed
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",
	}
87 88 89 90
	CreateFlag = cli.BoolFlag{
		Name:  "create",
		Usage: "indicates the action should be create rather than call",
	}
obscuren's avatar
obscuren committed
91 92
)

93 94 95
func init() {
	app = utils.NewApp("0.2", "the evm command line interface")
	app.Flags = []cli.Flag{
96
		CreateFlag,
97
		DebugFlag,
98
		VerbosityFlag,
99 100
		ForceJitFlag,
		DisableJitFlag,
101 102 103 104 105 106 107 108 109
		SysStatFlag,
		CodeFlag,
		GasFlag,
		PriceFlag,
		ValueFlag,
		DumpFlag,
		InputFlag,
	}
	app.Action = run
obscuren's avatar
obscuren committed
110 111
}

112
func run(ctx *cli.Context) error {
113
	glog.SetToStderr(true)
114
	glog.SetV(ctx.GlobalInt(VerbosityFlag.Name))
obscuren's avatar
obscuren committed
115

obscuren's avatar
obscuren committed
116
	db, _ := ethdb.NewMemDatabase()
117
	statedb, _ := state.New(common.Hash{}, db)
obscuren's avatar
obscuren committed
118
	sender := statedb.CreateAccount(common.StringToAddress("sender"))
obscuren's avatar
obscuren committed
119

120 121 122 123
	vmenv := NewEnv(statedb, common.StringToAddress("evmuser"), common.Big(ctx.GlobalString(ValueFlag.Name)), vm.Config{
		Debug:     ctx.GlobalBool(DebugFlag.Name),
		ForceJit:  ctx.GlobalBool(ForceJitFlag.Name),
		EnableJit: !ctx.GlobalBool(DisableJitFlag.Name),
124
	})
obscuren's avatar
obscuren committed
125 126

	tstart := time.Now()
127 128 129 130

	var (
		ret []byte
		err error
131
	)
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153

	if ctx.GlobalBool(CreateFlag.Name) {
		input := append(common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name)), common.Hex2Bytes(ctx.GlobalString(InputFlag.Name))...)
		ret, _, err = vmenv.Create(
			sender,
			input,
			common.Big(ctx.GlobalString(GasFlag.Name)),
			common.Big(ctx.GlobalString(PriceFlag.Name)),
			common.Big(ctx.GlobalString(ValueFlag.Name)),
		)
	} else {
		receiver := statedb.CreateAccount(common.StringToAddress("receiver"))
		receiver.SetCode(common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name)))
		ret, err = 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)),
		)
	}
154
	vmdone := time.Since(tstart)
obscuren's avatar
obscuren committed
155

156
	if ctx.GlobalBool(DumpFlag.Name) {
157
		statedb.Commit()
obscuren's avatar
obscuren committed
158
		fmt.Println(string(statedb.Dump()))
obscuren's avatar
obscuren committed
159
	}
160 161
	vm.StdErrFormat(vmenv.StructLogs())

162 163 164 165 166
	if ctx.GlobalBool(SysStatFlag.Name) {
		var mem runtime.MemStats
		runtime.ReadMemStats(&mem)
		fmt.Printf("vm took %v\n", vmdone)
		fmt.Printf(`alloc:      %d
obscuren's avatar
obscuren committed
167 168 169 170 171 172
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)
173
	}
obscuren's avatar
obscuren committed
174

175
	fmt.Printf("OUT: 0x%x", ret)
176 177
	if err != nil {
		fmt.Printf(" error: %v", err)
178 179
	}
	fmt.Println()
180
	return nil
181 182 183 184 185 186 187
}

func main() {
	if err := app.Run(os.Args); err != nil {
		fmt.Fprintln(os.Stderr, err)
		os.Exit(1)
	}
obscuren's avatar
obscuren committed
188 189
}

obscuren's avatar
obscuren committed
190
type VMEnv struct {
obscuren's avatar
obscuren committed
191
	state *state.StateDB
obscuren's avatar
obscuren committed
192 193
	block *types.Block

obscuren's avatar
obscuren committed
194
	transactor *common.Address
obscuren's avatar
obscuren committed
195 196 197 198
	value      *big.Int

	depth int
	Gas   *big.Int
199
	time  *big.Int
200
	logs  []vm.StructLog
201

202
	evm *vm.EVM
obscuren's avatar
obscuren committed
203 204
}

205
func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int, cfg vm.Config) *VMEnv {
206
	env := &VMEnv{
obscuren's avatar
obscuren committed
207
		state:      state,
obscuren's avatar
obscuren committed
208
		transactor: &transactor,
obscuren's avatar
obscuren committed
209
		value:      value,
210
		time:       big.NewInt(time.Now().Unix()),
obscuren's avatar
obscuren committed
211
	}
212 213 214
	cfg.Logger.Collector = env

	env.evm = vm.New(env, cfg)
215
	return env
obscuren's avatar
obscuren committed
216 217
}

218 219 220 221 222
// ruleSet implements vm.RuleSet and will always default to the homestead rule set.
type ruleSet struct{}

func (ruleSet) IsHomestead(*big.Int) bool { return true }

223
func (self *VMEnv) MarkCodeHash(common.Hash)   {}
224
func (self *VMEnv) RuleSet() vm.RuleSet        { return ruleSet{} }
225
func (self *VMEnv) Vm() vm.Vm                  { return self.evm }
226 227 228 229 230 231 232 233 234 235 236 237 238 239
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 }
obscuren's avatar
obscuren committed
240
func (self *VMEnv) GetHash(n uint64) common.Hash {
241 242 243
	if self.block.Number().Cmp(big.NewInt(int64(n))) == 0 {
		return self.block.Hash()
	}
obscuren's avatar
obscuren committed
244
	return common.Hash{}
245
}
246 247 248 249 250 251
func (self *VMEnv) AddStructLog(log vm.StructLog) {
	self.logs = append(self.logs, log)
}
func (self *VMEnv) StructLogs() []vm.StructLog {
	return self.logs
}
252
func (self *VMEnv) AddLog(log *vm.Log) {
obscuren's avatar
obscuren committed
253 254
	self.state.AddLog(log)
}
255 256
func (self *VMEnv) CanTransfer(from common.Address, balance *big.Int) bool {
	return self.state.GetBalance(from).Cmp(balance) >= 0
257
}
258 259
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
	core.Transfer(from, to, amount)
obscuren's avatar
obscuren committed
260 261
}

262 263 264
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)
obscuren's avatar
obscuren committed
265
}
266

267 268
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)
obscuren's avatar
obscuren committed
269 270
}

271 272 273 274
func (self *VMEnv) DelegateCall(caller vm.ContractRef, addr common.Address, data []byte, gas, price *big.Int) ([]byte, error) {
	return core.DelegateCall(self, caller, addr, data, gas, price)
}

275 276
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)
obscuren's avatar
obscuren committed
277
}