block_fetcher.go 31.9 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
// Package fetcher contains the announcement based header, blocks or transaction synchronisation.
18 19 20 21 22 23 24 25
package fetcher

import (
	"errors"
	"math/rand"
	"time"

	"github.com/ethereum/go-ethereum/common"
26
	"github.com/ethereum/go-ethereum/common/prque"
27
	"github.com/ethereum/go-ethereum/consensus"
28
	"github.com/ethereum/go-ethereum/core/types"
29
	"github.com/ethereum/go-ethereum/log"
30
	"github.com/ethereum/go-ethereum/metrics"
31
	"github.com/ethereum/go-ethereum/trie"
32 33 34
)

const (
35
	lightTimeout  = time.Millisecond       // Time allowance before an announced header is explicitly requested
36
	arriveTimeout = 500 * time.Millisecond // Time allowance before an announced block/transaction is explicitly requested
37
	gatherSlack   = 100 * time.Millisecond // Interval used to collate almost-expired announces with fetches
38 39 40 41 42 43
	fetchTimeout  = 5 * time.Second        // Maximum allotted time to return an explicitly requested block/transaction
)

const (
	maxUncleDist = 7   // Maximum allowed backward distance from the chain head
	maxQueueDist = 32  // Maximum allowed distance from the chain head to queue
44
	hashLimit    = 256 // Maximum number of unique blocks or headers a peer may have announced
45
	blockLimit   = 64  // Maximum number of unique blocks a peer may have delivered
46 47
)

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
var (
	blockAnnounceInMeter   = metrics.NewRegisteredMeter("eth/fetcher/block/announces/in", nil)
	blockAnnounceOutTimer  = metrics.NewRegisteredTimer("eth/fetcher/block/announces/out", nil)
	blockAnnounceDropMeter = metrics.NewRegisteredMeter("eth/fetcher/block/announces/drop", nil)
	blockAnnounceDOSMeter  = metrics.NewRegisteredMeter("eth/fetcher/block/announces/dos", nil)

	blockBroadcastInMeter   = metrics.NewRegisteredMeter("eth/fetcher/block/broadcasts/in", nil)
	blockBroadcastOutTimer  = metrics.NewRegisteredTimer("eth/fetcher/block/broadcasts/out", nil)
	blockBroadcastDropMeter = metrics.NewRegisteredMeter("eth/fetcher/block/broadcasts/drop", nil)
	blockBroadcastDOSMeter  = metrics.NewRegisteredMeter("eth/fetcher/block/broadcasts/dos", nil)

	headerFetchMeter = metrics.NewRegisteredMeter("eth/fetcher/block/headers", nil)
	bodyFetchMeter   = metrics.NewRegisteredMeter("eth/fetcher/block/bodies", nil)

	headerFilterInMeter  = metrics.NewRegisteredMeter("eth/fetcher/block/filter/headers/in", nil)
	headerFilterOutMeter = metrics.NewRegisteredMeter("eth/fetcher/block/filter/headers/out", nil)
	bodyFilterInMeter    = metrics.NewRegisteredMeter("eth/fetcher/block/filter/bodies/in", nil)
	bodyFilterOutMeter   = metrics.NewRegisteredMeter("eth/fetcher/block/filter/bodies/out", nil)
)

68 69 70 71
var errTerminated = errors.New("terminated")

// HeaderRetrievalFn is a callback type for retrieving a header from the local chain.
type HeaderRetrievalFn func(common.Hash) *types.Header
72

73 74
// blockRetrievalFn is a callback type for retrieving a block from the local chain.
type blockRetrievalFn func(common.Hash) *types.Block
75

76 77 78 79 80 81
// headerRequesterFn is a callback type for sending a header retrieval request.
type headerRequesterFn func(common.Hash) error

// bodyRequesterFn is a callback type for sending a body retrieval request.
type bodyRequesterFn func([]common.Hash) error

82 83
// headerVerifierFn is a callback type to verify a block's header for fast propagation.
type headerVerifierFn func(header *types.Header) error
84

85
// blockBroadcasterFn is a callback type for broadcasting a block to connected peers.
86
type blockBroadcasterFn func(block *types.Block, propagate bool)
87

88 89 90
// chainHeightFn is a callback type to retrieve the current chain height.
type chainHeightFn func() uint64

91 92 93
// headersInsertFn is a callback type to insert a batch of headers into the local chain.
type headersInsertFn func(headers []*types.Header) (int, error)

94 95 96 97 98 99
// chainInsertFn is a callback type to insert a batch of blocks into the local chain.
type chainInsertFn func(types.Blocks) (int, error)

