2022-05-24 18:39:40 +00:00
|
|
|
// Copyright 2019 The go-ethereum Authors
|
2020-07-28 15:02:35 +00:00
|
|
|
// 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 les
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/consensus/ethash"
|
|
|
|
"github.com/ethereum/go-ethereum/core"
|
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2022-04-08 13:48:52 +00:00
|
|
|
"github.com/ethereum/go-ethereum/light"
|
2020-07-28 15:02:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
2021-10-26 06:44:43 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2020-07-28 15:02:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// verifyImportEvent verifies that one single event arrive on an import channel.
|
|
|
|
func verifyImportEvent(t *testing.T, imported chan interface{}, arrive bool) {
|
|
|
|
if arrive {
|
|
|
|
select {
|
|
|
|
case <-imported:
|
|
|
|
case <-time.After(time.Second):
|
|
|
|
t.Fatalf("import timeout")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
select {
|
|
|
|
case <-imported:
|
|
|
|
t.Fatalf("import invoked")
|
|
|
|
case <-time.After(20 * time.Millisecond):
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyImportDone verifies that no more events are arriving on an import channel.
|
|
|
|
func verifyImportDone(t *testing.T, imported chan interface{}) {
|
|
|
|
select {
|
|
|
|
case <-imported:
|
|
|
|
t.Fatalf("extra block imported")
|
|
|
|
case <-time.After(50 * time.Millisecond):
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyChainHeight verifies the chain height is as expected.
|
|
|
|
func verifyChainHeight(t *testing.T, fetcher *lightFetcher, height uint64) {
|
|
|
|
local := fetcher.chain.CurrentHeader().Number.Uint64()
|
|
|
|
if local != height {
|
|
|
|
t.Fatalf("chain height mismatch, got %d, want %d", local, height)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSequentialAnnouncementsLes2(t *testing.T) { testSequentialAnnouncements(t, 2) }
|
|
|
|
func TestSequentialAnnouncementsLes3(t *testing.T) { testSequentialAnnouncements(t, 3) }
|
|
|
|
|
|
|
|
func testSequentialAnnouncements(t *testing.T, protocol int) {
|
2021-02-25 13:24:04 +00:00
|
|
|
netconfig := testnetConfig{
|
|
|
|
blocks: 4,
|
|
|
|
protocol: protocol,
|
|
|
|
nopruning: true,
|
|
|
|
}
|
|
|
|
s, c, teardown := newClientServerEnv(t, netconfig)
|
2020-07-28 15:02:35 +00:00
|
|
|
defer teardown()
|
|
|
|
|
2021-08-25 09:56:25 +00:00
|
|
|
// Create connected peer pair, the initial signal from LES server
|
|
|
|
// is discarded to prevent syncing.
|
|
|
|
p1, _, err := newTestPeerPair("peer", protocol, s.handler, c.handler, true)
|
2020-07-28 15:02:35 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create peer pair %v", err)
|
|
|
|
}
|
|
|
|
importCh := make(chan interface{})
|
|
|
|
c.handler.fetcher.newHeadHook = func(header *types.Header) {
|
|
|
|
importCh <- header
|
|
|
|
}
|
|
|
|
for i := uint64(1); i <= s.backend.Blockchain().CurrentHeader().Number.Uint64(); i++ {
|
|
|
|
header := s.backend.Blockchain().GetHeaderByNumber(i)
|
|
|
|
hash, number := header.Hash(), header.Number.Uint64()
|
|
|
|
td := rawdb.ReadTd(s.db, hash, number)
|
|
|
|
|
|
|
|
announce := announceData{hash, number, td, 0, nil}
|
|
|
|
if p1.cpeer.announceType == announceTypeSigned {
|
|
|
|
announce.sign(s.handler.server.privateKey)
|
|
|
|
}
|
|
|
|
p1.cpeer.sendAnnounce(announce)
|
|
|
|
verifyImportEvent(t, importCh, true)
|
|
|
|
}
|
|
|
|
verifyImportDone(t, importCh)
|
|
|
|
verifyChainHeight(t, c.handler.fetcher, 4)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGappedAnnouncementsLes2(t *testing.T) { testGappedAnnouncements(t, 2) }
|
|
|
|
func TestGappedAnnouncementsLes3(t *testing.T) { testGappedAnnouncements(t, 3) }
|
|
|
|
|
|
|
|
func testGappedAnnouncements(t *testing.T, protocol int) {
|
2021-02-25 13:24:04 +00:00
|
|
|
netconfig := testnetConfig{
|
|
|
|
blocks: 4,
|
|
|
|
protocol: protocol,
|
|
|
|
nopruning: true,
|
|
|
|
}
|
|
|
|
s, c, teardown := newClientServerEnv(t, netconfig)
|
2020-07-28 15:02:35 +00:00
|
|
|
defer teardown()
|
|
|
|
|
2021-08-25 09:56:25 +00:00
|
|
|
// Create connected peer pair, the initial signal from LES server
|
|
|
|
// is discarded to prevent syncing.
|
|
|
|
peer, _, err := newTestPeerPair("peer", protocol, s.handler, c.handler, true)
|
2020-07-28 15:02:35 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create peer pair %v", err)
|
|
|
|
}
|
|
|
|
done := make(chan *types.Header, 1)
|
|
|
|
c.handler.fetcher.newHeadHook = func(header *types.Header) { done <- header }
|
|
|
|
|
|
|
|
// Prepare announcement by latest header.
|
|
|
|
latest := s.backend.Blockchain().CurrentHeader()
|
|
|
|
hash, number := latest.Hash(), latest.Number.Uint64()
|
|
|
|
td := rawdb.ReadTd(s.db, hash, number)
|
|
|
|
|
|
|
|
// Sign the announcement if necessary.
|
|
|
|
announce := announceData{hash, number, td, 0, nil}
|
|
|
|
if peer.cpeer.announceType == announceTypeSigned {
|
|
|
|
announce.sign(s.handler.server.privateKey)
|
|
|
|
}
|
|
|
|
peer.cpeer.sendAnnounce(announce)
|
|
|
|
|
|
|
|
<-done // Wait syncing
|
|
|
|
verifyChainHeight(t, c.handler.fetcher, 4)
|
|
|
|
|
|
|
|
// Send a reorged announcement
|
|
|
|
blocks, _ := core.GenerateChain(rawdb.ReadChainConfig(s.db, s.backend.Blockchain().Genesis().Hash()), s.backend.Blockchain().GetBlockByNumber(3),
|
|
|
|
ethash.NewFaker(), s.db, 2, func(i int, gen *core.BlockGen) {
|
|
|
|
gen.OffsetTime(-9) // higher block difficulty
|
|
|
|
})
|
|
|
|
s.backend.Blockchain().InsertChain(blocks)
|
|
|
|
|
|
|
|
<-done // Wait syncing
|
|
|
|
verifyChainHeight(t, c.handler.fetcher, 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTrustedAnnouncementsLes2(t *testing.T) { testTrustedAnnouncement(t, 2) }
|
|
|
|
func TestTrustedAnnouncementsLes3(t *testing.T) { testTrustedAnnouncement(t, 3) }
|
|
|
|
|
|
|
|
func testTrustedAnnouncement(t *testing.T, protocol int) {
|
2022-04-08 13:48:52 +00:00
|
|
|
//log.Root().SetHandler(log.LvlFilterHandler(log.LvlDebug, log.StreamHandler(os.Stderr, log.TerminalFormat(true))))
|
2020-07-28 15:02:35 +00:00
|
|
|
var (
|
|
|
|
servers []*testServer
|
|
|
|
teardowns []func()
|
|
|
|
nodes []*enode.Node
|
|
|
|
ids []string
|
|
|
|
cpeers []*clientPeer
|
2022-04-08 13:48:52 +00:00
|
|
|
|
|
|
|
config = light.TestServerIndexerConfig
|
|
|
|
waitIndexers = func(cIndexer, bIndexer, btIndexer *core.ChainIndexer) {
|
|
|
|
for {
|
|
|
|
cs, _, _ := cIndexer.Sections()
|
|
|
|
bts, _, _ := btIndexer.Sections()
|
|
|
|
if cs >= 2 && bts >= 2 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
2020-07-28 15:02:35 +00:00
|
|
|
)
|
2022-04-08 13:48:52 +00:00
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
s, n, teardown := newTestServerPeer(t, int(2*config.ChtSize+config.ChtConfirms), protocol, waitIndexers)
|
2020-07-28 15:02:35 +00:00
|
|
|
|
|
|
|
servers = append(servers, s)
|
|
|
|
nodes = append(nodes, n)
|
|
|
|
teardowns = append(teardowns, teardown)
|
|
|
|
|
|
|
|
// A half of them are trusted servers.
|
2022-04-08 13:48:52 +00:00
|
|
|
if i < 2 {
|
2020-07-28 15:02:35 +00:00
|
|
|
ids = append(ids, n.String())
|
|
|
|
}
|
|
|
|
}
|
2021-02-25 13:24:04 +00:00
|
|
|
netconfig := testnetConfig{
|
|
|
|
protocol: protocol,
|
|
|
|
nopruning: true,
|
|
|
|
ulcServers: ids,
|
|
|
|
ulcFraction: 60,
|
|
|
|
}
|
|
|
|
_, c, teardown := newClientServerEnv(t, netconfig)
|
2020-07-28 15:02:35 +00:00
|
|
|
defer teardown()
|
|
|
|
defer func() {
|
|
|
|
for i := 0; i < len(teardowns); i++ {
|
|
|
|
teardowns[i]()
|
|
|
|
}
|
|
|
|
}()
|
2022-04-08 13:48:52 +00:00
|
|
|
|
|
|
|
// Register the assembled checkpoint as hardcoded one.
|
|
|
|
head := servers[0].chtIndexer.SectionHead(0)
|
|
|
|
cp := ¶ms.TrustedCheckpoint{
|
|
|
|
SectionIndex: 0,
|
|
|
|
SectionHead: head,
|
|
|
|
CHTRoot: light.GetChtRoot(servers[0].db, 0, head),
|
|
|
|
BloomRoot: light.GetBloomTrieRoot(servers[0].db, 0, head),
|
|
|
|
}
|
|
|
|
c.handler.checkpoint = cp
|
|
|
|
c.handler.backend.blockchain.AddTrustedCheckpoint(cp)
|
|
|
|
|
2020-07-28 15:02:35 +00:00
|
|
|
// Connect all server instances.
|
|
|
|
for i := 0; i < len(servers); i++ {
|
2022-06-13 14:24:45 +00:00
|
|
|
_, cp, err := connect(servers[i].handler, nodes[i].ID(), c.handler, protocol, true)
|
2020-07-28 15:02:35 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("connect server and client failed, err %s", err)
|
|
|
|
}
|
|
|
|
cpeers = append(cpeers, cp)
|
|
|
|
}
|
|
|
|
newHead := make(chan *types.Header, 1)
|
|
|
|
c.handler.fetcher.newHeadHook = func(header *types.Header) { newHead <- header }
|
|
|
|
|
|
|
|
check := func(height []uint64, expected uint64, callback func()) {
|
|
|
|
for i := 0; i < len(height); i++ {
|
|
|
|
for j := 0; j < len(servers); j++ {
|
|
|
|
h := servers[j].backend.Blockchain().GetHeaderByNumber(height[i])
|
|
|
|
hash, number := h.Hash(), h.Number.Uint64()
|
|
|
|
td := rawdb.ReadTd(servers[j].db, hash, number)
|
|
|
|
|
|
|
|
// Sign the announcement if necessary.
|
|
|
|
announce := announceData{hash, number, td, 0, nil}
|
|
|
|
p := cpeers[j]
|
|
|
|
if p.announceType == announceTypeSigned {
|
|
|
|
announce.sign(servers[j].handler.server.privateKey)
|
|
|
|
}
|
|
|
|
p.sendAnnounce(announce)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if callback != nil {
|
|
|
|
callback()
|
|
|
|
}
|
|
|
|
verifyChainHeight(t, c.handler.fetcher, expected)
|
|
|
|
}
|
2022-04-08 13:48:52 +00:00
|
|
|
check([]uint64{1}, 1, func() { <-newHead }) // Sequential announcements
|
|
|
|
check([]uint64{config.ChtSize + config.ChtConfirms}, config.ChtSize+config.ChtConfirms, func() { <-newHead }) // ULC-style light syncing, rollback untrusted headers
|
|
|
|
check([]uint64{2*config.ChtSize + config.ChtConfirms}, 2*config.ChtSize+config.ChtConfirms, func() { <-newHead }) // Sync the whole chain.
|
2020-07-28 15:02:35 +00:00
|
|
|
}
|
|
|
|
|
2021-02-25 13:24:04 +00:00
|
|
|
func TestInvalidAnnouncesLES2(t *testing.T) { testInvalidAnnounces(t, lpv2) }
|
|
|
|
func TestInvalidAnnouncesLES3(t *testing.T) { testInvalidAnnounces(t, lpv3) }
|
|
|
|
func TestInvalidAnnouncesLES4(t *testing.T) { testInvalidAnnounces(t, lpv4) }
|
|
|
|
|
|
|
|
func testInvalidAnnounces(t *testing.T, protocol int) {
|
|
|
|
netconfig := testnetConfig{
|
|
|
|
blocks: 4,
|
|
|
|
protocol: protocol,
|
|
|
|
nopruning: true,
|
|
|
|
}
|
|
|
|
s, c, teardown := newClientServerEnv(t, netconfig)
|
2020-07-28 15:02:35 +00:00
|
|
|
defer teardown()
|
|
|
|
|
2021-08-25 09:56:25 +00:00
|
|
|
// Create connected peer pair, the initial signal from LES server
|
|
|
|
// is discarded to prevent syncing.
|
|
|
|
peer, _, err := newTestPeerPair("peer", lpv3, s.handler, c.handler, true)
|
2020-07-28 15:02:35 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create peer pair %v", err)
|
|
|
|
}
|
|
|
|
done := make(chan *types.Header, 1)
|
|
|
|
c.handler.fetcher.newHeadHook = func(header *types.Header) { done <- header }
|
|
|
|
|
|
|
|
// Prepare announcement by latest header.
|
|
|
|
headerOne := s.backend.Blockchain().GetHeaderByNumber(1)
|
|
|
|
hash, number := headerOne.Hash(), headerOne.Number.Uint64()
|
2021-10-26 06:44:43 +00:00
|
|
|
td := big.NewInt(params.GenesisDifficulty.Int64() + 200) // bad td
|
2020-07-28 15:02:35 +00:00
|
|
|
|
|
|
|
// Sign the announcement if necessary.
|
|
|
|
announce := announceData{hash, number, td, 0, nil}
|
|
|
|
if peer.cpeer.announceType == announceTypeSigned {
|
|
|
|
announce.sign(s.handler.server.privateKey)
|
|
|
|
}
|
|
|
|
peer.cpeer.sendAnnounce(announce)
|
|
|
|
<-done // Wait syncing
|
|
|
|
|
2022-10-11 07:37:00 +00:00
|
|
|
// Ensure the bad peer is evicted
|
2020-07-28 15:02:35 +00:00
|
|
|
if c.handler.backend.peers.len() != 0 {
|
|
|
|
t.Fatalf("Failed to evict invalid peer")
|
|
|
|
}
|
|
|
|
}
|