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"
|
|
|
|
|
2014-12-04 01:53:49 -08:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2014-12-01 15:03:53 -08:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2014-10-23 06:01:27 -07:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2014-10-31 10:40:32 -07:00
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-10-23 06:01:27 -07:00
|
|
|
"github.com/ethereum/go-ethereum/vm"
|
2014-10-14 15:41:00 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
type Env struct {
|
2014-12-03 08:06:54 -08:00
|
|
|
depth int
|
2014-12-04 02:40:20 -08:00
|
|
|
state *state.StateDB
|
2014-12-03 08:06:54 -08:00
|
|
|
skipTransfer bool
|
2015-01-12 15:25:45 -08:00
|
|
|
initial bool
|
2014-12-03 08:06:54 -08:00
|
|
|
Gas *big.Int
|
2014-10-14 15:41:00 -07:00
|
|
|
|
|
|
|
origin []byte
|
|
|
|
parent []byte
|
|
|
|
coinbase []byte
|
|
|
|
|
|
|
|
number *big.Int
|
|
|
|
time int64
|
|
|
|
difficulty *big.Int
|
2014-10-16 09:27:05 -07:00
|
|
|
gasLimit *big.Int
|
2014-12-03 03:21:12 -08:00
|
|
|
|
|
|
|
logs state.Logs
|
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)
|
|
|
|
|
|
|
|
env.origin = ethutil.Hex2Bytes(exeValues["caller"])
|
|
|
|
env.parent = ethutil.Hex2Bytes(envValues["previousHash"])
|
|
|
|
env.coinbase = ethutil.Hex2Bytes(envValues["currentCoinbase"])
|
|
|
|
env.number = ethutil.Big(envValues["currentNumber"])
|
2014-10-16 09:27:05 -07:00
|
|
|
env.time = ethutil.Big(envValues["currentTimestamp"]).Int64()
|
|
|
|
env.difficulty = ethutil.Big(envValues["currentDifficulty"])
|
|
|
|
env.gasLimit = ethutil.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
|
|
|
|
}
|
|
|
|
|
2014-10-31 10:40:32 -07:00
|
|
|
func (self *Env) Origin() []byte { return self.origin }
|
|
|
|
func (self *Env) BlockNumber() *big.Int { return self.number }
|
|
|
|
func (self *Env) PrevHash() []byte { return self.parent }
|
|
|
|
func (self *Env) Coinbase() []byte { return self.coinbase }
|
|
|
|
func (self *Env) Time() int64 { return self.time }
|
|
|
|
func (self *Env) Difficulty() *big.Int { return self.difficulty }
|
2014-12-04 02:40:20 -08:00
|
|
|
func (self *Env) State() *state.StateDB { return self.state }
|
2014-10-31 10:40:32 -07:00
|
|
|
func (self *Env) GasLimit() *big.Int { return self.gasLimit }
|
2015-02-01 06:29:57 -08:00
|
|
|
func (self *Env) VmType() vm.Type { return vm.StdVmTy }
|
2015-01-03 08:18:43 -08:00
|
|
|
func (self *Env) GetHash(n uint64) []byte {
|
2015-01-12 04:49:47 -08:00
|
|
|
return crypto.Sha3([]byte(big.NewInt(int64(n)).String()))
|
2015-01-03 08:18:43 -08:00
|
|
|
}
|
2014-12-04 03:35:23 -08:00
|
|
|
func (self *Env) AddLog(log state.Log) {
|
2014-12-03 03:21:12 -08:00
|
|
|
self.logs = append(self.logs, log)
|
|
|
|
}
|
2014-12-03 08:06:54 -08:00
|
|
|
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
|
|
|
}
|
2014-10-22 16:01:26 -07:00
|
|
|
return vm.Transfer(from, to, amount)
|
2014-10-22 06:22:21 -07:00
|
|
|
}
|
2014-10-14 15:41:00 -07:00
|
|
|
|
2014-12-04 01:53:49 -08:00
|
|
|
func (self *Env) vm(addr, 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)
|
2014-12-03 08:06:54 -08:00
|
|
|
|
|
|
|
return exec
|
|
|
|
}
|
|
|
|
|
2015-01-02 07:14:12 -08:00
|
|
|
func (self *Env) Call(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) {
|
2014-12-03 08:06:54 -08:00
|
|
|
exe := self.vm(addr, data, gas, price, value)
|
|
|
|
ret, err := exe.Call(addr, caller)
|
|
|
|
self.Gas = exe.Gas
|
|
|
|
|
|
|
|
return ret, err
|
|
|
|
}
|
2015-01-02 07:14:12 -08:00
|
|
|
func (self *Env) CallCode(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) {
|
2014-12-03 08:06:54 -08:00
|
|
|
exe := self.vm(caller.Address(), data, gas, price, value)
|
|
|
|
return exe.Call(addr, caller)
|
|
|
|
}
|
|
|
|
|
2015-01-02 07:14:12 -08:00
|
|
|
func (self *Env) Create(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, vm.ContextRef) {
|
2014-12-03 08:06:54 -08:00
|
|
|
exe := self.vm(addr, data, gas, price, value)
|
|
|
|
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) {
|
2014-12-03 08:06:54 -08:00
|
|
|
var (
|
|
|
|
to = FromHex(exec["address"])
|
|
|
|
from = FromHex(exec["caller"])
|
|
|
|
data = FromHex(exec["data"])
|
|
|
|
gas = ethutil.Big(exec["gas"])
|
|
|
|
price = ethutil.Big(exec["gasPrice"])
|
|
|
|
value = ethutil.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)
|
2014-12-03 08:06:54 -08:00
|
|
|
|
|
|
|
caller := state.GetOrNewStateObject(from)
|
2014-10-14 15:41:00 -07:00
|
|
|
|
2014-12-03 03:21:12 -08:00
|
|
|
vmenv := NewEnvFromMap(state, env, exec)
|
2014-12-03 08:06:54 -08:00
|
|
|
vmenv.skipTransfer = true
|
2015-01-12 15:25:45 -08:00
|
|
|
vmenv.initial = true
|
2014-12-03 08:06:54 -08:00
|
|
|
ret, err := vmenv.Call(caller, to, data, gas, price, value)
|
2014-10-16 09:27:05 -07:00
|
|
|
|
2014-12-03 08:06:54 -08: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) {
|
2014-12-03 08:06:54 -08:00
|
|
|
var (
|
|
|
|
keyPair, _ = crypto.NewKeyPairFromSec([]byte(ethutil.Hex2Bytes(tx["secretKey"])))
|
|
|
|
to = FromHex(tx["to"])
|
|
|
|
data = FromHex(tx["data"])
|
|
|
|
gas = ethutil.Big(tx["gasLimit"])
|
|
|
|
price = ethutil.Big(tx["gasPrice"])
|
|
|
|
value = ethutil.Big(tx["value"])
|
2014-12-18 12:58:26 -08:00
|
|
|
caddr = FromHex(env["currentCoinbase"])
|
2014-12-03 08:06:54 -08:00
|
|
|
)
|
|
|
|
|
2015-01-13 01:30:52 -08:00
|
|
|
// Set pre compiled contracts
|
|
|
|
vm.Precompiled = vm.PrecompiledContracts()
|
|
|
|
|
2014-12-18 12:58:26 -08:00
|
|
|
coinbase := statedb.GetOrNewStateObject(caddr)
|
|
|
|
coinbase.SetGasPool(ethutil.Big(env["currentGasLimit"]))
|
2014-12-01 15:03:53 -08:00
|
|
|
|
2014-12-18 12:58:26 -08:00
|
|
|
message := NewMessage(keyPair.Address(), to, data, value, gas, price)
|
|
|
|
vmenv := NewEnvFromMap(statedb, env, tx)
|
2015-01-03 08:18:43 -08:00
|
|
|
st := core.NewStateTransition(vmenv, message, coinbase)
|
2014-12-18 12:58:26 -08:00
|
|
|
vmenv.origin = keyPair.Address()
|
|
|
|
ret, err := st.TransitionState()
|
|
|
|
statedb.Update(vmenv.Gas)
|
2014-12-01 15:03:53 -08:00
|
|
|
|
2014-12-03 08:06:54 -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 {
|
|
|
|
from, to []byte
|
|
|
|
value, gas, price *big.Int
|
|
|
|
data []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMessage(from, to, data []byte, value, gas, price *big.Int) Message {
|
|
|
|
return Message{from, to, value, gas, price, data}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self Message) Hash() []byte { return nil }
|
|
|
|
func (self Message) From() []byte { return self.from }
|
|
|
|
func (self Message) To() []byte { 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 }
|