// peerDropFn is a callback type for dropping a peer detected as malicious.
type peerDropFn func(id string)

100
// blockAnnounce is the hash notification of the availability of a new block in the
101
// network.
102
type blockAnnounce struct {
103 104 105 106 107 108 109
	hash   common.Hash   // Hash of the block being announced
	number uint64        // Number of the block being announced (0 = unknown | old protocol)
	header *types.Header // Header of the block partially reassembled (new protocol)
	time   time.Time     // Timestamp of the announcement

	origin string // Identifier of the peer originating the notification

P
Péter Szilágyi 已提交
110 111
	fetchHeader headerRequesterFn // Fetcher function to retrieve the header of an announced block
	fetchBodies bodyRequesterFn   // Fetcher function to retrieve the body of an announced block
112
}
113

114 115
// headerFilterTask represents a batch of headers needing fetcher filtering.
type headerFilterTask struct {
116
	peer    string          // The source peer of block headers
117 118 119 120
	headers []*types.Header // Collection of headers to filter
	time    time.Time       // Arrival time of the headers
}

121
// bodyFilterTask represents a batch of block bodies (transactions and uncles)
122 123
// needing fetcher filtering.
type bodyFilterTask struct {
124
	peer         string                 // The source peer of block bodies
125 126 127
	transactions [][]*types.Transaction // Collection of transactions per block bodies
	uncles       [][]*types.Header      // Collection of uncles per block bodies
	time         time.Time              // Arrival time of the blocks' contents
128 129
}

130 131
// blockOrHeaderInject represents a schedules import operation.
type blockOrHeaderInject struct {
132
	origin string
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

	header *types.Header // Used for light mode fetcher which only cares about header.
	block  *types.Block  // Used for normal mode fetcher which imports full block.
}

// number returns the block number of the injected object.
func (inject *blockOrHeaderInject) number() uint64 {
	if inject.header != nil {
		return inject.header.Number.Uint64()
	}
	return inject.block.NumberU64()
}

// number returns the block hash of the injected object.
func (inject *blockOrHeaderInject) hash() common.Hash {
	if inject.header != nil {
		return inject.header.Hash()
	}
	return inject.block.Hash()
152 153
}

154
// BlockFetcher is responsible for accumulating block announcements from various peers
155
// and scheduling them for retrieval.
156
type BlockFetcher struct {
157 158
	light bool // The indicator whether it's a light fetcher or normal one.

159
	// Various event channels
160
	notify chan *blockAnnounce
161
	inject chan *blockOrHeaderInject
162 163 164 165 166 167

	headerFilter chan chan *headerFilterTask
	bodyFilter   chan chan *bodyFilterTask

	done chan common.Hash
	quit chan struct{}
168

169
	// Announce states
170 171 172 173 174
	announces  map[string]int                   // Per peer blockAnnounce counts to prevent memory exhaustion
	announced  map[common.Hash][]*blockAnnounce // Announced blocks, scheduled for fetching
	fetching   map[common.Hash]*blockAnnounce   // Announced blocks, currently fetching
	fetched    map[common.Hash][]*blockAnnounce // Blocks with headers fetched, scheduled for body retrieval
	completing map[common.Hash]*blockAnnounce   // Blocks with headers, currently body-completing
175

176
	// Block cache
177 178 179
	queue  *prque.Prque                         // Queue containing the import operations (block number sorted)
	queues map[string]int                       // Per peer block counts to prevent memory exhaustion
	queued map[common.Hash]*blockOrHeaderInject // Set of already queued blocks (to dedup imports)
180

181
	// Callbacks
182
	getHeader      HeaderRetrievalFn  // Retrieves a header from the local chain
183
	getBlock       blockRetrievalFn   // Retrieves a block from the local chain
184
	verifyHeader   headerVerifierFn   // Checks if a block's headers have a valid proof of work
185 186
	broadcastBlock blockBroadcasterFn // Broadcasts a block to connected peers
	chainHeight    chainHeightFn      // Retrieves the current chain's height
187
	insertHeaders  headersInsertFn    // Injects a batch of headers into the chain
188 189
	insertChain    chainInsertFn      // Injects a batch of blocks into the chain
	dropPeer       peerDropFn         // Drops a peer for misbehaving
190 191

	// Testing hooks
192 193 194 195 196
	announceChangeHook func(common.Hash, bool)           // Method to call upon adding or deleting a hash from the blockAnnounce list
	queueChangeHook    func(common.Hash, bool)           // Method to call upon adding or deleting a block from the import queue
	fetchingHook       func([]common.Hash)               // Method to call upon starting a block (eth/61) or header (eth/62) fetch
	completingHook     func([]common.Hash)               // Method to call upon starting a block body fetch (eth/62)
	importedHook       func(*types.Header, *types.Block) // Method to call upon successful header or block import (both eth/61 and eth/62)
197 198
}

