2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-12-03 16:06:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
2014-12-20 01:21:13 +00:00
|
|
|
"time"
|
2014-12-03 16:06:54 +00:00
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-23 15:59:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2015-03-24 10:49:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2014-12-03 16:06:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Execution struct {
|
2015-03-28 19:03:25 +00:00
|
|
|
env vm.Environment
|
|
|
|
address *common.Address
|
|
|
|
input []byte
|
|
|
|
evm vm.VirtualMachine
|
|
|
|
|
2014-12-03 16:06:54 +00:00
|
|
|
Gas, price, value *big.Int
|
|
|
|
}
|
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
func NewExecution(env vm.Environment, address *common.Address, input []byte, gas, gasPrice, value *big.Int) *Execution {
|
2015-03-28 19:03:25 +00:00
|
|
|
exe := &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
|
|
|
|
exe.evm = vm.NewVm(env)
|
|
|
|
return exe
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
func (self *Execution) Call(codeAddr common.Address, caller vm.ContextRef) ([]byte, error) {
|
2014-12-03 16:06:54 +00:00
|
|
|
// Retrieve the executing code
|
2015-03-12 22:26:58 +00:00
|
|
|
code := self.env.State().GetCode(codeAddr)
|
2014-12-03 16:06:54 +00:00
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
return self.exec(&codeAddr, code, caller)
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 19:03:25 +00:00
|
|
|
func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
|
|
|
|
ret, err = self.exec(nil, self.input, caller)
|
|
|
|
account = self.env.State().GetStateObject(*self.address)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.ContextRef) (ret []byte, err error) {
|
2015-03-24 10:49:30 +00:00
|
|
|
start := time.Now()
|
|
|
|
|
2014-12-18 23:23:00 +00:00
|
|
|
env := self.env
|
2015-03-28 19:03:25 +00:00
|
|
|
evm := self.evm
|
2014-12-18 23:23:00 +00:00
|
|
|
if env.Depth() == vm.MaxCallDepth {
|
2015-01-05 16:37:30 +00:00
|
|
|
caller.ReturnGas(self.Gas, self.price)
|
|
|
|
|
2014-12-17 22:58:52 +00:00
|
|
|
return nil, vm.DepthError{}
|
|
|
|
}
|
|
|
|
|
2015-03-24 14:15:17 +00:00
|
|
|
vsnapshot := env.State().Copy()
|
2015-03-17 10:19:23 +00:00
|
|
|
if self.address == nil {
|
2015-01-13 19:31:31 +00:00
|
|
|
// Generate a new address
|
|
|
|
nonce := env.State().GetNonce(caller.Address())
|
2015-03-17 10:19:23 +00:00
|
|
|
addr := crypto.CreateAddress(caller.Address(), nonce)
|
2015-01-13 19:31:31 +00:00
|
|
|
env.State().SetNonce(caller.Address(), nonce+1)
|
2015-03-24 14:15:17 +00:00
|
|
|
self.address = &addr
|
2015-01-13 19:31:31 +00:00
|
|
|
}
|
2015-03-24 14:15:17 +00:00
|
|
|
snapshot := env.State().Copy()
|
2015-01-13 19:31:31 +00:00
|
|
|
|
2015-03-17 10:19:23 +00:00
|
|
|
from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(*self.address)
|
2015-01-12 13:40:40 +00:00
|
|
|
err = env.Transfer(from, to, self.value)
|
|
|
|
if err != nil {
|
2015-03-24 14:15:17 +00:00
|
|
|
env.State().Set(vsnapshot)
|
|
|
|
|
|
|
|
caller.ReturnGas(self.Gas, self.price)
|
2015-01-12 13:40:40 +00:00
|
|
|
|
2015-03-05 18:51:25 +00:00
|
|
|
return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
|
2014-12-09 19:27:57 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 12:44:15 +00:00
|
|
|
context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
|
|
|
|
context.SetCallCode(contextAddr, code)
|
|
|
|
|
2015-03-24 10:49:30 +00:00
|
|
|
ret, err = evm.Run(context, self.input)
|
|
|
|
evm.Printf("message call took %v", time.Since(start)).Endl()
|
2014-12-20 01:21:13 +00:00
|
|
|
if err != nil {
|
|
|
|
env.State().Set(snapshot)
|
|
|
|
}
|
2014-12-03 16:06:54 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|