difflayer.go 20.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright 2019 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 snapshot

import (
20
	"encoding/binary"
21
	"fmt"
22
	"math"
23
	"math/rand"
24 25
	"sort"
	"sync"
26
	"sync/atomic"
27
	"time"
28 29 30

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/rlp"
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
	"github.com/steakknife/bloomfilter"
)

var (
	// aggregatorMemoryLimit is the maximum size of the bottom-most diff layer
	// that aggregates the writes from above until it's flushed into the disk
	// layer.
	//
	// Note, bumping this up might drastically increase the size of the bloom
	// filters that's stored in every diff layer. Don't do that without fully
	// understanding all the implications.
	aggregatorMemoryLimit = uint64(4 * 1024 * 1024)

	// aggregatorItemLimit is an approximate number of items that will end up
	// in the agregator layer before it's flushed out to disk. A plain account
46 47 48 49 50
	// weighs around 14B (+hash), a storage slot 32B (+hash), a deleted slot
	// 0B (+hash). Slots are mostly set/unset in lockstep, so thet average at
	// 16B (+hash). All in all, the average entry seems to be 15+32=47B. Use a
	// smaller number to be on the safe side.
	aggregatorItemLimit = aggregatorMemoryLimit / 42
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

	// bloomTargetError is the target false positive rate when the aggregator
	// layer is at its fullest. The actual value will probably move around up
	// and down from this number, it's mostly a ballpark figure.
	//
	// Note, dropping this down might drastically increase the size of the bloom
	// filters that's stored in every diff layer. Don't do that without fully
	// understanding all the implications.
	bloomTargetError = 0.02

	// bloomSize is the ideal bloom filter size given the maximum number of items
	// it's expected to hold and the target false positive error rate.
	bloomSize = math.Ceil(float64(aggregatorItemLimit) * math.Log(bloomTargetError) / math.Log(1/math.Pow(2, math.Log(2))))

	// bloomFuncs is the ideal number of bits a single entry should set in the
	// bloom filter to keep its size to a minimum (given it's size and maximum
	// entry count).
	bloomFuncs = math.Round((bloomSize / float64(aggregatorItemLimit)) * math.Log(2))
69

70
	// the bloom offsets are runtime constants which determines which part of the
71 72 73 74
	// the account/storage hash the hasher functions looks at, to determine the
	// bloom key for an account/slot. This is randomized at init(), so that the
	// global population of nodes do not all display the exact same behaviour with
	// regards to bloom content
75 76 77
	bloomDestructHasherOffset = 0
	bloomAccountHasherOffset  = 0
	bloomStorageHasherOffset  = 0
78 79
)

80
func init() {
81 82 83 84 85 86 87 88 89 90 91
	// Init the bloom offsets in the range [0:24] (requires 8 bytes)
	bloomDestructHasherOffset = rand.Intn(25)
	bloomAccountHasherOffset = rand.Intn(25)
	bloomStorageHasherOffset = rand.Intn(25)

	// The destruct and account blooms must be different, as the storage slots
	// will check for destruction too for every bloom miss. It should not collide
	// with modified accounts.
	for bloomAccountHasherOffset == bloomDestructHasherOffset {
		bloomAccountHasherOffset = rand.Intn(25)
	}
92 93
}