199
// NewBlockFetcher creates a block fetcher to retrieve blocks based on hash announcements.
200
func NewBlockFetcher(light bool, getHeader HeaderRetrievalFn, getBlock blockRetrievalFn, verifyHeader headerVerifierFn, broadcastBlock blockBroadcasterFn, chainHeight chainHeightFn, insertHeaders headersInsertFn, insertChain chainInsertFn, dropPeer peerDropFn) *BlockFetcher {
201
	return &BlockFetcher{
202
		light:          light,
203
		notify:         make(chan *blockAnnounce),
204
		inject:         make(chan *blockOrHeaderInject),
205 206
		headerFilter:   make(chan chan *headerFilterTask),
		bodyFilter:     make(chan chan *bodyFilterTask),
207 208
		done:           make(chan common.Hash),
		quit:           make(chan struct{}),
209
		announces:      make(map[string]int),
210 211 212 213
		announced:      make(map[common.Hash][]*blockAnnounce),
		fetching:       make(map[common.Hash]*blockAnnounce),
		fetched:        make(map[common.Hash][]*blockAnnounce),
		completing:     make(map[common.Hash]*blockAnnounce),
214
		queue:          prque.New(nil),
215
		queues:         make(map[string]int),
216 217
		queued:         make(map[common.Hash]*blockOrHeaderInject),
		getHeader:      getHeader,
218
		getBlock:       getBlock,
219
		verifyHeader:   verifyHeader,
220 221
		broadcastBlock: broadcastBlock,
		chainHeight:    chainHeight,
222
		insertHeaders:  insertHeaders,
223 224
		insertChain:    insertChain,
		dropPeer:       dropPeer,
225 226 227
	}
}

L
Leif Jurvetson 已提交
228
// Start boots up the announcement based synchroniser, accepting and processing
229
// hash notifications and block fetches until termination requested.
230
func (f *BlockFetcher) Start() {
231 232 233 234 235
	go f.loop()
}

// Stop terminates the announcement based synchroniser, canceling all pending
// operations.
236
func (f *BlockFetcher) Stop() {
237 238 239 240 241
	close(f.quit)
}

// Notify announces the fetcher of the potential availability of a new block in
// the network.
242
func (f *BlockFetcher) Notify(peer string, hash common.Hash, number uint64, time time.Time,
243
	headerFetcher headerRequesterFn, bodyFetcher bodyRequesterFn) error {
244
	block := &blockAnnounce{
245 246 247 248 249 250
		hash:        hash,
		number:      number,
		time:        time,
		origin:      peer,
		fetchHeader: headerFetcher,
		fetchBodies: bodyFetcher,
251 252 253 254 255 256 257 258 259
	}
	select {
	case f.notify <- block:
		return nil
	case <-f.quit:
		return errTerminated
	}
}

260
// Enqueue tries to fill gaps the fetcher's future import queue.
261
func (f *BlockFetcher) Enqueue(peer string, block *types.Block) error {
262
	op := &blockOrHeaderInject{
263 264 265 266
		origin: peer,
		block:  block,
	}
	select {
267
	case f.inject <- op:
268 269 270 271 272 273
		return nil
	case <-f.quit:
		return errTerminated
	}
}

274 275
// FilterHeaders extracts all the headers that were explicitly requested by the fetcher,
// returning those that should be handled differently.
276
func (f *BlockFetcher) FilterHeaders(peer string, headers []*types.Header, time time.Time) []*types.Header {
277
	log.Trace("Filtering headers", "peer", peer, "headers", len(headers))
278 279 280 281 282 283 284 285 286 287 288

	// Send the filter channel to the fetcher
	filter := make(chan *headerFilterTask)

	select {
	case f.headerFilter <- filter:
	case <-f.quit:
		return nil
	}
	// Request the filtering of the header list
	select {
289
	case filter <- &headerFilterTask{peer: peer, headers: headers, time: time}:
290 291 292 293 294 295 296 297 298 299 300 301 302 303
	case <-f.quit:
		return nil
	}
	// Retrieve the headers remaining after filtering
	select {
	case task := <-filter:
		return task.headers
	case <-f.quit:
		return nil
	}
}

