158 lines
4.9 KiB
Go
158 lines
4.9 KiB
Go
package state
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/consul/acl"
|
|
"github.com/hashicorp/consul/agent/consul/stream"
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
"github.com/hashicorp/consul/proto/pbconfigentry"
|
|
"github.com/hashicorp/consul/proto/pbsubscribe"
|
|
)
|
|
|
|
// Adding events for a new config entry kind? Remember to update ConfigEntryFromStructs and ConfigEntryToStructs.
|
|
var configEntryKindToTopic = map[string]stream.Topic{
|
|
structs.MeshConfig: EventTopicMeshConfig,
|
|
structs.ServiceResolver: EventTopicServiceResolver,
|
|
structs.IngressGateway: EventTopicIngressGateway,
|
|
structs.ServiceIntentions: EventTopicServiceIntentions,
|
|
}
|
|
|
|
// EventSubjectConfigEntry is a stream.Subject used to route and receive events
|
|
// for a specific config entry (kind is encoded in the topic).
|
|
type EventSubjectConfigEntry struct {
|
|
Name string
|
|
EnterpriseMeta *acl.EnterpriseMeta
|
|
}
|
|
|
|
func (s EventSubjectConfigEntry) String() string {
|
|
return fmt.Sprintf(
|
|
"%s/%s/%s",
|
|
s.EnterpriseMeta.PartitionOrDefault(),
|
|
s.EnterpriseMeta.NamespaceOrDefault(),
|
|
s.Name,
|
|
)
|
|
}
|
|
|
|
type EventPayloadConfigEntry struct {
|
|
Op pbsubscribe.ConfigEntryUpdate_UpdateOp
|
|
Value structs.ConfigEntry
|
|
}
|
|
|
|
func (e EventPayloadConfigEntry) Subject() stream.Subject {
|
|
return EventSubjectConfigEntry{
|
|
Name: e.Value.GetName(),
|
|
EnterpriseMeta: e.Value.GetEnterpriseMeta(),
|
|
}
|
|
}
|
|
|
|
func (e EventPayloadConfigEntry) HasReadPermission(authz acl.Authorizer) bool {
|
|
return e.Value.CanRead(authz) == nil
|
|
}
|
|
|
|
func (e EventPayloadConfigEntry) ToSubscriptionEvent(idx uint64) *pbsubscribe.Event {
|
|
return &pbsubscribe.Event{
|
|
Index: idx,
|
|
Payload: &pbsubscribe.Event_ConfigEntry{
|
|
ConfigEntry: &pbsubscribe.ConfigEntryUpdate{
|
|
Op: e.Op,
|
|
ConfigEntry: pbconfigentry.ConfigEntryFromStructs(e.Value),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// ConfigEntryEventsFromChanges returns events that will be emitted when config
|
|
// entries change in the state store.
|
|
func ConfigEntryEventsFromChanges(tx ReadTxn, changes Changes) ([]stream.Event, error) {
|
|
var events []stream.Event
|
|
for _, c := range changes.Changes {
|
|
if c.Table != tableConfigEntries {
|
|
continue
|
|
}
|
|
|
|
configEntry := changeObject(c).(structs.ConfigEntry)
|
|
topic, ok := configEntryKindToTopic[configEntry.GetKind()]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
op := pbsubscribe.ConfigEntryUpdate_Upsert
|
|
if c.Deleted() {
|
|
op = pbsubscribe.ConfigEntryUpdate_Delete
|
|
}
|
|
events = append(events, configEntryEvent(topic, changes.Index, op, configEntry))
|
|
}
|
|
return events, nil
|
|
}
|
|
|
|
// MeshConfigSnapshot is a stream.SnapshotFunc that returns a snapshot of mesh
|
|
// config entries.
|
|
func (s *Store) MeshConfigSnapshot(req stream.SubscribeRequest, buf stream.SnapshotAppender) (uint64, error) {
|
|
return s.configEntrySnapshot(structs.MeshConfig, req, buf)
|
|
}
|
|
|
|
// ServiceResolverSnapshot is a stream.SnapshotFunc that returns a snapshot of
|
|
// service-resolver config entries.
|
|
func (s *Store) ServiceResolverSnapshot(req stream.SubscribeRequest, buf stream.SnapshotAppender) (uint64, error) {
|
|
return s.configEntrySnapshot(structs.ServiceResolver, req, buf)
|
|
}
|
|
|
|
// IngressGatewaySnapshot is a stream.SnapshotFunc that returns a snapshot of
|
|
// ingress-gateway config entries.
|
|
func (s *Store) IngressGatewaySnapshot(req stream.SubscribeRequest, buf stream.SnapshotAppender) (uint64, error) {
|
|
return s.configEntrySnapshot(structs.IngressGateway, req, buf)
|
|
}
|
|
|
|
// ServiceIntentionsSnapshot is a stream.SnapshotFunc that returns a snapshot of
|
|
// service-intentions config entries.
|
|
func (s *Store) ServiceIntentionsSnapshot(req stream.SubscribeRequest, buf stream.SnapshotAppender) (uint64, error) {
|
|
return s.configEntrySnapshot(structs.ServiceIntentions, req, buf)
|
|
}
|
|
|
|
func (s *Store) configEntrySnapshot(kind string, req stream.SubscribeRequest, buf stream.SnapshotAppender) (uint64, error) {
|
|
var (
|
|
idx uint64
|
|
err error
|
|
entries []structs.ConfigEntry
|
|
)
|
|
if subject, ok := req.Subject.(EventSubjectConfigEntry); ok {
|
|
var entry structs.ConfigEntry
|
|
idx, entry, err = s.ConfigEntry(nil, kind, subject.Name, subject.EnterpriseMeta)
|
|
if entry != nil {
|
|
entries = []structs.ConfigEntry{entry}
|
|
}
|
|
} else if req.Subject == stream.SubjectWildcard {
|
|
entMeta := structs.WildcardEnterpriseMetaInPartition(structs.WildcardSpecifier)
|
|
idx, entries, err = s.ConfigEntriesByKind(nil, kind, entMeta)
|
|
} else {
|
|
return 0, fmt.Errorf("subject must be of type EventSubjectConfigEntry or be SubjectWildcard, was: %T", req.Subject)
|
|
}
|
|
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
if l := len(entries); l != 0 {
|
|
topic := configEntryKindToTopic[kind]
|
|
events := make([]stream.Event, l)
|
|
for i, e := range entries {
|
|
events[i] = configEntryEvent(topic, idx, pbsubscribe.ConfigEntryUpdate_Upsert, e)
|
|
}
|
|
buf.Append(events)
|
|
}
|
|
|
|
return idx, nil
|
|
}
|
|
|
|
func configEntryEvent(topic stream.Topic, idx uint64, op pbsubscribe.ConfigEntryUpdate_UpdateOp, configEntry structs.ConfigEntry) stream.Event {
|
|
return stream.Event{
|
|
Topic: topic,
|
|
Index: idx,
|
|
Payload: EventPayloadConfigEntry{
|
|
Op: op,
|
|
Value: configEntry,
|
|
},
|
|
}
|
|
}
|