downloader_test.go 60.7 KB
Newer Older
F
Felix Lange 已提交
1
// Copyright 2015 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
F
Felix Lange 已提交
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
F
Felix Lange 已提交
5 6 7 8
// 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.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
F
Felix Lange 已提交
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
F
Felix Lange 已提交
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
F
Felix Lange 已提交
16

17 18 19
package downloader

import (
20
	"errors"
21
	"fmt"
22
	"math/big"
23
	"strings"
24
	"sync"
25
	"sync/atomic"
26 27 28
	"testing"
	"time"

29
	"github.com/ethereum/go-ethereum"
30 31
	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/types"
32
	"github.com/ethereum/go-ethereum/ethdb"
O
obscuren 已提交
33
	"github.com/ethereum/go-ethereum/event"
34
	"github.com/ethereum/go-ethereum/trie"
35 36
)

37
// Reduce some of the parameters to make the tester faster.
38
func init() {
39
	MaxForkAncestry = uint64(10000)
40 41
	blockCacheItems = 1024
	fsHeaderContCheck = 500 * time.Millisecond
42 43 44 45 46 47 48 49 50
}

// downloadTester is a test simulator for mocking out local block chain.
type downloadTester struct {
	downloader *Downloader

	genesis *types.Block   // Genesis blocks used by the tester and peers
	stateDb ethdb.Database // Database used by the tester for syncing from peers
	peerDb  ethdb.Database // Database of the peers containing all data
51
	peers   map[string]*downloadTesterPeer
52 53 54 55 56 57 58 59 60 61 62 63 64

	ownHashes   []common.Hash                  // Hash chain belonging to the tester
	ownHeaders  map[common.Hash]*types.Header  // Headers belonging to the tester
	ownBlocks   map[common.Hash]*types.Block   // Blocks belonging to the tester
	ownReceipts map[common.Hash]types.Receipts // Receipts belonging to the tester
	ownChainTd  map[common.Hash]*big.Int       // Total difficulties of the blocks in the local chain

	lock sync.RWMutex
}

// newTester creates a new downloader test mocker.
func newTester() *downloadTester {
	tester := &downloadTester{
65 66 67 68 69 70 71 72
		genesis:     testGenesis,
		peerDb:      testDB,
		peers:       make(map[string]*downloadTesterPeer),
		ownHashes:   []common.Hash{testGenesis.Hash()},
		ownHeaders:  map[common.Hash]*types.Header{testGenesis.Hash(): testGenesis.Header()},
		ownBlocks:   map[common.Hash]*types.Block{testGenesis.Hash(): testGenesis},
		ownReceipts: map[common.Hash]types.Receipts{testGenesis.Hash(): nil},
		ownChainTd:  map[common.Hash]*big.Int{testGenesis.Hash(): testGenesis.Difficulty()},
73
	}
74
	tester.stateDb = ethdb.NewMemDatabase()
75
	tester.stateDb.Put(testGenesis.Root().Bytes(), []byte{0x00})
76 77

	tester.downloader = New(FullSync, 0, tester.stateDb, new(event.TypeMux), tester, nil, tester.dropPeer)
78
	return tester
79 80
}

81 82 83 84 85 86
// terminate aborts any operations on the embedded downloader and releases all
// held resources.
func (dl *downloadTester) terminate() {
	dl.downloader.Terminate()
}

87
// sync starts synchronizing with a remote peer, blocking until it completes.
88
func (dl *downloadTester) sync(id string, td *big.Int, mode SyncMode) error {
89
	dl.lock.RLock()
90
	hash := dl.peers[id].chain.headBlock().Hash()
91 92
	// If no particular TD was requested, load from the peer's blockchain
	if td == nil {
93
		td = dl.peers[id].chain.td(hash)
94
	}
95
	dl.lock.RUnlock()
96 97 98 99 100 101 102 103 104 105 106

	// Synchronise with the chosen peer and ensure proper cleanup afterwards
	err := dl.downloader.synchronise(id, hash, td, mode)
	select {
	case <-dl.downloader.cancelCh:
		// Ok, downloader fully cancelled after sync cycle
	default:
		// Downloader is still accepting packets, can block a peer up
		panic("downloader active post sync cycle") // panic will be caught by tester
	}
	return err
O
obscuren 已提交
107 108
}

109
// HasHeader checks if a header is present in the testers canonical chain.
110
func (dl *downloadTester) HasHeader(hash common.Hash, number uint64) bool {
111
	return dl.GetHeaderByHash(hash) != nil
112 113
}

114 115 116
// HasBlock checks if a block is present in the testers canonical chain.
func (dl *downloadTester) HasBlock(hash common.Hash, number uint64) bool {
	return dl.GetBlockByHash(hash) != nil
117 118
}

119 120 121 122 123 124 125 126 127
// HasFastBlock checks if a block is present in the testers canonical chain.
func (dl *downloadTester) HasFastBlock(hash common.Hash, number uint64) bool {
	dl.lock.RLock()
	defer dl.lock.RUnlock()

	_, ok := dl.ownReceipts[hash]
	return ok
}

128 129
// GetHeader retrieves a header from the testers canonical chain.
func (dl *downloadTester) GetHeaderByHash(hash common.Hash) *types.Header {
130 131 132
	dl.lock.RLock()
	defer dl.lock.RUnlock()

133
	return dl.ownHeaders[hash]
134 135
}

136 137
// GetBlock retrieves a block from the testers canonical chain.
func (dl *downloadTester) GetBlockByHash(hash common.Hash) *types.Block {
138 139 140
	dl.lock.RLock()
	defer dl.lock.RUnlock()

141 142 143
	return dl.ownBlocks[hash]
}

144 145
// CurrentHeader retrieves the current head header from the canonical chain.
func (dl *downloadTester) CurrentHeader() *types.Header {
146 147 148
	dl.lock.RLock()
	defer dl.lock.RUnlock()

149
	for i := len(dl.ownHashes) - 1; i >= 0; i-- {
150
		if header := dl.ownHeaders[dl.ownHashes[i]]; header != nil {
151 152 153
			return header
		}
	}
154
	return dl.genesis.Header()
155 156
}

157 158
// CurrentBlock retrieves the current head block from the canonical chain.
func (dl *downloadTester) CurrentBlock() *types.Block {
159 160 161
	dl.lock.RLock()
	defer dl.lock.RUnlock()

162
	for i := len(dl.ownHashes) - 1; i >= 0; i-- {
163
		if block := dl.ownBlocks[dl.ownHashes[i]]; block != nil {
164 165 166
			if _, err := dl.stateDb.Get(block.Root().Bytes()); err == nil {
				return block
			}
167 168
		}
	}
169
	return dl.genesis
170 171
}

172 173
// CurrentFastBlock retrieves the current head fast-sync block from the canonical chain.
func (dl *downloadTester) CurrentFastBlock() *types.Block {
174 175 176 177
	dl.lock.RLock()
	defer dl.lock.RUnlock()

	for i := len(dl.ownHashes) - 1; i >= 0; i-- {
178
		if block := dl.ownBlocks[dl.ownHashes[i]]; block != nil {
179
			return block
180 181
		}
	}
182
	return dl.genesis
183 184
}

185
// FastSyncCommitHead manually sets the head block to a given hash.
186
func (dl *downloadTester) FastSyncCommitHead(hash common.Hash) error {
187
	// For now only check that the state trie is correct
188
	if block := dl.GetBlockByHash(hash); block != nil {
189
		_, err := trie.NewSecure(block.Root(), trie.NewDatabase(dl.stateDb), 0)
190 191 192
		return err
	}
	return fmt.Errorf("non existent block: %x", hash[:4])
193 194
}

195 196
// GetTd retrieves the block's total difficulty from the canonical chain.
func (dl *downloadTester) GetTd(hash common.Hash, number uint64) *big.Int {
197 198 199
	dl.lock.RLock()
	defer dl.lock.RUnlock()

200 201 202
	return dl.ownChainTd[hash]
}

203
// InsertHeaderChain injects a new batch of headers into the simulated chain.
204
func (dl *downloadTester) InsertHeaderChain(headers []*types.Header, checkFreq int) (i int, err error) {
205 206 207
	dl.lock.Lock()
	defer dl.lock.Unlock()

L
Leif Jurvetson 已提交
208
	// Do a quick check, as the blockchain.InsertHeaderChain doesn't insert anything in case of errors
209 210 211 212 213 214 215 216 217
	if _, ok := dl.ownHeaders[headers[0].ParentHash]; !ok {
		return 0, errors.New("unknown parent")
	}
	for i := 1; i < len(headers); i++ {
		if headers[i].ParentHash != headers[i-1].Hash() {
			return i, errors.New("unknown parent")
		}
	}
	// Do a full insert if pre-checks passed
218
	for i, header := range headers {
219 220 221
		if _, ok := dl.ownHeaders[header.Hash()]; ok {
			continue
		}
222 223 224 225 226
		if _, ok := dl.ownHeaders[header.ParentHash]; !ok {
			return i, errors.New("unknown parent")
		}
		dl.ownHashes = append(dl.ownHashes, header.Hash())
		dl.ownHeaders[header.Hash()] = header
227
		dl.ownChainTd[header.Hash()] = new(big.Int).Add(dl.ownChainTd[header.ParentHash], header.Difficulty)
228 229 230 231
	}
	return len(headers), nil
}