// FilterBodies extracts all the block bodies that were explicitly requested by
// the fetcher, returning those that should be handled differently.
304
func (f *BlockFetcher) FilterBodies(peer string, transactions [][]*types.Transaction, uncles [][]*types.Header, time time.Time) ([][]*types.Transaction, [][]*types.Header) {
305
	log.Trace("Filtering bodies", "peer", peer, "txs", len(transactions), "uncles", len(uncles))
306 307 308 309 310 311 312 313 314 315 316

	// Send the filter channel to the fetcher
	filter := make(chan *bodyFilterTask)

	select {
	case f.bodyFilter <- filter:
	case <-f.quit:
		return nil, nil
	}
	// Request the filtering of the body list
	select {
317
	case filter <- &bodyFilterTask{peer: peer, transactions: transactions, uncles: uncles, time: time}:
318 319 320 321 322 323 324 325 326 327 328 329
	case <-f.quit:
		return nil, nil
	}
	// Retrieve the bodies remaining after filtering
	select {
	case task := <-filter:
		return task.transactions, task.uncles
	case <-f.quit:
		return nil, nil
	}
}

330 331
// Loop is the main fetcher loop, checking and processing various notification
// events.
332
func (f *BlockFetcher) loop() {
333
	// Iterate the block fetching until a quit is requested
334 335 336 337 338 339
	var (
		fetchTimer    = time.NewTimer(0)
		completeTimer = time.NewTimer(0)
	)
	<-fetchTimer.C // clear out the channel
	<-completeTimer.C
340 341
	defer fetchTimer.Stop()
	defer completeTimer.Stop()
342

343 344
	for {
		// Clean up any expired block fetches
345
		for hash, announce := range f.fetching {
346
			if time.Since(announce.time) > fetchTimeout {
347
				f.forgetHash(hash)
348 349
			}
		}
350 351
		// Import any queued blocks that could potentially fit
		height := f.chainHeight()
352
		for !f.queue.Empty() {
353 354
			op := f.queue.PopItem().(*blockOrHeaderInject)
			hash := op.hash()
355
			if f.queueChangeHook != nil {
356
				f.queueChangeHook(hash, false)
357
			}
358
			// If too high up the chain or phase, continue later
359
			number := op.number()
360
			if number > height+1 {
361
				f.queue.Push(op, -int64(number))
362
				if f.queueChangeHook != nil {
363
					f.queueChangeHook(hash, true)
364
				}
365 366
				break
			}
367
			// Otherwise if fresh and still unknown, try and import
368
			if (number+maxUncleDist < height) || (f.light && f.getHeader(hash) != nil) || (!f.light && f.getBlock(hash) != nil) {
369
				f.forgetBlock(hash)
370 371
				continue
			}
372 373 374 375 376
			if f.light {
				f.importHeaders(op.origin, op.header)
			} else {
				f.importBlocks(op.origin, op.block)
			}
377
		}
378 379 380
		// Wait for an outside event to occur
		select {
		case <-f.quit:
381
			// BlockFetcher terminating, abort all operations
382 383 384
			return

		case notification := <-f.notify:
385
			// A block was announced, make sure the peer isn't DOSing us
386
			blockAnnounceInMeter.Mark(1)
387

388
			count := f.announces[notification.origin] + 1
389
			if count > hashLimit {
P
Péter Szilágyi 已提交
390
				log.Debug("Peer exceeded outstanding announces", "peer", notification.origin, "limit", hashLimit)
391
				blockAnnounceDOSMeter.Mark(1)
392 393
				break
			}
394 395 396
			// If we have a valid block number, check that it's potentially useful
			if notification.number > 0 {
				if dist := int64(notification.number) - int64(f.chainHeight()); dist < -maxUncleDist || dist > maxQueueDist {
P
Péter Szilágyi 已提交
397
					log.Debug("Peer discarded announcement", "peer", notification.origin, "number", notification.number, "hash", notification.hash, "distance", dist)
398
					blockAnnounceDropMeter.Mark(1)
399 400 401
					break
				}
			}
402
			// All is well, schedule the announce if block's not yet downloading
403
			if _, ok := f.fetching[notification.hash]; ok {
404 405
				break
			}
406 407 408
			if _, ok := f.completing[notification.hash]; ok {
				break
			}
409
			f.announces[notification.origin] = count
410
			f.announced[notification.hash] = append(f.announced[notification.hash], notification)
411 412 413
			if f.announceChangeHook != nil && len(f.announced[notification.hash]) == 1 {
				f.announceChangeHook(notification.hash, true)
			}
414
			if len(f.announced) == 1 {
415
				f.rescheduleFetch(fetchTimer)
416 417
			}

418
		case op := <-f.inject:
419
			// A direct block insertion was requested, try and fill any pending gaps
420
			blockBroadcastInMeter.Mark(1)
421 422 423 424 425 426 427

			// Now only direct block injection is allowed, drop the header injection
			// here silently if we receive.
			if f.light {
				continue
			}
			f.enqueue(op.origin, nil, op.block)
428

429
		case hash := <-f.done:
430
			// A pending import finished, remove all traces of the notification
431
			f.forgetHash(hash)
432
			f.forgetBlock(hash)
433

434
		case <-fetchTimer.C:
435 436 437
			// At least one block's timer ran out, check for needing retrieval
			request := make(map[string][]common.Hash)

438
			for hash, announces := range f.announced {
439 440 441 442 443 444 445
				// In current LES protocol(les2/les3), only header announce is
				// available, no need to wait too much time for header broadcast.
				timeout := arriveTimeout - gatherSlack
				if f.light {
					timeout = 0
				}
				if time.Since(announces[0].time) > timeout {
446
					// Pick a random peer to retrieve from, reset all others
447
					announce := announces[rand.Intn(len(announces))]
448
					f.forgetHash(hash)
449 450

					// If the block still didn't arrive, queue for fetching
451
					if (f.light && f.getHeader(hash) == nil) || (!f.light && f.getBlock(hash) == nil) {
452
						request[announce.origin] = append(request[announce.origin], hash)
453
						f.fetching[hash] = announce
454 455 456
					}
				}
			}
457
			// Send out all block header requests
458
			for peer, hashes := range request {
P
Péter Szilágyi 已提交
459 460
				log.Trace("Fetching scheduled headers", "peer", peer, "list", hashes)

461
				// Create a closure of the fetch and schedule in on a new thread
462
				fetchHeader, hashes := f.fetching[hashes[0]].fetchHeader, hashes
463 464 465 466
				go func() {
					if f.fetchingHook != nil {
						f.fetchingHook(hashes)
					}
467 468 469
					for _, hash := range hashes {
						headerFetchMeter.Mark(1)
						fetchHeader(hash) // Suboptimal, but protocol doesn't allow batch header retrievals
470
					}
471
				}()
472 473
			}
			// Schedule the next fetch if blocks are still pending
474
			f.rescheduleFetch(fetchTimer)
475

476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
		case <-completeTimer.C:
			// At least one header's timer ran out, retrieve everything
			request := make(map[string][]common.Hash)

			for hash, announces := range f.fetched {
				// Pick a random peer to retrieve from, reset all others
				announce := announces[rand.Intn(len(announces))]
				f.forgetHash(hash)

				// If the block still didn't arrive, queue for completion
				if f.getBlock(hash) == nil {
					request[announce.origin] = append(request[announce.origin], hash)
					f.completing[hash] = announce
				}
			}
			// Send out all block body requests
			for peer, hashes := range request {
P
Péter Szilágyi 已提交
493
				log.Trace("Fetching scheduled bodies", "peer", peer, "list", hashes)
494 495 496 497 498

				// Create a closure of the fetch and schedule in on a new thread
				if f.completingHook != nil {
					f.completingHook(hashes)
				}
499
				bodyFetchMeter.Mark(int64(len(hashes)))
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
				go f.completing[hashes[0]].fetchBodies(hashes)
			}
			// Schedule the next fetch if blocks are still pending
			f.rescheduleComplete(completeTimer)

		case filter := <-f.headerFilter:
			// Headers arrived from a remote peer. Extract those that were explicitly
			// requested by the fetcher, and return everything else so it's delivered
			// to other parts of the system.
			var task *headerFilterTask
			select {
			case task = <-filter:
			case <-f.quit:
				return
			}
515 516
			headerFilterInMeter.Mark(int64(len(task.headers)))

517 518
			// Split the batch of headers into unknown ones (to return to the caller),
			// known incomplete ones (requiring body retrievals) and completed blocks.
519
			unknown, incomplete, complete, lightHeaders := []*types.Header{}, []*blockAnnounce{}, []*types.Block{}, []*blockAnnounce{}
520 521 522 523
			for _, header := range task.headers {
				hash := header.Hash()

				// Filter fetcher-requested headers from other synchronisation algorithms
524
				if announce := f.fetching[hash]; announce != nil && announce.origin == task.peer && f.fetched[hash] == nil && f.completing[hash] == nil && f.queued[hash] == nil {
525 526
					// If the delivered header does not match the promised number, drop the announcer
					if header.Number.Uint64() != announce.number {
P
Péter Szilágyi 已提交
527
						log.Trace("Invalid block number fetched", "peer", announce.origin, "hash", header.Hash(), "announced", announce.number, "provided", header.Number)
528 529 530 531
						f.dropPeer(announce.origin)
						f.forgetHash(hash)
						continue
					}
532 533 534 535 536 537 538 539 540 541
					// Collect all headers only if we are running in light
					// mode and the headers are not imported by other means.
					if f.light {
						if f.getHeader(hash) == nil {
							announce.header = header
							lightHeaders = append(lightHeaders, announce)
						}
						f.forgetHash(hash)
						continue
					}
542 543 544 545 546 547
					// Only keep if not imported by other means
					if f.getBlock(hash) == nil {
						announce.header = header
						announce.time = task.time

						// If the block is empty (header only), short circuit into the final import queue
548
						if header.TxHash == types.EmptyRootHash && header.UncleHash == types.EmptyUncleHash {
P
Péter Szilágyi 已提交
549
							log.Trace("Block empty, skipping body retrieval", "peer", announce.origin, "number", header.Number, "hash", header.Hash())
550

551 552 553 554
							block := types.NewBlockWithHeader(header)
							block.ReceivedAt = task.time

							complete = append(complete, block)
555 556 557 558 559 560
							f.completing[hash] = announce
							continue
						}
						// Otherwise add to the list of blocks needing completion
						incomplete = append(incomplete, announce)
					} else {
P
Péter Szilágyi 已提交
561
						log.Trace("Block already imported, discarding header", "peer", announce.origin, "number", header.Number, "hash", header.Hash())
562 563 564
						f.forgetHash(hash)
					}
				} else {
565
					// BlockFetcher doesn't know about it, add to the return list
566 567 568
					unknown = append(unknown, header)
				}
			}
569
			headerFilterOutMeter.Mark(int64(len(unknown)))
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
			select {
			case filter <- &headerFilterTask{headers: unknown, time: task.time}:
			case <-f.quit:
				return
			}
			// Schedule the retrieved headers for body completion
			for _, announce := range incomplete {
				hash := announce.header.Hash()
				if _, ok := f.completing[hash]; ok {
					continue
				}
				f.fetched[hash] = append(f.fetched[hash], announce)
				if len(f.fetched) == 1 {
					f.rescheduleComplete(completeTimer)
				}
			}
586 587 588 589
			// Schedule the header for light fetcher import
			for _, announce := range lightHeaders {
				f.enqueue(announce.origin, announce.header, nil)
			}
590 591 592
			// Schedule the header-only blocks for import
			for _, block := range complete {
				if announce := f.completing[block.Hash()]; announce != nil {
593
					f.enqueue(announce.origin, nil, block)
594 595 596 597 598 599 600 601 602 603 604
				}
			}

		case filter := <-f.bodyFilter:
			// Block bodies arrived, extract any explicitly requested blocks, return the rest
			var task *bodyFilterTask
			select {
			case task = <-filter:
			case <-f.quit:
				return
			}
605
			bodyFilterInMeter.Mark(int64(len(task.transactions)))
606
			blocks := []*types.Block{}
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
			// abort early if there's nothing explicitly requested
			if len(f.completing) > 0 {
				for i := 0; i < len(task.transactions) && i < len(task.uncles); i++ {
					// Match up a body to any possible completion request
					var (
						matched   = false
						uncleHash common.Hash // calculated lazily and reused
						txnHash   common.Hash // calculated lazily and reused
					)
					for hash, announce := range f.completing {
						if f.queued[hash] != nil || announce.origin != task.peer {
							continue
						}
						if uncleHash == (common.Hash{}) {
							uncleHash = types.CalcUncleHash(task.uncles[i])
						}
						if uncleHash != announce.header.UncleHash {
							continue
						}
						if txnHash == (common.Hash{}) {
627
							txnHash = types.DeriveSha(types.Transactions(task.transactions[i]), trie.NewStackTrie(nil))
628 629 630
						}
						if txnHash != announce.header.TxHash {
							continue
631
						}
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
						// Mark the body matched, reassemble if still unknown
						matched = true
						if f.getBlock(hash) == nil {
							block := types.NewBlockWithHeader(announce.header).WithBody(task.transactions[i], task.uncles[i])
							block.ReceivedAt = task.time
							blocks = append(blocks, block)
						} else {
							f.forgetHash(hash)
						}

					}
					if matched {
						task.transactions = append(task.transactions[:i], task.transactions[i+1:]...)
						task.uncles = append(task.uncles[:i], task.uncles[i+1:]...)
						i--
						continue
648 649 650
					}
				}
			}
651
			bodyFilterOutMeter.Mark(int64(len(task.transactions)))
652 653 654 655 656 657 658 659
			select {
			case filter <- task:
			case <-f.quit:
				return
			}
			// Schedule the retrieved blocks for ordered import
			for _, block := range blocks {
				if announce := f.completing[block.Hash()]; announce != nil {
660
					f.enqueue(announce.origin, nil, block)
661 662
				}
			}
663 664 665
		}
	}
}
666

