mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
126 lines
3.9 KiB
Go
126 lines
3.9 KiB
Go
package blossomsub
|
|
|
|
import (
|
|
"errors"
|
|
|
|
pb "source.quilibrium.com/quilibrium/monorepo/go-libp2p-blossomsub/pb"
|
|
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
)
|
|
|
|
// ErrTooManySubscriptions may be returned by a SubscriptionFilter to signal that there are too many
|
|
// subscriptions to process.
|
|
var ErrTooManySubscriptions = errors.New("too many subscriptions")
|
|
|
|
// SubscriptionFilter is a function that tells us whether we are interested in allowing and tracking
|
|
// subscriptions for a given bitmask.
|
|
//
|
|
// The filter is consulted whenever a subscription notification is received by another peer; if the
|
|
// filter returns false, then the notification is ignored.
|
|
//
|
|
// The filter is also consulted when joining bitmasks; if the filter returns false, then the Join
|
|
// operation will result in an error.
|
|
type SubscriptionFilter interface {
|
|
// CanSubscribe returns true if the bitmask is of interest and we can subscribe to it
|
|
CanSubscribe(bitmask []byte) bool
|
|
|
|
// FilterIncomingSubscriptions is invoked for all RPCs containing subscription notifications.
|
|
// It should filter only the subscriptions of interest and my return an error if (for instance)
|
|
// there are too many subscriptions.
|
|
FilterIncomingSubscriptions(peer.ID, []*pb.RPC_SubOpts) ([]*pb.RPC_SubOpts, error)
|
|
}
|
|
|
|
// WithSubscriptionFilter is a pubsub option that specifies a filter for subscriptions
|
|
// in bitmasks of interest.
|
|
func WithSubscriptionFilter(subFilter SubscriptionFilter) Option {
|
|
return func(ps *PubSub) error {
|
|
ps.subFilter = subFilter
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// NewAllowlistSubscriptionFilter creates a subscription filter that only allows explicitly
|
|
// specified bitmasks for local subscriptions and incoming peer subscriptions.
|
|
func NewAllowlistSubscriptionFilter(bitmasks ...[]byte) SubscriptionFilter {
|
|
allow := make(map[string]struct{})
|
|
for _, bitmask := range bitmasks {
|
|
allow[string(bitmask)] = struct{}{}
|
|
}
|
|
|
|
return &allowlistSubscriptionFilter{allow: allow}
|
|
}
|
|
|
|
type allowlistSubscriptionFilter struct {
|
|
allow map[string]struct{}
|
|
}
|
|
|
|
var _ SubscriptionFilter = (*allowlistSubscriptionFilter)(nil)
|
|
|
|
func (f *allowlistSubscriptionFilter) CanSubscribe(bitmask []byte) bool {
|
|
_, ok := f.allow[string(bitmask)]
|
|
return ok
|
|
}
|
|
|
|
func (f *allowlistSubscriptionFilter) FilterIncomingSubscriptions(from peer.ID, subs []*pb.RPC_SubOpts) ([]*pb.RPC_SubOpts, error) {
|
|
return FilterSubscriptions(subs, f.CanSubscribe), nil
|
|
}
|
|
|
|
// FilterSubscriptions filters (and deduplicates) a list of subscriptions.
|
|
// filter should return true if a bitmask is of interest.
|
|
func FilterSubscriptions(subs []*pb.RPC_SubOpts, filter func([]byte) bool) []*pb.RPC_SubOpts {
|
|
accept := make(map[string]*pb.RPC_SubOpts)
|
|
|
|
for _, sub := range subs {
|
|
bitmask := sub.GetBitmask()
|
|
|
|
if !filter(bitmask) {
|
|
continue
|
|
}
|
|
|
|
otherSub, ok := accept[string(bitmask)]
|
|
if ok {
|
|
if sub.GetSubscribe() != otherSub.GetSubscribe() {
|
|
delete(accept, string(bitmask))
|
|
}
|
|
} else {
|
|
accept[string(bitmask)] = sub
|
|
}
|
|
}
|
|
|
|
if len(accept) == 0 {
|
|
return nil
|
|
}
|
|
|
|
result := make([]*pb.RPC_SubOpts, 0, len(accept))
|
|
for _, sub := range accept {
|
|
result = append(result, sub)
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
// WrapLimitSubscriptionFilter wraps a subscription filter with a hard limit in the number of
|
|
// subscriptions allowed in an RPC message.
|
|
func WrapLimitSubscriptionFilter(filter SubscriptionFilter, limit int) SubscriptionFilter {
|
|
return &limitSubscriptionFilter{filter: filter, limit: limit}
|
|
}
|
|
|
|
type limitSubscriptionFilter struct {
|
|
filter SubscriptionFilter
|
|
limit int
|
|
}
|
|
|
|
var _ SubscriptionFilter = (*limitSubscriptionFilter)(nil)
|
|
|
|
func (f *limitSubscriptionFilter) CanSubscribe(bitmask []byte) bool {
|
|
return f.filter.CanSubscribe(bitmask)
|
|
}
|
|
|
|
func (f *limitSubscriptionFilter) FilterIncomingSubscriptions(from peer.ID, subs []*pb.RPC_SubOpts) ([]*pb.RPC_SubOpts, error) {
|
|
if len(subs) > f.limit {
|
|
return nil, ErrTooManySubscriptions
|
|
}
|
|
|
|
return f.filter.FilterIncomingSubscriptions(from, subs)
|
|
}
|