forked from mirror/go-ethereum
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.
94 lines
2.4 KiB
94 lines
2.4 KiB
10 years ago
|
package vm
|
||
10 years ago
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math/big"
|
||
|
|
||
|
"github.com/ethereum/eth-go/ethstate"
|
||
|
"github.com/ethereum/eth-go/ethutil"
|
||
|
)
|
||
|
|
||
|
type Execution struct {
|
||
|
vm VirtualMachine
|
||
|
address, input []byte
|
||
10 years ago
|
Gas, price, value *big.Int
|
||
10 years ago
|
object *ethstate.StateObject
|
||
|
}
|
||
|
|
||
|
func NewExecution(vm VirtualMachine, address, input []byte, gas, gasPrice, value *big.Int) *Execution {
|
||
10 years ago
|
return &Execution{vm: vm, address: address, input: input, Gas: gas, price: gasPrice, value: value}
|
||
10 years ago
|
}
|
||
|
|
||
|
func (self *Execution) Addr() []byte {
|
||
|
return self.address
|
||
|
}
|
||
|
|
||
10 years ago
|
func (self *Execution) Exec(codeAddr []byte, caller ClosureRef) ([]byte, error) {
|
||
|
// Retrieve the executing code
|
||
|
code := self.vm.Env().State().GetCode(codeAddr)
|
||
|
|
||
|
return self.exec(code, codeAddr, caller)
|
||
|
}
|
||
|
|
||
|
func (self *Execution) exec(code, caddr []byte, caller ClosureRef) (ret []byte, err error) {
|
||
10 years ago
|
env := self.vm.Env()
|
||
|
|
||
|
snapshot := env.State().Copy()
|
||
10 years ago
|
defer func() {
|
||
|
if err != nil {
|
||
|
env.State().Set(snapshot)
|
||
|
}
|
||
|
}()
|
||
10 years ago
|
|
||
|
msg := env.State().Manifest().AddMessage(ðstate.Message{
|
||
|
To: self.address, From: caller.Address(),
|
||
|
Input: self.input,
|
||
|
Origin: env.Origin(),
|
||
|
Block: env.BlockHash(), Timestamp: env.Time(), Coinbase: env.Coinbase(), Number: env.BlockNumber(),
|
||
|
Value: self.value,
|
||
|
})
|
||
|
|
||
|
object := caller.Object()
|
||
|
if object.Balance.Cmp(self.value) < 0 {
|
||
10 years ago
|
caller.ReturnGas(self.Gas, self.price)
|
||
10 years ago
|
|
||
|
err = fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, object.Balance)
|
||
|
} else {
|
||
|
stateObject := env.State().GetOrNewStateObject(self.address)
|
||
|
self.object = stateObject
|
||
|
|
||
|
caller.Object().SubAmount(self.value)
|
||
|
stateObject.AddAmount(self.value)
|
||
|
|
||
10 years ago
|
// Pre-compiled contracts (address.go) 1, 2 & 3.
|
||
10 years ago
|
naddr := ethutil.BigD(caddr).Uint64()
|
||
10 years ago
|
if p := Precompiled[naddr]; p != nil {
|
||
10 years ago
|
if self.Gas.Cmp(p.Gas) >= 0 {
|
||
10 years ago
|
ret = p.Call(self.input)
|
||
10 years ago
|
self.vm.Printf("NATIVE_FUNC(%x) => %x", naddr, ret)
|
||
10 years ago
|
}
|
||
|
} else {
|
||
10 years ago
|
// Create a new callable closure
|
||
|
c := NewClosure(msg, caller, stateObject, code, self.Gas, self.price)
|
||
|
c.exe = self
|
||
|
|
||
10 years ago
|
if self.vm.Depth() == MaxCallDepth {
|
||
10 years ago
|
c.UseGas(c.Gas)
|
||
10 years ago
|
|
||
10 years ago
|
return c.Return(nil), fmt.Errorf("Max call depth exceeded (%d)", MaxCallDepth)
|
||
|
}
|
||
10 years ago
|
|
||
|
// Executer the closure and get the return value (if any)
|
||
|
ret, _, err = c.Call(self.vm, self.input)
|
||
|
|
||
|
msg.Output = ret
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
10 years ago
|
|
||
|
func (self *Execution) Create(caller ClosureRef) (ret []byte, err error) {
|
||
|
return self.exec(self.input, nil, caller)
|
||
|
}
|