package networkinfo import ( "context" "fmt" "net" "sync" "time" manet "github.com/multiformats/go-multiaddr-net" "github.com/ethereum/go-ethereum/rpc" msg_pb "github.com/harmony-one/harmony/api/proto/message" "github.com/harmony-one/harmony/internal/utils" "github.com/harmony-one/harmony/p2p" libp2pdis "github.com/libp2p/go-libp2p-discovery" libp2pdht "github.com/libp2p/go-libp2p-kad-dht" peerstore "github.com/libp2p/go-libp2p-peerstore" ) // Service is the network info service. type Service struct { Host p2p.Host Rendezvous p2p.GroupID bootnodes utils.AddrList dht *libp2pdht.IpfsDHT cancel context.CancelFunc stopChan chan struct{} stoppedChan chan struct{} peerChan chan p2p.Peer peerInfo <-chan peerstore.PeerInfo discovery *libp2pdis.RoutingDiscovery messageChan chan *msg_pb.Message started bool } // ConnectionRetry set the number of retry of connection to bootnode in case the initial connection is failed var ( // retry for 10 minutes and give up then ConnectionRetry = 300 // context ctx context.Context ) const ( waitInRetry = 2 * time.Second connectionTimeout = 3 * time.Minute findPeerInterval = 60 * time.Second // register to bootnode every ticker dhtTicker = 6 * time.Hour ) // New returns role conversion service. func New(h p2p.Host, rendezvous p2p.GroupID, peerChan chan p2p.Peer, bootnodes utils.AddrList) *Service { var cancel context.CancelFunc ctx, cancel = context.WithTimeout(context.Background(), connectionTimeout) dht, err := libp2pdht.New(ctx, h.GetP2PHost()) if err != nil { panic(err) } return &Service{ Host: h, dht: dht, Rendezvous: rendezvous, cancel: cancel, stopChan: make(chan struct{}), stoppedChan: make(chan struct{}), peerChan: peerChan, bootnodes: bootnodes, discovery: nil, started: false, } } // StartService starts network info service. func (s *Service) StartService() { err := s.Init() if err != nil { utils.Logger().Error().Err(err).Msg("Service Init Failed") return } s.Run() s.started = true } // Init initializes role conversion service. func (s *Service) Init() error { utils.Logger().Info().Msg("Init networkinfo service") // Bootstrap the DHT. In the default configuration, this spawns a Background // thread that will refresh the peer table every five minutes. utils.Logger().Debug().Msg("Bootstrapping the DHT") if err := s.dht.Bootstrap(ctx); err != nil { return fmt.Errorf("error bootstrap dht: %s", err) } var wg sync.WaitGroup if s.bootnodes == nil { // TODO: should've passed in bootnodes through constructor. s.bootnodes = utils.BootNodes } connected := false for _, peerAddr := range s.bootnodes { peerinfo, _ := peerstore.InfoFromP2pAddr(peerAddr) wg.Add(1) go func() { defer wg.Done() for i := 0; i < ConnectionRetry; i++ { if err := s.Host.GetP2PHost().Connect(ctx, *peerinfo); err != nil { utils.Logger().Warn().Err(err).Int("try", i).Msg("can't connect to bootnode") time.Sleep(waitInRetry) } else { utils.Logger().Info().Int("try", i).Interface("node", *peerinfo).Msg("connected to bootnode") // it is okay if any bootnode is connected connected = true break } } }() } wg.Wait() if !connected { return fmt.Errorf("[FATAL] error connecting to bootnodes") } // We use a rendezvous point "shardID" to announce our location. utils.Logger().Info().Str("Rendezvous", string(s.Rendezvous)).Msg("Announcing ourselves...") s.discovery = libp2pdis.NewRoutingDiscovery(s.dht) libp2pdis.Advertise(ctx, s.discovery, string(s.Rendezvous)) utils.Logger().Info().Msg("Successfully announced!") return nil } // Run runs network info. func (s *Service) Run() { defer close(s.stoppedChan) if s.discovery == nil { utils.Logger().Error().Msg("discovery is not initialized") return } go s.DoService() } // DoService does network info. func (s *Service) DoService() { tick := time.NewTicker(dhtTicker) for { select { case <-s.stopChan: return case <-tick.C: libp2pdis.Advertise(ctx, s.discovery, string(s.Rendezvous)) utils.Logger().Info().Str("Rendezvous", string(s.Rendezvous)).Msg("Successfully announced!") default: var err error s.peerInfo, err = s.discovery.FindPeers(ctx, string(s.Rendezvous)) if err != nil { utils.Logger().Error().Err(err).Msg("FindPeers") return } s.findPeers() time.Sleep(findPeerInterval) } } } func (s *Service) findPeers() { _, cgnPrefix, err := net.ParseCIDR("100.64.0.0/10") if err != nil { utils.Logger().Error().Err(err).Msg("can't parse CIDR") return } for peer := range s.peerInfo { if peer.ID != s.Host.GetP2PHost().ID() && len(peer.ID) > 0 { // utils.Logger().Info(). // Interface("peer", peer.ID). // Interface("addr", peer.Addrs). // Interface("my ID", s.Host.GetP2PHost().ID()). // Msg("Found Peer") if err := s.Host.GetP2PHost().Connect(ctx, peer); err != nil { utils.Logger().Warn().Err(err).Interface("peer", peer).Msg("can't connect to peer node") // break if the node can't connect to peers, waiting for another peer break } else { utils.Logger().Info().Interface("peer", peer).Msg("connected to peer node") } // figure out the public ip/port var ip, port string for _, addr := range peer.Addrs { netaddr, err := manet.ToNetAddr(addr) if err != nil { continue } nip := netaddr.(*net.TCPAddr).IP if (nip.IsGlobalUnicast() && !utils.IsPrivateIP(nip)) || cgnPrefix.Contains(nip) { ip = nip.String() port = fmt.Sprintf("%d", netaddr.(*net.TCPAddr).Port) break } } p := p2p.Peer{IP: ip, Port: port, PeerID: peer.ID, Addrs: peer.Addrs} utils.Logger().Info().Interface("peer", p).Msg("Notify peerChan") if s.peerChan != nil { s.peerChan <- p } } } utils.Logger().Info().Msg("PeerInfo Channel Closed") return } // StopService stops network info service. func (s *Service) StopService() { utils.Logger().Info().Msg("Stopping network info service") defer s.cancel() if !s.started { utils.Logger().Info().Msg("Service didn't started. Exit") return } s.stopChan <- struct{}{} <-s.stoppedChan utils.Logger().Info().Msg("Network info service stopped") } // NotifyService notify service func (s *Service) NotifyService(params map[string]interface{}) { return } // SetMessageChan sets up message channel to service. func (s *Service) SetMessageChan(messageChan chan *msg_pb.Message) { s.messageChan = messageChan } // APIs for the services. func (s *Service) APIs() []rpc.API { return nil }