forked from cerc-io/ipld-eth-server
392 lines
12 KiB
Go
392 lines
12 KiB
Go
// package bitswap implements the IPFS exchange interface with the BitSwap
|
|
// bilateral exchange protocol.
|
|
package bitswap
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"sync"
|
|
"time"
|
|
|
|
bssrs "github.com/ipfs/go-bitswap/sessionrequestsplitter"
|
|
|
|
decision "github.com/ipfs/go-bitswap/decision"
|
|
bsgetter "github.com/ipfs/go-bitswap/getter"
|
|
bsmsg "github.com/ipfs/go-bitswap/message"
|
|
bsmq "github.com/ipfs/go-bitswap/messagequeue"
|
|
bsnet "github.com/ipfs/go-bitswap/network"
|
|
bspm "github.com/ipfs/go-bitswap/peermanager"
|
|
bspqm "github.com/ipfs/go-bitswap/providerquerymanager"
|
|
bssession "github.com/ipfs/go-bitswap/session"
|
|
bssm "github.com/ipfs/go-bitswap/sessionmanager"
|
|
bsspm "github.com/ipfs/go-bitswap/sessionpeermanager"
|
|
bswm "github.com/ipfs/go-bitswap/wantmanager"
|
|
blocks "github.com/ipfs/go-block-format"
|
|
cid "github.com/ipfs/go-cid"
|
|
blockstore "github.com/ipfs/go-ipfs-blockstore"
|
|
delay "github.com/ipfs/go-ipfs-delay"
|
|
exchange "github.com/ipfs/go-ipfs-exchange-interface"
|
|
flags "github.com/ipfs/go-ipfs-flags"
|
|
logging "github.com/ipfs/go-log"
|
|
metrics "github.com/ipfs/go-metrics-interface"
|
|
process "github.com/jbenet/goprocess"
|
|
procctx "github.com/jbenet/goprocess/context"
|
|
peer "github.com/libp2p/go-libp2p-peer"
|
|
)
|
|
|
|
var log = logging.Logger("bitswap")
|
|
|
|
var _ exchange.SessionExchange = (*Bitswap)(nil)
|
|
|
|
const (
|
|
// maxProvidersPerRequest specifies the maximum number of providers desired
|
|
// from the network. This value is specified because the network streams
|
|
// results.
|
|
// TODO: if a 'non-nice' strategy is implemented, consider increasing this value
|
|
maxProvidersPerRequest = 3
|
|
findProviderDelay = 1 * time.Second
|
|
providerRequestTimeout = time.Second * 10
|
|
// these requests take at _least_ two minutes at the moment.
|
|
provideTimeout = time.Minute * 3
|
|
sizeBatchRequestChan = 32
|
|
)
|
|
|
|
var (
|
|
HasBlockBufferSize = 256
|
|
provideKeysBufferSize = 2048
|
|
provideWorkerMax = 6
|
|
|
|
// the 1<<18+15 is to observe old file chunks that are 1<<18 + 14 in size
|
|
metricsBuckets = []float64{1 << 6, 1 << 10, 1 << 14, 1 << 18, 1<<18 + 15, 1 << 22}
|
|
)
|
|
|
|
func init() {
|
|
if flags.LowMemMode {
|
|
HasBlockBufferSize = 64
|
|
provideKeysBufferSize = 512
|
|
provideWorkerMax = 16
|
|
}
|
|
}
|
|
|
|
var rebroadcastDelay = delay.Fixed(time.Minute)
|
|
|
|
// New initializes a BitSwap instance that communicates over the provided
|
|
// BitSwapNetwork. This function registers the returned instance as the network
|
|
// delegate.
|
|
// Runs until context is cancelled.
|
|
func New(parent context.Context, network bsnet.BitSwapNetwork,
|
|
bstore blockstore.Blockstore) exchange.Interface {
|
|
|
|
// important to use provided parent context (since it may include important
|
|
// loggable data). It's probably not a good idea to allow bitswap to be
|
|
// coupled to the concerns of the ipfs daemon in this way.
|
|
//
|
|
// FIXME(btc) Now that bitswap manages itself using a process, it probably
|
|
// shouldn't accept a context anymore. Clients should probably use Close()
|
|
// exclusively. We should probably find another way to share logging data
|
|
ctx, cancelFunc := context.WithCancel(parent)
|
|
ctx = metrics.CtxSubScope(ctx, "bitswap")
|
|
dupHist := metrics.NewCtx(ctx, "recv_dup_blocks_bytes", "Summary of duplicate"+
|
|
" data blocks recived").Histogram(metricsBuckets)
|
|
allHist := metrics.NewCtx(ctx, "recv_all_blocks_bytes", "Summary of all"+
|
|
" data blocks recived").Histogram(metricsBuckets)
|
|
|
|
sentHistogram := metrics.NewCtx(ctx, "sent_all_blocks_bytes", "Histogram of blocks sent by"+
|
|
" this bitswap").Histogram(metricsBuckets)
|
|
|
|
px := process.WithTeardown(func() error {
|
|
return nil
|
|
})
|
|
|
|
peerQueueFactory := func(ctx context.Context, p peer.ID) bspm.PeerQueue {
|
|
return bsmq.New(ctx, p, network)
|
|
}
|
|
|
|
wm := bswm.New(ctx)
|
|
pqm := bspqm.New(ctx, network)
|
|
|
|
sessionFactory := func(ctx context.Context, id uint64, pm bssession.PeerManager, srs bssession.RequestSplitter) bssm.Session {
|
|
return bssession.New(ctx, id, wm, pm, srs)
|
|
}
|
|
sessionPeerManagerFactory := func(ctx context.Context, id uint64) bssession.PeerManager {
|
|
return bsspm.New(ctx, id, network.ConnectionManager(), pqm)
|
|
}
|
|
sessionRequestSplitterFactory := func(ctx context.Context) bssession.RequestSplitter {
|
|
return bssrs.New(ctx)
|
|
}
|
|
|
|
bs := &Bitswap{
|
|
blockstore: bstore,
|
|
engine: decision.NewEngine(ctx, bstore), // TODO close the engine with Close() method
|
|
network: network,
|
|
process: px,
|
|
newBlocks: make(chan cid.Cid, HasBlockBufferSize),
|
|
provideKeys: make(chan cid.Cid, provideKeysBufferSize),
|
|
wm: wm,
|
|
pqm: pqm,
|
|
pm: bspm.New(ctx, peerQueueFactory),
|
|
sm: bssm.New(ctx, sessionFactory, sessionPeerManagerFactory, sessionRequestSplitterFactory),
|
|
counters: new(counters),
|
|
dupMetric: dupHist,
|
|
allMetric: allHist,
|
|
sentHistogram: sentHistogram,
|
|
}
|
|
|
|
bs.wm.SetDelegate(bs.pm)
|
|
bs.wm.Startup()
|
|
bs.pqm.Startup()
|
|
network.SetDelegate(bs)
|
|
|
|
// Start up bitswaps async worker routines
|
|
bs.startWorkers(px, ctx)
|
|
|
|
// bind the context and process.
|
|
// do it over here to avoid closing before all setup is done.
|
|
go func() {
|
|
<-px.Closing() // process closes first
|
|
cancelFunc()
|
|
}()
|
|
procctx.CloseAfterContext(px, ctx) // parent cancelled first
|
|
|
|
return bs
|
|
}
|
|
|
|
// Bitswap instances implement the bitswap protocol.
|
|
type Bitswap struct {
|
|
// the peermanager manages sending messages to peers in a way that
|
|
// wont block bitswap operation
|
|
pm *bspm.PeerManager
|
|
|
|
// the wantlist tracks global wants for bitswap
|
|
wm *bswm.WantManager
|
|
|
|
// the provider query manager manages requests to find providers
|
|
pqm *bspqm.ProviderQueryManager
|
|
|
|
// the engine is the bit of logic that decides who to send which blocks to
|
|
engine *decision.Engine
|
|
|
|
// network delivers messages on behalf of the session
|
|
network bsnet.BitSwapNetwork
|
|
|
|
// blockstore is the local database
|
|
// NB: ensure threadsafety
|
|
blockstore blockstore.Blockstore
|
|
|
|
// newBlocks is a channel for newly added blocks to be provided to the
|
|
// network. blocks pushed down this channel get buffered and fed to the
|
|
// provideKeys channel later on to avoid too much network activity
|
|
newBlocks chan cid.Cid
|
|
// provideKeys directly feeds provide workers
|
|
provideKeys chan cid.Cid
|
|
|
|
process process.Process
|
|
|
|
// Counters for various statistics
|
|
counterLk sync.Mutex
|
|
counters *counters
|
|
|
|
// Metrics interface metrics
|
|
dupMetric metrics.Histogram
|
|
allMetric metrics.Histogram
|
|
sentHistogram metrics.Histogram
|
|
|
|
// the sessionmanager manages tracking sessions
|
|
sm *bssm.SessionManager
|
|
}
|
|
|
|
type counters struct {
|
|
blocksRecvd uint64
|
|
dupBlocksRecvd uint64
|
|
dupDataRecvd uint64
|
|
blocksSent uint64
|
|
dataSent uint64
|
|
dataRecvd uint64
|
|
messagesRecvd uint64
|
|
}
|
|
|
|
type blockRequest struct {
|
|
Cid cid.Cid
|
|
Ctx context.Context
|
|
}
|
|
|
|
// GetBlock attempts to retrieve a particular block from peers within the
|
|
// deadline enforced by the context.
|
|
func (bs *Bitswap) GetBlock(parent context.Context, k cid.Cid) (blocks.Block, error) {
|
|
return bsgetter.SyncGetBlock(parent, k, bs.GetBlocks)
|
|
}
|
|
|
|
func (bs *Bitswap) WantlistForPeer(p peer.ID) []cid.Cid {
|
|
var out []cid.Cid
|
|
for _, e := range bs.engine.WantlistForPeer(p) {
|
|
out = append(out, e.Cid)
|
|
}
|
|
return out
|
|
}
|
|
|
|
func (bs *Bitswap) LedgerForPeer(p peer.ID) *decision.Receipt {
|
|
return bs.engine.LedgerForPeer(p)
|
|
}
|
|
|
|
// GetBlocks returns a channel where the caller may receive blocks that
|
|
// correspond to the provided |keys|. Returns an error if BitSwap is unable to
|
|
// begin this request within the deadline enforced by the context.
|
|
//
|
|
// NB: Your request remains open until the context expires. To conserve
|
|
// resources, provide a context with a reasonably short deadline (ie. not one
|
|
// that lasts throughout the lifetime of the server)
|
|
func (bs *Bitswap) GetBlocks(ctx context.Context, keys []cid.Cid) (<-chan blocks.Block, error) {
|
|
session := bs.sm.NewSession(ctx)
|
|
return session.GetBlocks(ctx, keys)
|
|
}
|
|
|
|
// HasBlock announces the existence of a block to this bitswap service. The
|
|
// service will potentially notify its peers.
|
|
func (bs *Bitswap) HasBlock(blk blocks.Block) error {
|
|
return bs.receiveBlockFrom(blk, "")
|
|
}
|
|
|
|
// TODO: Some of this stuff really only needs to be done when adding a block
|
|
// from the user, not when receiving it from the network.
|
|
// In case you run `git blame` on this comment, I'll save you some time: ask
|
|
// @whyrusleeping, I don't know the answers you seek.
|
|
func (bs *Bitswap) receiveBlockFrom(blk blocks.Block, from peer.ID) error {
|
|
select {
|
|
case <-bs.process.Closing():
|
|
return errors.New("bitswap is closed")
|
|
default:
|
|
}
|
|
|
|
err := bs.blockstore.Put(blk)
|
|
if err != nil {
|
|
log.Errorf("Error writing block to datastore: %s", err)
|
|
return err
|
|
}
|
|
|
|
// NOTE: There exists the possiblity for a race condition here. If a user
|
|
// creates a node, then adds it to the dagservice while another goroutine
|
|
// is waiting on a GetBlock for that object, they will receive a reference
|
|
// to the same node. We should address this soon, but i'm not going to do
|
|
// it now as it requires more thought and isnt causing immediate problems.
|
|
|
|
bs.sm.ReceiveBlockFrom(from, blk)
|
|
|
|
bs.engine.AddBlock(blk)
|
|
|
|
select {
|
|
case bs.newBlocks <- blk.Cid():
|
|
// send block off to be reprovided
|
|
case <-bs.process.Closing():
|
|
return bs.process.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (bs *Bitswap) ReceiveMessage(ctx context.Context, p peer.ID, incoming bsmsg.BitSwapMessage) {
|
|
bs.counterLk.Lock()
|
|
bs.counters.messagesRecvd++
|
|
bs.counterLk.Unlock()
|
|
|
|
// This call records changes to wantlists, blocks received,
|
|
// and number of bytes transfered.
|
|
bs.engine.MessageReceived(p, incoming)
|
|
// TODO: this is bad, and could be easily abused.
|
|
// Should only track *useful* messages in ledger
|
|
|
|
iblocks := incoming.Blocks()
|
|
|
|
if len(iblocks) == 0 {
|
|
return
|
|
}
|
|
|
|
wg := sync.WaitGroup{}
|
|
for _, block := range iblocks {
|
|
|
|
wg.Add(1)
|
|
go func(b blocks.Block) { // TODO: this probably doesnt need to be a goroutine...
|
|
defer wg.Done()
|
|
|
|
bs.updateReceiveCounters(b)
|
|
bs.sm.UpdateReceiveCounters(b)
|
|
log.Debugf("got block %s from %s", b, p)
|
|
|
|
// skip received blocks that are not in the wantlist
|
|
if !bs.wm.IsWanted(b.Cid()) {
|
|
return
|
|
}
|
|
|
|
if err := bs.receiveBlockFrom(b, p); err != nil {
|
|
log.Warningf("ReceiveMessage recvBlockFrom error: %s", err)
|
|
}
|
|
log.Event(ctx, "Bitswap.GetBlockRequest.End", b.Cid())
|
|
}(block)
|
|
}
|
|
wg.Wait()
|
|
}
|
|
|
|
var ErrAlreadyHaveBlock = errors.New("already have block")
|
|
|
|
func (bs *Bitswap) updateReceiveCounters(b blocks.Block) {
|
|
blkLen := len(b.RawData())
|
|
has, err := bs.blockstore.Has(b.Cid())
|
|
if err != nil {
|
|
log.Infof("blockstore.Has error: %s", err)
|
|
return
|
|
}
|
|
|
|
bs.allMetric.Observe(float64(blkLen))
|
|
if has {
|
|
bs.dupMetric.Observe(float64(blkLen))
|
|
}
|
|
|
|
bs.counterLk.Lock()
|
|
defer bs.counterLk.Unlock()
|
|
c := bs.counters
|
|
|
|
c.blocksRecvd++
|
|
c.dataRecvd += uint64(len(b.RawData()))
|
|
if has {
|
|
c.dupBlocksRecvd++
|
|
c.dupDataRecvd += uint64(blkLen)
|
|
}
|
|
}
|
|
|
|
// Connected/Disconnected warns bitswap about peer connections.
|
|
func (bs *Bitswap) PeerConnected(p peer.ID) {
|
|
bs.wm.Connected(p)
|
|
bs.engine.PeerConnected(p)
|
|
}
|
|
|
|
// Connected/Disconnected warns bitswap about peer connections.
|
|
func (bs *Bitswap) PeerDisconnected(p peer.ID) {
|
|
bs.wm.Disconnected(p)
|
|
bs.engine.PeerDisconnected(p)
|
|
}
|
|
|
|
func (bs *Bitswap) ReceiveError(err error) {
|
|
log.Infof("Bitswap ReceiveError: %s", err)
|
|
// TODO log the network error
|
|
// TODO bubble the network error up to the parent context/error logger
|
|
}
|
|
|
|
func (bs *Bitswap) Close() error {
|
|
return bs.process.Close()
|
|
}
|
|
|
|
func (bs *Bitswap) GetWantlist() []cid.Cid {
|
|
entries := bs.wm.CurrentWants()
|
|
out := make([]cid.Cid, 0, len(entries))
|
|
for _, e := range entries {
|
|
out = append(out, e.Cid)
|
|
}
|
|
return out
|
|
}
|
|
|
|
func (bs *Bitswap) IsOnline() bool {
|
|
return true
|
|
}
|
|
|
|
func (bs *Bitswap) NewSession(ctx context.Context) exchange.Fetcher {
|
|
return bs.sm.NewSession(ctx)
|
|
}
|