232
// InsertChain injects a new batch of blocks into the simulated chain.
233
func (dl *downloadTester) InsertChain(blocks types.Blocks) (i int, err error) {
234 235 236
	dl.lock.Lock()
	defer dl.lock.Unlock()

237
	for i, block := range blocks {
238
		if parent, ok := dl.ownBlocks[block.ParentHash()]; !ok {
239
			return i, errors.New("unknown parent")
240 241
		} else if _, err := dl.stateDb.Get(parent.Root().Bytes()); err != nil {
			return i, fmt.Errorf("unknown parent state %x: %v", parent.Root(), err)
242
		}
243 244 245 246
		if _, ok := dl.ownHeaders[block.Hash()]; !ok {
			dl.ownHashes = append(dl.ownHashes, block.Hash())
			dl.ownHeaders[block.Hash()] = block.Header()
		}
247
		dl.ownBlocks[block.Hash()] = block
248
		dl.ownReceipts[block.Hash()] = make(types.Receipts, 0)
249 250
		dl.stateDb.Put(block.Root().Bytes(), []byte{0x00})
		dl.ownChainTd[block.Hash()] = new(big.Int).Add(dl.ownChainTd[block.ParentHash()], block.Difficulty())
251 252 253 254
	}
	return len(blocks), nil
}

255
// InsertReceiptChain injects a new batch of receipts into the simulated chain.
256
func (dl *downloadTester) InsertReceiptChain(blocks types.Blocks, receipts []types.Receipts) (i int, err error) {
257 258 259 260
	dl.lock.Lock()
	defer dl.lock.Unlock()

	for i := 0; i < len(blocks) && i < len(receipts); i++ {
261 262 263
		if _, ok := dl.ownHeaders[blocks[i].Hash()]; !ok {
			return i, errors.New("unknown owner")
		}
264 265 266 267
		if _, ok := dl.ownBlocks[blocks[i].ParentHash()]; !ok {
			return i, errors.New("unknown parent")
		}
		dl.ownBlocks[blocks[i].Hash()] = blocks[i]
268
		dl.ownReceipts[blocks[i].Hash()] = receipts[i]
269 270 271 272
	}
	return len(blocks), nil
}

273 274
// Rollback removes some recently added elements from the chain.
func (dl *downloadTester) Rollback(hashes []common.Hash) {
275 276 277 278 279 280 281 282 283 284 285 286 287 288
	dl.lock.Lock()
	defer dl.lock.Unlock()

	for i := len(hashes) - 1; i >= 0; i-- {
		if dl.ownHashes[len(dl.ownHashes)-1] == hashes[i] {
			dl.ownHashes = dl.ownHashes[:len(dl.ownHashes)-1]
		}
		delete(dl.ownChainTd, hashes[i])
		delete(dl.ownHeaders, hashes[i])
		delete(dl.ownReceipts, hashes[i])
		delete(dl.ownBlocks, hashes[i])
	}
}

289
// newPeer registers a new block download source into the downloader.
290
func (dl *downloadTester) newPeer(id string, version int, chain *testChain) error {
291 292 293
	dl.lock.Lock()
	defer dl.lock.Unlock()

294 295 296
	peer := &downloadTesterPeer{dl: dl, id: id, chain: chain}
	dl.peers[id] = peer
	return dl.downloader.RegisterPeer(id, version, peer)
297 298
}

299 300
// dropPeer simulates a hard peer removal from the connection pool.
func (dl *downloadTester) dropPeer(id string) {
301 302 303
	dl.lock.Lock()
	defer dl.lock.Unlock()

304
	delete(dl.peers, id)
305 306 307
	dl.downloader.UnregisterPeer(id)
}

308
type downloadTesterPeer struct {
309 310 311 312 313
	dl            *downloadTester
	id            string
	lock          sync.RWMutex
	chain         *testChain
	missingStates map[common.Hash]bool // State entries that fast sync should not return
314 315 316
}

// Head constructs a function to retrieve a peer's current head hash
317
// and total difficulty.
318
func (dlp *downloadTesterPeer) Head() (common.Hash, *big.Int) {
319 320
	b := dlp.chain.headBlock()
	return b.Hash(), dlp.chain.td(b.Hash())
321 322
}

323
// RequestHeadersByHash constructs a GetBlockHeaders function based on a hashed
324 325
// origin; associated with a particular peer in the download tester. The returned
// function can be used to retrieve batches of headers from the particular peer.
326
func (dlp *downloadTesterPeer) RequestHeadersByHash(origin common.Hash, amount int, skip int, reverse bool) error {
327 328
	if reverse {
		panic("reverse header requests not supported")
329
	}
330

331 332 333
	result := dlp.chain.headersByHash(origin, amount, skip)
	go dlp.dl.downloader.DeliverHeaders(dlp.id, result)
	return nil
334 335
}

336
// RequestHeadersByNumber constructs a GetBlockHeaders function based on a numbered
337 338
// origin; associated with a particular peer in the download tester. The returned
// function can be used to retrieve batches of headers from the particular peer.
339
func (dlp *downloadTesterPeer) RequestHeadersByNumber(origin uint64, amount int, skip int, reverse bool) error {
340 341
	if reverse {
		panic("reverse header requests not supported")
342
	}
343 344 345

	result := dlp.chain.headersByNumber(origin, amount, skip)
	go dlp.dl.downloader.DeliverHeaders(dlp.id, result)
346
	return nil
347 348
}

349
// RequestBodies constructs a getBlockBodies method associated with a particular
350 351
// peer in the download tester. The returned function can be used to retrieve
// batches of block bodies from the particularly requested peer.
352
func (dlp *downloadTesterPeer) RequestBodies(hashes []common.Hash) error {
353 354
	txs, uncles := dlp.chain.bodies(hashes)
	go dlp.dl.downloader.DeliverBodies(dlp.id, txs, uncles)
355
	return nil
356 357
}

358
// RequestReceipts constructs a getReceipts method associated with a particular
359 360
// peer in the download tester. The returned function can be used to retrieve
// batches of block receipts from the particularly requested peer.
361
func (dlp *downloadTesterPeer) RequestReceipts(hashes []common.Hash) error {
362 363
	receipts := dlp.chain.receipts(hashes)
	go dlp.dl.downloader.DeliverReceipts(dlp.id, receipts)
364
	return nil
365 366
}

367
// RequestNodeData constructs a getNodeData method associated with a particular
368 369
// peer in the download tester. The returned function can be used to retrieve
// batches of node state data from the particularly requested peer.
370 371 372 373 374 375 376
func (dlp *downloadTesterPeer) RequestNodeData(hashes []common.Hash) error {
	dlp.dl.lock.RLock()
	defer dlp.dl.lock.RUnlock()

	results := make([][]byte, 0, len(hashes))
	for _, hash := range hashes {
		if data, err := dlp.dl.peerDb.Get(hash.Bytes()); err == nil {
377
			if !dlp.missingStates[hash] {
378
				results = append(results, data)
379 380 381
			}
		}
	}
382 383
	go dlp.dl.downloader.DeliverNodeData(dlp.id, results)
	return nil
384 385
}

386 387 388
// assertOwnChain checks if the local chain contains the correct number of items
// of the various chain components.
func assertOwnChain(t *testing.T, tester *downloadTester, length int) {
389 390 391
	// Mark this method as a helper to report errors at callsite, not in here
	t.Helper()

392 393 394 395 396 397
	assertOwnForkedChain(t, tester, 1, []int{length})
}

// assertOwnForkedChain checks if the local forked chain contains the correct
// number of items of the various chain components.
func assertOwnForkedChain(t *testing.T, tester *downloadTester, common int, lengths []int) {
398 399 400
	// Mark this method as a helper to report errors at callsite, not in here
	t.Helper()

401
	// Initialize the counters for the first fork
402
	headers, blocks, receipts := lengths[0], lengths[0], lengths[0]
403

404 405 406 407
	// Update the counters for each subsequent fork
	for _, length := range lengths[1:] {
		headers += length - common
		blocks += length - common
408
		receipts += length - common
409
	}
410
	if tester.downloader.mode == LightSync {
411
		blocks, receipts = 1, 1
412 413 414 415 416 417 418
	}
	if hs := len(tester.ownHeaders); hs != headers {
		t.Fatalf("synchronised headers mismatch: have %v, want %v", hs, headers)
	}
	if bs := len(tester.ownBlocks); bs != blocks {
		t.Fatalf("synchronised blocks mismatch: have %v, want %v", bs, blocks)
	}
419 420
	if rs := len(tester.ownReceipts); rs != receipts {
		t.Fatalf("synchronised receipts mismatch: have %v, want %v", rs, receipts)
421 422 423
	}
}

424 425 426
// Tests that simple synchronization against a canonical chain works correctly.
// In this test common ancestor lookup should be short circuited and not require
// binary searching.
427 428 429 430 431 432 433 434
func TestCanonicalSynchronisation62(t *testing.T)      { testCanonicalSynchronisation(t, 62, FullSync) }
func TestCanonicalSynchronisation63Full(t *testing.T)  { testCanonicalSynchronisation(t, 63, FullSync) }
func TestCanonicalSynchronisation63Fast(t *testing.T)  { testCanonicalSynchronisation(t, 63, FastSync) }
func TestCanonicalSynchronisation64Full(t *testing.T)  { testCanonicalSynchronisation(t, 64, FullSync) }
func TestCanonicalSynchronisation64Fast(t *testing.T)  { testCanonicalSynchronisation(t, 64, FastSync) }
func TestCanonicalSynchronisation64Light(t *testing.T) { testCanonicalSynchronisation(t, 64, LightSync) }

func testCanonicalSynchronisation(t *testing.T, protocol int, mode SyncMode) {
435 436
	t.Parallel()

437
	tester := newTester()
438 439
	defer tester.terminate()

440
	// Create a small enough block chain to download
441 442
	chain := testChainBase.shorten(blockCacheItems - 15)
	tester.newPeer("peer", protocol, chain)
443

444
	// Synchronise with the peer and make sure all relevant data was retrieved
445
	if err := tester.sync("peer", nil, mode); err != nil {
446
		t.Fatalf("failed to synchronise blocks: %v", err)
447
	}
448
	assertOwnChain(t, tester, chain.len())
449 450
}

