2016-07-14 15:17:03 +00:00
|
|
|
// 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 core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
2017-04-04 22:16:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus/ethash"
|
2018-09-24 12:57:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2017-01-17 11:19:50 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2016-07-14 15:17:03 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Tests that DAO-fork enabled clients can properly filter out fork-commencing
|
|
|
|
// blocks based on their extradata fields.
|
|
|
|
func TestDAOForkRangeExtradata(t *testing.T) {
|
|
|
|
forkBlock := big.NewInt(32)
|
2022-08-30 16:22:28 +00:00
|
|
|
chainConfig := *params.NonActivatedConfig
|
|
|
|
chainConfig.HomesteadBlock = big.NewInt(0)
|
2016-07-14 15:17:03 +00:00
|
|
|
|
|
|
|
// Generate a common prefix for both pro-forkers and non-forkers
|
2022-08-30 16:22:28 +00:00
|
|
|
gspec := &Genesis{
|
|
|
|
BaseFee: big.NewInt(params.InitialBaseFee),
|
|
|
|
Config: &chainConfig,
|
|
|
|
}
|
2022-09-07 18:21:59 +00:00
|
|
|
genDb, prefix, _ := GenerateChainWithGenesis(gspec, ethash.NewFaker(), int(forkBlock.Int64()-1), func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
|
|
|
|
// Create the concurrent, conflicting two nodes
|
2018-09-24 12:57:49 +00:00
|
|
|
proDb := rawdb.NewMemoryDatabase()
|
2022-08-30 16:22:28 +00:00
|
|
|
proConf := *params.NonActivatedConfig
|
|
|
|
proConf.HomesteadBlock = big.NewInt(0)
|
2017-09-14 07:59:05 +00:00
|
|
|
proConf.DAOForkBlock = forkBlock
|
|
|
|
proConf.DAOForkSupport = true
|
2022-08-30 16:22:28 +00:00
|
|
|
progspec := &Genesis{
|
|
|
|
BaseFee: big.NewInt(params.InitialBaseFee),
|
|
|
|
Config: &proConf,
|
|
|
|
}
|
|
|
|
proBc, _ := NewBlockChain(proDb, nil, progspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2017-08-07 12:47:25 +00:00
|
|
|
defer proBc.Stop()
|
2016-07-14 15:17:03 +00:00
|
|
|
|
2018-09-24 12:57:49 +00:00
|
|
|
conDb := rawdb.NewMemoryDatabase()
|
2022-08-30 16:22:28 +00:00
|
|
|
conConf := *params.NonActivatedConfig
|
|
|
|
conConf.HomesteadBlock = big.NewInt(0)
|
2017-09-14 07:59:05 +00:00
|
|
|
conConf.DAOForkBlock = forkBlock
|
|
|
|
conConf.DAOForkSupport = false
|
2022-08-30 16:22:28 +00:00
|
|
|
congspec := &Genesis{
|
|
|
|
BaseFee: big.NewInt(params.InitialBaseFee),
|
|
|
|
Config: &conConf,
|
|
|
|
}
|
|
|
|
conBc, _ := NewBlockChain(conDb, nil, congspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2017-08-07 12:47:25 +00:00
|
|
|
defer conBc.Stop()
|
2016-07-14 15:17:03 +00:00
|
|
|
|
|
|
|
if _, err := proBc.InsertChain(prefix); err != nil {
|
|
|
|
t.Fatalf("pro-fork: failed to import chain prefix: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := conBc.InsertChain(prefix); err != nil {
|
|
|
|
t.Fatalf("con-fork: failed to import chain prefix: %v", err)
|
|
|
|
}
|
|
|
|
// Try to expand both pro-fork and non-fork chains iteratively with other camp's blocks
|
|
|
|
for i := int64(0); i < params.DAOForkExtraRange.Int64(); i++ {
|
|
|
|
// Create a pro-fork block, and try to feed into the no-fork chain
|
2022-09-07 18:21:59 +00:00
|
|
|
bc, _ := NewBlockChain(rawdb.NewMemoryDatabase(), nil, congspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2016-07-14 15:17:03 +00:00
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().Number.Uint64()))
|
2016-07-14 15:17:03 +00:00
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
if err := bc.triedb.Commit(bc.CurrentHeader().Root, false); err != nil {
|
2018-02-05 16:40:32 +00:00
|
|
|
t.Fatalf("failed to commit contra-fork head for expansion: %v", err)
|
|
|
|
}
|
2022-10-06 11:39:20 +00:00
|
|
|
bc.Stop()
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&proConf, conBc.GetBlockByHash(conBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := conBc.InsertChain(blocks); err == nil {
|
|
|
|
t.Fatalf("contra-fork chain accepted pro-fork block: %v", blocks[0])
|
|
|
|
}
|
|
|
|
// Create a proper no-fork block for the contra-forker
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&conConf, conBc.GetBlockByHash(conBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := conBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("contra-fork chain didn't accepted no-fork block: %v", err)
|
|
|
|
}
|
|
|
|
// Create a no-fork block, and try to feed into the pro-fork chain
|
2022-09-07 18:21:59 +00:00
|
|
|
bc, _ = NewBlockChain(rawdb.NewMemoryDatabase(), nil, progspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2016-07-14 15:17:03 +00:00
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().Number.Uint64()))
|
2016-07-14 15:17:03 +00:00
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
if err := bc.triedb.Commit(bc.CurrentHeader().Root, false); err != nil {
|
2018-02-05 16:40:32 +00:00
|
|
|
t.Fatalf("failed to commit pro-fork head for expansion: %v", err)
|
|
|
|
}
|
2022-10-06 11:39:20 +00:00
|
|
|
bc.Stop()
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&conConf, proBc.GetBlockByHash(proBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := proBc.InsertChain(blocks); err == nil {
|
|
|
|
t.Fatalf("pro-fork chain accepted contra-fork block: %v", blocks[0])
|
|
|
|
}
|
|
|
|
// Create a proper pro-fork block for the pro-forker
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&proConf, proBc.GetBlockByHash(proBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := proBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("pro-fork chain didn't accepted pro-fork block: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Verify that contra-forkers accept pro-fork extra-datas after forking finishes
|
2022-09-07 18:21:59 +00:00
|
|
|
bc, _ := NewBlockChain(rawdb.NewMemoryDatabase(), nil, congspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2017-08-07 12:47:25 +00:00
|
|
|
defer bc.Stop()
|
2016-07-14 15:17:03 +00:00
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().Number.Uint64()))
|
2016-07-14 15:17:03 +00:00
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
if err := bc.triedb.Commit(bc.CurrentHeader().Root, false); err != nil {
|
2018-02-05 16:40:32 +00:00
|
|
|
t.Fatalf("failed to commit contra-fork head for expansion: %v", err)
|
|
|
|
}
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&proConf, conBc.GetBlockByHash(conBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := conBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("contra-fork chain didn't accept pro-fork block post-fork: %v", err)
|
|
|
|
}
|
|
|
|
// Verify that pro-forkers accept contra-fork extra-datas after forking finishes
|
2022-09-07 18:21:59 +00:00
|
|
|
bc, _ = NewBlockChain(rawdb.NewMemoryDatabase(), nil, progspec, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
|
2017-08-07 12:47:25 +00:00
|
|
|
defer bc.Stop()
|
2016-07-14 15:17:03 +00:00
|
|
|
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().Number.Uint64()))
|
2016-07-14 15:17:03 +00:00
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
if err := bc.triedb.Commit(bc.CurrentHeader().Root, false); err != nil {
|
2018-02-05 16:40:32 +00:00
|
|
|
t.Fatalf("failed to commit pro-fork head for expansion: %v", err)
|
|
|
|
}
|
2023-03-02 06:29:15 +00:00
|
|
|
blocks, _ = GenerateChain(&conConf, proBc.GetBlockByHash(proBc.CurrentBlock().Hash()), ethash.NewFaker(), genDb, 1, func(i int, gen *BlockGen) {})
|
2016-07-14 15:17:03 +00:00
|
|
|
if _, err := proBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("pro-fork chain didn't accept contra-fork block post-fork: %v", err)
|
|
|
|
}
|
|
|
|
}
|