quorum/tests/helper/vm.go

214 lines
6.4 KiB
Go
Raw Normal View History

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