667 668
// rescheduleFetch resets the specified fetch timer to the next blockAnnounce timeout.
func (f *BlockFetcher) rescheduleFetch(fetch *time.Timer) {
669 670 671 672
	// Short circuit if no blocks are announced
	if len(f.announced) == 0 {
		return
	}
673 674 675 676 677 678
	// Schedule announcement retrieval quickly for light mode
	// since server won't send any headers to client.
	if f.light {
		fetch.Reset(lightTimeout)
		return
	}
679 680 681 682 683 684 685 686 687 688
	// Otherwise find the earliest expiring announcement
	earliest := time.Now()
	for _, announces := range f.announced {
		if earliest.After(announces[0].time) {
			earliest = announces[0].time
		}
	}
	fetch.Reset(arriveTimeout - time.Since(earliest))
}

689
// rescheduleComplete resets the specified completion timer to the next fetch timeout.
690
func (f *BlockFetcher) rescheduleComplete(complete *time.Timer) {
691 692 693 694 695 696 697 698 699 700 701 702 703 704
	// Short circuit if no headers are fetched
	if len(f.fetched) == 0 {
		return
	}
	// Otherwise find the earliest expiring announcement
	earliest := time.Now()
	for _, announces := range f.fetched {
		if earliest.After(announces[0].time) {
			earliest = announces[0].time
		}
	}
	complete.Reset(gatherSlack - time.Since(earliest))
}

