trie.go 8.09 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright 2015 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 (
20
	"context"
21
	"errors"
22
	"fmt"
23

24
	"github.com/ethereum/go-ethereum/common"
25
	"github.com/ethereum/go-ethereum/core/rawdb"
26 27
	"github.com/ethereum/go-ethereum/core/state"
	"github.com/ethereum/go-ethereum/core/types"
28
	"github.com/ethereum/go-ethereum/crypto"
29
	"github.com/ethereum/go-ethereum/ethdb"
30
	"github.com/ethereum/go-ethereum/rlp"
31
	"github.com/ethereum/go-ethereum/trie"
32
	"github.com/ethereum/go-ethereum/trie/trienode"
33 34
)

35 36 37 38
var (
	sha3Nil = crypto.Keccak256Hash(nil)
)

39
func NewState(ctx context.Context, head *types.Header, odr OdrBackend) *state.StateDB {
40
	state, _ := state.New(head.Root, NewStateDatabase(ctx, head, odr), nil)
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
	return state
}

func NewStateDatabase(ctx context.Context, head *types.Header, odr OdrBackend) state.Database {
	return &odrDatabase{ctx, StateTrieID(head), odr}
}

type odrDatabase struct {
	ctx     context.Context
	id      *TrieID
	backend OdrBackend
}

func (db *odrDatabase) OpenTrie(root common.Hash) (state.Trie, error) {
	return &odrTrie{db: db, id: db.id}, nil
}

58 59
func (db *odrDatabase) OpenStorageTrie(stateRoot common.Hash, address common.Address, root common.Hash) (state.Trie, error) {
	return &odrTrie{db: db, id: StorageTrieID(db.id, address, root)}, nil
60 61 62 63 64 65 66
}

func (db *odrDatabase) CopyTrie(t state.Trie) state.Trie {
	switch t := t.(type) {
	case *odrTrie:
		cpy := &odrTrie{db: t.db, id: t.id}
		if t.trie != nil {
67
			cpy.trie = t.trie.Copy()
68 69 70 71 72 73 74
		}
		return cpy
	default:
		panic(fmt.Errorf("unknown trie type %T", t))
	}
}

75
func (db *odrDatabase) ContractCode(addr common.Address, codeHash common.Hash) ([]byte, error) {
76
	if codeHash == sha3Nil {
77 78
		return nil, nil
	}
79 80
	code := rawdb.ReadCode(db.backend.Database(), codeHash)
	if len(code) != 0 {
81 82 83
		return code, nil
	}
	id := *db.id
84
	id.AccountAddress = addr[:]
85 86 87 88 89
	req := &CodeRequest{Id: &id, Hash: codeHash}
	err := db.backend.Retrieve(db.ctx, req)
	return req.Data, err
}

90 91
func (db *odrDatabase) ContractCodeSize(addr common.Address, codeHash common.Hash) (int, error) {
	code, err := db.ContractCode(addr, codeHash)
92 93 94
	return len(code), err
}

95 96 97 98
func (db *odrDatabase) TrieDB() *trie.Database {
	return nil
}

99 100 101 102
func (db *odrDatabase) DiskDB() ethdb.KeyValueStore {
	panic("not implemented")
}

103 104
type odrTrie struct {
	db   *odrDatabase
105
	id   *TrieID
106 107 108
	trie *trie.Trie
}

109
func (t *odrTrie) GetStorage(_ common.Address, key []byte) ([]byte, error) {
110
	key = crypto.Keccak256(key)
111
	var enc []byte
112
	err := t.do(key, func() (err error) {
113
		enc, err = t.trie.Get(key)
114 115
		return err
	})
116 117 118 119 120
	if err != nil || len(enc) == 0 {
		return nil, err
	}
	_, content, _, err := rlp.Split(enc)
	return content, err
121 122
}

123
func (t *odrTrie) GetAccount(address common.Address) (*types.StateAccount, error) {
124 125 126 127
	var (
		enc []byte
		key = crypto.Keccak256(address.Bytes())
	)
128
	err := t.do(key, func() (err error) {
129 130
		enc, err = t.trie.Get(key)
		return err
131
	})
132 133 134 135 136 137 138 139
	if err != nil || len(enc) == 0 {
		return nil, err
	}
	acct := new(types.StateAccount)
	if err := rlp.DecodeBytes(enc, acct); err != nil {
		return nil, err
	}
	return acct, nil
140 141
}

142
func (t *odrTrie) UpdateAccount(address common.Address, acc *types.StateAccount) error {
143
	key := crypto.Keccak256(address.Bytes())
144 145 146 147 148
	value, err := rlp.EncodeToBytes(acc)
	if err != nil {
		return fmt.Errorf("decoding error in account update: %w", err)
	}
	return t.do(key, func() error {
149
		return t.trie.Update(key, value)
150 151 152
	})
}

153 154 155 156
func (t *odrTrie) UpdateContractCode(_ common.Address, _ common.Hash, _ []byte) error {
	return nil
}

157
func (t *odrTrie) UpdateStorage(_ common.Address, key, value []byte) error {
158
	key = crypto.Keccak256(key)
159
	v, _ := rlp.EncodeToBytes(value)
160
	return t.do(key, func() error {
161
		return t.trie.Update(key, v)
162 163 164
	})
}

