github.com/codysnider/go-ethereum@v1.10.18-0.20220420071915-14f4ae99222a/eth/downloader/fetchers_concurrent_headers.go (about)

     1  // Copyright 2021 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // 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/>.
    16  
    17  package downloader
    18  
    19  import (
    20  	"time"
    21  
    22  	"github.com/ethereum/go-ethereum/common"
    23  	"github.com/ethereum/go-ethereum/eth/protocols/eth"
    24  	"github.com/ethereum/go-ethereum/log"
    25  )
    26  
    27  // headerQueue implements typedQueue and is a type adapter between the generic
    28  // concurrent fetcher and the downloader.
    29  type headerQueue Downloader
    30  
    31  // waker returns a notification channel that gets pinged in case more header
    32  // fetches have been queued up, so the fetcher might assign it to idle peers.
    33  func (q *headerQueue) waker() chan bool {
    34  	return q.queue.headerContCh
    35  }
    36  
    37  // pending returns the number of headers that are currently queued for fetching
    38  // by the concurrent downloader.
    39  func (q *headerQueue) pending() int {
    40  	return q.queue.PendingHeaders()
    41  }
    42  
    43  // capacity is responsible for calculating how many headers a particular peer is
    44  // estimated to be able to retrieve within the alloted round trip time.
    45  func (q *headerQueue) capacity(peer *peerConnection, rtt time.Duration) int {
    46  	return peer.HeaderCapacity(rtt)
    47  }
    48  
    49  // updateCapacity is responsible for updating how many headers a particular peer
    50  // is estimated to be able to retrieve in a unit time.
    51  func (q *headerQueue) updateCapacity(peer *peerConnection, items int, span time.Duration) {
    52  	peer.UpdateHeaderRate(items, span)
    53  }
    54  
    55  // reserve is responsible for allocating a requested number of pending headers
    56  // from the download queue to the specified peer.
    57  func (q *headerQueue) reserve(peer *peerConnection, items int) (*fetchRequest, bool, bool) {
    58  	return q.queue.ReserveHeaders(peer, items), false, false
    59  }
    60  
    61  // unreserve is resposible for removing the current header retrieval allocation
    62  // assigned to a specific peer and placing it back into the pool to allow
    63  // reassigning to some other peer.
    64  func (q *headerQueue) unreserve(peer string) int {
    65  	fails := q.queue.ExpireHeaders(peer)
    66  	if fails > 2 {
    67  		log.Trace("Header delivery timed out", "peer", peer)
    68  	} else {
    69  		log.Debug("Header delivery stalling", "peer", peer)
    70  	}
    71  	return fails
    72  }
    73  
    74  // request is responsible for converting a generic fetch request into a header
    75  // one and sending it to the remote peer for fulfillment.
    76  func (q *headerQueue) request(peer *peerConnection, req *fetchRequest, resCh chan *eth.Response) (*eth.Request, error) {
    77  	peer.log.Trace("Requesting new batch of headers", "from", req.From)
    78  	return peer.peer.RequestHeadersByNumber(req.From, MaxHeaderFetch, 0, false, resCh)
    79  }
    80  
    81  // deliver is responsible for taking a generic response packet from the concurrent
    82  // fetcher, unpacking the header data and delivering it to the downloader's queue.
    83  func (q *headerQueue) deliver(peer *peerConnection, packet *eth.Response) (int, error) {
    84  	headers := *packet.Res.(*eth.BlockHeadersPacket)
    85  	hashes := packet.Meta.([]common.Hash)
    86  
    87  	accepted, err := q.queue.DeliverHeaders(peer.id, headers, hashes, q.headerProcCh)
    88  	switch {
    89  	case err == nil && len(headers) == 0:
    90  		peer.log.Trace("Requested headers delivered")
    91  	case err == nil:
    92  		peer.log.Trace("Delivered new batch of headers", "count", len(headers), "accepted", accepted)
    93  	default:
    94  		peer.log.Debug("Failed to deliver retrieved headers", "err", err)
    95  	}
    96  	return accepted, err
    97  }