Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/core/execution.go

80 lines
2.2 KiB

package core
import (
"math/big"
"time"
10 years ago
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/crypto"
)
type Execution struct {
env vm.Environment
10 years ago
address *common.Address
input []byte
Gas, price, value *big.Int
}
10 years ago
func NewExecution(env vm.Environment, address *common.Address, input []byte, gas, gasPrice, value *big.Int) *Execution {
return &Execution{env: env, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}
10 years ago
func (self *Execution) Call(codeAddr common.Address, caller vm.ContextRef) ([]byte, error) {
// Retrieve the executing code
code := self.env.State().GetCode(codeAddr)
10 years ago
return self.exec(&codeAddr, code, caller)
}
10 years ago
func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.ContextRef) (ret []byte, err error) {
start := time.Now()
env := self.env
evm := vm.NewVm(env)
if env.Depth() == vm.MaxCallDepth {
caller.ReturnGas(self.Gas, self.price)
return nil, vm.DepthError{}
}
vsnapshot := env.State().Copy()
10 years ago
if self.address == nil {
10 years ago
// Generate a new address
nonce := env.State().GetNonce(caller.Address())
10 years ago
addr := crypto.CreateAddress(caller.Address(), nonce)
10 years ago
env.State().SetNonce(caller.Address(), nonce+1)
self.address = &addr
10 years ago
}
snapshot := env.State().Copy()
10 years ago
10 years ago
from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(*self.address)
10 years ago
err = env.Transfer(from, to, self.value)
if err != nil {
env.State().Set(vsnapshot)
caller.ReturnGas(self.Gas, self.price)
10 years ago
return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
}
context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
context.SetCallCode(contextAddr, code)
ret, err = evm.Run(context, self.input)
evm.Printf("message call took %v", time.Since(start)).Endl()
if err != nil {
env.State().Set(snapshot)
}
return
}
func (self *Execution) Create(caller vm.ContextRef) (ret []byte, err error, account *state.StateObject) {
10 years ago
ret, err = self.exec(nil, self.input, caller)
account = self.env.State().GetStateObject(*self.address)
return
}