94 95 96 97 98 99 100
// diffLayer represents a collection of modifications made to a state snapshot
// after running a block on top. It contains one sorted list for the account trie
// and one-one list for each storage tries.
//
// The goal of a diff layer is to act as a journal, tracking recent modifications
// made to the state, that have not yet graduated into a semi-immutable state.
type diffLayer struct {
101 102 103
	origin *diskLayer // Base disk layer to directly use on bloom misses
	parent snapshot   // Parent snapshot modified by this one, never nil
	memory uint64     // Approximate guess as to how much memory we use
104

105
	root  common.Hash // Root hash to which this snapshot diff belongs to
106
	stale uint32      // Signals that the layer became stale (state progressed)
107

108
	destructSet map[common.Hash]struct{}               // Keyed markers for deleted (and potentially) recreated accounts
109 110 111 112
	accountList []common.Hash                          // List of account for iteration. If it exists, it's sorted, otherwise it's nil
	accountData map[common.Hash][]byte                 // Keyed accounts for direct retrival (nil means deleted)
	storageList map[common.Hash][]common.Hash          // List of storage slots for iterated retrievals, one per account. Any existing lists are sorted if non-nil
	storageData map[common.Hash]map[common.Hash][]byte // Keyed storage slots for direct retrival. one per account (nil means deleted)
113

114 115
	diffed *bloomfilter.Filter // Bloom filter tracking all the diffed items up to the disk layer

116 117 118
	lock sync.RWMutex
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132
// destructBloomHasher is a wrapper around a common.Hash to satisfy the interface
// API requirements of the bloom library used. It's used to convert a destruct
// event into a 64 bit mini hash.
type destructBloomHasher common.Hash

func (h destructBloomHasher) Write(p []byte) (n int, err error) { panic("not implemented") }
func (h destructBloomHasher) Sum(b []byte) []byte               { panic("not implemented") }
func (h destructBloomHasher) Reset()                            { panic("not implemented") }
func (h destructBloomHasher) BlockSize() int                    { panic("not implemented") }
func (h destructBloomHasher) Size() int                         { return 8 }
func (h destructBloomHasher) Sum64() uint64 {
	return binary.BigEndian.Uint64(h[bloomDestructHasherOffset : bloomDestructHasherOffset+8])
}

133 134 135 136 137 138 139 140 141 142 143
// accountBloomHasher is a wrapper around a common.Hash to satisfy the interface
// API requirements of the bloom library used. It's used to convert an account
// hash into a 64 bit mini hash.
type accountBloomHasher common.Hash

func (h accountBloomHasher) Write(p []byte) (n int, err error) { panic("not implemented") }
func (h accountBloomHasher) Sum(b []byte) []byte               { panic("not implemented") }
func (h accountBloomHasher) Reset()                            { panic("not implemented") }
func (h accountBloomHasher) BlockSize() int                    { panic("not implemented") }
func (h accountBloomHasher) Size() int                         { return 8 }
func (h accountBloomHasher) Sum64() uint64 {
144
	return binary.BigEndian.Uint64(h[bloomAccountHasherOffset : bloomAccountHasherOffset+8])
145 146 147 148 149 150 151 152 153 154 155 156 157
}

// storageBloomHasher is a wrapper around a [2]common.Hash to satisfy the interface
// API requirements of the bloom library used. It's used to convert an account
// hash into a 64 bit mini hash.
type storageBloomHasher [2]common.Hash

func (h storageBloomHasher) Write(p []byte) (n int, err error) { panic("not implemented") }
func (h storageBloomHasher) Sum(b []byte) []byte               { panic("not implemented") }
func (h storageBloomHasher) Reset()                            { panic("not implemented") }
func (h storageBloomHasher) BlockSize() int                    { panic("not implemented") }
func (h storageBloomHasher) Size() int                         { return 8 }
func (h storageBloomHasher) Sum64() uint64 {
158 159
	return binary.BigEndian.Uint64(h[0][bloomStorageHasherOffset:bloomStorageHasherOffset+8]) ^
		binary.BigEndian.Uint64(h[1][bloomStorageHasherOffset:bloomStorageHasherOffset+8])
160 161
}

162 163
// newDiffLayer creates a new diff on top of an existing snapshot, whether that's a low
// level persistent database or a hierarchical diff already.
164
func newDiffLayer(parent snapshot, root common.Hash, destructs map[common.Hash]struct{}, accounts map[common.Hash][]byte, storage map[common.Hash]map[common.Hash][]byte) *diffLayer {
165 166 167 168
	// Create the new layer with some pre-allocated data segments
	dl := &diffLayer{
		parent:      parent,
		root:        root,
169
		destructSet: destructs,
170 171 172
		accountData: accounts,
		storageData: storage,
	}
173 174 175 176 177 178 179 180
	switch parent := parent.(type) {
	case *diskLayer:
		dl.rebloom(parent)
	case *diffLayer:
		dl.rebloom(parent.origin)
	default:
		panic("unknown parent type")
	}
181 182 183 184 185 186 187 188 189 190 191
	// Sanity check that accounts or storage slots are never nil
	for accountHash, blob := range accounts {
		if blob == nil {
			panic(fmt.Sprintf("account %#x nil", accountHash))
		}
	}
	for accountHash, slots := range storage {
		if slots == nil {
			panic(fmt.Sprintf("storage %#x nil", accountHash))
		}
	}
192
	// Determine memory size and track the dirty writes
193
	for _, data := range accounts {
194 195
		dl.memory += uint64(common.HashLength + len(data))
		snapshotDirtyAccountWriteMeter.Mark(int64(len(data)))
196 197
	}
	// Fill the storage hashes and sort them for the iterator
198
	dl.storageList = make(map[common.Hash][]common.Hash)
199 200 201 202 203
	for accountHash := range destructs {
		dl.storageList[accountHash] = nil
	}
	// Determine memory size and track the dirty writes
	for _, slots := range storage {
204
		for _, data := range slots {
205 206
			dl.memory += uint64(common.HashLength + len(data))
			snapshotDirtyStorageWriteMeter.Mark(int64(len(data)))
207 208 209 210 211 212
		}
	}
	dl.memory += uint64(len(dl.storageList) * common.HashLength)
	return dl
}

213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
// rebloom discards the layer's current bloom and rebuilds it from scratch based
// on the parent's and the local diffs.
func (dl *diffLayer) rebloom(origin *diskLayer) {
	dl.lock.Lock()
	defer dl.lock.Unlock()

	defer func(start time.Time) {
		snapshotBloomIndexTimer.Update(time.Since(start))
	}(time.Now())

	// Inject the new origin that triggered the rebloom
	dl.origin = origin

	// Retrieve the parent bloom or create a fresh empty one
	if parent, ok := dl.parent.(*diffLayer); ok {
		parent.lock.RLock()
		dl.diffed, _ = parent.diffed.Copy()
		parent.lock.RUnlock()
	} else {
		dl.diffed, _ = bloomfilter.New(uint64(bloomSize), uint64(bloomFuncs))
	}
	// Iterate over all the accounts and storage slots and index them
235 236 237
	for hash := range dl.destructSet {
		dl.diffed.Add(destructBloomHasher(hash))
	}
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
	for hash := range dl.accountData {
		dl.diffed.Add(accountBloomHasher(hash))
	}
	for accountHash, slots := range dl.storageData {
		for storageHash := range slots {
			dl.diffed.Add(storageBloomHasher{accountHash, storageHash})
		}
	}
	// Calculate the current false positive rate and update the error rate meter.
	// This is a bit cheating because subsequent layers will overwrite it, but it
	// should be fine, we're only interested in ballpark figures.
	k := float64(dl.diffed.K())
	n := float64(dl.diffed.N())
	m := float64(dl.diffed.M())
	snapshotBloomErrorGauge.Update(math.Pow(1.0-math.Exp((-k)*(n+0.5)/(m-1)), k))
}

255 256 257 258 259
// Root returns the root hash for which this snapshot was made.
func (dl *diffLayer) Root() common.Hash {
	return dl.root
}

260 261 262 263 264
// Parent returns the subsequent layer of a diff layer.
func (dl *diffLayer) Parent() snapshot {
	return dl.parent
}

265 266 267
// Stale return whether this layer has become stale (was flattened across) or if
// it's still live.
func (dl *diffLayer) Stale() bool {
268
	return atomic.LoadUint32(&dl.stale) != 0
269 270 271 272
}

// Account directly retrieves the account associated with a particular hash in
// the snapshot slim data format.
273 274 275 276 277
func (dl *diffLayer) Account(hash common.Hash) (*Account, error) {
	data, err := dl.AccountRLP(hash)
	if err != nil {
		return nil, err
	}
278
	if len(data) == 0 { // can be both nil and []byte{}
279
		return nil, nil
280 281 282 283 284
	}
	account := new(Account)
	if err := rlp.DecodeBytes(data, account); err != nil {
		panic(err)
	}
285
	return account, nil
286 287 288 289
}

// AccountRLP directly retrieves the account RLP associated with a particular
// hash in the snapshot slim data format.
290
func (dl *diffLayer) AccountRLP(hash common.Hash) ([]byte, error) {
291 292 293 294
	// Check the bloom filter first whether there's even a point in reaching into
	// all the maps in all the layers below
	dl.lock.RLock()
	hit := dl.diffed.Contains(accountBloomHasher(hash))
295 296 297
	if !hit {
		hit = dl.diffed.Contains(destructBloomHasher(hash))
	}
298 299 300 301 302 303 304 305 306
	dl.lock.RUnlock()

	// If the bloom filter misses, don't even bother with traversing the memory
	// diff layers, reach straight into the bottom persistent disk layer
	if !hit {
		snapshotBloomAccountMissMeter.Mark(1)
		return dl.origin.AccountRLP(hash)
	}
	// The bloom filter hit, start poking in the internal maps
307
	return dl.accountRLP(hash, 0)
308 309 310 311 312
}

// accountRLP is an internal version of AccountRLP that skips the bloom filter
// checks and uses the internal maps to try and retrieve the data. It's meant
// to be used if a higher layer's bloom filter hit already.
313
func (dl *diffLayer) accountRLP(hash common.Hash, depth int) ([]byte, error) {
314 315 316
	dl.lock.RLock()
	defer dl.lock.RUnlock()

317 318
	// If the layer was flattened into, consider it invalid (any live reference to
	// the original should be marked as unusable).
319
	if dl.Stale() {
320 321
		return nil, ErrSnapshotStale
	}
322
	// If the account is known locally, return it
323
	if data, ok := dl.accountData[hash]; ok {
324
		snapshotDirtyAccountHitMeter.Mark(1)
325
		snapshotDirtyAccountHitDepthHist.Update(int64(depth))
326
		snapshotDirtyAccountReadMeter.Mark(int64(len(data)))
327
		snapshotBloomAccountTrueHitMeter.Mark(1)
328
		return data, nil
329
	}
330 331 332 333 334 335 336 337
	// If the account is known locally, but deleted, return it
	if _, ok := dl.destructSet[hash]; ok {
		snapshotDirtyAccountHitMeter.Mark(1)
		snapshotDirtyAccountHitDepthHist.Update(int64(depth))
		snapshotDirtyAccountInexMeter.Mark(1)
		snapshotBloomAccountTrueHitMeter.Mark(1)
		return nil, nil
	}
338
	// Account unknown to this diff, resolve from parent
339
	if diff, ok := dl.parent.(*diffLayer); ok {
340
		return diff.accountRLP(hash, depth+1)
341 342 343
	}
	// Failed to resolve through diff layers, mark a bloom error and use the disk
	snapshotBloomAccountFalseHitMeter.Mark(1)
344 345 346 347 348 349
	return dl.parent.AccountRLP(hash)
}

// Storage directly retrieves the storage data associated with a particular hash,
// within a particular account. If the slot is unknown to this diff, it's parent
// is consulted.
350
func (dl *diffLayer) Storage(accountHash, storageHash common.Hash) ([]byte, error) {
351 352 353 354
	// Check the bloom filter first whether there's even a point in reaching into
	// all the maps in all the layers below
	dl.lock.RLock()
	hit := dl.diffed.Contains(storageBloomHasher{accountHash, storageHash})
355 356 357
	if !hit {
		hit = dl.diffed.Contains(destructBloomHasher(accountHash))
	}
358 359 360 361 362 363 364 365 366
	dl.lock.RUnlock()

	// If the bloom filter misses, don't even bother with traversing the memory
	// diff layers, reach straight into the bottom persistent disk layer
	if !hit {
		snapshotBloomStorageMissMeter.Mark(1)
		return dl.origin.Storage(accountHash, storageHash)
	}
	// The bloom filter hit, start poking in the internal maps
367
	return dl.storage(accountHash, storageHash, 0)
368 369 370 371 372
}

// storage is an internal version of Storage that skips the bloom filter checks
// and uses the internal maps to try and retrieve the data. It's meant  to be
// used if a higher layer's bloom filter hit already.
373
func (dl *diffLayer) storage(accountHash, storageHash common.Hash, depth int) ([]byte, error) {
374 375 376
	dl.lock.RLock()
	defer dl.lock.RUnlock()

377 378
	// If the layer was flattened into, consider it invalid (any live reference to
	// the original should be marked as unusable).
379
	if dl.Stale() {
380 381
		return nil, ErrSnapshotStale
	}
382
	// If the account is known locally, try to resolve the slot locally
383 384
	if storage, ok := dl.storageData[accountHash]; ok {
		if data, ok := storage[storageHash]; ok {
385
			snapshotDirtyStorageHitMeter.Mark(1)
386 387 388 389 390 391
			snapshotDirtyStorageHitDepthHist.Update(int64(depth))
			if n := len(data); n > 0 {
				snapshotDirtyStorageReadMeter.Mark(int64(n))
			} else {
				snapshotDirtyStorageInexMeter.Mark(1)
			}
392
			snapshotBloomStorageTrueHitMeter.Mark(1)
393
			return data, nil
394 395
		}
	}
396 397 398 399 400 401 402 403
	// If the account is known locally, but deleted, return an empty slot
	if _, ok := dl.destructSet[accountHash]; ok {
		snapshotDirtyStorageHitMeter.Mark(1)
		snapshotDirtyStorageHitDepthHist.Update(int64(depth))
		snapshotDirtyStorageInexMeter.Mark(1)
		snapshotBloomStorageTrueHitMeter.Mark(1)
		return nil, nil
	}
404 405
	// Storage slot unknown to this diff, resolve from parent
	if diff, ok := dl.parent.(*diffLayer); ok {
406
		return diff.storage(accountHash, storageHash, depth+1)
407 408 409
	}
	// Failed to resolve through diff layers, mark a bloom error and use the disk
	snapshotBloomStorageFalseHitMeter.Mark(1)
410 411 412 413 414
	return dl.parent.Storage(accountHash, storageHash)
}

// Update creates a new layer on top of the existing snapshot diff tree with
// the specified data items.
415 416
func (dl *diffLayer) Update(blockRoot common.Hash, destructs map[common.Hash]struct{}, accounts map[common.Hash][]byte, storage map[common.Hash]map[common.Hash][]byte) *diffLayer {
	return newDiffLayer(dl, blockRoot, destructs, accounts, storage)
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
}

// flatten pushes all data from this point downwards, flattening everything into
// a single diff at the bottom. Since usually the lowermost diff is the largest,
// the flattening bulds up from there in reverse.
func (dl *diffLayer) flatten() snapshot {
	// If the parent is not diff, we're the first in line, return unmodified
	parent, ok := dl.parent.(*diffLayer)
	if !ok {
		return dl
	}
	// Parent is a diff, flatten it first (note, apart from weird corned cases,
	// flatten will realistically only ever merge 1 layer, so there's no need to
	// be smarter about grouping flattens together).
	parent = parent.flatten().(*diffLayer)

433 434 435 436 437
	parent.lock.Lock()
	defer parent.lock.Unlock()

	// Before actually writing all our data to the parent, first ensure that the
	// parent hasn't been 'corrupted' by someone else already flattening into it
438
	if atomic.SwapUint32(&parent.stale, 1) != 0 {
439 440
		panic("parent diff layer is stale") // we've flattened into the same parent from two children, boo
	}
441
	// Overwrite all the updated accounts blindly, merge the sorted list
442 443 444 445 446
	for hash := range dl.destructSet {
		parent.destructSet[hash] = struct{}{}
		delete(parent.accountData, hash)
		delete(parent.storageData, hash)
	}
447 448 449
	for hash, data := range dl.accountData {
		parent.accountData[hash] = data
	}
450
	// Overwrite all the updated storage slots (individually)
451
	for accountHash, storage := range dl.storageData {
452 453
		// If storage didn't exist (or was deleted) in the parent, overwrite blindly
		if _, ok := parent.storageData[accountHash]; !ok {
454 455 456 457 458 459 460 461 462 463 464
			parent.storageData[accountHash] = storage
			continue
		}
		// Storage exists in both parent and child, merge the slots
		comboData := parent.storageData[accountHash]
		for storageHash, data := range storage {
			comboData[storageHash] = data
		}
		parent.storageData[accountHash] = comboData
	}
	// Return the combo parent
465 466
	return &diffLayer{
		parent:      parent.parent,
467
		origin:      parent.origin,
468
		root:        dl.root,
469
		destructSet: parent.destructSet,
470
		accountData: parent.accountData,
471 472
		storageData: parent.storageData,
		storageList: make(map[common.Hash][]common.Hash),
473
		diffed:      dl.diffed,
474 475
		memory:      parent.memory + dl.memory,
	}
476 477
}

478 479 480 481
// AccountList returns a sorted list of all accounts in this difflayer, including
// the deleted ones.
//
// Note, the returned slice is not a copy, so do not modify it.
482
func (dl *diffLayer) AccountList() []common.Hash {
483 484 485 486 487 488 489 490 491
	// If an old list already exists, return it
	dl.lock.RLock()
	list := dl.accountList
	dl.lock.RUnlock()

	if list != nil {
		return list
	}
	// No old sorted account list exists, generate a new one
492 493
	dl.lock.Lock()
	defer dl.lock.Unlock()
494

495
	dl.accountList = make([]common.Hash, 0, len(dl.destructSet)+len(dl.accountData))
496 497
	for hash := range dl.accountData {
		dl.accountList = append(dl.accountList, hash)
498
	}
499 500 501 502 503
	for hash := range dl.destructSet {
		if _, ok := dl.accountData[hash]; !ok {
			dl.accountList = append(dl.accountList, hash)
		}
	}
504
	sort.Sort(hashes(dl.accountList))
505 506 507
	return dl.accountList
}

508 509 510 511
// StorageList returns a sorted list of all storage slot hashes in this difflayer
// for the given account.
//
// Note, the returned slice is not a copy, so do not modify it.
512
func (dl *diffLayer) StorageList(accountHash common.Hash) []common.Hash {
513 514 515 516 517 518 519 520 521
	// If an old list already exists, return it
	dl.lock.RLock()
	list := dl.storageList[accountHash]
	dl.lock.RUnlock()

	if list != nil {
		return list
	}
	// No old sorted account list exists, generate a new one
522 523
	dl.lock.Lock()
	defer dl.lock.Unlock()
524 525 526

	storageMap := dl.storageData[accountHash]
	storageList := make([]common.Hash, 0, len(storageMap))
527
	for k := range storageMap {
528
		storageList = append(storageList, k)
529
	}
530 531 532
	sort.Sort(hashes(storageList))
	dl.storageList[accountHash] = storageList
	return storageList
533
}