165
func (t *odrTrie) DeleteStorage(_ common.Address, key []byte) error {
166 167
	key = crypto.Keccak256(key)
	return t.do(key, func() error {
168
		return t.trie.Delete(key)
169 170 171
	})
}

172
// DeleteAccount abstracts an account deletion from the trie.
173
func (t *odrTrie) DeleteAccount(address common.Address) error {
174
	key := crypto.Keccak256(address.Bytes())
175
	return t.do(key, func() error {
176
		return t.trie.Delete(key)
177 178 179
	})
}

180
func (t *odrTrie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet, error) {
181
	if t.trie == nil {
182
		return t.id.Root, nil, nil
183
	}
184
	return t.trie.Commit(collectLeaf)
185 186 187 188 189
}

func (t *odrTrie) Hash() common.Hash {
	if t.trie == nil {
		return t.id.Root
190
	}
191 192 193
	return t.trie.Hash()
}

194 195
func (t *odrTrie) NodeIterator(startkey []byte) (trie.NodeIterator, error) {
	return newNodeIterator(t, startkey), nil
196 197
}

198 199
func (t *odrTrie) GetKey(sha []byte) []byte {
	return nil
200 201
}

202
func (t *odrTrie) Prove(key []byte, proofDb ethdb.KeyValueWriter) error {
203 204 205
	return errors.New("not implemented, needs client/server interface split")
}

206 207
// do tries and retries to execute a function until it returns with no error or
// an error type other than MissingNodeError
208 209 210 211
func (t *odrTrie) do(key []byte, fn func() error) error {
	for {
		var err error
		if t.trie == nil {
212
			var id *trie.ID
213 214
			if len(t.id.AccountAddress) > 0 {
				id = trie.StorageTrieID(t.id.StateRoot, crypto.Keccak256Hash(t.id.AccountAddress), t.id.Root)
215 216
			} else {
				id = trie.StateTrieID(t.id.StateRoot)
217
			}
218 219
			triedb := trie.NewDatabase(t.db.backend.Database(), trie.HashDefaults)
			t.trie, err = trie.New(id, triedb)
220 221 222 223
		}
		if err == nil {
			err = fn()
		}
224
		if _, ok := err.(*trie.MissingNodeError); !ok {
225 226
			return err
		}
227 228
		r := &TrieRequest{Id: t.id, Key: key}
		if err := t.db.backend.Retrieve(t.db.ctx, r); err != nil {
229
			return err
230 231 232 233
		}
	}
}

234 235 236 237 238 239 240 241 242 243 244
type nodeIterator struct {
	trie.NodeIterator
	t   *odrTrie
	err error
}

func newNodeIterator(t *odrTrie, startkey []byte) trie.NodeIterator {
	it := &nodeIterator{t: t}
	// Open the actual non-ODR trie if that hasn't happened yet.
	if t.trie == nil {
		it.do(func() error {
245
			var id *trie.ID
246 247
			if len(t.id.AccountAddress) > 0 {
				id = trie.StorageTrieID(t.id.StateRoot, crypto.Keccak256Hash(t.id.AccountAddress), t.id.Root)
248 249
			} else {
				id = trie.StateTrieID(t.id.StateRoot)
250
			}
251 252
			triedb := trie.NewDatabase(t.db.backend.Database(), trie.HashDefaults)
			t, err := trie.New(id, triedb)
253 254 255 256 257 258 259
			if err == nil {
				it.t.trie = t
			}
			return err
		})
	}
	it.do(func() error {
260 261 262 263 264
		var err error
		it.NodeIterator, err = it.t.trie.NodeIterator(startkey)
		if err != nil {
			return err
		}
265
		return it.NodeIterator.Error()
266
	})
267
	return it
268 269
}

270 271 272 273 274
func (it *nodeIterator) Next(descend bool) bool {
	var ok bool
	it.do(func() error {
		ok = it.NodeIterator.Next(descend)
		return it.NodeIterator.Error()
275
	})
276
	return ok
277 278
}

279 280 281 282 283 284 285 286
// do runs fn and attempts to fill in missing nodes by retrieving.
func (it *nodeIterator) do(fn func() error) {
	var lasthash common.Hash
	for {
		it.err = fn()
		missing, ok := it.err.(*trie.MissingNodeError)
		if !ok {
			return
287
		}
288 289 290
		if missing.NodeHash == lasthash {
			it.err = fmt.Errorf("retrieve loop for trie node %x", missing.NodeHash)
			return
291
		}
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
		lasthash = missing.NodeHash
		r := &TrieRequest{Id: it.t.id, Key: nibblesToKey(missing.Path)}
		if it.err = it.t.db.backend.Retrieve(it.t.db.ctx, r); it.err != nil {
			return
		}
	}
}

func (it *nodeIterator) Error() error {
	if it.err != nil {
		return it.err
	}
	return it.NodeIterator.Error()
}

func nibblesToKey(nib []byte) []byte {
	if len(nib) > 0 && nib[len(nib)-1] == 0x10 {
		nib = nib[:len(nib)-1] // drop terminator
	}
	if len(nib)&1 == 1 {
		nib = append(nib, 0) // make even
	}
	key := make([]byte, len(nib)/2)
	for bi, ni := 0, 0; ni < len(nib); bi, ni = bi+1, ni+2 {
		key[bi] = nib[ni]<<4 | nib[ni+1]
	}
	return key
319
}