705 706 707 708 709 710 711 712 713 714 715 716
// enqueue schedules a new header or block import operation, if the component
// to be imported has not yet been seen.
func (f *BlockFetcher) enqueue(peer string, header *types.Header, block *types.Block) {
	var (
		hash   common.Hash
		number uint64
	)
	if header != nil {
		hash, number = header.Hash(), header.Number.Uint64()
	} else {
		hash, number = block.Hash(), block.NumberU64()
	}
717 718 719
	// Ensure the peer isn't DOSing us
	count := f.queues[peer] + 1
	if count > blockLimit {
720
		log.Debug("Discarded delivered header or block, exceeded allowance", "peer", peer, "number", number, "hash", hash, "limit", blockLimit)
721
		blockBroadcastDOSMeter.Mark(1)
722
		f.forgetHash(hash)
723 724
		return
	}
725
	// Discard any past or too distant blocks
726 727
	if dist := int64(number) - int64(f.chainHeight()); dist < -maxUncleDist || dist > maxQueueDist {
		log.Debug("Discarded delivered header or block, too far away", "peer", peer, "number", number, "hash", hash, "distance", dist)
728
		blockBroadcastDropMeter.Mark(1)
729
		f.forgetHash(hash)
730 731 732 733
		return
	}
	// Schedule the block for future importing
	if _, ok := f.queued[hash]; !ok {
734 735 736 737 738
		op := &blockOrHeaderInject{origin: peer}
		if header != nil {
			op.header = header
		} else {
			op.block = block
739 740 741
		}
		f.queues[peer] = count
		f.queued[hash] = op
742
		f.queue.Push(op, -int64(number))
743
		if f.queueChangeHook != nil {
744
			f.queueChangeHook(hash, true)
745
		}
746
		log.Debug("Queued delivered header or block", "peer", peer, "number", number, "hash", hash, "queued", f.queue.Size())
747 748
	}
}
749

