mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 09:51:36 +00:00
Adds generateBinTrieStems, the bintrie analogue of generateAccounts. It opens the bintrie via a sha256-aware bintrieDiskStore (the merkle disk store would always fail root validation against a binary node), iterates all leaves with binaryNodeIterator, aggregates them into per-stem builders, and emits one stem blob per stem boundary. Resume support is structural: ctx.marker is fed straight to the trie's NodeIterator, which uses binaryNodeIterator.seek (Commit 1) to position on the first leaf >= marker. Range proofs are deliberately skipped — the bintrie's Prove path is unimplemented and an iteration-only generation cycle is acceptable for a one-time startup cost. A bintrieGeneratorContext mirrors generatorContext but is much smaller: no holdable iterators (we walk the trie, not the existing flat state) and no two-tier marker (the bintrie key space is unified). checkAndFlushBin journals progress as a single 32-byte (stem || offset) key so resume can pick up mid-stem. generator.run dispatches on codec type so callers see a uniform lifecycle whether the underlying scheme is merkle or bintrie.
225 lines
8.2 KiB
Go
225 lines
8.2 KiB
Go
// Copyright 2026 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 pathdb
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
"github.com/ethereum/go-ethereum/trie/bintrie"
|
|
"github.com/holiman/uint256"
|
|
)
|
|
|
|
// buildTestBintrie constructs a small in-memory bintrie containing two
|
|
// accounts and one storage slot, persists its serialized nodes into the
|
|
// supplied key-value store under the standard pathdb account-trie key
|
|
// space (which is what the bintrie reads back via diskStore), and returns
|
|
// the resulting state root.
|
|
//
|
|
// This helper sidesteps triedb.Database to avoid an import cycle: pathdb
|
|
// is a child of triedb, so the test cannot construct a triedb.Database
|
|
// here. Instead it manually persists the nodes returned by
|
|
// bintrie.Commit, mirroring what writeNodes would do in production.
|
|
func buildTestBintrie(t *testing.T, db ethdb.Database) (common.Hash, []addrAcct) {
|
|
t.Helper()
|
|
|
|
// Use a memory-backed NodeDatabase for the empty starting trie. The
|
|
// trie's nodeResolver returns nil for unknown hashes, which matches
|
|
// the empty-trie semantics expected by NewBinaryTrie.
|
|
tr, err := bintrie.NewBinaryTrie(types.EmptyBinaryHash, &diskStore{db: db})
|
|
if err != nil {
|
|
t.Fatalf("new bintrie: %v", err)
|
|
}
|
|
|
|
addr1 := common.HexToAddress("0x1111111111111111111111111111111111111111")
|
|
addr2 := common.HexToAddress("0x2222222222222222222222222222222222222222")
|
|
slot := common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000007")
|
|
slotValue := bytes.Repeat([]byte{0x77}, 32)
|
|
|
|
if err := tr.UpdateAccount(addr1, &types.StateAccount{
|
|
Nonce: 1,
|
|
Balance: uint256.NewInt(100),
|
|
CodeHash: types.EmptyCodeHash[:],
|
|
}, 0); err != nil {
|
|
t.Fatalf("update account 1: %v", err)
|
|
}
|
|
if err := tr.UpdateAccount(addr2, &types.StateAccount{
|
|
Nonce: 2,
|
|
Balance: uint256.NewInt(200),
|
|
CodeHash: types.EmptyCodeHash[:],
|
|
}, 0); err != nil {
|
|
t.Fatalf("update account 2: %v", err)
|
|
}
|
|
if err := tr.UpdateStorage(addr1, slot[:], slotValue); err != nil {
|
|
t.Fatalf("update storage: %v", err)
|
|
}
|
|
root, nodes := tr.Commit(false)
|
|
|
|
// Persist all collected nodes via the standard account-trie path
|
|
// scheme accessor — the bintrie sits in the same key space as the
|
|
// account trie because there are no per-account storage tries in
|
|
// EIP-7864.
|
|
batch := db.NewBatch()
|
|
for path, node := range nodes.Nodes {
|
|
if node.IsDeleted() {
|
|
rawdb.DeleteAccountTrieNode(batch, []byte(path))
|
|
continue
|
|
}
|
|
rawdb.WriteAccountTrieNode(batch, []byte(path), node.Blob)
|
|
}
|
|
if err := batch.Write(); err != nil {
|
|
t.Fatalf("flush trie nodes: %v", err)
|
|
}
|
|
|
|
return root, []addrAcct{
|
|
{addr: addr1, hasStorage: true, slot: slot, slotVal: slotValue},
|
|
{addr: addr2, hasStorage: false},
|
|
}
|
|
}
|
|
|
|
// addrAcct describes a test account so the assertions phase can re-derive
|
|
// the bintrie keys it should find on disk.
|
|
type addrAcct struct {
|
|
addr common.Address
|
|
hasStorage bool
|
|
slot common.Hash
|
|
slotVal []byte
|
|
}
|
|
|
|
// runTestBintrieGenerator wires up a generator with the bintrie codec and
|
|
// drives generateBinTrieStems to completion. It returns the codec and the
|
|
// underlying db so the assertions can read back stem blobs.
|
|
func runTestBintrieGenerator(t *testing.T, db ethdb.Database, root common.Hash, marker []byte) {
|
|
t.Helper()
|
|
|
|
codec := newBintrieFlatCodec(db)
|
|
gen := &generator{
|
|
db: db,
|
|
codec: codec,
|
|
stats: &generatorStats{start: time.Now()},
|
|
abort: make(chan chan struct{}, 1),
|
|
done: make(chan struct{}),
|
|
}
|
|
ctx := newBintrieGeneratorContext(root, marker, db)
|
|
defer ctx.close()
|
|
|
|
if err := gen.generateBinTrieStems(ctx); err != nil {
|
|
t.Fatalf("generateBinTrieStems: %v", err)
|
|
}
|
|
if err := ctx.batch.Write(); err != nil {
|
|
t.Fatalf("final batch write: %v", err)
|
|
}
|
|
}
|
|
|
|
// TestBintrieGeneratorRebuildsStems verifies the happy-path:
|
|
// - Build a small bintrie with two accounts and one storage slot.
|
|
// - Run the generator on its root.
|
|
// - Read back the stem blobs and check every offset round-trips.
|
|
//
|
|
// This is the primary "the generator works" test.
|
|
func TestBintrieGeneratorRebuildsStems(t *testing.T) {
|
|
db := rawdb.NewMemoryDatabase()
|
|
root, accounts := buildTestBintrie(t, db)
|
|
|
|
// Sanity-check that the bintrie isn't trivially empty.
|
|
if root == (common.Hash{}) || root == types.EmptyBinaryHash {
|
|
t.Fatal("test bintrie produced an empty root")
|
|
}
|
|
|
|
runTestBintrieGenerator(t, db, root, nil)
|
|
|
|
// Each test account must have its BasicData (offset 0) and CodeHash
|
|
// (offset 1) entries on disk after generation.
|
|
for _, a := range accounts {
|
|
stem := bintrie.GetBinaryTreeKeyBasicData(a.addr)[:bintrie.StemSize]
|
|
blob := rawdb.ReadBinTrieStem(db, stem)
|
|
if len(blob) == 0 {
|
|
t.Errorf("addr %x: stem blob missing after generation", a.addr)
|
|
continue
|
|
}
|
|
basic, err := extractStemOffset(blob, bintrie.BasicDataLeafKey)
|
|
if err != nil || len(basic) != 32 {
|
|
t.Errorf("addr %x: BasicData missing/invalid (err=%v len=%d)", a.addr, err, len(basic))
|
|
}
|
|
codeHash, err := extractStemOffset(blob, bintrie.CodeHashLeafKey)
|
|
if err != nil || !bytes.Equal(codeHash, types.EmptyCodeHash[:]) {
|
|
t.Errorf("addr %x: CodeHash mismatch (err=%v got=%x)", a.addr, err, codeHash)
|
|
}
|
|
}
|
|
|
|
// The storage slot must be present at its derived stem (which may
|
|
// equal the account's BasicData stem for header slots, or differ for
|
|
// out-of-header slots — slot 7 is in-header so we expect the same
|
|
// stem as BasicData).
|
|
a := accounts[0]
|
|
storageKey := bintrie.GetBinaryTreeKeyStorageSlot(a.addr, a.slot[:])
|
|
storageBlob := rawdb.ReadBinTrieStem(db, storageKey[:bintrie.StemSize])
|
|
if len(storageBlob) == 0 {
|
|
t.Fatal("storage stem blob missing")
|
|
}
|
|
got, err := extractStemOffset(storageBlob, storageKey[bintrie.StemSize])
|
|
if err != nil {
|
|
t.Fatalf("extract storage offset: %v", err)
|
|
}
|
|
if !bytes.Equal(got, a.slotVal) {
|
|
t.Errorf("storage value mismatch: got %x want %x", got, a.slotVal)
|
|
}
|
|
}
|
|
|
|
// TestBintrieGeneratorResume verifies the resume path: a generator
|
|
// started with a non-zero marker should produce on-disk stem blobs
|
|
// covering only the keys at or after the marker. We pick the marker as
|
|
// the SECOND populated stem in the trie so the assertions can verify
|
|
// the first stem was skipped and the second-onwards stems were emitted.
|
|
//
|
|
// This is a thinner check than the rebuild test because the iterator's
|
|
// resume contract is exercised more thoroughly by the iterator-level
|
|
// tests in trie/bintrie/iterator_test.go — here we just confirm the
|
|
// generator wires through to it.
|
|
func TestBintrieGeneratorResume(t *testing.T) {
|
|
db := rawdb.NewMemoryDatabase()
|
|
root, accounts := buildTestBintrie(t, db)
|
|
|
|
// Pick the larger of the two account stems as the resume marker;
|
|
// after generation, only the larger stem should appear on disk.
|
|
stem1 := bintrie.GetBinaryTreeKeyBasicData(accounts[0].addr)[:bintrie.StemSize]
|
|
stem2 := bintrie.GetBinaryTreeKeyBasicData(accounts[1].addr)[:bintrie.StemSize]
|
|
larger := stem1
|
|
smaller := stem2
|
|
if bytes.Compare(stem1, stem2) < 0 {
|
|
larger, smaller = stem2, stem1
|
|
}
|
|
|
|
// Marker must be a 32-byte key (stem || offset). Offset 0 picks the
|
|
// BasicData of the larger stem.
|
|
marker := make([]byte, 32)
|
|
copy(marker, larger)
|
|
|
|
runTestBintrieGenerator(t, db, root, marker)
|
|
|
|
if got := rawdb.ReadBinTrieStem(db, smaller); len(got) != 0 {
|
|
t.Errorf("smaller stem should have been skipped by resume marker, got %x", got)
|
|
}
|
|
if got := rawdb.ReadBinTrieStem(db, larger); len(got) == 0 {
|
|
t.Errorf("larger stem should have been generated after resume marker")
|
|
}
|
|
}
|