2019-07-03 17:39:07 +00:00
|
|
|
package hello
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-12-10 15:02:01 +00:00
|
|
|
"time"
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2020-03-19 04:13:04 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
|
|
|
2020-02-21 19:25:57 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi/big"
|
2019-07-03 17:39:07 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2020-01-08 19:10:57 +00:00
|
|
|
logging "github.com/ipfs/go-log/v2"
|
2019-07-08 15:14:36 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/host"
|
2019-07-03 17:39:07 +00:00
|
|
|
inet "github.com/libp2p/go-libp2p-core/network"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2019-12-05 05:14:19 +00:00
|
|
|
protocol "github.com/libp2p/go-libp2p-core/protocol"
|
2019-07-08 15:14:36 +00:00
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
cborutil "github.com/filecoin-project/go-cbor-util"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain"
|
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
2019-10-17 08:57:56 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-02-22 11:36:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/peermgr"
|
2019-07-03 17:39:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const ProtocolID = "/fil/hello/1.0.0"
|
2019-07-03 17:41:54 +00:00
|
|
|
|
2019-07-03 17:39:07 +00:00
|
|
|
var log = logging.Logger("hello")
|
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
type HelloMessage struct {
|
2019-07-03 17:39:07 +00:00
|
|
|
HeaviestTipSet []cid.Cid
|
2020-02-24 17:45:25 +00:00
|
|
|
HeaviestTipSetHeight abi.ChainEpoch
|
2020-02-21 19:25:57 +00:00
|
|
|
HeaviestTipSetWeight big.Int
|
2019-07-03 17:39:07 +00:00
|
|
|
GenesisHash cid.Cid
|
2020-02-12 18:08:49 +00:00
|
|
|
}
|
|
|
|
type LatencyMessage struct {
|
2019-12-10 15:58:21 +00:00
|
|
|
TArrial int64
|
|
|
|
TSent int64
|
2019-07-03 17:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-11-09 23:00:22 +00:00
|
|
|
type NewStreamFunc func(context.Context, peer.ID, ...protocol.ID) (inet.Stream, error)
|
2019-07-03 17:39:07 +00:00
|
|
|
type Service struct {
|
2019-12-17 05:37:31 +00:00
|
|
|
h host.Host
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2019-07-26 04:54:22 +00:00
|
|
|
cs *store.ChainStore
|
2019-07-05 14:46:21 +00:00
|
|
|
syncer *chain.Syncer
|
2019-10-17 08:57:56 +00:00
|
|
|
pmgr *peermgr.PeerMgr
|
2019-07-03 17:39:07 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 15:02:01 +00:00
|
|
|
func NewHelloService(h host.Host, cs *store.ChainStore, syncer *chain.Syncer, pmgr peermgr.MaybePeerMgr) *Service {
|
2019-10-23 11:02:00 +00:00
|
|
|
if pmgr.Mgr == nil {
|
|
|
|
log.Warn("running without peer manager")
|
|
|
|
}
|
|
|
|
|
2019-07-03 17:39:07 +00:00
|
|
|
return &Service{
|
2019-12-17 05:37:31 +00:00
|
|
|
h: h,
|
2019-07-08 13:36:43 +00:00
|
|
|
|
|
|
|
cs: cs,
|
|
|
|
syncer: syncer,
|
2019-10-23 11:02:00 +00:00
|
|
|
pmgr: pmgr.Mgr,
|
2019-07-03 17:39:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (hs *Service) HandleStream(s inet.Stream) {
|
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
var hmsg HelloMessage
|
2019-11-07 14:11:39 +00:00
|
|
|
if err := cborutil.ReadCborRPC(s, &hmsg); err != nil {
|
2019-12-10 21:09:48 +00:00
|
|
|
log.Infow("failed to read hello message, diconnecting", "error", err)
|
|
|
|
s.Conn().Close()
|
2019-07-03 17:39:07 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-10 15:58:21 +00:00
|
|
|
arrived := time.Now()
|
|
|
|
|
2019-07-04 14:47:46 +00:00
|
|
|
log.Debugw("genesis from hello",
|
|
|
|
"tipset", hmsg.HeaviestTipSet,
|
|
|
|
"peer", s.Conn().RemotePeer(),
|
|
|
|
"hash", hmsg.GenesisHash)
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2019-07-05 14:46:21 +00:00
|
|
|
if hmsg.GenesisHash != hs.syncer.Genesis.Cids()[0] {
|
2019-12-07 22:16:39 +00:00
|
|
|
log.Warnf("other peer has different genesis! (%s)", hmsg.GenesisHash)
|
2019-07-03 17:39:07 +00:00
|
|
|
s.Conn().Close()
|
|
|
|
return
|
|
|
|
}
|
2019-12-10 15:02:01 +00:00
|
|
|
go func() {
|
2019-12-11 21:18:22 +00:00
|
|
|
defer s.Close()
|
|
|
|
|
2019-12-10 15:58:21 +00:00
|
|
|
sent := time.Now()
|
2020-02-12 18:08:49 +00:00
|
|
|
msg := &LatencyMessage{
|
2019-12-10 15:58:21 +00:00
|
|
|
TArrial: arrived.UnixNano(),
|
|
|
|
TSent: sent.UnixNano(),
|
|
|
|
}
|
|
|
|
if err := cborutil.WriteCborRPC(s, msg); err != nil {
|
2019-12-10 15:02:01 +00:00
|
|
|
log.Debugf("error while responding to latency: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2020-04-01 01:34:23 +00:00
|
|
|
protos, err := hs.h.Peerstore().GetProtocols(s.Conn().RemotePeer())
|
|
|
|
if err != nil {
|
|
|
|
log.Warnf("got error from peerstore.GetProtocols: %s", err)
|
|
|
|
}
|
|
|
|
if len(protos) == 0 {
|
|
|
|
log.Warn("other peer hasnt completed libp2p identify, waiting a bit")
|
|
|
|
// TODO: this better
|
|
|
|
time.Sleep(time.Millisecond * 300)
|
|
|
|
}
|
|
|
|
|
2019-12-16 19:22:56 +00:00
|
|
|
ts, err := hs.syncer.FetchTipSet(context.Background(), s.Conn().RemotePeer(), types.NewTipSetKey(hmsg.HeaviestTipSet...))
|
2019-07-03 17:39:07 +00:00
|
|
|
if err != nil {
|
2020-03-26 00:01:49 +00:00
|
|
|
log.Errorf("failed to fetch tipset from peer during hello: %+v", err)
|
2019-07-03 17:39:07 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-16 17:14:21 +00:00
|
|
|
if ts.TipSet().Height() > 0 {
|
2019-12-17 18:11:26 +00:00
|
|
|
hs.h.ConnManager().TagPeer(s.Conn().RemotePeer(), "fcpeer", 10)
|
2019-12-17 05:37:31 +00:00
|
|
|
|
2019-12-16 17:14:21 +00:00
|
|
|
// don't bother informing about genesis
|
|
|
|
log.Infof("Got new tipset through Hello: %s from %s", ts.Cids(), s.Conn().RemotePeer())
|
|
|
|
hs.syncer.InformNewHead(s.Conn().RemotePeer(), ts)
|
|
|
|
}
|
2019-10-23 11:02:00 +00:00
|
|
|
if hs.pmgr != nil {
|
|
|
|
hs.pmgr.AddFilecoinPeer(s.Conn().RemotePeer())
|
|
|
|
}
|
2019-12-10 15:02:01 +00:00
|
|
|
|
2019-07-03 17:39:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (hs *Service) SayHello(ctx context.Context, pid peer.ID) error {
|
2019-12-17 05:37:31 +00:00
|
|
|
s, err := hs.h.NewStream(ctx, pid, ProtocolID)
|
2019-07-03 17:39:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
hts := hs.cs.GetHeaviestTipSet()
|
2019-10-15 05:00:30 +00:00
|
|
|
weight, err := hs.cs.Weight(ctx, hts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-17 08:57:56 +00:00
|
|
|
|
2019-07-03 17:39:07 +00:00
|
|
|
gen, err := hs.cs.GetGenesis()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
hmsg := &HelloMessage{
|
2019-07-03 17:39:07 +00:00
|
|
|
HeaviestTipSet: hts.Cids(),
|
2020-02-12 18:08:49 +00:00
|
|
|
HeaviestTipSetHeight: hts.Height(),
|
2019-07-03 17:39:07 +00:00
|
|
|
HeaviestTipSetWeight: weight,
|
|
|
|
GenesisHash: gen.Cid(),
|
|
|
|
}
|
2019-12-16 17:14:21 +00:00
|
|
|
log.Debug("Sending hello message: ", hts.Cids(), hts.Height(), gen.Cid())
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2019-12-10 15:58:21 +00:00
|
|
|
t0 := time.Now()
|
2019-11-07 14:11:39 +00:00
|
|
|
if err := cborutil.WriteCborRPC(s, hmsg); err != nil {
|
2019-07-03 17:39:07 +00:00
|
|
|
return err
|
2019-07-05 14:46:21 +00:00
|
|
|
}
|
2019-07-03 17:39:07 +00:00
|
|
|
|
2019-12-10 15:02:01 +00:00
|
|
|
go func() {
|
2019-12-11 21:18:22 +00:00
|
|
|
defer s.Close()
|
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
lmsg := &LatencyMessage{}
|
2019-12-10 15:02:01 +00:00
|
|
|
s.SetReadDeadline(time.Now().Add(10 * time.Second))
|
2020-02-12 18:08:49 +00:00
|
|
|
err := cborutil.ReadCborRPC(s, lmsg)
|
|
|
|
if err != nil {
|
|
|
|
log.Infow("reading latency message", "error", err)
|
|
|
|
}
|
2019-12-10 15:02:01 +00:00
|
|
|
|
2019-12-10 15:58:21 +00:00
|
|
|
t3 := time.Now()
|
|
|
|
lat := t3.Sub(t0)
|
2019-12-10 15:02:01 +00:00
|
|
|
// add to peer tracker
|
2019-12-10 15:22:02 +00:00
|
|
|
if hs.pmgr != nil {
|
2019-12-10 15:58:21 +00:00
|
|
|
hs.pmgr.SetPeerLatency(pid, lat)
|
|
|
|
}
|
|
|
|
|
2020-02-12 18:08:49 +00:00
|
|
|
if err == nil {
|
|
|
|
if lmsg.TArrial != 0 && lmsg.TSent != 0 {
|
2020-02-12 18:23:15 +00:00
|
|
|
t1 := time.Unix(0, lmsg.TArrial)
|
|
|
|
t2 := time.Unix(0, lmsg.TSent)
|
2019-12-10 15:58:21 +00:00
|
|
|
offset := t0.Sub(t1) + t3.Sub(t2)
|
|
|
|
offset /= 2
|
|
|
|
log.Infow("time offset", "offset", offset.Seconds(), "peerid", pid.String())
|
|
|
|
}
|
2019-12-10 15:22:02 +00:00
|
|
|
}
|
2019-12-10 15:02:01 +00:00
|
|
|
}()
|
|
|
|
|
2019-07-03 17:39:07 +00:00
|
|
|
return nil
|
2019-07-03 17:41:54 +00:00
|
|
|
}
|