750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
// importHeaders spawns a new goroutine to run a header insertion into the chain.
// If the header's number is at the same height as the current import phase, it
// updates the phase states accordingly.
func (f *BlockFetcher) importHeaders(peer string, header *types.Header) {
	hash := header.Hash()
	log.Debug("Importing propagated header", "peer", peer, "number", header.Number, "hash", hash)

	go func() {
		defer func() { f.done <- hash }()
		// If the parent's unknown, abort insertion
		parent := f.getHeader(header.ParentHash)
		if parent == nil {
			log.Debug("Unknown parent of propagated header", "peer", peer, "number", header.Number, "hash", hash, "parent", header.ParentHash)
			return
		}
		// Validate the header and if something went wrong, drop the peer
		if err := f.verifyHeader(header); err != nil && err != consensus.ErrFutureBlock {
			log.Debug("Propagated header verification failed", "peer", peer, "number", header.Number, "hash", hash, "err", err)
			f.dropPeer(peer)
			return
		}
		// Run the actual import and log any issues
		if _, err := f.insertHeaders([]*types.Header{header}); err != nil {
			log.Debug("Propagated header import failed", "peer", peer, "number", header.Number, "hash", hash, "err", err)
			return
		}
		// Invoke the testing hook if needed
		if f.importedHook != nil {
			f.importedHook(header, nil)
		}
	}()
}

