package floodsub import ( "context" "encoding/binary" "fmt" "time" pb "github.com/whyrusleeping/go-floodsub/pb" proto "github.com/gogo/protobuf/proto" peer "github.com/ipfs/go-libp2p-peer" logging "github.com/ipfs/go-log" host "github.com/libp2p/go-libp2p/p2p/host" inet "github.com/libp2p/go-libp2p/p2p/net" protocol "github.com/libp2p/go-libp2p/p2p/protocol" timecache "github.com/whyrusleeping/timecache" ) const ID = protocol.ID("/floodsub/1.0.0") var log = logging.Logger("floodsub") type PubSub struct { host host.Host // incoming messages from other peers incoming chan *RPC // messages we are publishing out to our peers publish chan *Message // addSub is a control channel for us to add and remove subscriptions addSub chan *addSub // a notification channel for incoming streams from other peers newPeers chan inet.Stream // a notification channel for when our peers die peerDead chan peer.ID // The set of topics we are subscribed to myTopics map[string]chan *Message // topics tracks which topics each of our peers are subscribed to topics map[string]map[peer.ID]struct{} peers map[peer.ID]chan *RPC seenMessages *timecache.TimeCache ctx context.Context } type Message struct { *pb.Message } func (m *Message) GetFrom() peer.ID { return peer.ID(m.Message.GetFrom()) } type RPC struct { pb.RPC // unexported on purpose, not sending this over the wire from peer.ID } func NewFloodSub(ctx context.Context, h host.Host) *PubSub { ps := &PubSub{ host: h, ctx: ctx, incoming: make(chan *RPC, 32), publish: make(chan *Message), newPeers: make(chan inet.Stream), peerDead: make(chan peer.ID), addSub: make(chan *addSub), myTopics: make(map[string]chan *Message), topics: make(map[string]map[peer.ID]struct{}), peers: make(map[peer.ID]chan *RPC), seenMessages: timecache.NewTimeCache(time.Second * 30), } h.SetStreamHandler(ID, ps.handleNewStream) h.Network().Notify((*PubSubNotif)(ps)) go ps.processLoop(ctx) return ps } func (p *PubSub) processLoop(ctx context.Context) { for { select { case s := <-p.newPeers: pid := s.Conn().RemotePeer() _, ok := p.peers[pid] if ok { log.Error("already have connection to peer: ", pid) s.Close() continue } messages := make(chan *RPC, 32) go p.handleSendingMessages(ctx, s, messages) messages <- p.getHelloPacket() p.peers[pid] = messages case pid := <-p.peerDead: delete(p.peers, pid) for _, t := range p.topics { delete(t, pid) } case sub := <-p.addSub: p.handleSubscriptionChange(sub) case rpc := <-p.incoming: err := p.handleIncomingRPC(rpc) if err != nil { log.Error("handling RPC: ", err) continue } case msg := <-p.publish: p.maybePublishMessage(p.host.ID(), msg.Message) case <-ctx.Done(): log.Info("pubsub processloop shutting down") return } } } func (p *PubSub) handleSubscriptionChange(sub *addSub) { subopt := &pb.RPC_SubOpts{ Topicid: &sub.topic, Subscribe: &sub.sub, } ch, ok := p.myTopics[sub.topic] if sub.sub { if ok { // we don't allow multiple subs per topic at this point sub.resp <- nil return } resp := make(chan *Message, 16) p.myTopics[sub.topic] = resp sub.resp <- resp } else { if !ok { return } close(ch) delete(p.myTopics, sub.topic) } out := rpcWithSubs(subopt) for _, peer := range p.peers { peer <- out } } func (p *PubSub) notifySubs(msg *pb.Message) { for _, topic := range msg.GetTopicIDs() { subch, ok := p.myTopics[topic] if ok { subch <- &Message{msg} } } } func (p *PubSub) seenMessage(id string) bool { return p.seenMessages.Has(id) } func (p *PubSub) markSeen(id string) { p.seenMessages.Add(id) } func (p *PubSub) subscribedToMsg(msg *pb.Message) bool { for _, t := range msg.GetTopicIDs() { if _, ok := p.myTopics[t]; ok { return true } } return false } func (p *PubSub) handleIncomingRPC(rpc *RPC) error { for _, subopt := range rpc.GetSubscriptions() { t := subopt.GetTopicid() if subopt.GetSubscribe() { tmap, ok := p.topics[t] if !ok { tmap = make(map[peer.ID]struct{}) p.topics[t] = tmap } tmap[rpc.from] = struct{}{} } else { tmap, ok := p.topics[t] if !ok { continue } delete(tmap, rpc.from) } } for _, pmsg := range rpc.GetPublish() { if !p.subscribedToMsg(pmsg) { log.Warning("received message we didn't subscribe to. Dropping.") continue } p.maybePublishMessage(rpc.from, pmsg) } return nil } func (p *PubSub) maybePublishMessage(from peer.ID, pmsg *pb.Message) { id := string(pmsg.GetFrom()) + string(pmsg.GetSeqno()) if p.seenMessage(id) { return } p.markSeen(id) p.notifySubs(pmsg) err := p.publishMessage(from, pmsg) if err != nil { log.Error("publish message: ", err) } } func (p *PubSub) publishMessage(from peer.ID, msg *pb.Message) error { tosend := make(map[peer.ID]struct{}) for _, topic := range msg.GetTopicIDs() { tmap, ok := p.topics[topic] if !ok { continue } for p, _ := range tmap { tosend[p] = struct{}{} } } out := rpcWithMessages(msg) for pid := range tosend { if pid == from || pid == peer.ID(msg.GetFrom()) { continue } mch, ok := p.peers[pid] if !ok { continue } go func() { mch <- out }() } return nil } type addSub struct { topic string sub bool resp chan chan *Message } func (p *PubSub) Subscribe(topic string) (<-chan *Message, error) { return p.SubscribeComplicated(&pb.TopicDescriptor{ Name: proto.String(topic), }) } func (p *PubSub) SubscribeComplicated(td *pb.TopicDescriptor) (<-chan *Message, error) { if td.GetAuth().GetMode() != pb.TopicDescriptor_AuthOpts_NONE { return nil, fmt.Errorf("Auth method not yet supported") } if td.GetEnc().GetMode() != pb.TopicDescriptor_EncOpts_NONE { return nil, fmt.Errorf("Encryption method not yet supported") } resp := make(chan chan *Message) p.addSub <- &addSub{ topic: td.GetName(), resp: resp, sub: true, } outch := <-resp if outch == nil { return nil, fmt.Errorf("error, duplicate subscription") } return outch, nil } func (p *PubSub) Unsub(topic string) { p.addSub <- &addSub{ topic: topic, sub: false, } } func (p *PubSub) Publish(topic string, data []byte) error { seqno := make([]byte, 8) binary.BigEndian.PutUint64(seqno, uint64(time.Now().UnixNano())) p.publish <- &Message{ &pb.Message{ Data: data, TopicIDs: []string{topic}, From: proto.String(string(p.host.ID())), Seqno: seqno, }, } return nil }