2019-08-23 17:10:25 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-09-24 14:56:50 +00:00
|
|
|
"io"
|
2019-08-23 17:10:25 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
libp2pcore "github.com/libp2p/go-libp2p-core"
|
2019-09-16 17:54:46 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2019-08-23 17:10:25 +00:00
|
|
|
"github.com/pkg/errors"
|
2019-09-20 17:08:32 +00:00
|
|
|
"github.com/prysmaticlabs/go-ssz"
|
2019-08-23 17:10:25 +00:00
|
|
|
)
|
|
|
|
|
2019-09-16 17:54:46 +00:00
|
|
|
// sendRecentBeaconBlocksRequest sends a recent beacon blocks request to a peer to get
|
|
|
|
// those corresponding blocks from that peer.
|
2019-12-17 01:53:55 +00:00
|
|
|
func (r *Service) sendRecentBeaconBlocksRequest(ctx context.Context, blockRoots [][32]byte, id peer.ID) error {
|
2019-09-16 17:54:46 +00:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, 10*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
stream, err := r.p2p.Send(ctx, blockRoots, id)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-24 14:56:50 +00:00
|
|
|
for i := 0; i < len(blockRoots); i++ {
|
|
|
|
blk, err := ReadChunkedBlock(stream, r.p2p)
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("Unable to retrieve block from stream")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.pendingQueueLock.Lock()
|
2019-09-20 17:08:32 +00:00
|
|
|
r.slotToPendingBlocks[blk.Slot] = blk
|
|
|
|
blkRoot, err := ssz.SigningRoot(blk)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-09-16 17:54:46 +00:00
|
|
|
}
|
2019-09-20 17:08:32 +00:00
|
|
|
r.seenPendingBlocks[blkRoot] = true
|
2019-09-24 14:56:50 +00:00
|
|
|
r.pendingQueueLock.Unlock()
|
2019-09-16 17:54:46 +00:00
|
|
|
|
2019-09-24 14:56:50 +00:00
|
|
|
}
|
2019-09-16 17:54:46 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-20 06:27:28 +00:00
|
|
|
// beaconBlocksRootRPCHandler looks up the request blocks from the database from the given block roots.
|
2019-12-17 01:53:55 +00:00
|
|
|
func (r *Service) beaconBlocksRootRPCHandler(ctx context.Context, msg interface{}, stream libp2pcore.Stream) error {
|
2019-08-23 17:10:25 +00:00
|
|
|
defer stream.Close()
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
setRPCStreamDeadlines(stream)
|
2019-09-20 06:27:28 +00:00
|
|
|
log := log.WithField("handler", "beacon_blocks_by_root")
|
2019-08-23 17:10:25 +00:00
|
|
|
|
2019-09-16 17:54:46 +00:00
|
|
|
blockRoots := msg.([][32]byte)
|
2019-08-23 17:10:25 +00:00
|
|
|
if len(blockRoots) == 0 {
|
|
|
|
resp, err := r.generateErrorResponse(responseCodeInvalidRequest, "no block roots provided in request")
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("Failed to generate a response error")
|
|
|
|
} else {
|
|
|
|
if _, err := stream.Write(resp); err != nil {
|
|
|
|
log.WithError(err).Errorf("Failed to write to stream")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return errors.New("no block roots provided")
|
|
|
|
}
|
2019-09-24 14:56:50 +00:00
|
|
|
|
2019-08-23 17:10:25 +00:00
|
|
|
for _, root := range blockRoots {
|
2019-09-16 17:54:46 +00:00
|
|
|
blk, err := r.db.Block(ctx, root)
|
2019-10-09 06:57:43 +00:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("Failed to fetch block")
|
2019-08-23 17:10:25 +00:00
|
|
|
resp, err := r.generateErrorResponse(responseCodeServerError, genericError)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("Failed to generate a response error")
|
|
|
|
} else {
|
|
|
|
if _, err := stream.Write(resp); err != nil {
|
|
|
|
log.WithError(err).Errorf("Failed to write to stream")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-10-09 06:57:43 +00:00
|
|
|
if blk == nil {
|
|
|
|
continue
|
|
|
|
}
|
2019-09-24 14:56:50 +00:00
|
|
|
if err := r.chunkWriter(stream, blk); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-23 17:10:25 +00:00
|
|
|
}
|
2019-09-24 14:56:50 +00:00
|
|
|
return nil
|
2019-08-23 17:10:25 +00:00
|
|
|
}
|