| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | package helper | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-01-12 14:40:40 +01:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 	"math/big" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2014-12-04 10:53:49 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core" | 
					
						
							| 
									
										
										
										
											2015-03-23 16:59:09 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/state" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/core/vm" | 
					
						
							| 
									
										
										
										
											2015-03-24 15:15:17 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Env struct { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	depth        int | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	state        *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	skipTransfer bool | 
					
						
							| 
									
										
										
										
											2015-01-13 00:25:45 +01:00
										 |  |  | 	initial      bool | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	Gas          *big.Int | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	origin common.Address | 
					
						
							|  |  |  | 	//parent   common.Hash | 
					
						
							|  |  |  | 	coinbase common.Address | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	number     *big.Int | 
					
						
							|  |  |  | 	time       int64 | 
					
						
							|  |  |  | 	difficulty *big.Int | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | 	gasLimit   *big.Int | 
					
						
							| 
									
										
										
										
											2014-12-03 12:21:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	logs state.Logs | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	vmTest bool | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func NewEnv(state *state.StateDB) *Env { | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 	return &Env{ | 
					
						
							|  |  |  | 		state: state, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func NewEnvFromMap(state *state.StateDB, envValues map[string]string, exeValues map[string]string) *Env { | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 	env := NewEnv(state) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	env.origin = common.HexToAddress(exeValues["caller"]) | 
					
						
							|  |  |  | 	//env.parent = common.Hex2Bytes(envValues["previousHash"]) | 
					
						
							|  |  |  | 	env.coinbase = common.HexToAddress(envValues["currentCoinbase"]) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	env.number = common.Big(envValues["currentNumber"]) | 
					
						
							|  |  |  | 	env.time = common.Big(envValues["currentTimestamp"]).Int64() | 
					
						
							|  |  |  | 	env.difficulty = common.Big(envValues["currentDifficulty"]) | 
					
						
							|  |  |  | 	env.gasLimit = common.Big(envValues["currentGasLimit"]) | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	env.Gas = new(big.Int) | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return env | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func (self *Env) Origin() common.Address { return self.origin } | 
					
						
							|  |  |  | func (self *Env) BlockNumber() *big.Int  { return self.number } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //func (self *Env) PrevHash() []byte      { return self.parent } | 
					
						
							|  |  |  | func (self *Env) Coinbase() common.Address { return self.coinbase } | 
					
						
							|  |  |  | func (self *Env) Time() int64              { return self.time } | 
					
						
							|  |  |  | func (self *Env) Difficulty() *big.Int     { return self.difficulty } | 
					
						
							|  |  |  | func (self *Env) State() *state.StateDB    { return self.state } | 
					
						
							|  |  |  | func (self *Env) GasLimit() *big.Int       { return self.gasLimit } | 
					
						
							|  |  |  | func (self *Env) VmType() vm.Type          { return vm.StdVmTy } | 
					
						
							|  |  |  | func (self *Env) GetHash(n uint64) common.Hash { | 
					
						
							|  |  |  | 	return common.BytesToHash(crypto.Sha3([]byte(big.NewInt(int64(n)).String()))) | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | func (self *Env) AddLog(log state.Log) { | 
					
						
							| 
									
										
										
										
											2014-12-03 12:21:12 +01:00
										 |  |  | 	self.logs = append(self.logs, log) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | func (self *Env) Depth() int     { return self.depth } | 
					
						
							|  |  |  | func (self *Env) SetDepth(i int) { self.depth = i } | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | func (self *Env) Transfer(from, to vm.Account, amount *big.Int) error { | 
					
						
							| 
									
										
										
										
											2015-01-12 14:40:40 +01:00
										 |  |  | 	if self.skipTransfer { | 
					
						
							| 
									
										
										
										
											2015-01-13 00:25:45 +01:00
										 |  |  | 		// ugly hack | 
					
						
							|  |  |  | 		if self.initial { | 
					
						
							|  |  |  | 			self.initial = false | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-12 14:40:40 +01:00
										 |  |  | 		if from.Balance().Cmp(amount) < 0 { | 
					
						
							|  |  |  | 			return errors.New("Insufficient balance in account") | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-01-13 00:25:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2015-01-12 14:40:40 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-23 01:01:26 +02:00
										 |  |  | 	return vm.Transfer(from, to, amount) | 
					
						
							| 
									
										
										
										
											2014-10-22 15:22:21 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func (self *Env) vm(addr *common.Address, data []byte, gas, price, value *big.Int) *core.Execution { | 
					
						
							| 
									
										
										
										
											2014-12-19 00:18:52 +01:00
										 |  |  | 	exec := core.NewExecution(self, addr, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return exec | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func (self *Env) Call(caller vm.ContextRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 	if self.vmTest && self.depth > 0 { | 
					
						
							|  |  |  | 		caller.ReturnGas(gas, price) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return nil, nil | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	exe := self.vm(&addr, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	ret, err := exe.Call(addr, caller) | 
					
						
							|  |  |  | 	self.Gas = exe.Gas | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret, err | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func (self *Env) CallCode(caller vm.ContextRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 	if self.vmTest && self.depth > 0 { | 
					
						
							|  |  |  | 		caller.ReturnGas(gas, price) | 
					
						
							| 
									
										
										
										
											2015-03-03 11:56:28 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return nil, nil | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	caddr := caller.Address() | 
					
						
							|  |  |  | 	exe := self.vm(&caddr, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	return exe.Call(addr, caller) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-24 15:23:16 +01:00
										 |  |  | func (self *Env) Create(caller vm.ContextRef, data []byte, gas, price, value *big.Int) ([]byte, error, vm.ContextRef) { | 
					
						
							|  |  |  | 	exe := self.vm(nil, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 	if self.vmTest { | 
					
						
							|  |  |  | 		caller.ReturnGas(gas, price) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		nonce := self.state.GetNonce(caller.Address()) | 
					
						
							|  |  |  | 		obj := self.state.GetOrNewStateObject(crypto.CreateAddress(caller.Address(), nonce)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return nil, nil, obj | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return exe.Create(caller) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func RunVm(state *state.StateDB, env, exec map[string]string) ([]byte, state.Logs, *big.Int, error) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 		to    = common.HexToAddress(exec["address"]) | 
					
						
							|  |  |  | 		from  = common.HexToAddress(exec["caller"]) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 		data  = FromHex(exec["data"]) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		gas   = common.Big(exec["gas"]) | 
					
						
							|  |  |  | 		price = common.Big(exec["gasPrice"]) | 
					
						
							|  |  |  | 		value = common.Big(exec["value"]) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	) | 
					
						
							| 
									
										
										
										
											2015-01-13 10:30:52 +01:00
										 |  |  | 	// Reset the pre-compiled contracts for VM tests. | 
					
						
							|  |  |  | 	vm.Precompiled = make(map[string]*vm.PrecompiledAccount) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	caller := state.GetOrNewStateObject(from) | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 12:21:12 +01:00
										 |  |  | 	vmenv := NewEnvFromMap(state, env, exec) | 
					
						
							| 
									
										
										
										
											2015-03-03 11:11:11 +01:00
										 |  |  | 	vmenv.vmTest = true | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	vmenv.skipTransfer = true | 
					
						
							| 
									
										
										
										
											2015-01-13 00:25:45 +01:00
										 |  |  | 	vmenv.initial = true | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	ret, err := vmenv.Call(caller, to, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	return ret, vmenv.logs, vmenv.Gas, err | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-02 00:03:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | func RunState(statedb *state.StateDB, env, tx map[string]string) ([]byte, state.Logs, *big.Int, error) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		keyPair, _ = crypto.NewKeyPairFromSec([]byte(common.Hex2Bytes(tx["secretKey"]))) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 		data       = FromHex(tx["data"]) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		gas        = common.Big(tx["gasLimit"]) | 
					
						
							|  |  |  | 		price      = common.Big(tx["gasPrice"]) | 
					
						
							|  |  |  | 		value      = common.Big(tx["value"]) | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 		caddr      = common.HexToAddress(env["currentCoinbase"]) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	var to *common.Address | 
					
						
							|  |  |  | 	if len(tx["to"]) > 2 { | 
					
						
							|  |  |  | 		t := common.HexToAddress(tx["to"]) | 
					
						
							|  |  |  | 		to = &t | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-13 10:30:52 +01:00
										 |  |  | 	// Set pre compiled contracts | 
					
						
							|  |  |  | 	vm.Precompiled = vm.PrecompiledContracts() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-03 16:20:38 +01:00
										 |  |  | 	snapshot := statedb.Copy() | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	coinbase := statedb.GetOrNewStateObject(caddr) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	coinbase.SetGasPool(common.Big(env["currentGasLimit"])) | 
					
						
							| 
									
										
										
										
											2014-12-02 00:03:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	message := NewMessage(common.BytesToAddress(keyPair.Address()), to, data, value, gas, price) | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	vmenv := NewEnvFromMap(statedb, env, tx) | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	vmenv.origin = common.BytesToAddress(keyPair.Address()) | 
					
						
							| 
									
										
										
										
											2015-03-12 22:29:10 +01:00
										 |  |  | 	ret, _, err := core.ApplyMessage(vmenv, message, coinbase) | 
					
						
							| 
									
										
										
										
											2015-03-03 16:20:38 +01:00
										 |  |  | 	if core.IsNonceErr(err) || core.IsInvalidTxErr(err) { | 
					
						
							|  |  |  | 		statedb.Set(snapshot) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	statedb.Update(vmenv.Gas) | 
					
						
							| 
									
										
										
										
											2014-12-02 00:03:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 17:06:54 +01:00
										 |  |  | 	return ret, vmenv.logs, vmenv.Gas, err | 
					
						
							| 
									
										
										
										
											2014-12-02 00:03:53 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | type Message struct { | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | 	from              common.Address | 
					
						
							|  |  |  | 	to                *common.Address | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	value, gas, price *big.Int | 
					
						
							|  |  |  | 	data              []byte | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func NewMessage(from common.Address, to *common.Address, data []byte, value, gas, price *big.Int) Message { | 
					
						
							| 
									
										
										
										
											2014-12-18 21:58:26 +01:00
										 |  |  | 	return Message{from, to, value, gas, price, data} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 12:56:29 +01:00
										 |  |  | func (self Message) Hash() []byte                  { return nil } | 
					
						
							|  |  |  | func (self Message) From() (common.Address, error) { return self.from, nil } | 
					
						
							|  |  |  | func (self Message) To() *common.Address           { return self.to } | 
					
						
							|  |  |  | func (self Message) GasPrice() *big.Int            { return self.price } | 
					
						
							|  |  |  | func (self Message) Gas() *big.Int                 { return self.gas } | 
					
						
							|  |  |  | func (self Message) Value() *big.Int               { return self.value } | 
					
						
							|  |  |  | func (self Message) Nonce() uint64                 { return 0 } | 
					
						
							|  |  |  | func (self Message) Data() []byte                  { return self.data } |