451 452
// Tests that if a large batch of blocks are being downloaded, it is throttled
// until the cached blocks are retrieved.
453 454 455 456 457 458 459
func TestThrottling62(t *testing.T)     { testThrottling(t, 62, FullSync) }
func TestThrottling63Full(t *testing.T) { testThrottling(t, 63, FullSync) }
func TestThrottling63Fast(t *testing.T) { testThrottling(t, 63, FastSync) }
func TestThrottling64Full(t *testing.T) { testThrottling(t, 64, FullSync) }
func TestThrottling64Fast(t *testing.T) { testThrottling(t, 64, FastSync) }

func testThrottling(t *testing.T, protocol int, mode SyncMode) {
460
	t.Parallel()
461
	tester := newTester()
462 463
	defer tester.terminate()

464
	// Create a long block chain to download and the tester
465 466
	targetBlocks := testChainBase.len() - 1
	tester.newPeer("peer", protocol, testChainBase)
467

468
	// Wrap the importer to allow stepping
469
	blocked, proceed := uint32(0), make(chan struct{})
470 471
	tester.downloader.chainInsertHook = func(results []*fetchResult) {
		atomic.StoreUint32(&blocked, uint32(len(results)))
472
		<-proceed
473
	}
474 475 476
	// Start a synchronisation concurrently
	errc := make(chan error)
	go func() {
477
		errc <- tester.sync("peer", nil, mode)
478 479
	}()
	// Iteratively take some blocks, always checking the retrieval count
480 481 482 483 484 485 486 487
	for {
		// Check the retrieval count synchronously (! reason for this ugly block)
		tester.lock.RLock()
		retrieved := len(tester.ownBlocks)
		tester.lock.RUnlock()
		if retrieved >= targetBlocks+1 {
			break
		}
488
		// Wait a bit for sync to throttle itself
489
		var cached, frozen int
490
		for start := time.Now(); time.Since(start) < 3*time.Second; {
491
			time.Sleep(25 * time.Millisecond)
492

493 494
			tester.lock.Lock()
			tester.downloader.queue.lock.Lock()
495 496 497
			cached = len(tester.downloader.queue.blockDonePool)
			if mode == FastSync {
				if receipts := len(tester.downloader.queue.receiptDonePool); receipts < cached {
498
					cached = receipts
499 500
				}
			}
501 502
			frozen = int(atomic.LoadUint32(&blocked))
			retrieved = len(tester.ownBlocks)
503 504
			tester.downloader.queue.lock.Unlock()
			tester.lock.Unlock()
505

506
			if cached == blockCacheItems || cached == blockCacheItems-reorgProtHeaderDelay || retrieved+cached+frozen == targetBlocks+1 || retrieved+cached+frozen == targetBlocks+1-reorgProtHeaderDelay {
507 508 509
				break
			}
		}
510 511
		// Make sure we filled up the cache, then exhaust it
		time.Sleep(25 * time.Millisecond) // give it a chance to screw up
512 513 514 515

		tester.lock.RLock()
		retrieved = len(tester.ownBlocks)
		tester.lock.RUnlock()
516
		if cached != blockCacheItems && cached != blockCacheItems-reorgProtHeaderDelay && retrieved+cached+frozen != targetBlocks+1 && retrieved+cached+frozen != targetBlocks+1-reorgProtHeaderDelay {
517
			t.Fatalf("block count mismatch: have %v, want %v (owned %v, blocked %v, target %v)", cached, blockCacheItems, retrieved, frozen, targetBlocks+1)
518
		}
519 520 521 522
		// Permit the blocked blocks to import
		if atomic.LoadUint32(&blocked) > 0 {
			atomic.StoreUint32(&blocked, uint32(0))
			proceed <- struct{}{}
523
		}
524 525
	}
	// Check that we haven't pulled more blocks than available
526
	assertOwnChain(t, tester, targetBlocks+1)
527 528
	if err := <-errc; err != nil {
		t.Fatalf("block synchronization failed: %v", err)
529 530
	}
}
531

532 533 534
// Tests that simple synchronization against a forked chain works correctly. In
// this test common ancestor lookup should *not* be short circuited, and a full
// binary search should be executed.
535 536 537 538 539 540 541 542
func TestForkedSync62(t *testing.T)      { testForkedSync(t, 62, FullSync) }
func TestForkedSync63Full(t *testing.T)  { testForkedSync(t, 63, FullSync) }
func TestForkedSync63Fast(t *testing.T)  { testForkedSync(t, 63, FastSync) }
func TestForkedSync64Full(t *testing.T)  { testForkedSync(t, 64, FullSync) }
func TestForkedSync64Fast(t *testing.T)  { testForkedSync(t, 64, FastSync) }
func TestForkedSync64Light(t *testing.T) { testForkedSync(t, 64, LightSync) }

