aboutsummaryrefslogtreecommitdiffstats
path: root/light/vm_env.go
blob: cc0c568c96cb29702f5352b66c5aefc4e65814e8 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package light

import (
    "math/big"

    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/core/vm"
    "github.com/ethereum/go-ethereum/crypto"
    "golang.org/x/net/context"
)

// VMState is a wrapper for the light state that holds the actual context and
// passes it to any state operation that requires it.
type VMState struct {
    ctx       context.Context
    state     *LightState
    snapshots []*LightState
    err       error
}

func NewVMState(ctx context.Context, state *LightState) *VMState {
    return &VMState{ctx: ctx, state: state}
}

func (s *VMState) Error() error {
    return s.err
}

func (s *VMState) AddLog(log *vm.Log) {}

// errHandler handles and stores any state error that happens during execution.
func (s *VMState) errHandler(err error) {
    if err != nil && s.err == nil {
        s.err = err
    }
}

func (self *VMState) Snapshot() int {
    self.snapshots = append(self.snapshots, self.state.Copy())
    return len(self.snapshots) - 1
}

func (self *VMState) RevertToSnapshot(idx int) {
    self.state.Set(self.snapshots[idx])
    self.snapshots = self.snapshots[:idx]
}

// GetAccount returns the account object of the given account or nil if the
// account does not exist
func (s *VMState) GetAccount(addr common.Address) vm.Account {
    so, err := s.state.GetStateObject(s.ctx, addr)
    s.errHandler(err)
    if err != nil {
        // return a dummy state object to avoid panics
        so = s.state.newStateObject(addr)
    }
    return so
}

// CreateAccount creates creates a new account object and takes ownership.
func (s *VMState) CreateAccount(addr common.Address) vm.Account {
    so, err := s.state.CreateStateObject(s.ctx, addr)
    s.errHandler(err)
    if err != nil {
        // return a dummy state object to avoid panics
        so = s.state.newStateObject(addr)
    }
    return so
}

// AddBalance adds the given amount to the balance of the specified account
func (s *VMState) AddBalance(addr common.Address, amount *big.Int) {
    err := s.state.AddBalance(s.ctx, addr, amount)
    s.errHandler(err)
}

// SubBalance adds the given amount to the balance of the specified account
func (s *VMState) SubBalance(addr common.Address, amount *big.Int) {
    err := s.state.SubBalance(s.ctx, addr, amount)
    s.errHandler(err)
}

// GetBalance retrieves the balance from the given address or 0 if the account does
// not exist
func (s *VMState) GetBalance(addr common.Address) *big.Int {
    res, err := s.state.GetBalance(s.ctx, addr)
    s.errHandler(err)
    return res
}

// GetNonce returns the nonce at the given address or 0 if the account does
// not exist
func (s *VMState) GetNonce(addr common.Address) uint64 {
    res, err := s.state.GetNonce(s.ctx, addr)
    s.errHandler(err)
    return res
}

// SetNonce sets the nonce of the specified account
func (s *VMState) SetNonce(addr common.Address, nonce uint64) {
    err := s.state.SetNonce(s.ctx, addr, nonce)
    s.errHandler(err)
}

// GetCode returns the contract code at the given address or nil if the account
// does not exist
func (s *VMState) GetCode(addr common.Address) []byte {
    res, err := s.state.GetCode(s.ctx, addr)
    s.errHandler(err)
    return res
}

// GetCodeHash returns the contract code hash at the given address
func (s *VMState) GetCodeHash(addr common.Address) common.Hash {
    res, err := s.state.GetCode(s.ctx, addr)
    s.errHandler(err)
    return crypto.Keccak256Hash(res)
}

// GetCodeSize returns the contract code size at the given address
func (s *VMState) GetCodeSize(addr common.Address) int {
    res, err := s.state.GetCode(s.ctx, addr)
    s.errHandler(err)
    return len(res)
}

// SetCode sets the contract code at the specified account
func (s *VMState) SetCode(addr common.Address, code []byte) {
    err := s.state.SetCode(s.ctx, addr, code)
    s.errHandler(err)
}

// AddRefund adds an amount to the refund value collected during a vm execution
func (s *VMState) AddRefund(gas *big.Int) {
    s.state.AddRefund(gas)
}

// GetRefund returns the refund value collected during a vm execution
func (s *VMState) GetRefund() *big.Int {
    return s.state.GetRefund()
}

// GetState returns the contract storage value at storage address b from the
// contract address a or common.Hash{} if the account does not exist
func (s *VMState) GetState(a common.Address, b common.Hash) common.Hash {
    res, err := s.state.GetState(s.ctx, a, b)
    s.errHandler(err)
    return res
}

// SetState sets the storage value at storage address key of the account addr
func (s *VMState) SetState(addr common.Address, key common.Hash, value common.Hash) {
    err := s.state.SetState(s.ctx, addr, key, value)
    s.errHandler(err)
}

// Suicide marks an account to be removed and clears its balance
func (s *VMState) Suicide(addr common.Address) bool {
    res, err := s.state.Suicide(s.ctx, addr)
    s.errHandler(err)
    return res
}

// Exist returns true if an account exists at the given address
func (s *VMState) Exist(addr common.Address) bool {
    res, err := s.state.HasAccount(s.ctx, addr)
    s.errHandler(err)
    return res
}

// Empty returns true if the account at the given address is considered empty
func (s *VMState) Empty(addr common.Address) bool {
    so, err := s.state.GetStateObject(s.ctx, addr)
    s.errHandler(err)
    return so == nil || so.empty()
}

// HasSuicided returns true if the given account has been marked for deletion
// or false if the account does not exist
func (s *VMState) HasSuicided(addr common.Address) bool {
    res, err := s.state.HasSuicided(s.ctx, addr)
    s.errHandler(err)
    return res
}