| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // 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 | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 05:08:16 +02:00
										 |  |  | // evm executes EVM code snippets. | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"math/big" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"runtime" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	"github.com/codegangsta/cli" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/cmd/utils" | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core" | 
					
						
							| 
									
										
										
										
											2015-03-24 15:27:05 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/state" | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2015-03-24 15:27:05 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/vm" | 
					
						
							| 
									
										
										
										
											2014-11-10 12:42:16 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethdb" | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/logger/glog" | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	app       *cli.App | 
					
						
							|  |  |  | 	DebugFlag = cli.BoolFlag{ | 
					
						
							|  |  |  | 		Name:  "debug", | 
					
						
							|  |  |  | 		Usage: "output full trace logs", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 	ForceJitFlag = cli.BoolFlag{ | 
					
						
							|  |  |  | 		Name:  "forcejit", | 
					
						
							|  |  |  | 		Usage: "forces jit compilation", | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	DisableJitFlag = cli.BoolFlag{ | 
					
						
							|  |  |  | 		Name:  "nojit", | 
					
						
							|  |  |  | 		Usage: "disabled jit compilation", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	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", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	VerbosityFlag = cli.IntFlag{ | 
					
						
							|  |  |  | 		Name:  "verbosity", | 
					
						
							|  |  |  | 		Usage: "sets the verbosity level", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | func init() { | 
					
						
							|  |  |  | 	app = utils.NewApp("0.2", "the evm command line interface") | 
					
						
							|  |  |  | 	app.Flags = []cli.Flag{ | 
					
						
							|  |  |  | 		DebugFlag, | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 		VerbosityFlag, | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 		ForceJitFlag, | 
					
						
							|  |  |  | 		DisableJitFlag, | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 		SysStatFlag, | 
					
						
							|  |  |  | 		CodeFlag, | 
					
						
							|  |  |  | 		GasFlag, | 
					
						
							|  |  |  | 		PriceFlag, | 
					
						
							|  |  |  | 		ValueFlag, | 
					
						
							|  |  |  | 		DumpFlag, | 
					
						
							|  |  |  | 		InputFlag, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	app.Action = run | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | func run(ctx *cli.Context) { | 
					
						
							|  |  |  | 	vm.Debug = ctx.GlobalBool(DebugFlag.Name) | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 	vm.ForceJit = ctx.GlobalBool(ForceJitFlag.Name) | 
					
						
							| 
									
										
										
										
											2015-08-11 00:27:30 +02:00
										 |  |  | 	vm.EnableJit = !ctx.GlobalBool(DisableJitFlag.Name) | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	glog.SetToStderr(true) | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	glog.SetV(ctx.GlobalInt(VerbosityFlag.Name)) | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	db, _ := ethdb.NewMemDatabase() | 
					
						
							| 
									
										
										
										
											2015-10-06 16:35:55 +02:00
										 |  |  | 	statedb, _ := state.New(common.Hash{}, db) | 
					
						
							| 
									
										
										
										
											2015-04-01 11:42:02 +02:00
										 |  |  | 	sender := statedb.CreateAccount(common.StringToAddress("sender")) | 
					
						
							|  |  |  | 	receiver := statedb.CreateAccount(common.StringToAddress("receiver")) | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	receiver.SetCode(common.Hex2Bytes(ctx.GlobalString(CodeFlag.Name))) | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	vmenv := NewEnv(statedb, common.StringToAddress("evmuser"), common.Big(ctx.GlobalString(ValueFlag.Name))) | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tstart := time.Now() | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	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) | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	if ctx.GlobalBool(DumpFlag.Name) { | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 		fmt.Println(string(statedb.Dump())) | 
					
						
							| 
									
										
										
										
											2014-11-10 12:42:16 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 21:09:12 +02:00
										 |  |  | 	vm.StdErrFormat(vmenv.StructLogs()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	if ctx.GlobalBool(SysStatFlag.Name) { | 
					
						
							|  |  |  | 		var mem runtime.MemStats | 
					
						
							|  |  |  | 		runtime.ReadMemStats(&mem) | 
					
						
							|  |  |  | 		fmt.Printf("vm took %v\n", vmdone) | 
					
						
							|  |  |  | 		fmt.Printf(`alloc:      %d | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 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) | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 	fmt.Printf("OUT: 0x%x", ret) | 
					
						
							|  |  |  | 	if e != nil { | 
					
						
							|  |  |  | 		fmt.Printf(" error: %v", e) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fmt.Println() | 
					
						
							| 
									
										
										
										
											2015-07-17 15:43:16 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func main() { | 
					
						
							|  |  |  | 	if err := app.Run(os.Args); err != nil { | 
					
						
							|  |  |  | 		fmt.Fprintln(os.Stderr, err) | 
					
						
							|  |  |  | 		os.Exit(1) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | type VMEnv struct { | 
					
						
							| 
									
										
										
										
											2014-12-04 12:09:22 +01:00
										 |  |  | 	state *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	block *types.Block | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | 	transactor *common.Address | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	value      *big.Int | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	depth int | 
					
						
							|  |  |  | 	Gas   *big.Int | 
					
						
							| 
									
										
										
										
											2015-08-24 02:52:53 +02:00
										 |  |  | 	time  *big.Int | 
					
						
							| 
									
										
										
										
											2015-06-10 16:46:43 +02:00
										 |  |  | 	logs  []vm.StructLog | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VMEnv { | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	return &VMEnv{ | 
					
						
							|  |  |  | 		state:      state, | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | 		transactor: &transactor, | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 		value:      value, | 
					
						
							| 
									
										
										
										
											2015-08-24 02:52:53 +02:00
										 |  |  | 		time:       big.NewInt(time.Now().Unix()), | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 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 } | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | func (self *VMEnv) GetHash(n uint64) common.Hash { | 
					
						
							| 
									
										
										
										
											2015-01-06 11:07:05 +01:00
										 |  |  | 	if self.block.Number().Cmp(big.NewInt(int64(n))) == 0 { | 
					
						
							|  |  |  | 		return self.block.Hash() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-22 12:12:29 +01:00
										 |  |  | 	return common.Hash{} | 
					
						
							| 
									
										
										
										
											2015-01-06 11:07:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-10 16:46:43 +02:00
										 |  |  | func (self *VMEnv) AddStructLog(log vm.StructLog) { | 
					
						
							|  |  |  | 	self.logs = append(self.logs, log) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | func (self *VMEnv) StructLogs() []vm.StructLog { | 
					
						
							|  |  |  | 	return self.logs | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | func (self *VMEnv) AddLog(log *vm.Log) { | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | 	self.state.AddLog(log) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | func (self *VMEnv) CanTransfer(from common.Address, balance *big.Int) bool { | 
					
						
							|  |  |  | 	return self.state.GetBalance(from).Cmp(balance) >= 0 | 
					
						
							| 
									
										
										
										
											2015-08-02 02:20:41 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-10-06 12:35:05 +02:00
										 |  |  | func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) { | 
					
						
							|  |  |  | 	core.Transfer(from, to, amount) | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 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) | 
					
						
							| 
									
										
										
										
											2014-12-04 11:30:41 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-11-27 15:40:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 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) | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-27 15:40:29 +01:00
										 |  |  | 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) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 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) | 
					
						
							| 
									
										
										
										
											2014-11-10 11:47:37 +01:00
										 |  |  | } |