func testForkedSync(t *testing.T, protocol int, mode SyncMode) {
543 544
	t.Parallel()

545
	tester := newTester()
546 547
	defer tester.terminate()

548 549 550 551
	chainA := testChainForkLightA.shorten(testChainBase.len() + 80)
	chainB := testChainForkLightB.shorten(testChainBase.len() + 80)
	tester.newPeer("fork A", protocol, chainA)
	tester.newPeer("fork B", protocol, chainB)
552 553

	// Synchronise with the peer and make sure all blocks were retrieved
554
	if err := tester.sync("fork A", nil, mode); err != nil {
555 556
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
557
	assertOwnChain(t, tester, chainA.len())
558

559
	// Synchronise with the second peer and make sure that fork is pulled too
560
	if err := tester.sync("fork B", nil, mode); err != nil {
561 562
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
563
	assertOwnForkedChain(t, tester, testChainBase.len(), []int{chainA.len(), chainB.len()})
564 565
}

566 567 568 569 570 571 572 573 574 575 576 577 578
// Tests that synchronising against a much shorter but much heavyer fork works
// corrently and is not dropped.
func TestHeavyForkedSync62(t *testing.T)      { testHeavyForkedSync(t, 62, FullSync) }
func TestHeavyForkedSync63Full(t *testing.T)  { testHeavyForkedSync(t, 63, FullSync) }
func TestHeavyForkedSync63Fast(t *testing.T)  { testHeavyForkedSync(t, 63, FastSync) }
func TestHeavyForkedSync64Full(t *testing.T)  { testHeavyForkedSync(t, 64, FullSync) }
func TestHeavyForkedSync64Fast(t *testing.T)  { testHeavyForkedSync(t, 64, FastSync) }
func TestHeavyForkedSync64Light(t *testing.T) { testHeavyForkedSync(t, 64, LightSync) }

func testHeavyForkedSync(t *testing.T, protocol int, mode SyncMode) {
	t.Parallel()

	tester := newTester()
579 580
	defer tester.terminate()

581 582 583 584
	chainA := testChainForkLightA.shorten(testChainBase.len() + 80)
	chainB := testChainForkHeavy.shorten(testChainBase.len() + 80)
	tester.newPeer("light", protocol, chainA)
	tester.newPeer("heavy", protocol, chainB)
585 586 587 588 589

	// Synchronise with the peer and make sure all blocks were retrieved
	if err := tester.sync("light", nil, mode); err != nil {
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
590
	assertOwnChain(t, tester, chainA.len())
591 592 593 594 595

	// Synchronise with the second peer and make sure that fork is pulled too
	if err := tester.sync("heavy", nil, mode); err != nil {
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
596
	assertOwnForkedChain(t, tester, testChainBase.len(), []int{chainA.len(), chainB.len()})
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
}

// Tests that chain forks are contained within a certain interval of the current
// chain head, ensuring that malicious peers cannot waste resources by feeding
// long dead chains.
func TestBoundedForkedSync62(t *testing.T)      { testBoundedForkedSync(t, 62, FullSync) }
func TestBoundedForkedSync63Full(t *testing.T)  { testBoundedForkedSync(t, 63, FullSync) }
func TestBoundedForkedSync63Fast(t *testing.T)  { testBoundedForkedSync(t, 63, FastSync) }
func TestBoundedForkedSync64Full(t *testing.T)  { testBoundedForkedSync(t, 64, FullSync) }
func TestBoundedForkedSync64Fast(t *testing.T)  { testBoundedForkedSync(t, 64, FastSync) }
func TestBoundedForkedSync64Light(t *testing.T) { testBoundedForkedSync(t, 64, LightSync) }

func testBoundedForkedSync(t *testing.T, protocol int, mode SyncMode) {
	t.Parallel()

	tester := newTester()
613 614
	defer tester.terminate()

615 616 617 618
	chainA := testChainForkLightA
	chainB := testChainForkLightB
	tester.newPeer("original", protocol, chainA)
	tester.newPeer("rewriter", protocol, chainB)
619 620 621 622 623

	// Synchronise with the peer and make sure all blocks were retrieved
	if err := tester.sync("original", nil, mode); err != nil {
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
624
	assertOwnChain(t, tester, chainA.len())
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645

	// Synchronise with the second peer and ensure that the fork is rejected to being too old
	if err := tester.sync("rewriter", nil, mode); err != errInvalidAncestor {
		t.Fatalf("sync failure mismatch: have %v, want %v", err, errInvalidAncestor)
	}
}

// Tests that chain forks are contained within a certain interval of the current
// chain head for short but heavy forks too. These are a bit special because they
// take different ancestor lookup paths.
func TestBoundedHeavyForkedSync62(t *testing.T)      { testBoundedHeavyForkedSync(t, 62, FullSync) }
func TestBoundedHeavyForkedSync63Full(t *testing.T)  { testBoundedHeavyForkedSync(t, 63, FullSync) }
func TestBoundedHeavyForkedSync63Fast(t *testing.T)  { testBoundedHeavyForkedSync(t, 63, FastSync) }
func TestBoundedHeavyForkedSync64Full(t *testing.T)  { testBoundedHeavyForkedSync(t, 64, FullSync) }
func TestBoundedHeavyForkedSync64Fast(t *testing.T)  { testBoundedHeavyForkedSync(t, 64, FastSync) }
func TestBoundedHeavyForkedSync64Light(t *testing.T) { testBoundedHeavyForkedSync(t, 64, LightSync) }

func testBoundedHeavyForkedSync(t *testing.T, protocol int, mode SyncMode) {
	t.Parallel()

	tester := newTester()
646 647
	defer tester.terminate()

648
	// Create a long enough forked chain
649 650 651 652
	chainA := testChainForkLightA
	chainB := testChainForkHeavy
	tester.newPeer("original", protocol, chainA)
	tester.newPeer("heavy-rewriter", protocol, chainB)
653 654 655 656 657

	// Synchronise with the peer and make sure all blocks were retrieved
	if err := tester.sync("original", nil, mode); err != nil {
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
658
	assertOwnChain(t, tester, chainA.len())
659 660 661 662 663 664 665

	// Synchronise with the second peer and ensure that the fork is rejected to being too old
	if err := tester.sync("heavy-rewriter", nil, mode); err != errInvalidAncestor {
		t.Fatalf("sync failure mismatch: have %v, want %v", err, errInvalidAncestor)
	}
}

666 667
// Tests that an inactive downloader will not accept incoming block headers and
// bodies.
668
func TestInactiveDownloader62(t *testing.T) {
669
	t.Parallel()
670

671
	tester := newTester()
672
	defer tester.terminate()
673 674 675

	// Check that neither block headers nor bodies are accepted
	if err := tester.downloader.DeliverHeaders("bad peer", []*types.Header{}); err != errNoSyncActive {
676 677
		t.Errorf("error mismatch: have %v, want %v", err, errNoSyncActive)
	}
678
	if err := tester.downloader.DeliverBodies("bad peer", [][]*types.Transaction{}, [][]*types.Header{}); err != errNoSyncActive {
679
		t.Errorf("error mismatch: have %v, want  %v", err, errNoSyncActive)
680 681 682
	}
}

683 684 685
// Tests that an inactive downloader will not accept incoming block headers,
// bodies and receipts.
func TestInactiveDownloader63(t *testing.T) {
686
	t.Parallel()
687

688
	tester := newTester()
689
	defer tester.terminate()
690 691 692 693 694 695 696 697 698 699 700 701

	// Check that neither block headers nor bodies are accepted
	if err := tester.downloader.DeliverHeaders("bad peer", []*types.Header{}); err != errNoSyncActive {
		t.Errorf("error mismatch: have %v, want %v", err, errNoSyncActive)
	}
	if err := tester.downloader.DeliverBodies("bad peer", [][]*types.Transaction{}, [][]*types.Header{}); err != errNoSyncActive {
		t.Errorf("error mismatch: have %v, want %v", err, errNoSyncActive)
	}
	if err := tester.downloader.DeliverReceipts("bad peer", [][]*types.Receipt{}); err != errNoSyncActive {
		t.Errorf("error mismatch: have %v, want %v", err, errNoSyncActive)
	}
}
702

703 704 705 706 707 708 709 710 711
// Tests that a canceled download wipes all previously accumulated state.
func TestCancel62(t *testing.T)      { testCancel(t, 62, FullSync) }
func TestCancel63Full(t *testing.T)  { testCancel(t, 63, FullSync) }
func TestCancel63Fast(t *testing.T)  { testCancel(t, 63, FastSync) }
func TestCancel64Full(t *testing.T)  { testCancel(t, 64, FullSync) }
func TestCancel64Fast(t *testing.T)  { testCancel(t, 64, FastSync) }
func TestCancel64Light(t *testing.T) { testCancel(t, 64, LightSync) }

func testCancel(t *testing.T, protocol int, mode SyncMode) {
712 713
	t.Parallel()

714 715 716
	tester := newTester()
	defer tester.terminate()

717 718
	chain := testChainBase.shorten(MaxHeaderFetch)
	tester.newPeer("peer", protocol, chain)
719 720

	// Make sure canceling works with a pristine downloader
721
	tester.downloader.Cancel()
722 723
	if !tester.downloader.queue.Idle() {
		t.Errorf("download queue not idle")
724 725
	}
	// Synchronise with the peer, but cancel afterwards
726
	if err := tester.sync("peer", nil, mode); err != nil {
727 728
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
729
	tester.downloader.Cancel()
730 731
	if !tester.downloader.queue.Idle() {
		t.Errorf("download queue not idle")
732 733 734
	}
}

735
// Tests that synchronisation from multiple peers works as intended (multi thread sanity test).
736 737 738 739 740 741 742 743
func TestMultiSynchronisation62(t *testing.T)      { testMultiSynchronisation(t, 62, FullSync) }
func TestMultiSynchronisation63Full(t *testing.T)  { testMultiSynchronisation(t, 63, FullSync) }
func TestMultiSynchronisation63Fast(t *testing.T)  { testMultiSynchronisation(t, 63, FastSync) }
func TestMultiSynchronisation64Full(t *testing.T)  { testMultiSynchronisation(t, 64, FullSync) }
func TestMultiSynchronisation64Fast(t *testing.T)  { testMultiSynchronisation(t, 64, FastSync) }
func TestMultiSynchronisation64Light(t *testing.T) { testMultiSynchronisation(t, 64, LightSync) }

func testMultiSynchronisation(t *testing.T, protocol int, mode SyncMode) {
744 745
	t.Parallel()

746 747 748
	tester := newTester()
	defer tester.terminate()

749
	// Create various peers with various parts of the chain
750
	targetPeers := 8
751
	chain := testChainBase.shorten(targetPeers * 100)
752

753 754
	for i := 0; i < targetPeers; i++ {
		id := fmt.Sprintf("peer #%d", i)
755
		tester.newPeer(id, protocol, chain.shorten(chain.len()/(i+1)))
756
	}
757
	if err := tester.sync("peer #0", nil, mode); err != nil {
758 759
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
760
	assertOwnChain(t, tester, chain.len())
761 762
}

763
// Tests that synchronisations behave well in multi-version protocol environments
L
Leif Jurvetson 已提交
764
// and not wreak havoc on other nodes in the network.
765 766 767 768 769 770 771 772
func TestMultiProtoSynchronisation62(t *testing.T)      { testMultiProtoSync(t, 62, FullSync) }
func TestMultiProtoSynchronisation63Full(t *testing.T)  { testMultiProtoSync(t, 63, FullSync) }
func TestMultiProtoSynchronisation63Fast(t *testing.T)  { testMultiProtoSync(t, 63, FastSync) }
func TestMultiProtoSynchronisation64Full(t *testing.T)  { testMultiProtoSync(t, 64, FullSync) }
func TestMultiProtoSynchronisation64Fast(t *testing.T)  { testMultiProtoSync(t, 64, FastSync) }
func TestMultiProtoSynchronisation64Light(t *testing.T) { testMultiProtoSync(t, 64, LightSync) }

func testMultiProtoSync(t *testing.T, protocol int, mode SyncMode) {
773 774
	t.Parallel()

775 776 777
	tester := newTester()
	defer tester.terminate()

778
	// Create a small enough block chain to download
779
	chain := testChainBase.shorten(blockCacheItems - 15)
780 781

	// Create peers of every type
782 783 784
	tester.newPeer("peer 62", 62, chain)
	tester.newPeer("peer 63", 63, chain)
	tester.newPeer("peer 64", 64, chain)
785

786 787
	// Synchronise with the requested peer and make sure all blocks were retrieved
	if err := tester.sync(fmt.Sprintf("peer %d", protocol), nil, mode); err != nil {
788 789
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
790
	assertOwnChain(t, tester, chain.len())
791

792
	// Check that no peers have been dropped off
793
	for _, version := range []int{62, 63, 64} {
794
		peer := fmt.Sprintf("peer %d", version)
795
		if _, ok := tester.peers[peer]; !ok {
796 797 798 799 800
			t.Errorf("%s dropped", peer)
		}
	}
}

801
// Tests that if a block is empty (e.g. header only), no body request should be
802
// made, and instead the header should be assembled into a whole block in itself.
803 804 805 806 807 808 809 810
func TestEmptyShortCircuit62(t *testing.T)      { testEmptyShortCircuit(t, 62, FullSync) }
func TestEmptyShortCircuit63Full(t *testing.T)  { testEmptyShortCircuit(t, 63, FullSync) }
func TestEmptyShortCircuit63Fast(t *testing.T)  { testEmptyShortCircuit(t, 63, FastSync) }
func TestEmptyShortCircuit64Full(t *testing.T)  { testEmptyShortCircuit(t, 64, FullSync) }
func TestEmptyShortCircuit64Fast(t *testing.T)  { testEmptyShortCircuit(t, 64, FastSync) }
func TestEmptyShortCircuit64Light(t *testing.T) { testEmptyShortCircuit(t, 64, LightSync) }

func testEmptyShortCircuit(t *testing.T, protocol int, mode SyncMode) {
811 812
	t.Parallel()

813
	tester := newTester()
814 815
	defer tester.terminate()

816
	// Create a block chain to download
817 818
	chain := testChainBase
	tester.newPeer("peer", protocol, chain)
819 820

	// Instrument the downloader to signal body requests
821
	bodiesHave, receiptsHave := int32(0), int32(0)
822
	tester.downloader.bodyFetchHook = func(headers []*types.Header) {
823
		atomic.AddInt32(&bodiesHave, int32(len(headers)))
824 825
	}
	tester.downloader.receiptFetchHook = func(headers []*types.Header) {
826
		atomic.AddInt32(&receiptsHave, int32(len(headers)))
827 828
	}
	// Synchronise with the peer and make sure all blocks were retrieved
829
	if err := tester.sync("peer", nil, mode); err != nil {
830 831
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
832
	assertOwnChain(t, tester, chain.len())
833

834
	// Validate the number of block bodies that should have been requested
835
	bodiesNeeded, receiptsNeeded := 0, 0
836
	for _, block := range chain.blockm {
837
		if mode != LightSync && block != tester.genesis && (len(block.Transactions()) > 0 || len(block.Uncles()) > 0) {
838
			bodiesNeeded++
839
		}
840
	}
841
	for _, receipt := range chain.receiptm {
842
		if mode == FastSync && len(receipt) > 0 {
843 844 845
			receiptsNeeded++
		}
	}
846 847
	if int(bodiesHave) != bodiesNeeded {
		t.Errorf("body retrieval count mismatch: have %v, want %v", bodiesHave, bodiesNeeded)
848
	}
849 850
	if int(receiptsHave) != receiptsNeeded {
		t.Errorf("receipt retrieval count mismatch: have %v, want %v", receiptsHave, receiptsNeeded)
851 852 853
	}
}

854 855
// Tests that headers are enqueued continuously, preventing malicious nodes from
// stalling the downloader by feeding gapped header chains.
856 857 858 859 860 861 862 863
func TestMissingHeaderAttack62(t *testing.T)      { testMissingHeaderAttack(t, 62, FullSync) }
func TestMissingHeaderAttack63Full(t *testing.T)  { testMissingHeaderAttack(t, 63, FullSync) }
func TestMissingHeaderAttack63Fast(t *testing.T)  { testMissingHeaderAttack(t, 63, FastSync) }
func TestMissingHeaderAttack64Full(t *testing.T)  { testMissingHeaderAttack(t, 64, FullSync) }
func TestMissingHeaderAttack64Fast(t *testing.T)  { testMissingHeaderAttack(t, 64, FastSync) }
func TestMissingHeaderAttack64Light(t *testing.T) { testMissingHeaderAttack(t, 64, LightSync) }

func testMissingHeaderAttack(t *testing.T, protocol int, mode SyncMode) {
864 865
	t.Parallel()

866
	tester := newTester()
867
	defer tester.terminate()
868

869 870 871 872
	chain := testChainBase.shorten(blockCacheItems - 15)
	brokenChain := chain.shorten(chain.len())
	delete(brokenChain.headerm, brokenChain.chain[brokenChain.len()/2])
	tester.newPeer("attack", protocol, brokenChain)
873

874
	if err := tester.sync("attack", nil, mode); err == nil {
875 876 877
		t.Fatalf("succeeded attacker synchronisation")
	}
	// Synchronise with the valid peer and make sure sync succeeds
878
	tester.newPeer("valid", protocol, chain)
879
	if err := tester.sync("valid", nil, mode); err != nil {
880 881
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
882
	assertOwnChain(t, tester, chain.len())
883 884 885 886
}

// Tests that if requested headers are shifted (i.e. first is missing), the queue
// detects the invalid numbering.
887 888 889 890 891 892 893 894
func TestShiftedHeaderAttack62(t *testing.T)      { testShiftedHeaderAttack(t, 62, FullSync) }
func TestShiftedHeaderAttack63Full(t *testing.T)  { testShiftedHeaderAttack(t, 63, FullSync) }
func TestShiftedHeaderAttack63Fast(t *testing.T)  { testShiftedHeaderAttack(t, 63, FastSync) }
func TestShiftedHeaderAttack64Full(t *testing.T)  { testShiftedHeaderAttack(t, 64, FullSync) }
func TestShiftedHeaderAttack64Fast(t *testing.T)  { testShiftedHeaderAttack(t, 64, FastSync) }
func TestShiftedHeaderAttack64Light(t *testing.T) { testShiftedHeaderAttack(t, 64, LightSync) }

func testShiftedHeaderAttack(t *testing.T, protocol int, mode SyncMode) {
895 896
	t.Parallel()

897
	tester := newTester()
898
	defer tester.terminate()
899

900
	chain := testChainBase.shorten(blockCacheItems - 15)
901

902
	// Attempt a full sync with an attacker feeding shifted headers
903 904 905 906 907
	brokenChain := chain.shorten(chain.len())
	delete(brokenChain.headerm, brokenChain.chain[1])
	delete(brokenChain.blockm, brokenChain.chain[1])
	delete(brokenChain.receiptm, brokenChain.chain[1])
	tester.newPeer("attack", protocol, brokenChain)
908
	if err := tester.sync("attack", nil, mode); err == nil {
909 910
		t.Fatalf("succeeded attacker synchronisation")
	}
911

912
	// Synchronise with the valid peer and make sure sync succeeds
913
	tester.newPeer("valid", protocol, chain)
914
	if err := tester.sync("valid", nil, mode); err != nil {
915 916
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
917
	assertOwnChain(t, tester, chain.len())
918 919 920
}

// Tests that upon detecting an invalid header, the recent ones are rolled back
921 922
// for various failure scenarios. Afterwards a full sync is attempted to make
// sure no state was corrupted.
923 924 925 926 927
func TestInvalidHeaderRollback63Fast(t *testing.T)  { testInvalidHeaderRollback(t, 63, FastSync) }
func TestInvalidHeaderRollback64Fast(t *testing.T)  { testInvalidHeaderRollback(t, 64, FastSync) }
func TestInvalidHeaderRollback64Light(t *testing.T) { testInvalidHeaderRollback(t, 64, LightSync) }

func testInvalidHeaderRollback(t *testing.T, protocol int, mode SyncMode) {
928 929
	t.Parallel()

930
	tester := newTester()
931
	defer tester.terminate()
932

933
	// Create a small enough block chain to download
934
	targetBlocks := 3*fsHeaderSafetyNet + 256 + fsMinFullBlocks
935
	chain := testChainBase.shorten(targetBlocks)
936

937 938 939
	// Attempt to sync with an attacker that feeds junk during the fast sync phase.
	// This should result in the last fsHeaderSafetyNet headers being rolled back.
	missing := fsHeaderSafetyNet + MaxHeaderFetch + 1
940 941 942
	fastAttackChain := chain.shorten(chain.len())
	delete(fastAttackChain.headerm, fastAttackChain.chain[missing])
	tester.newPeer("fast-attack", protocol, fastAttackChain)
943

944
	if err := tester.sync("fast-attack", nil, mode); err == nil {
945 946
		t.Fatalf("succeeded fast attacker synchronisation")
	}
947
	if head := tester.CurrentHeader().Number.Int64(); int(head) > MaxHeaderFetch {
948
		t.Errorf("rollback head mismatch: have %v, want at most %v", head, MaxHeaderFetch)
949
	}
950

951 952 953 954
	// Attempt to sync with an attacker that feeds junk during the block import phase.
	// This should result in both the last fsHeaderSafetyNet number of headers being
	// rolled back, and also the pivot point being reverted to a non-block status.
	missing = 3*fsHeaderSafetyNet + MaxHeaderFetch + 1
955 956 957 958
	blockAttackChain := chain.shorten(chain.len())
	delete(fastAttackChain.headerm, fastAttackChain.chain[missing]) // Make sure the fast-attacker doesn't fill in
	delete(blockAttackChain.headerm, blockAttackChain.chain[missing])
	tester.newPeer("block-attack", protocol, blockAttackChain)
959

960
	if err := tester.sync("block-attack", nil, mode); err == nil {
961 962
		t.Fatalf("succeeded block attacker synchronisation")
	}
963
	if head := tester.CurrentHeader().Number.Int64(); int(head) > 2*fsHeaderSafetyNet+MaxHeaderFetch {
964 965
		t.Errorf("rollback head mismatch: have %v, want at most %v", head, 2*fsHeaderSafetyNet+MaxHeaderFetch)
	}
966
	if mode == FastSync {
967
		if head := tester.CurrentBlock().NumberU64(); head != 0 {
968
			t.Errorf("fast sync pivot block #%d not rolled back", head)
969
		}
970
	}
971

972 973 974
	// Attempt to sync with an attacker that withholds promised blocks after the
	// fast sync pivot point. This could be a trial to leave the node with a bad
	// but already imported pivot block.
975 976
	withholdAttackChain := chain.shorten(chain.len())
	tester.newPeer("withhold-attack", protocol, withholdAttackChain)
977
	tester.downloader.syncInitHook = func(uint64, uint64) {
978 979
		for i := missing; i < withholdAttackChain.len(); i++ {
			delete(withholdAttackChain.headerm, withholdAttackChain.chain[i])
980 981
		}
		tester.downloader.syncInitHook = nil
982
	}
983 984 985
	if err := tester.sync("withhold-attack", nil, mode); err == nil {
		t.Fatalf("succeeded withholding attacker synchronisation")
	}
986
	if head := tester.CurrentHeader().Number.Int64(); int(head) > 2*fsHeaderSafetyNet+MaxHeaderFetch {
987
		t.Errorf("rollback head mismatch: have %v, want at most %v", head, 2*fsHeaderSafetyNet+MaxHeaderFetch)
988 989
	}
	if mode == FastSync {
990
		if head := tester.CurrentBlock().NumberU64(); head != 0 {
991 992
			t.Errorf("fast sync pivot block #%d not rolled back", head)
		}
993
	}
994 995 996 997 998 999

	// synchronise with the valid peer and make sure sync succeeds. Since the last rollback
	// should also disable fast syncing for this process, verify that we did a fresh full
	// sync. Note, we can't assert anything about the receipts since we won't purge the
	// database of them, hence we can't use assertOwnChain.
	tester.newPeer("valid", protocol, chain)
1000
	if err := tester.sync("valid", nil, mode); err != nil {
1001 1002
		t.Fatalf("failed to synchronise blocks: %v", err)
	}
1003 1004
	if hs := len(tester.ownHeaders); hs != chain.len() {
		t.Fatalf("synchronised headers mismatch: have %v, want %v", hs, chain.len())
1005
	}
1006
	if mode != LightSync {
1007 1008
		if bs := len(tester.ownBlocks); bs != chain.len() {
			t.Fatalf("synchronised blocks mismatch: have %v, want %v", bs, chain.len())
1009
		}
1010
	}
1011 1012
}

1013 1014
// Tests that a peer advertising an high TD doesn't get to stall the downloader
// afterwards by not sending any useful hashes.
1015 1016 1017 1018 1019 1020 1021 1022
func TestHighTDStarvationAttack62(t *testing.T)      { testHighTDStarvationAttack(t, 62, FullSync) }
func TestHighTDStarvationAttack63Full(t *testing.T)  { testHighTDStarvationAttack(t, 63, FullSync) }
func TestHighTDStarvationAttack63Fast(t *testing.T)  { testHighTDStarvationAttack(t, 63, FastSync) }
func TestHighTDStarvationAttack64Full(t *testing.T)  { testHighTDStarvationAttack(t, 64, FullSync) }
func TestHighTDStarvationAttack64Fast(t *testing.T)  { testHighTDStarvationAttack(t, 64, FastSync) }
func TestHighTDStarvationAttack64Light(t *testing.T) { testHighTDStarvationAttack(t, 64, LightSync) }

func testHighTDStarvationAttack(t *testing.T, protocol int, mode SyncMode) {
1023 1024
	t.Parallel()

1025
	tester := newTester()
1026
	defer tester.terminate()
1027

1028 1029
	chain := testChainBase.shorten(1)
	tester.newPeer("attack", protocol, chain)
1030
	if err := tester.sync("attack", big.NewInt(1000000), mode); err != errStallingPeer {
1031 1032 1033 1034
		t.Fatalf("synchronisation error mismatch: have %v, want %v", err, errStallingPeer)
	}
}

1035
// Tests that misbehaving peers are disconnected, whilst behaving ones are not.
1036 1037 1038 1039 1040
func TestBlockHeaderAttackerDropping62(t *testing.T) { testBlockHeaderAttackerDropping(t, 62) }
func TestBlockHeaderAttackerDropping63(t *testing.T) { testBlockHeaderAttackerDropping(t, 63) }
func TestBlockHeaderAttackerDropping64(t *testing.T) { testBlockHeaderAttackerDropping(t, 64) }

func testBlockHeaderAttackerDropping(t *testing.T, protocol int) {
1041 1042
	t.Parallel()

1043
	// Define the disconnection requirement for individual hash fetch errors
1044 1045 1046 1047
	tests := []struct {
		result error
		drop   bool
	}{
1048 1049 1050 1051 1052
		{nil, false},                        // Sync succeeded, all is well
		{errBusy, false},                    // Sync is already in progress, no problem
		{errUnknownPeer, false},             // Peer is unknown, was already dropped, don't double drop
		{errBadPeer, true},                  // Peer was deemed bad for some reason, drop it
		{errStallingPeer, true},             // Peer was detected to be stalling, drop it
1053
		{errUnsyncedPeer, true},             // Peer was detected to be unsynced, drop it
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
		{errNoPeers, false},                 // No peers to download from, soft race, no issue
		{errTimeout, true},                  // No hashes received in due time, drop the peer
		{errEmptyHeaderSet, true},           // No headers were returned as a response, drop as it's a dead end
		{errPeersUnavailable, true},         // Nobody had the advertised blocks, drop the advertiser
		{errInvalidAncestor, true},          // Agreed upon ancestor is not acceptable, drop the chain rewriter
		{errInvalidChain, true},             // Hash chain was detected as invalid, definitely drop
		{errInvalidBlock, false},            // A bad peer was detected, but not the sync origin
		{errInvalidBody, false},             // A bad peer was detected, but not the sync origin
		{errInvalidReceipt, false},          // A bad peer was detected, but not the sync origin
		{errCancelBlockFetch, false},        // Synchronisation was canceled, origin may be innocent, don't drop
		{errCancelHeaderFetch, false},       // Synchronisation was canceled, origin may be innocent, don't drop
		{errCancelBodyFetch, false},         // Synchronisation was canceled, origin may be innocent, don't drop
		{errCancelReceiptFetch, false},      // Synchronisation was canceled, origin may be innocent, don't drop
		{errCancelHeaderProcessing, false},  // Synchronisation was canceled, origin may be innocent, don't drop
		{errCancelContentProcessing, false}, // Synchronisation was canceled, origin may be innocent, don't drop
1069 1070
	}
	// Run the tests and check disconnection status
1071
	tester := newTester()
1072
	defer tester.terminate()
1073
	chain := testChainBase.shorten(1)
1074

1075 1076 1077
	for i, tt := range tests {
		// Register a new peer and ensure it's presence
		id := fmt.Sprintf("test %d", i)
1078
		if err := tester.newPeer(id, protocol, chain); err != nil {
1079 1080
			t.Fatalf("test %d: failed to register new peer: %v", i, err)
		}
1081
		if _, ok := tester.peers[id]; !ok {
1082 1083 1084 1085 1086
			t.Fatalf("test %d: registered peer not found", i)
		}
		// Simulate a synchronisation and check the required result
		tester.downloader.synchroniseMock = func(string, common.Hash) error { return tt.result }

1087
		tester.downloader.Synchronise(id, tester.genesis.Hash(), big.NewInt(1000), FullSync)
1088
		if _, ok := tester.peers[id]; !ok != tt.drop {
1089 1090 1091 1092
			t.Errorf("test %d: peer drop mismatch for %v: have %v, want %v", i, tt.result, !ok, tt.drop)
		}
	}
}
1093

1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
// Tests that synchronisation progress (origin block number, current block number
// and highest block number) is tracked and updated correctly.
func TestSyncProgress62(t *testing.T)      { testSyncProgress(t, 62, FullSync) }
func TestSyncProgress63Full(t *testing.T)  { testSyncProgress(t, 63, FullSync) }
func TestSyncProgress63Fast(t *testing.T)  { testSyncProgress(t, 63, FastSync) }
func TestSyncProgress64Full(t *testing.T)  { testSyncProgress(t, 64, FullSync) }
func TestSyncProgress64Fast(t *testing.T)  { testSyncProgress(t, 64, FastSync) }
func TestSyncProgress64Light(t *testing.T) { testSyncProgress(t, 64, LightSync) }

func testSyncProgress(t *testing.T, protocol int, mode SyncMode) {
1104 1105
	t.Parallel()

1106 1107
	tester := newTester()
	defer tester.terminate()
1108
	chain := testChainBase.shorten(blockCacheItems - 15)
1109

1110
	// Set a sync init hook to catch progress changes
1111 1112 1113 1114 1115 1116 1117
	starting := make(chan struct{})
	progress := make(chan struct{})

	tester.downloader.syncInitHook = func(origin, latest uint64) {
		starting <- struct{}{}
		<-progress
	}
1118 1119
	checkProgress(t, tester.downloader, "pristine", ethereum.SyncProgress{})

1120
	// Synchronise half the blocks and check initial progress
1121
	tester.newPeer("peer-half", protocol, chain.shorten(chain.len()/2))
1122 1123 1124 1125 1126
	pending := new(sync.WaitGroup)
	pending.Add(1)

	go func() {
		defer pending.Done()
1127
		if err := tester.sync("peer-half", nil, mode); err != nil {
E
Egon Elbre 已提交
1128
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1129 1130 1131
		}
	}()
	<-starting
1132 1133 1134
	checkProgress(t, tester.downloader, "initial", ethereum.SyncProgress{
		HighestBlock: uint64(chain.len()/2 - 1),
	})
1135 1136 1137
	progress <- struct{}{}
	pending.Wait()

1138
	// Synchronise all the blocks and check continuation progress
1139
	tester.newPeer("peer-full", protocol, chain)
1140 1141 1142
	pending.Add(1)
	go func() {
		defer pending.Done()
1143
		if err := tester.sync("peer-full", nil, mode); err != nil {
E
Egon Elbre 已提交
1144
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1145 1146 1147
		}
	}()
	<-starting
1148 1149 1150 1151 1152 1153 1154
	checkProgress(t, tester.downloader, "completing", ethereum.SyncProgress{
		StartingBlock: uint64(chain.len()/2 - 1),
		CurrentBlock:  uint64(chain.len()/2 - 1),
		HighestBlock:  uint64(chain.len() - 1),
	})

	// Check final progress after successful sync
1155 1156
	progress <- struct{}{}
	pending.Wait()
1157 1158 1159 1160 1161 1162
	checkProgress(t, tester.downloader, "final", ethereum.SyncProgress{
		StartingBlock: uint64(chain.len()/2 - 1),
		CurrentBlock:  uint64(chain.len() - 1),
		HighestBlock:  uint64(chain.len() - 1),
	})
}
1163

1164
func checkProgress(t *testing.T, d *Downloader, stage string, want ethereum.SyncProgress) {
1165
	// Mark this method as a helper to report errors at callsite, not in here
1166
	t.Helper()
1167

1168 1169 1170 1171 1172
	p := d.Progress()
	p.KnownStates, p.PulledStates = 0, 0
	want.KnownStates, want.PulledStates = 0, 0
	if p != want {
		t.Fatalf("%s progress mismatch:\nhave %+v\nwant %+v", stage, p, want)
1173
	}
1174 1175
}

1176
// Tests that synchronisation progress (origin block number and highest block
1177 1178
// number) is tracked and updated correctly in case of a fork (or manual head
// revertal).
1179 1180 1181 1182 1183 1184 1185 1186
func TestForkedSyncProgress62(t *testing.T)      { testForkedSyncProgress(t, 62, FullSync) }
func TestForkedSyncProgress63Full(t *testing.T)  { testForkedSyncProgress(t, 63, FullSync) }
func TestForkedSyncProgress63Fast(t *testing.T)  { testForkedSyncProgress(t, 63, FastSync) }
func TestForkedSyncProgress64Full(t *testing.T)  { testForkedSyncProgress(t, 64, FullSync) }
func TestForkedSyncProgress64Fast(t *testing.T)  { testForkedSyncProgress(t, 64, FastSync) }
func TestForkedSyncProgress64Light(t *testing.T) { testForkedSyncProgress(t, 64, LightSync) }

func testForkedSyncProgress(t *testing.T, protocol int, mode SyncMode) {
1187 1188
	t.Parallel()

1189 1190
	tester := newTester()
	defer tester.terminate()
1191 1192
	chainA := testChainForkLightA.shorten(testChainBase.len() + MaxHashFetch)
	chainB := testChainForkLightB.shorten(testChainBase.len() + MaxHashFetch)
1193

1194
	// Set a sync init hook to catch progress changes
1195 1196 1197 1198 1199 1200 1201
	starting := make(chan struct{})
	progress := make(chan struct{})

	tester.downloader.syncInitHook = func(origin, latest uint64) {
		starting <- struct{}{}
		<-progress
	}
1202 1203
	checkProgress(t, tester.downloader, "pristine", ethereum.SyncProgress{})

1204
	// Synchronise with one of the forks and check progress
1205
	tester.newPeer("fork A", protocol, chainA)
1206 1207 1208 1209
	pending := new(sync.WaitGroup)
	pending.Add(1)
	go func() {
		defer pending.Done()
1210
		if err := tester.sync("fork A", nil, mode); err != nil {
E
Egon Elbre 已提交
1211
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1212 1213 1214
		}
	}()
	<-starting
1215 1216 1217 1218

	checkProgress(t, tester.downloader, "initial", ethereum.SyncProgress{
		HighestBlock: uint64(chainA.len() - 1),
	})
1219 1220 1221 1222
	progress <- struct{}{}
	pending.Wait()

	// Simulate a successful sync above the fork
1223
	tester.downloader.syncStatsChainOrigin = tester.downloader.syncStatsChainHeight
1224

1225
	// Synchronise with the second fork and check progress resets
1226
	tester.newPeer("fork B", protocol, chainB)
1227 1228 1229
	pending.Add(1)
	go func() {
		defer pending.Done()
1230
		if err := tester.sync("fork B", nil, mode); err != nil {
E
Egon Elbre 已提交
1231
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1232 1233 1234
		}
	}()
	<-starting
1235 1236 1237 1238 1239
	checkProgress(t, tester.downloader, "forking", ethereum.SyncProgress{
		StartingBlock: uint64(testChainBase.len()) - 1,
		CurrentBlock:  uint64(chainA.len() - 1),
		HighestBlock:  uint64(chainB.len() - 1),
	})
1240 1241

	// Check final progress after successful sync
1242 1243 1244 1245 1246 1247 1248
	progress <- struct{}{}
	pending.Wait()
	checkProgress(t, tester.downloader, "final", ethereum.SyncProgress{
		StartingBlock: uint64(testChainBase.len()) - 1,
		CurrentBlock:  uint64(chainB.len() - 1),
		HighestBlock:  uint64(chainB.len() - 1),
	})
1249 1250
}

1251
// Tests that if synchronisation is aborted due to some failure, then the progress
1252 1253
// origin is not updated in the next sync cycle, as it should be considered the
// continuation of the previous sync and not a new instance.
1254 1255 1256 1257 1258 1259 1260 1261
func TestFailedSyncProgress62(t *testing.T)      { testFailedSyncProgress(t, 62, FullSync) }
func TestFailedSyncProgress63Full(t *testing.T)  { testFailedSyncProgress(t, 63, FullSync) }
func TestFailedSyncProgress63Fast(t *testing.T)  { testFailedSyncProgress(t, 63, FastSync) }
func TestFailedSyncProgress64Full(t *testing.T)  { testFailedSyncProgress(t, 64, FullSync) }
func TestFailedSyncProgress64Fast(t *testing.T)  { testFailedSyncProgress(t, 64, FastSync) }
func TestFailedSyncProgress64Light(t *testing.T) { testFailedSyncProgress(t, 64, LightSync) }

func testFailedSyncProgress(t *testing.T, protocol int, mode SyncMode) {
1262 1263
	t.Parallel()

1264 1265
	tester := newTester()
	defer tester.terminate()
1266
	chain := testChainBase.shorten(blockCacheItems - 15)
1267

1268
	// Set a sync init hook to catch progress changes
1269 1270 1271 1272 1273 1274 1275
	starting := make(chan struct{})
	progress := make(chan struct{})

	tester.downloader.syncInitHook = func(origin, latest uint64) {
		starting <- struct{}{}
		<-progress
	}
1276 1277
	checkProgress(t, tester.downloader, "pristine", ethereum.SyncProgress{})

1278
	// Attempt a full sync with a faulty peer
1279 1280 1281 1282 1283 1284
	brokenChain := chain.shorten(chain.len())
	missing := brokenChain.len() / 2
	delete(brokenChain.headerm, brokenChain.chain[missing])
	delete(brokenChain.blockm, brokenChain.chain[missing])
	delete(brokenChain.receiptm, brokenChain.chain[missing])
	tester.newPeer("faulty", protocol, brokenChain)
1285 1286 1287 1288 1289

	pending := new(sync.WaitGroup)
	pending.Add(1)
	go func() {
		defer pending.Done()
1290
		if err := tester.sync("faulty", nil, mode); err == nil {
E
Egon Elbre 已提交
1291
			panic("succeeded faulty synchronisation")
1292 1293 1294
		}
	}()
	<-starting
1295 1296 1297
	checkProgress(t, tester.downloader, "initial", ethereum.SyncProgress{
		HighestBlock: uint64(brokenChain.len() - 1),
	})
1298 1299
	progress <- struct{}{}
	pending.Wait()
1300
	afterFailedSync := tester.downloader.Progress()
1301

1302 1303 1304
	// Synchronise with a good peer and check that the progress origin remind the same
	// after a failure
	tester.newPeer("valid", protocol, chain)
1305 1306 1307
	pending.Add(1)
	go func() {
		defer pending.Done()
1308
		if err := tester.sync("valid", nil, mode); err != nil {
E
Egon Elbre 已提交
1309
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1310 1311 1312
		}
	}()
	<-starting
1313
	checkProgress(t, tester.downloader, "completing", afterFailedSync)
1314 1315

	// Check final progress after successful sync
1316 1317 1318 1319 1320 1321
	progress <- struct{}{}
	pending.Wait()
	checkProgress(t, tester.downloader, "final", ethereum.SyncProgress{
		CurrentBlock: uint64(chain.len() - 1),
		HighestBlock: uint64(chain.len() - 1),
	})
1322 1323 1324
}

// Tests that if an attacker fakes a chain height, after the attack is detected,
1325 1326 1327 1328 1329 1330 1331 1332 1333
// the progress height is successfully reduced at the next sync invocation.
func TestFakedSyncProgress62(t *testing.T)      { testFakedSyncProgress(t, 62, FullSync) }
func TestFakedSyncProgress63Full(t *testing.T)  { testFakedSyncProgress(t, 63, FullSync) }
func TestFakedSyncProgress63Fast(t *testing.T)  { testFakedSyncProgress(t, 63, FastSync) }
func TestFakedSyncProgress64Full(t *testing.T)  { testFakedSyncProgress(t, 64, FullSync) }
func TestFakedSyncProgress64Fast(t *testing.T)  { testFakedSyncProgress(t, 64, FastSync) }
func TestFakedSyncProgress64Light(t *testing.T) { testFakedSyncProgress(t, 64, LightSync) }

func testFakedSyncProgress(t *testing.T, protocol int, mode SyncMode) {
1334 1335
	t.Parallel()

1336 1337
	tester := newTester()
	defer tester.terminate()
1338
	chain := testChainBase.shorten(blockCacheItems - 15)
1339

1340
	// Set a sync init hook to catch progress changes
1341 1342 1343 1344 1345 1346
	starting := make(chan struct{})
	progress := make(chan struct{})
	tester.downloader.syncInitHook = func(origin, latest uint64) {
		starting <- struct{}{}
		<-progress
	}
1347 1348 1349 1350 1351 1352 1353
	checkProgress(t, tester.downloader, "pristine", ethereum.SyncProgress{})

	// Create and sync with an attacker that promises a higher chain than available.
	brokenChain := chain.shorten(chain.len())
	numMissing := 5
	for i := brokenChain.len() - 2; i > brokenChain.len()-numMissing; i-- {
		delete(brokenChain.headerm, brokenChain.chain[i])
1354
	}
1355
	tester.newPeer("attack", protocol, brokenChain)
1356 1357 1358 1359 1360

	pending := new(sync.WaitGroup)
	pending.Add(1)
	go func() {
		defer pending.Done()
1361
		if err := tester.sync("attack", nil, mode); err == nil {
E
Egon Elbre 已提交
1362
			panic("succeeded attacker synchronisation")
1363 1364 1365
		}
	}()
	<-starting
1366 1367 1368
	checkProgress(t, tester.downloader, "initial", ethereum.SyncProgress{
		HighestBlock: uint64(brokenChain.len() - 1),
	})
1369 1370
	progress <- struct{}{}
	pending.Wait()
1371
	afterFailedSync := tester.downloader.Progress()
1372

1373 1374 1375 1376
	// Synchronise with a good peer and check that the progress height has been reduced to
	// the true value.
	validChain := chain.shorten(chain.len() - numMissing)
	tester.newPeer("valid", protocol, validChain)
1377 1378 1379 1380
	pending.Add(1)

	go func() {
		defer pending.Done()
1381
		if err := tester.sync("valid", nil, mode); err != nil {
E
Egon Elbre 已提交
1382
			panic(fmt.Sprintf("failed to synchronise blocks: %v", err))
1383 1384 1385
		}
	}()
	<-starting
1386 1387 1388 1389 1390 1391
	checkProgress(t, tester.downloader, "completing", ethereum.SyncProgress{
		CurrentBlock: afterFailedSync.CurrentBlock,
		HighestBlock: uint64(validChain.len() - 1),
	})

	// Check final progress after successful sync.
1392 1393
	progress <- struct{}{}
	pending.Wait()
1394 1395 1396 1397
	checkProgress(t, tester.downloader, "final", ethereum.SyncProgress{
		CurrentBlock: uint64(validChain.len() - 1),
		HighestBlock: uint64(validChain.len() - 1),
	})
1398
}
1399 1400 1401

// This test reproduces an issue where unexpected deliveries would
// block indefinitely if they arrived at the right time.
1402
func TestDeliverHeadersHang(t *testing.T) {
1403 1404
	t.Parallel()

1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
	testCases := []struct {
		protocol int
		syncMode SyncMode
	}{
		{62, FullSync},
		{63, FullSync},
		{63, FastSync},
		{64, FullSync},
		{64, FastSync},
		{64, LightSync},
	}
	for _, tc := range testCases {
		t.Run(fmt.Sprintf("protocol %d mode %v", tc.protocol, tc.syncMode), func(t *testing.T) {
1418
			t.Parallel()
1419 1420 1421 1422
			testDeliverHeadersHang(t, tc.protocol, tc.syncMode)
		})
	}
}
1423

1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
func testDeliverHeadersHang(t *testing.T, protocol int, mode SyncMode) {
	master := newTester()
	defer master.terminate()
	chain := testChainBase.shorten(15)

	for i := 0; i < 200; i++ {
		tester := newTester()
		tester.peerDb = master.peerDb
		tester.newPeer("peer", protocol, chain)

		// Whenever the downloader requests headers, flood it with
		// a lot of unrequested header deliveries.
		tester.downloader.peers.peers["peer"].peer = &floodingTestPeer{
			peer:   tester.downloader.peers.peers["peer"].peer,
			tester: tester,
		}
		if err := tester.sync("peer", nil, mode); err != nil {
			t.Errorf("test %d: sync failed: %v", i, err)
		}
		tester.terminate()
	}
}

1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
type floodingTestPeer struct {
	peer   Peer
	tester *downloadTester
}

func (ftp *floodingTestPeer) Head() (common.Hash, *big.Int) { return ftp.peer.Head() }
func (ftp *floodingTestPeer) RequestHeadersByHash(hash common.Hash, count int, skip int, reverse bool) error {
	return ftp.peer.RequestHeadersByHash(hash, count, skip, reverse)
}
func (ftp *floodingTestPeer) RequestBodies(hashes []common.Hash) error {
	return ftp.peer.RequestBodies(hashes)
}
func (ftp *floodingTestPeer) RequestReceipts(hashes []common.Hash) error {
	return ftp.peer.RequestReceipts(hashes)
}
func (ftp *floodingTestPeer) RequestNodeData(hashes []common.Hash) error {
	return ftp.peer.RequestNodeData(hashes)
}

func (ftp *floodingTestPeer) RequestHeadersByNumber(from uint64, count, skip int, reverse bool) error {
	deliveriesDone := make(chan struct{}, 500)
1468
	for i := 0; i < cap(deliveriesDone)-1; i++ {
1469 1470 1471 1472 1473 1474
		peer := fmt.Sprintf("fake-peer%d", i)
		go func() {
			ftp.tester.downloader.DeliverHeaders(peer, []*types.Header{{}, {}, {}, {}})
			deliveriesDone <- struct{}{}
		}()
	}
1475

1476
	// None of the extra deliveries should block.
1477
	timeout := time.After(60 * time.Second)
1478
	launched := false
1479 1480 1481
	for i := 0; i < cap(deliveriesDone); i++ {
		select {
		case <-deliveriesDone:
1482 1483 1484 1485 1486 1487 1488 1489 1490
			if !launched {
				// Start delivering the requested headers
				// after one of the flooding responses has arrived.
				go func() {
					ftp.peer.RequestHeadersByNumber(from, count, skip, reverse)
					deliveriesDone <- struct{}{}
				}()
				launched = true
			}
1491 1492 1493 1494 1495 1496
		case <-timeout:
			panic("blocked")
		}
	}
	return nil
}
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571

func TestRemoteHeaderRequestSpan(t *testing.T) {
	testCases := []struct {
		remoteHeight uint64
		localHeight  uint64
		expected     []int
	}{
		// Remote is way higher. We should ask for the remote head and go backwards
		{1500, 1000,
			[]int{1323, 1339, 1355, 1371, 1387, 1403, 1419, 1435, 1451, 1467, 1483, 1499},
		},
		{15000, 13006,
			[]int{14823, 14839, 14855, 14871, 14887, 14903, 14919, 14935, 14951, 14967, 14983, 14999},
		},
		//Remote is pretty close to us. We don't have to fetch as many
		{1200, 1150,
			[]int{1149, 1154, 1159, 1164, 1169, 1174, 1179, 1184, 1189, 1194, 1199},
		},
		// Remote is equal to us (so on a fork with higher td)
		// We should get the closest couple of ancestors
		{1500, 1500,
			[]int{1497, 1499},
		},
		// We're higher than the remote! Odd
		{1000, 1500,
			[]int{997, 999},
		},
		// Check some weird edgecases that it behaves somewhat rationally
		{0, 1500,
			[]int{0, 2},
		},
		{6000000, 0,
			[]int{5999823, 5999839, 5999855, 5999871, 5999887, 5999903, 5999919, 5999935, 5999951, 5999967, 5999983, 5999999},
		},
		{0, 0,
			[]int{0, 2},
		},
	}
	reqs := func(from, count, span int) []int {
		var r []int
		num := from
		for len(r) < count {
			r = append(r, num)
			num += span + 1
		}
		return r
	}
	for i, tt := range testCases {
		from, count, span, max := calculateRequestSpan(tt.remoteHeight, tt.localHeight)
		data := reqs(int(from), count, span)

		if max != uint64(data[len(data)-1]) {
			t.Errorf("test %d: wrong last value %d != %d", i, data[len(data)-1], max)
		}
		failed := false
		if len(data) != len(tt.expected) {
			failed = true
			t.Errorf("test %d: length wrong, expected %d got %d", i, len(tt.expected), len(data))
		} else {
			for j, n := range data {
				if n != tt.expected[j] {
					failed = true
					break
				}
			}
		}
		if failed {
			res := strings.Replace(fmt.Sprint(data), " ", ",", -1)
			exp := strings.Replace(fmt.Sprint(tt.expected), " ", ",", -1)
			fmt.Printf("got: %v\n", res)
			fmt.Printf("exp: %v\n", exp)
			t.Errorf("test %d: wrong values", i)
		}
	}
}
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607

// Tests that peers below a pre-configured checkpoint block are prevented from
// being fast-synced from, avoiding potential cheap eclipse attacks.
func TestCheckpointEnforcement62(t *testing.T)      { testCheckpointEnforcement(t, 62, FullSync) }
func TestCheckpointEnforcement63Full(t *testing.T)  { testCheckpointEnforcement(t, 63, FullSync) }
func TestCheckpointEnforcement63Fast(t *testing.T)  { testCheckpointEnforcement(t, 63, FastSync) }
func TestCheckpointEnforcement64Full(t *testing.T)  { testCheckpointEnforcement(t, 64, FullSync) }
func TestCheckpointEnforcement64Fast(t *testing.T)  { testCheckpointEnforcement(t, 64, FastSync) }
func TestCheckpointEnforcement64Light(t *testing.T) { testCheckpointEnforcement(t, 64, LightSync) }

func testCheckpointEnforcement(t *testing.T, protocol int, mode SyncMode) {
	t.Parallel()

	// Create a new tester with a particular hard coded checkpoint block
	tester := newTester()
	defer tester.terminate()

	tester.downloader.checkpoint = uint64(fsMinFullBlocks) + 256
	chain := testChainBase.shorten(int(tester.downloader.checkpoint) - 1)

	// Attempt to sync with the peer and validate the result
	tester.newPeer("peer", protocol, chain)

	var expect error
	if mode == FastSync {
		expect = errUnsyncedPeer
	}
	if err := tester.sync("peer", nil, mode); err != expect {
		t.Fatalf("block sync error mismatch: have %v, want %v", err, expect)
	}
	if mode == FastSync {
		assertOwnChain(t, tester, 1)
	} else {
		assertOwnChain(t, tester, chain.len())
	}
}