main.go 5.96 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 28
	"github.com/codegangsta/cli"
	"github.com/ethereum/go-ethereum/cmd/utils"
obscuren's avatar
obscuren committed
29
	"github.com/ethereum/go-ethereum/common"
obscuren's avatar
obscuren committed
30
	"github.com/ethereum/go-ethereum/core"
obscuren's avatar
obscuren committed
31
	"github.com/ethereum/go-ethereum/core/state"
obscuren's avatar
obscuren committed
32
	"github.com/ethereum/go-ethereum/core/types"
obscuren's avatar
obscuren committed
33
	"github.com/ethereum/go-ethereum/core/vm"
obscuren's avatar
obscuren committed
34
	"github.com/ethereum/go-ethereum/ethdb"
obscuren's avatar
obscuren committed
35 36 37
)

var (
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
	app       *cli.App
	DebugFlag = cli.BoolFlag{
		Name:  "debug",
		Usage: "output full trace logs",
	}
	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",
	}
obscuren's avatar
obscuren committed
74 75
)

76 77 78 79 80 81 82 83 84 85 86 87 88
func init() {
	app = utils.NewApp("0.2", "the evm command line interface")
	app.Flags = []cli.Flag{
		DebugFlag,
		SysStatFlag,
		CodeFlag,
		GasFlag,
		PriceFlag,
		ValueFlag,
		DumpFlag,
		InputFlag,
	}
	app.Action = run
obscuren's avatar
obscuren committed
89 90
}

91 92
func run(ctx *cli.Context) {
	vm.Debug = ctx.GlobalBool(DebugFlag.Name)
obscuren's avatar
obscuren committed
93

obscuren's avatar
obscuren committed
94
	db, _ := ethdb.NewMemDatabase()
obscuren's avatar
obscuren committed
95
	statedb := state.New(common.Hash{}, db)
obscuren's avatar
obscuren committed
96 97
	sender := statedb.CreateAccount(common.StringToAddress("sender"))
	receiver := statedb.CreateAccount(common.StringToAddress("receiver"))
98
	receiver.SetCode(common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name)))
obscuren's avatar
obscuren committed
99

100
	vmenv := NewEnv(statedb, common.StringToAddress("evmuser"), common.Big(ctx.GlobalString(ValueFlag.Name)))
obscuren's avatar
obscuren committed
101 102

	tstart := time.Now()
103 104 105 106 107 108 109 110 111
	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)
obscuren's avatar
obscuren committed
112 113

	if e != nil {
114 115
		fmt.Println(e)
		os.Exit(1)
obscuren's avatar
obscuren committed
116 117
	}

118
	if ctx.GlobalBool(DumpFlag.Name) {
obscuren's avatar
obscuren committed
119
		fmt.Println(string(statedb.Dump()))
obscuren's avatar
obscuren committed
120
	}
121 122
	vm.StdErrFormat(vmenv.StructLogs())

123 124 125 126 127
	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
128 129 130 131 132 133
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)
134
	}
obscuren's avatar
obscuren committed
135

136 137 138 139 140 141 142 143
	fmt.Printf("OUT: 0x%x\n", ret)
}

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

obscuren's avatar
obscuren committed
146
type VMEnv struct {
obscuren's avatar
obscuren committed
147
	state *state.StateDB
obscuren's avatar
obscuren committed
148 149
	block *types.Block

obscuren's avatar
obscuren committed
150
	transactor *common.Address
obscuren's avatar
obscuren committed
151 152 153 154
	value      *big.Int

	depth int
	Gas   *big.Int
155
	time  uint64
156
	logs  []vm.StructLog
obscuren's avatar
obscuren committed
157 158
}

obscuren's avatar
obscuren committed
159
func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VMEnv {
obscuren's avatar
obscuren committed
160 161
	return &VMEnv{
		state:      state,
obscuren's avatar
obscuren committed
162
		transactor: &transactor,
obscuren's avatar
obscuren committed
163
		value:      value,
164
		time:       uint64(time.Now().Unix()),
obscuren's avatar
obscuren committed
165 166 167
	}
}

obscuren's avatar
obscuren committed
168 169 170 171
func (self *VMEnv) State() *state.StateDB    { return self.state }
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 }
172
func (self *VMEnv) Time() uint64             { return self.time }
obscuren's avatar
obscuren committed
173 174 175 176 177 178 179 180
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 }
func (self *VMEnv) GetHash(n uint64) common.Hash {
181 182 183
	if self.block.Number().Cmp(big.NewInt(int64(n))) == 0 {
		return self.block.Hash()
	}
obscuren's avatar
obscuren committed
184
	return common.Hash{}
185
}
186 187 188 189 190 191
func (self *VMEnv) AddStructLog(log vm.StructLog) {
	self.logs = append(self.logs, log)
}
func (self *VMEnv) StructLogs() []vm.StructLog {
	return self.logs
}
192
func (self *VMEnv) AddLog(log *state.Log) {
obscuren's avatar
obscuren committed
193 194 195 196 197 198
	self.state.AddLog(log)
}
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {
	return vm.Transfer(from, to, amount)
}

obscuren's avatar
obscuren committed
199
func (self *VMEnv) vm(addr *common.Address, data []byte, gas, price, value *big.Int) *core.Execution {
200
	return core.NewExecution(self, addr, data, gas, price, value)
obscuren's avatar
obscuren committed
201 202
}

obscuren's avatar
obscuren committed
203 204
func (self *VMEnv) Call(caller vm.ContextRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
	exe := self.vm(&addr, data, gas, price, value)
obscuren's avatar
obscuren committed
205 206 207 208 209
	ret, err := exe.Call(addr, caller)
	self.Gas = exe.Gas

	return ret, err
}
obscuren's avatar
obscuren committed
210 211 212
func (self *VMEnv) CallCode(caller vm.ContextRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
	a := caller.Address()
	exe := self.vm(&a, data, gas, price, value)
obscuren's avatar
obscuren committed
213
	return exe.Call(addr, caller)
obscuren's avatar
obscuren committed
214 215
}

obscuren's avatar
obscuren committed
216 217
func (self *VMEnv) Create(caller vm.ContextRef, data []byte, gas, price, value *big.Int) ([]byte, error, vm.ContextRef) {
	exe := self.vm(nil, data, gas, price, value)
obscuren's avatar
obscuren committed
218
	return exe.Create(caller)
obscuren's avatar
obscuren committed
219
}