// importBlocks spawns a new goroutine to run a block insertion into the chain. If the
K
Kyuntae Ethan Kim 已提交
784
// block's number is at the same height as the current import phase, it updates
785
// the phase states accordingly.
786
func (f *BlockFetcher) importBlocks(peer string, block *types.Block) {
787 788 789
	hash := block.Hash()

	// Run the import on a new thread
P
Péter Szilágyi 已提交
790
	log.Debug("Importing propagated block", "peer", peer, "number", block.Number(), "hash", hash)
791 792 793
	go func() {
		defer func() { f.done <- hash }()

794
		// If the parent's unknown, abort insertion
795 796
		parent := f.getBlock(block.ParentHash())
		if parent == nil {
P
Péter Szilágyi 已提交
797
			log.Debug("Unknown parent of propagated block", "peer", peer, "number", block.Number(), "hash", hash, "parent", block.ParentHash())
798 799 800
			return
		}
		// Quickly validate the header and propagate the block if it passes
801
		switch err := f.verifyHeader(block.Header()); err {
802 803
		case nil:
			// All ok, quickly propagate to our peers
804
			blockBroadcastOutTimer.UpdateSince(block.ReceivedAt)
805 806
			go f.broadcastBlock(block, true)

807
		case consensus.ErrFutureBlock:
808 809 810 811
			// Weird future block, don't fail, but neither propagate

		default:
			// Something went very wrong, drop the peer
P
Péter Szilágyi 已提交
812
			log.Debug("Propagated block verification failed", "peer", peer, "number", block.Number(), "hash", hash, "err", err)
813
			f.dropPeer(peer)
814 815
			return
		}
816
		// Run the actual import and log any issues
817
		if _, err := f.insertChain(types.Blocks{block}); err != nil {
P
Péter Szilágyi 已提交
818
			log.Debug("Propagated block import failed", "peer", peer, "number", block.Number(), "hash", hash, "err", err)
819 820
			return
		}
821
		// If import succeeded, broadcast the block
822
		blockAnnounceOutTimer.UpdateSince(block.ReceivedAt)
823
		go f.broadcastBlock(block, false)
824 825 826

		// Invoke the testing hook if needed
		if f.importedHook != nil {
827
			f.importedHook(nil, block)
828
		}
829 830
	}()
}
831

832 833
// forgetHash removes all traces of a block announcement from the fetcher's
// internal state.
834
func (f *BlockFetcher) forgetHash(hash common.Hash) {
835
	// Remove all pending announces and decrement DOS counters
836 837 838 839 840 841 842 843 844 845
	if announceMap, ok := f.announced[hash]; ok {
		for _, announce := range announceMap {
			f.announces[announce.origin]--
			if f.announces[announce.origin] <= 0 {
				delete(f.announces, announce.origin)
			}
		}
		delete(f.announced, hash)
		if f.announceChangeHook != nil {
			f.announceChangeHook(hash, false)
846
		}
847
	}
848 849 850
	// Remove any pending fetches and decrement the DOS counters
	if announce := f.fetching[hash]; announce != nil {
		f.announces[announce.origin]--
851
		if f.announces[announce.origin] <= 0 {
852 853 854 855
			delete(f.announces, announce.origin)
		}
		delete(f.fetching, hash)
	}
856 857 858 859

	// Remove any pending completion requests and decrement the DOS counters
	for _, announce := range f.fetched[hash] {
		f.announces[announce.origin]--
860
		if f.announces[announce.origin] <= 0 {
861 862 863 864 865 866 867 868
			delete(f.announces, announce.origin)
		}
	}
	delete(f.fetched, hash)

	// Remove any pending completions and decrement the DOS counters
	if announce := f.completing[hash]; announce != nil {
		f.announces[announce.origin]--
869
		if f.announces[announce.origin] <= 0 {
870 871 872 873
			delete(f.announces, announce.origin)
		}
		delete(f.completing, hash)
	}
874
}
875

876
// forgetBlock removes all traces of a queued block from the fetcher's internal
877
// state.
878
func (f *BlockFetcher) forgetBlock(hash common.Hash) {
879 880 881 882 883 884 885 886
	if insert := f.queued[hash]; insert != nil {
		f.queues[insert.origin]--
		if f.queues[insert.origin] == 0 {
			delete(f.queues, insert.origin)
		}
		delete(f.queued, hash)
	}
}