aboutsummaryrefslogtreecommitdiffstats
path: root/ethvm/execution.go
blob: f5f1ce70dfefe06e1266aa8abbb081ef3bc22458 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package ethvm

import (
    "fmt"
    "math/big"

    "github.com/ethereum/eth-go/ethstate"
    "github.com/ethereum/eth-go/ethutil"
)

type Execution struct {
    vm                VirtualMachine
    address, input    []byte
    Gas, price, value *big.Int
    object            *ethstate.StateObject
}

func NewExecution(vm VirtualMachine, address, input []byte, gas, gasPrice, value *big.Int) *Execution {
    return &Execution{vm: vm, address: address, input: input, Gas: gas, price: gasPrice, value: value}
}

func (self *Execution) Addr() []byte {
    return self.address
}

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) {
    env := self.vm.Env()

    snapshot := env.State().Copy()
    defer func() {
        if err != nil {
            env.State().Set(snapshot)
        }
    }()

    msg := env.State().Manifest().AddMessage(&ethstate.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 {
        caller.ReturnGas(self.Gas, self.price)

        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)

        // Pre-compiled contracts (address.go) 1, 2 & 3.
        naddr := ethutil.BigD(caddr).Uint64()
        if p := Precompiled[naddr]; p != nil {
            if self.Gas.Cmp(p.Gas) >= 0 {
                ret = p.Call(self.input)
                self.vm.Printf("NATIVE_FUNC(%x) => %x", naddr, ret)
            }
        } else {
            // Create a new callable closure
            c := NewClosure(msg, caller, stateObject, code, self.Gas, self.price)
            c.exe = self

            if self.vm.Depth() == MaxCallDepth {
                c.UseGas(c.Gas)

                return c.Return(nil), fmt.Errorf("Max call depth exceeded (%d)", MaxCallDepth)
            }

            // Executer the closure and get the return value (if any)
            ret, _, err = c.Call(self.vm, self.input)

            msg.Output = ret
        }
    }

    return
}

func (self *Execution) Create(caller ClosureRef) (ret []byte, err error) {
    return self.exec(self.input, nil, caller)
}