2021-02-22 21:27:18 +00:00
|
|
|
package submatview
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2021-04-22 18:08:35 +00:00
|
|
|
"sync"
|
2021-02-22 21:27:18 +00:00
|
|
|
|
2023-02-17 21:14:46 +00:00
|
|
|
"github.com/hashicorp/consul/proto/private/pbcommon"
|
proxycfg: server-local config entry data sources
This is the OSS portion of enterprise PR 2056.
This commit provides server-local implementations of the proxycfg.ConfigEntry
and proxycfg.ConfigEntryList interfaces, that source data from streaming events.
It makes use of the LocalMaterializer type introduced for peering replication,
adding the necessary support for authorization.
It also adds support for "wildcard" subscriptions (within a topic) to the event
publisher, as this is needed to fetch service-resolvers for all services when
configuring mesh gateways.
Currently, events will be emitted for just the ingress-gateway, service-resolver,
and mesh config entry types, as these are the only entries required by proxycfg
— the events will be emitted on topics named IngressGateway, ServiceResolver,
and MeshConfig topics respectively.
Though these events will only be consumed "locally" for now, they can also be
consumed via the gRPC endpoint (confirmed using grpcurl) so using them from
client agents should be a case of swapping the LocalMaterializer for an
RPCMaterializer.
2022-07-01 15:09:47 +00:00
|
|
|
|
2021-02-22 21:27:18 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2023-02-17 21:14:46 +00:00
|
|
|
"github.com/hashicorp/consul/proto/private/pbservice"
|
|
|
|
"github.com/hashicorp/consul/proto/private/pbsubscribe"
|
2021-04-22 18:08:35 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2021-02-22 21:27:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestStreamingClient is a mock StreamingClient for testing that allows
|
|
|
|
// for queueing up custom events to a subscriber.
|
|
|
|
type TestStreamingClient struct {
|
|
|
|
expectedNamespace string
|
2021-04-22 18:08:35 +00:00
|
|
|
subClients []*subscribeClient
|
|
|
|
lock sync.RWMutex
|
|
|
|
events []eventOrErr
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type eventOrErr struct {
|
|
|
|
Err error
|
|
|
|
Event *pbsubscribe.Event
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTestStreamingClient(ns string) *TestStreamingClient {
|
2021-04-22 18:08:35 +00:00
|
|
|
return &TestStreamingClient{expectedNamespace: ns}
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:08:35 +00:00
|
|
|
func (s *TestStreamingClient) Subscribe(
|
2021-02-22 21:27:18 +00:00
|
|
|
ctx context.Context,
|
|
|
|
req *pbsubscribe.SubscribeRequest,
|
|
|
|
_ ...grpc.CallOption,
|
|
|
|
) (pbsubscribe.StateChangeSubscription_SubscribeClient, error) {
|
proxycfg: server-local config entry data sources
This is the OSS portion of enterprise PR 2056.
This commit provides server-local implementations of the proxycfg.ConfigEntry
and proxycfg.ConfigEntryList interfaces, that source data from streaming events.
It makes use of the LocalMaterializer type introduced for peering replication,
adding the necessary support for authorization.
It also adds support for "wildcard" subscriptions (within a topic) to the event
publisher, as this is needed to fetch service-resolvers for all services when
configuring mesh gateways.
Currently, events will be emitted for just the ingress-gateway, service-resolver,
and mesh config entry types, as these are the only entries required by proxycfg
— the events will be emitted on topics named IngressGateway, ServiceResolver,
and MeshConfig topics respectively.
Though these events will only be consumed "locally" for now, they can also be
consumed via the gRPC endpoint (confirmed using grpcurl) so using them from
client agents should be a case of swapping the LocalMaterializer for an
RPCMaterializer.
2022-07-01 15:09:47 +00:00
|
|
|
if ns := req.GetNamedSubject().GetNamespace(); ns != s.expectedNamespace {
|
|
|
|
return nil, fmt.Errorf("wrong SubscribeRequest.NamedSubject.Namespace %v, expected %v",
|
|
|
|
ns, s.expectedNamespace)
|
2021-04-22 18:08:35 +00:00
|
|
|
}
|
|
|
|
c := &subscribeClient{
|
|
|
|
events: make(chan eventOrErr, 32),
|
|
|
|
ctx: ctx,
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
2021-04-22 18:08:35 +00:00
|
|
|
s.lock.Lock()
|
|
|
|
s.subClients = append(s.subClients, c)
|
|
|
|
for _, event := range s.events {
|
|
|
|
c.events <- event
|
|
|
|
}
|
|
|
|
s.lock.Unlock()
|
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type subscribeClient struct {
|
|
|
|
grpc.ClientStream
|
|
|
|
events chan eventOrErr
|
|
|
|
ctx context.Context
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:08:35 +00:00
|
|
|
func (s *TestStreamingClient) QueueEvents(events ...*pbsubscribe.Event) {
|
|
|
|
s.lock.Lock()
|
2021-02-22 21:27:18 +00:00
|
|
|
for _, e := range events {
|
2021-04-22 18:08:35 +00:00
|
|
|
s.events = append(s.events, eventOrErr{Event: e})
|
|
|
|
for _, c := range s.subClients {
|
|
|
|
c.events <- eventOrErr{Event: e}
|
|
|
|
}
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
2021-04-22 18:08:35 +00:00
|
|
|
s.lock.Unlock()
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:08:35 +00:00
|
|
|
func (s *TestStreamingClient) QueueErr(err error) {
|
|
|
|
s.lock.Lock()
|
|
|
|
s.events = append(s.events, eventOrErr{Err: err})
|
|
|
|
for _, c := range s.subClients {
|
|
|
|
c.events <- eventOrErr{Err: err}
|
|
|
|
}
|
|
|
|
s.lock.Unlock()
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:08:35 +00:00
|
|
|
func (c *subscribeClient) Recv() (*pbsubscribe.Event, error) {
|
2021-02-22 21:27:18 +00:00
|
|
|
select {
|
2021-04-22 18:08:35 +00:00
|
|
|
case eoe := <-c.events:
|
2021-02-22 21:27:18 +00:00
|
|
|
if eoe.Err != nil {
|
|
|
|
return nil, eoe.Err
|
|
|
|
}
|
|
|
|
return eoe.Event, nil
|
2021-04-22 18:08:35 +00:00
|
|
|
case <-c.ctx.Done():
|
|
|
|
return nil, c.ctx.Err()
|
2021-02-22 21:27:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newEndOfSnapshotEvent(index uint64) *pbsubscribe.Event {
|
|
|
|
return &pbsubscribe.Event{
|
|
|
|
Index: index,
|
|
|
|
Payload: &pbsubscribe.Event_EndOfSnapshot{EndOfSnapshot: true},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newNewSnapshotToFollowEvent() *pbsubscribe.Event {
|
|
|
|
return &pbsubscribe.Event{
|
|
|
|
Payload: &pbsubscribe.Event_NewSnapshotToFollow{NewSnapshotToFollow: true},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newEventServiceHealthRegister(index uint64, nodeNum int, svc string) *pbsubscribe.Event {
|
|
|
|
node := fmt.Sprintf("node%d", nodeNum)
|
|
|
|
nodeID := types.NodeID(fmt.Sprintf("11111111-2222-3333-4444-%012d", nodeNum))
|
|
|
|
addr := fmt.Sprintf("10.10.%d.%d", nodeNum/256, nodeNum%256)
|
|
|
|
|
|
|
|
return &pbsubscribe.Event{
|
|
|
|
Index: index,
|
|
|
|
Payload: &pbsubscribe.Event_ServiceHealth{
|
|
|
|
ServiceHealth: &pbsubscribe.ServiceHealthUpdate{
|
|
|
|
Op: pbsubscribe.CatalogOp_Register,
|
|
|
|
CheckServiceNode: &pbservice.CheckServiceNode{
|
|
|
|
Node: &pbservice.Node{
|
2022-03-23 16:10:03 +00:00
|
|
|
ID: string(nodeID),
|
2021-02-22 21:27:18 +00:00
|
|
|
Node: node,
|
|
|
|
Address: addr,
|
|
|
|
Datacenter: "dc1",
|
2022-03-23 16:10:03 +00:00
|
|
|
RaftIndex: &pbcommon.RaftIndex{
|
2021-02-22 21:27:18 +00:00
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Service: &pbservice.NodeService{
|
|
|
|
ID: svc,
|
|
|
|
Service: svc,
|
|
|
|
Port: 8080,
|
2022-03-23 16:10:03 +00:00
|
|
|
RaftIndex: &pbcommon.RaftIndex{
|
2021-02-22 21:27:18 +00:00
|
|
|
CreateIndex: index,
|
|
|
|
ModifyIndex: index,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newEventServiceHealthDeregister(index uint64, nodeNum int, svc string) *pbsubscribe.Event {
|
|
|
|
node := fmt.Sprintf("node%d", nodeNum)
|
|
|
|
|
|
|
|
return &pbsubscribe.Event{
|
|
|
|
Index: index,
|
|
|
|
Payload: &pbsubscribe.Event_ServiceHealth{
|
|
|
|
ServiceHealth: &pbsubscribe.ServiceHealthUpdate{
|
|
|
|
Op: pbsubscribe.CatalogOp_Deregister,
|
|
|
|
CheckServiceNode: &pbservice.CheckServiceNode{
|
|
|
|
Node: &pbservice.Node{
|
|
|
|
Node: node,
|
|
|
|
},
|
|
|
|
Service: &pbservice.NodeService{
|
|
|
|
ID: svc,
|
|
|
|
Service: svc,
|
|
|
|
Port: 8080,
|
|
|
|
Weights: &pbservice.Weights{
|
|
|
|
Passing: 1,
|
|
|
|
Warning: 1,
|
|
|
|
},
|
2022-03-23 16:10:03 +00:00
|
|
|
RaftIndex: &pbcommon.RaftIndex{
|
2021-02-22 21:27:18 +00:00
|
|
|
// The original insertion index since a delete doesn't update
|
|
|
|
// this. This magic value came from state store tests where we
|
|
|
|
// setup at index 10 and then mutate at index 100. It can be
|
|
|
|
// modified by the caller later and makes it easier than having
|
|
|
|
// yet another argument in the common case.
|
|
|
|
CreateIndex: 10,
|
|
|
|
ModifyIndex: 10,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newEventBatchWithEvents(first *pbsubscribe.Event, evs ...*pbsubscribe.Event) *pbsubscribe.Event {
|
|
|
|
events := make([]*pbsubscribe.Event, len(evs)+1)
|
|
|
|
events[0] = first
|
|
|
|
for i := range evs {
|
|
|
|
events[i+1] = evs[i]
|
|
|
|
}
|
|
|
|
return &pbsubscribe.Event{
|
|
|
|
Index: first.Index,
|
|
|
|
Payload: &pbsubscribe.Event_EventBatch{
|
|
|
|
EventBatch: &pbsubscribe.EventBatch{Events: events},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|