2022-07-08 17:01:13 +00:00
|
|
|
package peerstream
|
2022-05-19 19:21:29 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2022-05-26 19:24:09 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
2022-05-19 19:21:29 +00:00
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
|
|
"github.com/hashicorp/go-hclog"
|
|
|
|
"google.golang.org/genproto/googleapis/rpc/code"
|
|
|
|
"google.golang.org/protobuf/types/known/anypb"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/cache"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
"github.com/hashicorp/consul/proto/pbpeering"
|
2022-07-08 17:01:13 +00:00
|
|
|
"github.com/hashicorp/consul/proto/pbpeerstream"
|
2022-05-19 19:21:29 +00:00
|
|
|
"github.com/hashicorp/consul/proto/pbservice"
|
|
|
|
"github.com/hashicorp/consul/proto/pbstatus"
|
2022-07-08 17:01:13 +00:00
|
|
|
"github.com/hashicorp/consul/types"
|
2022-05-19 19:21:29 +00:00
|
|
|
)
|
|
|
|
|
2022-05-19 21:37:52 +00:00
|
|
|
/*
|
|
|
|
TODO(peering):
|
|
|
|
|
|
|
|
At the start of each peering stream establishment (not initiation, but the
|
|
|
|
thing that reconnects) we need to do a little bit of light differential
|
|
|
|
snapshot correction to initially synchronize the local state store.
|
|
|
|
|
|
|
|
Then if we ever fail to apply a replication message we should either tear
|
|
|
|
down the entire connection (and thus force a resync on reconnect) or
|
|
|
|
request a resync operation.
|
|
|
|
*/
|
|
|
|
|
2022-05-26 19:24:09 +00:00
|
|
|
// makeServiceResponse handles preparing exported service instance updates to the peer cluster.
|
2022-05-19 19:21:29 +00:00
|
|
|
// Each cache.UpdateEvent will contain all instances for a service name.
|
|
|
|
// If there are no instances in the event, we consider that to be a de-registration.
|
2022-05-26 19:24:09 +00:00
|
|
|
func makeServiceResponse(
|
2022-05-19 21:37:52 +00:00
|
|
|
logger hclog.Logger,
|
|
|
|
update cache.UpdateEvent,
|
2022-07-13 15:00:35 +00:00
|
|
|
) (*pbpeerstream.ReplicationMessage_Response, error) {
|
2022-05-26 19:24:09 +00:00
|
|
|
any, csn, err := marshalToProtoAny[*pbservice.IndexedCheckServiceNodes](update.Result)
|
|
|
|
if err != nil {
|
2022-07-13 15:00:35 +00:00
|
|
|
return nil, fmt.Errorf("failed to marshal: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-06-09 16:05:18 +00:00
|
|
|
serviceName := strings.TrimPrefix(update.CorrelationID, subExportedService)
|
2022-05-19 19:21:29 +00:00
|
|
|
|
|
|
|
// If no nodes are present then it's due to one of:
|
|
|
|
// 1. The service is newly registered or exported and yielded a transient empty update.
|
|
|
|
// 2. All instances of the service were de-registered.
|
|
|
|
// 3. The service was un-exported.
|
|
|
|
//
|
|
|
|
// We don't distinguish when these three things occurred, but it's safe to send a DELETE Op in all cases, so we do that.
|
|
|
|
// Case #1 is a no-op for the importing peer.
|
|
|
|
if len(csn.Nodes) == 0 {
|
2022-07-13 15:00:35 +00:00
|
|
|
return &pbpeerstream.ReplicationMessage_Response{
|
|
|
|
ResourceURL: pbpeerstream.TypeURLService,
|
|
|
|
// TODO(peering): Nonce management
|
|
|
|
Nonce: "",
|
|
|
|
ResourceID: serviceName,
|
|
|
|
Operation: pbpeerstream.Operation_OPERATION_DELETE,
|
|
|
|
}, nil
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If there are nodes in the response, we push them as an UPSERT operation.
|
2022-07-13 15:00:35 +00:00
|
|
|
return &pbpeerstream.ReplicationMessage_Response{
|
|
|
|
ResourceURL: pbpeerstream.TypeURLService,
|
|
|
|
// TODO(peering): Nonce management
|
|
|
|
Nonce: "",
|
|
|
|
ResourceID: serviceName,
|
|
|
|
Operation: pbpeerstream.Operation_OPERATION_UPSERT,
|
|
|
|
Resource: any,
|
|
|
|
}, nil
|
2022-05-26 19:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func makeCARootsResponse(
|
|
|
|
logger hclog.Logger,
|
|
|
|
update cache.UpdateEvent,
|
2022-07-13 15:00:35 +00:00
|
|
|
) (*pbpeerstream.ReplicationMessage_Response, error) {
|
2022-05-26 19:24:09 +00:00
|
|
|
any, _, err := marshalToProtoAny[*pbpeering.PeeringTrustBundle](update.Result)
|
2022-05-19 19:21:29 +00:00
|
|
|
if err != nil {
|
2022-07-13 15:00:35 +00:00
|
|
|
return nil, fmt.Errorf("failed to marshal: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
2022-05-26 19:24:09 +00:00
|
|
|
|
2022-07-13 15:00:35 +00:00
|
|
|
return &pbpeerstream.ReplicationMessage_Response{
|
|
|
|
ResourceURL: pbpeerstream.TypeURLRoots,
|
|
|
|
// TODO(peering): Nonce management
|
|
|
|
Nonce: "",
|
|
|
|
ResourceID: "roots",
|
|
|
|
Operation: pbpeerstream.Operation_OPERATION_UPSERT,
|
|
|
|
Resource: any,
|
|
|
|
}, nil
|
2022-05-26 19:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// marshalToProtoAny takes any input and returns:
|
|
|
|
// the protobuf.Any type, the asserted T type, and any errors
|
|
|
|
// during marshalling or type assertion.
|
|
|
|
// `in` MUST be of type T or it returns an error.
|
|
|
|
func marshalToProtoAny[T proto.Message](in any) (*anypb.Any, T, error) {
|
|
|
|
typ, ok := in.(T)
|
|
|
|
if !ok {
|
|
|
|
var outType T
|
|
|
|
return nil, typ, fmt.Errorf("input type is not %T: %T", outType, in)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
2022-05-26 19:24:09 +00:00
|
|
|
any, err := ptypes.MarshalAny(typ)
|
|
|
|
if err != nil {
|
|
|
|
return nil, typ, err
|
|
|
|
}
|
|
|
|
return any, typ, nil
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
func (s *Server) processResponse(
|
2022-05-26 19:24:09 +00:00
|
|
|
peerName string,
|
|
|
|
partition string,
|
2022-07-15 17:20:43 +00:00
|
|
|
mutableStatus *MutableStatus,
|
2022-07-08 17:01:13 +00:00
|
|
|
resp *pbpeerstream.ReplicationMessage_Response,
|
2022-07-15 17:20:43 +00:00
|
|
|
logger hclog.Logger,
|
2022-07-08 17:01:13 +00:00
|
|
|
) (*pbpeerstream.ReplicationMessage, error) {
|
|
|
|
if !pbpeerstream.KnownTypeURL(resp.ResourceURL) {
|
2022-05-19 21:37:52 +00:00
|
|
|
err := fmt.Errorf("received response for unknown resource type %q", resp.ResourceURL)
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeNACKReply(
|
2022-05-19 21:37:52 +00:00
|
|
|
resp.ResourceURL,
|
|
|
|
resp.Nonce,
|
|
|
|
code.Code_INVALID_ARGUMENT,
|
|
|
|
err.Error(),
|
|
|
|
), err
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch resp.Operation {
|
2022-07-08 17:01:13 +00:00
|
|
|
case pbpeerstream.Operation_OPERATION_UPSERT:
|
2022-05-19 19:21:29 +00:00
|
|
|
if resp.Resource == nil {
|
2022-05-19 21:37:52 +00:00
|
|
|
err := fmt.Errorf("received upsert response with no content")
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeNACKReply(
|
2022-05-19 21:37:52 +00:00
|
|
|
resp.ResourceURL,
|
|
|
|
resp.Nonce,
|
|
|
|
code.Code_INVALID_ARGUMENT,
|
|
|
|
err.Error(),
|
|
|
|
), err
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-07-15 17:20:43 +00:00
|
|
|
if err := s.handleUpsert(peerName, partition, mutableStatus, resp.ResourceURL, resp.ResourceID, resp.Resource, logger); err != nil {
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeNACKReply(
|
2022-05-19 21:37:52 +00:00
|
|
|
resp.ResourceURL,
|
|
|
|
resp.Nonce,
|
|
|
|
code.Code_INTERNAL,
|
|
|
|
fmt.Sprintf("upsert error, ResourceURL: %q, ResourceID: %q: %v", resp.ResourceURL, resp.ResourceID, err),
|
|
|
|
), fmt.Errorf("upsert error: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeACKReply(resp.ResourceURL, resp.Nonce), nil
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
case pbpeerstream.Operation_OPERATION_DELETE:
|
2022-07-15 17:20:43 +00:00
|
|
|
if err := s.handleDelete(peerName, partition, mutableStatus, resp.ResourceURL, resp.ResourceID, logger); err != nil {
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeNACKReply(
|
2022-05-19 21:37:52 +00:00
|
|
|
resp.ResourceURL,
|
|
|
|
resp.Nonce,
|
|
|
|
code.Code_INTERNAL,
|
|
|
|
fmt.Sprintf("delete error, ResourceURL: %q, ResourceID: %q: %v", resp.ResourceURL, resp.ResourceID, err),
|
|
|
|
), fmt.Errorf("delete error: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeACKReply(resp.ResourceURL, resp.Nonce), nil
|
2022-05-19 19:21:29 +00:00
|
|
|
|
|
|
|
default:
|
2022-05-19 21:37:52 +00:00
|
|
|
var errMsg string
|
2022-07-08 17:01:13 +00:00
|
|
|
if op := pbpeerstream.Operation_name[int32(resp.Operation)]; op != "" {
|
2022-05-19 21:37:52 +00:00
|
|
|
errMsg = fmt.Sprintf("unsupported operation: %q", op)
|
|
|
|
} else {
|
|
|
|
errMsg = fmt.Sprintf("unsupported operation: %d", resp.Operation)
|
|
|
|
}
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeNACKReply(
|
2022-05-19 21:37:52 +00:00
|
|
|
resp.ResourceURL,
|
|
|
|
resp.Nonce,
|
|
|
|
code.Code_INVALID_ARGUMENT,
|
|
|
|
errMsg,
|
|
|
|
), errors.New(errMsg)
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 19:21:29 +00:00
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
func (s *Server) handleUpsert(
|
2022-05-19 21:37:52 +00:00
|
|
|
peerName string,
|
|
|
|
partition string,
|
2022-07-15 17:20:43 +00:00
|
|
|
mutableStatus *MutableStatus,
|
2022-05-19 21:37:52 +00:00
|
|
|
resourceURL string,
|
|
|
|
resourceID string,
|
|
|
|
resource *anypb.Any,
|
2022-07-15 17:20:43 +00:00
|
|
|
logger hclog.Logger,
|
2022-05-19 21:37:52 +00:00
|
|
|
) error {
|
|
|
|
switch resourceURL {
|
2022-07-08 17:01:13 +00:00
|
|
|
case pbpeerstream.TypeURLService:
|
2022-05-19 21:37:52 +00:00
|
|
|
sn := structs.ServiceNameFromString(resourceID)
|
|
|
|
sn.OverridePartition(partition)
|
|
|
|
|
|
|
|
csn := &pbservice.IndexedCheckServiceNodes{}
|
|
|
|
if err := ptypes.UnmarshalAny(resource, csn); err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal resource: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-15 17:20:43 +00:00
|
|
|
err := s.handleUpdateService(peerName, partition, sn, csn)
|
|
|
|
if err != nil {
|
|
|
|
logger.Error("did not increment imported services count", "service_name", sn.String(), "error", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Trace("incrementing imported services count", "service_name", sn.String())
|
|
|
|
mutableStatus.TrackImportedService(sn)
|
|
|
|
|
|
|
|
return nil
|
2022-05-26 19:24:09 +00:00
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
case pbpeerstream.TypeURLRoots:
|
2022-05-26 19:24:09 +00:00
|
|
|
roots := &pbpeering.PeeringTrustBundle{}
|
|
|
|
if err := ptypes.UnmarshalAny(resource, roots); err != nil {
|
|
|
|
return fmt.Errorf("failed to unmarshal resource: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.handleUpsertRoots(peerName, partition, roots)
|
|
|
|
|
2022-05-19 21:37:52 +00:00
|
|
|
default:
|
|
|
|
return fmt.Errorf("unexpected resourceURL: %s", resourceURL)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 17:52:28 +00:00
|
|
|
// handleUpdateService handles both deletion and upsert events for a service.
|
|
|
|
// On an UPSERT event:
|
|
|
|
// - All nodes, services, checks in the input pbNodes are re-applied through Raft.
|
|
|
|
// - Any nodes, services, or checks in the catalog that were not in the input pbNodes get deleted.
|
|
|
|
//
|
|
|
|
// On a DELETE event:
|
|
|
|
// - A reconciliation against nil or empty input pbNodes leads to deleting all stored catalog resources
|
|
|
|
// associated with the service name.
|
2022-07-08 17:01:13 +00:00
|
|
|
func (s *Server) handleUpdateService(
|
2022-05-19 21:37:52 +00:00
|
|
|
peerName string,
|
|
|
|
partition string,
|
|
|
|
sn structs.ServiceName,
|
2022-06-13 17:52:28 +00:00
|
|
|
pbNodes *pbservice.IndexedCheckServiceNodes,
|
2022-05-19 21:37:52 +00:00
|
|
|
) error {
|
2022-06-13 17:52:28 +00:00
|
|
|
// Capture instances in the state store for reconciliation later.
|
2022-07-08 17:01:13 +00:00
|
|
|
_, storedInstances, err := s.GetStore().CheckServiceNodes(nil, sn.Name, &sn.EnterpriseMeta, peerName)
|
2022-06-13 17:52:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to read imported services: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
2022-06-13 17:52:28 +00:00
|
|
|
structsNodes, err := pbNodes.CheckServiceNodesToStruct()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to convert protobuf instances to structs: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
2022-05-19 21:37:52 +00:00
|
|
|
// Normalize the data into a convenient form for operation.
|
|
|
|
snap := newHealthSnapshot(structsNodes, partition, peerName)
|
2022-05-19 19:21:29 +00:00
|
|
|
|
2022-05-19 21:37:52 +00:00
|
|
|
for _, nodeSnap := range snap.Nodes {
|
2022-05-19 19:21:29 +00:00
|
|
|
// First register the node
|
2022-05-19 21:37:52 +00:00
|
|
|
req := nodeSnap.Node.ToRegisterRequest()
|
2022-07-08 17:01:13 +00:00
|
|
|
if err := s.Backend.CatalogRegister(&req); err != nil {
|
2022-05-19 21:37:52 +00:00
|
|
|
return fmt.Errorf("failed to register node: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Then register all services on that node
|
2022-05-19 21:37:52 +00:00
|
|
|
for _, svcSnap := range nodeSnap.Services {
|
|
|
|
req.Service = svcSnap.Service
|
2022-07-08 17:01:13 +00:00
|
|
|
if err := s.Backend.CatalogRegister(&req); err != nil {
|
2022-05-19 21:37:52 +00:00
|
|
|
return fmt.Errorf("failed to register service: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
req.Service = nil
|
|
|
|
|
|
|
|
// Then register all checks on that node
|
|
|
|
var chks structs.HealthChecks
|
2022-05-19 21:37:52 +00:00
|
|
|
for _, svcSnap := range nodeSnap.Services {
|
|
|
|
for _, c := range svcSnap.Checks {
|
|
|
|
chks = append(chks, c)
|
|
|
|
}
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
req.Checks = chks
|
2022-07-08 17:01:13 +00:00
|
|
|
if err := s.Backend.CatalogRegister(&req); err != nil {
|
2022-05-19 21:37:52 +00:00
|
|
|
return fmt.Errorf("failed to register check: %w", err)
|
2022-05-19 19:21:29 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-06-13 17:52:28 +00:00
|
|
|
//
|
|
|
|
// Now that the data received has been stored in the state store, the rest of this
|
|
|
|
// function is responsible for cleaning up data in the catalog that wasn't in the snapshot.
|
|
|
|
//
|
|
|
|
|
|
|
|
// nodeCheckTuple uniquely identifies a node check in the catalog.
|
|
|
|
// The partition is not needed because we are only operating on one partition's catalog.
|
|
|
|
type nodeCheckTuple struct {
|
|
|
|
checkID types.CheckID
|
|
|
|
node string
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
// unusedNodes tracks node names that were not present in the latest response.
|
|
|
|
// Missing nodes are not assumed to be deleted because there may be other service names
|
|
|
|
// registered on them.
|
|
|
|
// Inside we also track a map of node checks associated with the node.
|
|
|
|
unusedNodes = make(map[string]struct{})
|
|
|
|
|
|
|
|
// deletedNodeChecks tracks node checks that were not present in the latest response.
|
|
|
|
// A single node check will be attached to all service instances of a node, so this
|
|
|
|
// deduplication prevents issuing multiple deregistrations for a single check.
|
|
|
|
deletedNodeChecks = make(map[nodeCheckTuple]struct{})
|
|
|
|
)
|
|
|
|
for _, csn := range storedInstances {
|
2022-07-15 14:51:38 +00:00
|
|
|
if _, ok := snap.Nodes[csn.Node.Node]; !ok {
|
|
|
|
unusedNodes[csn.Node.Node] = struct{}{}
|
2022-06-13 17:52:28 +00:00
|
|
|
|
|
|
|
// Since the node is not in the snapshot we can know the associated service
|
|
|
|
// instance is not in the snapshot either, since a service instance can't
|
|
|
|
// exist without a node.
|
|
|
|
// This will also delete all service checks.
|
2022-07-08 17:01:13 +00:00
|
|
|
err := s.Backend.CatalogDeregister(&structs.DeregisterRequest{
|
2022-06-13 17:52:28 +00:00
|
|
|
Node: csn.Node.Node,
|
|
|
|
ServiceID: csn.Service.ID,
|
|
|
|
EnterpriseMeta: csn.Service.EnterpriseMeta,
|
|
|
|
PeerName: peerName,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to deregister service %q: %w", csn.Service.CompoundServiceID(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can't know if a node check was deleted from the exporting cluster
|
|
|
|
// (but not the node itself) if the node wasn't in the snapshot,
|
|
|
|
// so we do not loop over checks here.
|
|
|
|
// If the unusedNode gets deleted below that will also delete node checks.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the service instance if not in the snapshot.
|
|
|
|
sid := csn.Service.CompoundServiceID()
|
2022-07-15 14:51:38 +00:00
|
|
|
if _, ok := snap.Nodes[csn.Node.Node].Services[sid]; !ok {
|
2022-07-08 17:01:13 +00:00
|
|
|
err := s.Backend.CatalogDeregister(&structs.DeregisterRequest{
|
2022-06-13 17:52:28 +00:00
|
|
|
Node: csn.Node.Node,
|
|
|
|
ServiceID: csn.Service.ID,
|
|
|
|
EnterpriseMeta: csn.Service.EnterpriseMeta,
|
|
|
|
PeerName: peerName,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ident := fmt.Sprintf("partition:%s/peer:%s/node:%s/ns:%s/service_id:%s",
|
|
|
|
csn.Service.PartitionOrDefault(), peerName, csn.Node.Node, csn.Service.NamespaceOrDefault(), csn.Service.ID)
|
|
|
|
return fmt.Errorf("failed to deregister service %q: %w", ident, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// When a service is deleted all associated checks also get deleted as a side effect.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reconcile checks.
|
|
|
|
for _, chk := range csn.Checks {
|
2022-07-15 14:51:38 +00:00
|
|
|
if _, ok := snap.Nodes[csn.Node.Node].Services[sid].Checks[chk.CheckID]; !ok {
|
2022-06-13 17:52:28 +00:00
|
|
|
// Checks without a ServiceID are node checks.
|
|
|
|
// If the node exists but the check does not then the check was deleted.
|
|
|
|
if chk.ServiceID == "" {
|
|
|
|
// Deduplicate node checks to avoid deregistering a check multiple times.
|
|
|
|
tuple := nodeCheckTuple{
|
|
|
|
checkID: chk.CheckID,
|
|
|
|
node: chk.Node,
|
|
|
|
}
|
|
|
|
deletedNodeChecks[tuple] = struct{}{}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the check isn't a node check then it's a service check.
|
|
|
|
// Service checks that were not present can be deleted immediately because
|
|
|
|
// checks for a given service ID will only be attached to a single CheckServiceNode.
|
2022-07-08 17:01:13 +00:00
|
|
|
err := s.Backend.CatalogDeregister(&structs.DeregisterRequest{
|
2022-06-13 17:52:28 +00:00
|
|
|
Node: chk.Node,
|
|
|
|
CheckID: chk.CheckID,
|
|
|
|
EnterpriseMeta: chk.EnterpriseMeta,
|
|
|
|
PeerName: peerName,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ident := fmt.Sprintf("partition:%s/peer:%s/node:%s/ns:%s/check_id:%s",
|
|
|
|
chk.PartitionOrDefault(), peerName, chk.Node, chk.NamespaceOrDefault(), chk.CheckID)
|
|
|
|
return fmt.Errorf("failed to deregister check %q: %w", ident, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 21:37:52 +00:00
|
|
|
|
2022-06-13 17:52:28 +00:00
|
|
|
// Delete all deduplicated node checks.
|
|
|
|
for chk := range deletedNodeChecks {
|
|
|
|
nodeMeta := structs.NodeEnterpriseMetaInPartition(sn.PartitionOrDefault())
|
2022-07-08 17:01:13 +00:00
|
|
|
err := s.Backend.CatalogDeregister(&structs.DeregisterRequest{
|
2022-06-13 17:52:28 +00:00
|
|
|
Node: chk.node,
|
|
|
|
CheckID: chk.checkID,
|
|
|
|
EnterpriseMeta: *nodeMeta,
|
|
|
|
PeerName: peerName,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ident := fmt.Sprintf("partition:%s/peer:%s/node:%s/check_id:%s", nodeMeta.PartitionOrDefault(), peerName, chk.node, chk.checkID)
|
|
|
|
return fmt.Errorf("failed to deregister node check %q: %w", ident, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete any nodes that do not have any other services registered on them.
|
|
|
|
for node := range unusedNodes {
|
|
|
|
nodeMeta := structs.NodeEnterpriseMetaInPartition(sn.PartitionOrDefault())
|
2022-07-08 17:01:13 +00:00
|
|
|
_, ns, err := s.GetStore().NodeServices(nil, node, nodeMeta, peerName)
|
2022-06-13 17:52:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to query services on node: %w", err)
|
|
|
|
}
|
|
|
|
if ns != nil && len(ns.Services) >= 1 {
|
|
|
|
// At least one service is still registered on this node, so we keep it.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// All services on the node were deleted, so the node is also cleaned up.
|
2022-07-08 17:01:13 +00:00
|
|
|
err = s.Backend.CatalogDeregister(&structs.DeregisterRequest{
|
2022-06-13 17:52:28 +00:00
|
|
|
Node: node,
|
|
|
|
PeerName: peerName,
|
|
|
|
EnterpriseMeta: *nodeMeta,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ident := fmt.Sprintf("partition:%s/peer:%s/node:%s", nodeMeta.PartitionOrDefault(), peerName, node)
|
|
|
|
return fmt.Errorf("failed to deregister node %q: %w", ident, err)
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 19:21:29 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
func (s *Server) handleUpsertRoots(
|
2022-05-26 19:24:09 +00:00
|
|
|
peerName string,
|
|
|
|
partition string,
|
|
|
|
trustBundle *pbpeering.PeeringTrustBundle,
|
|
|
|
) error {
|
|
|
|
// We override the partition and peer name so that the trust bundle gets stored
|
|
|
|
// in the importing partition with a reference to the peer it was imported from.
|
|
|
|
trustBundle.Partition = partition
|
|
|
|
trustBundle.PeerName = peerName
|
|
|
|
req := &pbpeering.PeeringTrustBundleWriteRequest{
|
|
|
|
PeeringTrustBundle: trustBundle,
|
|
|
|
}
|
2022-07-08 17:01:13 +00:00
|
|
|
return s.Backend.PeeringTrustBundleWrite(req)
|
2022-05-26 19:24:09 +00:00
|
|
|
}
|
|
|
|
|
2022-07-08 17:01:13 +00:00
|
|
|
func (s *Server) handleDelete(
|
2022-05-19 21:37:52 +00:00
|
|
|
peerName string,
|
|
|
|
partition string,
|
2022-07-15 17:20:43 +00:00
|
|
|
mutableStatus *MutableStatus,
|
2022-05-19 21:37:52 +00:00
|
|
|
resourceURL string,
|
|
|
|
resourceID string,
|
2022-07-15 17:20:43 +00:00
|
|
|
logger hclog.Logger,
|
2022-05-19 21:37:52 +00:00
|
|
|
) error {
|
|
|
|
switch resourceURL {
|
2022-07-08 17:01:13 +00:00
|
|
|
case pbpeerstream.TypeURLService:
|
2022-05-19 21:37:52 +00:00
|
|
|
sn := structs.ServiceNameFromString(resourceID)
|
|
|
|
sn.OverridePartition(partition)
|
2022-07-15 17:20:43 +00:00
|
|
|
|
|
|
|
err := s.handleUpdateService(peerName, partition, sn, nil)
|
|
|
|
if err != nil {
|
|
|
|
logger.Error("did not decrement imported services count", "service_name", sn.String(), "error", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Trace("decrementing imported services count", "service_name", sn.String())
|
|
|
|
mutableStatus.RemoveImportedService(sn)
|
|
|
|
|
|
|
|
return nil
|
2022-05-19 21:37:52 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unexpected resourceURL: %s", resourceURL)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 15:00:35 +00:00
|
|
|
func makeACKReply(resourceURL, nonce string) *pbpeerstream.ReplicationMessage {
|
|
|
|
return makeReplicationRequest(&pbpeerstream.ReplicationMessage_Request{
|
|
|
|
ResourceURL: resourceURL,
|
|
|
|
ResponseNonce: nonce,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeNACKReply(resourceURL, nonce string, errCode code.Code, errMsg string) *pbpeerstream.ReplicationMessage {
|
2022-05-19 19:21:29 +00:00
|
|
|
var rpcErr *pbstatus.Status
|
|
|
|
if errCode != code.Code_OK || errMsg != "" {
|
|
|
|
rpcErr = &pbstatus.Status{
|
|
|
|
Code: int32(errCode),
|
|
|
|
Message: errMsg,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 15:00:35 +00:00
|
|
|
return makeReplicationRequest(&pbpeerstream.ReplicationMessage_Request{
|
|
|
|
ResourceURL: resourceURL,
|
|
|
|
ResponseNonce: nonce,
|
|
|
|
Error: rpcErr,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// makeReplicationRequest is a convenience method to make a Request-type ReplicationMessage.
|
|
|
|
func makeReplicationRequest(req *pbpeerstream.ReplicationMessage_Request) *pbpeerstream.ReplicationMessage {
|
2022-07-08 17:01:13 +00:00
|
|
|
return &pbpeerstream.ReplicationMessage{
|
|
|
|
Payload: &pbpeerstream.ReplicationMessage_Request_{
|
2022-07-13 15:00:35 +00:00
|
|
|
Request: req,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// makeReplicationResponse is a convenience method to make a Response-type ReplicationMessage.
|
|
|
|
func makeReplicationResponse(resp *pbpeerstream.ReplicationMessage_Response) *pbpeerstream.ReplicationMessage {
|
|
|
|
return &pbpeerstream.ReplicationMessage{
|
|
|
|
Payload: &pbpeerstream.ReplicationMessage_Response_{
|
|
|
|
Response: resp,
|
2022-05-19 19:21:29 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|