2018-10-03 18:18:55 +00:00
|
|
|
package xds
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-02-19 13:45:33 +00:00
|
|
|
"fmt"
|
2018-10-03 18:18:55 +00:00
|
|
|
"time"
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
envoy_cluster_v3 "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
|
|
|
|
envoy_core_v3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
|
|
|
|
envoy_endpoint_v3 "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
|
|
|
|
envoy_tls_v3 "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
|
|
|
|
envoy_type_v3 "github.com/envoyproxy/go-control-plane/envoy/type/v3"
|
2021-02-22 21:00:15 +00:00
|
|
|
|
2020-06-23 20:19:56 +00:00
|
|
|
"github.com/golang/protobuf/jsonpb"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/golang/protobuf/ptypes"
|
|
|
|
"github.com/golang/protobuf/ptypes/any"
|
2020-09-02 21:13:50 +00:00
|
|
|
"github.com/golang/protobuf/ptypes/wrappers"
|
2021-02-22 21:00:15 +00:00
|
|
|
|
2019-08-19 18:03:03 +00:00
|
|
|
"github.com/hashicorp/consul/agent/connect"
|
2018-10-03 18:18:55 +00:00
|
|
|
"github.com/hashicorp/consul/agent/proxycfg"
|
2019-02-19 13:45:33 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2020-06-23 20:19:56 +00:00
|
|
|
"github.com/hashicorp/consul/logging"
|
2018-10-03 18:18:55 +00:00
|
|
|
)
|
|
|
|
|
2019-06-24 19:05:36 +00:00
|
|
|
// clustersFromSnapshot returns the xDS API representation of the "clusters" in the snapshot.
|
2020-07-09 22:04:51 +00:00
|
|
|
func (s *Server) clustersFromSnapshot(_ connectionInfo, cfgSnap *proxycfg.ConfigSnapshot) ([]proto.Message, error) {
|
2019-06-24 19:05:36 +00:00
|
|
|
if cfgSnap == nil {
|
|
|
|
return nil, errors.New("nil config given")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch cfgSnap.Kind {
|
|
|
|
case structs.ServiceKindConnectProxy:
|
2020-03-27 21:57:16 +00:00
|
|
|
return s.clustersFromSnapshotConnectProxy(cfgSnap)
|
2020-04-13 16:33:01 +00:00
|
|
|
case structs.ServiceKindTerminatingGateway:
|
2020-09-11 16:49:26 +00:00
|
|
|
return s.makeGatewayServiceClusters(cfgSnap, cfgSnap.TerminatingGateway.ServiceGroups, cfgSnap.TerminatingGateway.ServiceResolvers)
|
2019-06-18 00:52:01 +00:00
|
|
|
case structs.ServiceKindMeshGateway:
|
2020-03-27 21:57:16 +00:00
|
|
|
return s.clustersFromSnapshotMeshGateway(cfgSnap)
|
2020-04-16 21:00:48 +00:00
|
|
|
case structs.ServiceKindIngressGateway:
|
|
|
|
return s.clustersFromSnapshotIngressGateway(cfgSnap)
|
2019-06-24 19:05:36 +00:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("Invalid service kind: %v", cfgSnap.Kind)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 18:18:55 +00:00
|
|
|
// clustersFromSnapshot returns the xDS API representation of the "clusters"
|
|
|
|
// (upstreams) in the snapshot.
|
2020-03-27 21:57:16 +00:00
|
|
|
func (s *Server) clustersFromSnapshotConnectProxy(cfgSnap *proxycfg.ConfigSnapshot) ([]proto.Message, error) {
|
2019-07-02 03:10:51 +00:00
|
|
|
// TODO(rb): this sizing is a low bound.
|
2019-07-02 19:53:06 +00:00
|
|
|
clusters := make([]proto.Message, 0, len(cfgSnap.Proxy.Upstreams)+1)
|
2018-10-03 18:18:55 +00:00
|
|
|
|
2019-07-02 03:10:51 +00:00
|
|
|
// Include the "app" cluster for the public listener
|
2019-09-26 02:55:52 +00:00
|
|
|
appCluster, err := s.makeAppCluster(cfgSnap, LocalAppClusterName, "", cfgSnap.Proxy.LocalServicePort)
|
2019-02-19 13:45:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
|
2019-07-02 03:10:51 +00:00
|
|
|
clusters = append(clusters, appCluster)
|
|
|
|
|
|
|
|
for _, u := range cfgSnap.Proxy.Upstreams {
|
|
|
|
id := u.Identifier()
|
|
|
|
|
2019-08-22 20:11:56 +00:00
|
|
|
if u.DestinationType == structs.UpstreamDestTypePreparedQuery {
|
|
|
|
upstreamCluster, err := s.makeUpstreamClusterForPreparedQuery(u, cfgSnap)
|
2019-07-02 03:10:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
clusters = append(clusters, upstreamCluster)
|
|
|
|
|
|
|
|
} else {
|
2019-08-22 20:11:56 +00:00
|
|
|
chain := cfgSnap.ConnectProxy.DiscoveryChain[id]
|
2020-04-16 21:00:48 +00:00
|
|
|
chainEndpoints, ok := cfgSnap.ConnectProxy.WatchedUpstreamEndpoints[id]
|
|
|
|
if !ok {
|
|
|
|
// this should not happen
|
|
|
|
return nil, fmt.Errorf("no endpoint map for upstream %q", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
upstreamClusters, err := s.makeUpstreamClustersForDiscoveryChain(u, chain, chainEndpoints, cfgSnap)
|
2019-07-02 03:10:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cluster := range upstreamClusters {
|
|
|
|
clusters = append(clusters, cluster)
|
|
|
|
}
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
2020-01-28 23:50:41 +00:00
|
|
|
cfgSnap.Proxy.Expose.Finalize()
|
2019-09-26 02:55:52 +00:00
|
|
|
paths := cfgSnap.Proxy.Expose.Paths
|
|
|
|
|
|
|
|
// Add service health checks to the list of paths to create clusters for if needed
|
|
|
|
if cfgSnap.Proxy.Expose.Checks {
|
2020-01-24 15:04:58 +00:00
|
|
|
psid := structs.NewServiceID(cfgSnap.Proxy.DestinationServiceID, &cfgSnap.ProxyID.EnterpriseMeta)
|
2019-12-10 02:26:41 +00:00
|
|
|
for _, check := range s.CheckFetcher.ServiceHTTPBasedChecks(psid) {
|
2019-09-26 02:55:52 +00:00
|
|
|
p, err := parseCheckPath(check)
|
|
|
|
if err != nil {
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Warn("failed to create cluster for", "check", check.CheckID, "error", err)
|
2019-09-26 02:55:52 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
paths = append(paths, p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new cluster if we need to expose a port that is different from the service port
|
|
|
|
for _, path := range paths {
|
|
|
|
if path.LocalPathPort == cfgSnap.Proxy.LocalServicePort {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
c, err := s.makeAppCluster(cfgSnap, makeExposeClusterName(path.LocalPathPort), path.Protocol, path.LocalPathPort)
|
|
|
|
if err != nil {
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Warn("failed to make local cluster", "path", path.Path, "error", err)
|
2019-09-26 02:55:52 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
clusters = append(clusters, c)
|
|
|
|
}
|
2018-10-03 18:18:55 +00:00
|
|
|
return clusters, nil
|
|
|
|
}
|
|
|
|
|
2019-09-26 02:55:52 +00:00
|
|
|
func makeExposeClusterName(destinationPort int) string {
|
|
|
|
return fmt.Sprintf("exposed_cluster_%d", destinationPort)
|
|
|
|
}
|
|
|
|
|
2019-06-18 00:52:01 +00:00
|
|
|
// clustersFromSnapshotMeshGateway returns the xDS API representation of the "clusters"
|
|
|
|
// for a mesh gateway. This will include 1 cluster per remote datacenter as well as
|
|
|
|
// 1 cluster for each service subset.
|
2020-03-27 21:57:16 +00:00
|
|
|
func (s *Server) clustersFromSnapshotMeshGateway(cfgSnap *proxycfg.ConfigSnapshot) ([]proto.Message, error) {
|
2020-03-09 20:59:02 +00:00
|
|
|
datacenters := cfgSnap.MeshGateway.Datacenters()
|
|
|
|
|
2019-07-02 13:43:35 +00:00
|
|
|
// 1 cluster per remote dc + 1 cluster per local service (this is a lower bound - all subset specific clusters will be appended)
|
2020-03-09 20:59:02 +00:00
|
|
|
clusters := make([]proto.Message, 0, len(datacenters)+len(cfgSnap.MeshGateway.ServiceGroups))
|
2019-06-18 00:52:01 +00:00
|
|
|
|
|
|
|
// generate the remote dc clusters
|
2020-03-09 20:59:02 +00:00
|
|
|
for _, dc := range datacenters {
|
|
|
|
if dc == cfgSnap.Datacenter {
|
|
|
|
continue // skip local
|
|
|
|
}
|
2019-06-18 00:52:01 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
opts := gatewayClusterOpts{
|
|
|
|
name: connect.DatacenterSNI(dc, cfgSnap.Roots.TrustDomain),
|
|
|
|
hostnameEndpoints: cfgSnap.MeshGateway.HostnameDatacenters[dc],
|
|
|
|
isRemote: dc != cfgSnap.Datacenter,
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
cluster := s.makeGatewayCluster(cfgSnap, opts)
|
2019-07-02 13:43:35 +00:00
|
|
|
clusters = append(clusters, cluster)
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 20:59:02 +00:00
|
|
|
if cfgSnap.ServiceMeta[structs.MetaWANFederationKey] == "1" && cfgSnap.ServerSNIFn != nil {
|
|
|
|
// Add all of the remote wildcard datacenter mappings for servers.
|
|
|
|
for _, dc := range datacenters {
|
2020-06-03 21:28:45 +00:00
|
|
|
hostnameEndpoints := cfgSnap.MeshGateway.HostnameDatacenters[dc]
|
2020-03-09 20:59:02 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
// If the DC is our current DC then this cluster is for traffic from a remote DC to a local server.
|
|
|
|
// HostnameDatacenters is populated with gateway addresses, so it does not apply here.
|
|
|
|
if dc == cfgSnap.Datacenter {
|
|
|
|
hostnameEndpoints = nil
|
|
|
|
}
|
|
|
|
opts := gatewayClusterOpts{
|
|
|
|
name: cfgSnap.ServerSNIFn(dc, ""),
|
|
|
|
hostnameEndpoints: hostnameEndpoints,
|
|
|
|
isRemote: dc != cfgSnap.Datacenter,
|
2020-03-09 20:59:02 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
cluster := s.makeGatewayCluster(cfgSnap, opts)
|
2020-03-09 20:59:02 +00:00
|
|
|
clusters = append(clusters, cluster)
|
|
|
|
}
|
|
|
|
|
|
|
|
// And for the current datacenter, send all flavors appropriately.
|
|
|
|
for _, srv := range cfgSnap.MeshGateway.ConsulServers {
|
2020-06-03 21:28:45 +00:00
|
|
|
opts := gatewayClusterOpts{
|
|
|
|
name: cfgSnap.ServerSNIFn(cfgSnap.Datacenter, srv.Node.Node),
|
2020-03-09 20:59:02 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
cluster := s.makeGatewayCluster(cfgSnap, opts)
|
2020-03-09 20:59:02 +00:00
|
|
|
clusters = append(clusters, cluster)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:59:23 +00:00
|
|
|
// generate the per-service/subset clusters
|
2020-09-11 16:49:26 +00:00
|
|
|
c, err := s.makeGatewayServiceClusters(cfgSnap, cfgSnap.MeshGateway.ServiceGroups, cfgSnap.MeshGateway.ServiceResolvers)
|
2020-04-14 14:59:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
clusters = append(clusters, c...)
|
|
|
|
|
|
|
|
return clusters, nil
|
|
|
|
}
|
|
|
|
|
2020-09-11 16:49:26 +00:00
|
|
|
func (s *Server) makeGatewayServiceClusters(
|
|
|
|
cfgSnap *proxycfg.ConfigSnapshot,
|
|
|
|
services map[structs.ServiceName]structs.CheckServiceNodes,
|
|
|
|
resolvers map[structs.ServiceName]*structs.ServiceResolverConfigEntry,
|
|
|
|
) ([]proto.Message, error) {
|
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
var hostnameEndpoints structs.CheckServiceNodes
|
2020-04-27 22:25:37 +00:00
|
|
|
|
|
|
|
switch cfgSnap.Kind {
|
2020-09-11 16:49:26 +00:00
|
|
|
case structs.ServiceKindTerminatingGateway, structs.ServiceKindMeshGateway:
|
2020-04-27 22:25:37 +00:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported gateway kind %q", cfgSnap.Kind)
|
|
|
|
}
|
2020-04-14 14:59:23 +00:00
|
|
|
|
|
|
|
clusters := make([]proto.Message, 0, len(services))
|
|
|
|
|
2020-06-16 17:19:31 +00:00
|
|
|
for svc := range services {
|
2020-06-12 14:57:41 +00:00
|
|
|
clusterName := connect.ServiceSNI(svc.Name, "", svc.NamespaceOrDefault(), cfgSnap.Datacenter, cfgSnap.Roots.TrustDomain)
|
2020-04-14 14:59:23 +00:00
|
|
|
resolver, hasResolver := resolvers[svc]
|
2019-06-18 00:52:01 +00:00
|
|
|
|
2020-09-11 15:21:43 +00:00
|
|
|
var loadBalancer *structs.LoadBalancer
|
2020-08-28 20:27:40 +00:00
|
|
|
|
2020-09-03 14:57:48 +00:00
|
|
|
if !hasResolver {
|
2020-04-27 22:25:37 +00:00
|
|
|
// Use a zero value resolver with no timeout and no subsets
|
|
|
|
resolver = &structs.ServiceResolverConfigEntry{}
|
2020-03-17 19:50:14 +00:00
|
|
|
}
|
2020-09-03 14:57:48 +00:00
|
|
|
if resolver.LoadBalancer != nil {
|
2020-09-11 15:21:43 +00:00
|
|
|
loadBalancer = resolver.LoadBalancer
|
2020-09-03 14:57:48 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
|
|
|
|
// When making service clusters we only pass endpoints with hostnames if the kind is a terminating gateway
|
|
|
|
// This is because the services a mesh gateway will route to are not external services and are not addressed by a hostname.
|
|
|
|
if cfgSnap.Kind == structs.ServiceKindTerminatingGateway {
|
|
|
|
hostnameEndpoints = cfgSnap.TerminatingGateway.HostnameServices[svc]
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
2020-04-27 22:25:37 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
opts := gatewayClusterOpts{
|
|
|
|
name: clusterName,
|
|
|
|
hostnameEndpoints: hostnameEndpoints,
|
|
|
|
connectTimeout: resolver.ConnectTimeout,
|
|
|
|
}
|
|
|
|
cluster := s.makeGatewayCluster(cfgSnap, opts)
|
|
|
|
|
2020-09-11 16:49:26 +00:00
|
|
|
if err := s.injectGatewayServiceAddons(cfgSnap, cluster, svc, loadBalancer); err != nil {
|
|
|
|
return nil, err
|
2020-04-27 22:25:37 +00:00
|
|
|
}
|
2019-07-02 13:43:35 +00:00
|
|
|
clusters = append(clusters, cluster)
|
|
|
|
|
2020-04-27 22:25:37 +00:00
|
|
|
// If there is a service-resolver for this service then also setup a cluster for each subset
|
2020-06-03 21:28:45 +00:00
|
|
|
for name, subset := range resolver.Subsets {
|
|
|
|
subsetHostnameEndpoints, err := s.filterSubsetEndpoints(&subset, hostnameEndpoints)
|
2020-04-27 22:25:37 +00:00
|
|
|
if err != nil {
|
2020-06-03 21:28:45 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
opts := gatewayClusterOpts{
|
2020-06-12 14:57:41 +00:00
|
|
|
name: connect.ServiceSNI(svc.Name, name, svc.NamespaceOrDefault(), cfgSnap.Datacenter, cfgSnap.Roots.TrustDomain),
|
2020-06-03 21:28:45 +00:00
|
|
|
hostnameEndpoints: subsetHostnameEndpoints,
|
|
|
|
onlyPassing: subset.OnlyPassing,
|
|
|
|
connectTimeout: resolver.ConnectTimeout,
|
2020-04-27 22:25:37 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
cluster := s.makeGatewayCluster(cfgSnap, opts)
|
2020-04-27 22:25:37 +00:00
|
|
|
|
2020-09-11 16:49:26 +00:00
|
|
|
if err := s.injectGatewayServiceAddons(cfgSnap, cluster, svc, loadBalancer); err != nil {
|
|
|
|
return nil, err
|
2019-07-02 13:43:35 +00:00
|
|
|
}
|
2020-04-27 22:25:37 +00:00
|
|
|
clusters = append(clusters, cluster)
|
2019-07-02 13:43:35 +00:00
|
|
|
}
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return clusters, nil
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func (s *Server) injectGatewayServiceAddons(cfgSnap *proxycfg.ConfigSnapshot, c *envoy_cluster_v3.Cluster, svc structs.ServiceName, lb *structs.LoadBalancer) error {
|
2020-09-11 16:49:26 +00:00
|
|
|
switch cfgSnap.Kind {
|
|
|
|
case structs.ServiceKindMeshGateway:
|
|
|
|
// We can't apply hash based LB config to mesh gateways because they rely on inspecting HTTP attributes
|
|
|
|
// and mesh gateways do not decrypt traffic
|
|
|
|
if !lb.IsHashBased() {
|
|
|
|
if err := injectLBToCluster(lb, c); err != nil {
|
|
|
|
return fmt.Errorf("failed to apply load balancer configuration to cluster %q: %v", c.Name, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case structs.ServiceKindTerminatingGateway:
|
|
|
|
// Context used for TLS origination to the cluster
|
|
|
|
if mapping, ok := cfgSnap.TerminatingGateway.GatewayServices[svc]; ok && mapping.CAFile != "" {
|
2021-02-26 22:23:15 +00:00
|
|
|
tlsContext := &envoy_tls_v3.UpstreamTlsContext{
|
2020-09-11 16:49:26 +00:00
|
|
|
CommonTlsContext: makeCommonTLSContextFromFiles(mapping.CAFile, mapping.CertFile, mapping.KeyFile),
|
|
|
|
}
|
|
|
|
if mapping.SNI != "" {
|
2021-02-22 21:00:15 +00:00
|
|
|
tlsContext.Sni = mapping.SNI
|
|
|
|
}
|
|
|
|
|
|
|
|
transportSocket, err := makeUpstreamTLSTransportSocket(tlsContext)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-09-11 16:49:26 +00:00
|
|
|
}
|
2021-02-22 21:00:15 +00:00
|
|
|
c.TransportSocket = transportSocket
|
2020-09-11 16:49:26 +00:00
|
|
|
}
|
|
|
|
if err := injectLBToCluster(lb, c); err != nil {
|
|
|
|
return fmt.Errorf("failed to apply load balancer configuration to cluster %q: %v", c.Name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-04-16 21:00:48 +00:00
|
|
|
func (s *Server) clustersFromSnapshotIngressGateway(cfgSnap *proxycfg.ConfigSnapshot) ([]proto.Message, error) {
|
|
|
|
var clusters []proto.Message
|
2020-04-21 21:06:23 +00:00
|
|
|
createdClusters := make(map[string]bool)
|
2020-04-16 23:24:11 +00:00
|
|
|
for _, upstreams := range cfgSnap.IngressGateway.Upstreams {
|
|
|
|
for _, u := range upstreams {
|
|
|
|
id := u.Identifier()
|
2020-04-21 21:06:23 +00:00
|
|
|
|
|
|
|
// If we've already created a cluster for this upstream, skip it. Multiple listeners may
|
|
|
|
// reference the same upstream, so we don't need to create duplicate clusters in that case.
|
|
|
|
if createdClusters[id] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-04-16 23:24:11 +00:00
|
|
|
chain, ok := cfgSnap.IngressGateway.DiscoveryChain[id]
|
|
|
|
if !ok {
|
|
|
|
// this should not happen
|
|
|
|
return nil, fmt.Errorf("no discovery chain for upstream %q", id)
|
|
|
|
}
|
2020-04-16 21:00:48 +00:00
|
|
|
|
2020-04-16 23:24:11 +00:00
|
|
|
chainEndpoints, ok := cfgSnap.IngressGateway.WatchedUpstreamEndpoints[id]
|
|
|
|
if !ok {
|
|
|
|
// this should not happen
|
|
|
|
return nil, fmt.Errorf("no endpoint map for upstream %q", id)
|
|
|
|
}
|
2020-04-16 21:00:48 +00:00
|
|
|
|
2020-04-16 23:24:11 +00:00
|
|
|
upstreamClusters, err := s.makeUpstreamClustersForDiscoveryChain(u, chain, chainEndpoints, cfgSnap)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-04-16 21:00:48 +00:00
|
|
|
|
2020-04-16 23:24:11 +00:00
|
|
|
for _, c := range upstreamClusters {
|
|
|
|
clusters = append(clusters, c)
|
|
|
|
}
|
2020-04-21 21:06:23 +00:00
|
|
|
createdClusters[id] = true
|
2020-04-16 21:00:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return clusters, nil
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func (s *Server) makeAppCluster(cfgSnap *proxycfg.ConfigSnapshot, name, pathProtocol string, port int) (*envoy_cluster_v3.Cluster, error) {
|
|
|
|
var c *envoy_cluster_v3.Cluster
|
2019-02-19 13:45:33 +00:00
|
|
|
var err error
|
|
|
|
|
2019-04-29 16:27:57 +00:00
|
|
|
cfg, err := ParseProxyConfig(cfgSnap.Proxy.Config)
|
|
|
|
if err != nil {
|
|
|
|
// Don't hard fail on a config typo, just warn. The parse func returns
|
|
|
|
// default config if there is an error so it's safe to continue.
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Warn("failed to parse Connect.Proxy.Config", "error", err)
|
2019-04-29 16:27:57 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 17:13:28 +00:00
|
|
|
// If we have overridden local cluster config try to parse it into an Envoy cluster
|
2019-04-29 16:27:57 +00:00
|
|
|
if cfg.LocalClusterJSON != "" {
|
|
|
|
return makeClusterFromUserConfig(cfg.LocalClusterJSON)
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
2019-02-19 13:45:33 +00:00
|
|
|
|
2019-07-19 11:53:42 +00:00
|
|
|
addr := cfgSnap.Proxy.LocalServiceAddress
|
|
|
|
if addr == "" {
|
|
|
|
addr = "127.0.0.1"
|
|
|
|
}
|
2021-02-26 22:23:15 +00:00
|
|
|
c = &envoy_cluster_v3.Cluster{
|
2019-09-26 02:55:52 +00:00
|
|
|
Name: name,
|
2020-06-23 20:19:56 +00:00
|
|
|
ConnectTimeout: ptypes.DurationProto(time.Duration(cfg.LocalConnectTimeoutMs) * time.Millisecond),
|
2021-02-26 22:23:15 +00:00
|
|
|
ClusterDiscoveryType: &envoy_cluster_v3.Cluster_Type{Type: envoy_cluster_v3.Cluster_STATIC},
|
|
|
|
LoadAssignment: &envoy_endpoint_v3.ClusterLoadAssignment{
|
2019-09-26 02:55:52 +00:00
|
|
|
ClusterName: name,
|
2021-02-26 22:23:15 +00:00
|
|
|
Endpoints: []*envoy_endpoint_v3.LocalityLbEndpoints{
|
2019-07-19 11:53:42 +00:00
|
|
|
{
|
2021-02-26 22:23:15 +00:00
|
|
|
LbEndpoints: []*envoy_endpoint_v3.LbEndpoint{
|
2020-06-23 17:18:22 +00:00
|
|
|
makeEndpoint(addr, port),
|
2019-04-29 16:27:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2019-07-19 11:53:42 +00:00
|
|
|
},
|
|
|
|
}
|
2020-04-02 07:35:04 +00:00
|
|
|
protocol := pathProtocol
|
|
|
|
if protocol == "" {
|
|
|
|
protocol = cfg.Protocol
|
|
|
|
}
|
|
|
|
if protocol == "http2" || protocol == "grpc" {
|
2021-02-26 22:23:15 +00:00
|
|
|
c.Http2ProtocolOptions = &envoy_core_v3.Http2ProtocolOptions{}
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
2019-02-19 13:45:33 +00:00
|
|
|
|
|
|
|
return c, err
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func (s *Server) makeUpstreamClusterForPreparedQuery(upstream structs.Upstream, cfgSnap *proxycfg.ConfigSnapshot) (*envoy_cluster_v3.Cluster, error) {
|
|
|
|
var c *envoy_cluster_v3.Cluster
|
2019-02-19 13:45:33 +00:00
|
|
|
var err error
|
|
|
|
|
2019-08-19 18:03:03 +00:00
|
|
|
dc := upstream.Datacenter
|
|
|
|
if dc == "" {
|
|
|
|
dc = cfgSnap.Datacenter
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
2019-08-19 18:03:03 +00:00
|
|
|
sni := connect.UpstreamSNI(&upstream, "", dc, cfgSnap.Roots.TrustDomain)
|
2019-06-18 00:52:01 +00:00
|
|
|
|
2019-04-29 16:27:57 +00:00
|
|
|
cfg, err := ParseUpstreamConfig(upstream.Config)
|
|
|
|
if err != nil {
|
|
|
|
// Don't hard fail on a config typo, just warn. The parse func returns
|
|
|
|
// default config if there is an error so it's safe to continue.
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Warn("failed to parse", "upstream", upstream.Identifier(), "error", err)
|
2019-04-29 16:27:57 +00:00
|
|
|
}
|
|
|
|
if cfg.ClusterJSON != "" {
|
|
|
|
c, err = makeClusterFromUserConfig(cfg.ClusterJSON)
|
|
|
|
if err != nil {
|
|
|
|
return c, err
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
2019-04-29 16:27:57 +00:00
|
|
|
// In the happy path don't return yet as we need to inject TLS config still.
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if c == nil {
|
2021-02-26 22:23:15 +00:00
|
|
|
c = &envoy_cluster_v3.Cluster{
|
2019-07-08 11:48:48 +00:00
|
|
|
Name: sni,
|
2020-06-23 20:19:56 +00:00
|
|
|
ConnectTimeout: ptypes.DurationProto(time.Duration(cfg.ConnectTimeoutMs) * time.Millisecond),
|
2021-02-26 22:23:15 +00:00
|
|
|
ClusterDiscoveryType: &envoy_cluster_v3.Cluster_Type{Type: envoy_cluster_v3.Cluster_EDS},
|
|
|
|
EdsClusterConfig: &envoy_cluster_v3.Cluster_EdsClusterConfig{
|
|
|
|
EdsConfig: &envoy_core_v3.ConfigSource{
|
|
|
|
ResourceApiVersion: envoy_core_v3.ApiVersion_V3,
|
|
|
|
ConfigSourceSpecifier: &envoy_core_v3.ConfigSource_Ads{
|
|
|
|
Ads: &envoy_core_v3.AggregatedConfigSource{},
|
2019-02-19 13:45:33 +00:00
|
|
|
},
|
2018-10-03 18:18:55 +00:00
|
|
|
},
|
|
|
|
},
|
2021-02-26 22:23:15 +00:00
|
|
|
CircuitBreakers: &envoy_cluster_v3.CircuitBreakers{
|
2019-12-03 20:13:33 +00:00
|
|
|
Thresholds: makeThresholdsIfNeeded(cfg.Limits),
|
|
|
|
},
|
2020-04-27 18:53:21 +00:00
|
|
|
OutlierDetection: cfg.PassiveHealthCheck.AsOutlierDetection(),
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
2019-04-29 16:27:57 +00:00
|
|
|
if cfg.Protocol == "http2" || cfg.Protocol == "grpc" {
|
2021-02-26 22:23:15 +00:00
|
|
|
c.Http2ProtocolOptions = &envoy_core_v3.Http2ProtocolOptions{}
|
2019-04-29 16:27:57 +00:00
|
|
|
}
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable TLS upstream with the configured client certificate.
|
2021-02-26 22:23:15 +00:00
|
|
|
tlsContext := &envoy_tls_v3.UpstreamTlsContext{
|
2020-04-27 22:25:37 +00:00
|
|
|
CommonTlsContext: makeCommonTLSContextFromLeaf(cfgSnap, cfgSnap.Leaf()),
|
2019-06-18 00:52:01 +00:00
|
|
|
Sni: sni,
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
2019-02-19 13:45:33 +00:00
|
|
|
|
2021-02-22 21:00:15 +00:00
|
|
|
transportSocket, err := makeUpstreamTLSTransportSocket(tlsContext)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
c.TransportSocket = transportSocket
|
|
|
|
|
2019-02-19 13:45:33 +00:00
|
|
|
return c, nil
|
|
|
|
}
|
|
|
|
|
2019-07-02 03:10:51 +00:00
|
|
|
func (s *Server) makeUpstreamClustersForDiscoveryChain(
|
2019-07-08 11:48:48 +00:00
|
|
|
upstream structs.Upstream,
|
2019-07-02 03:10:51 +00:00
|
|
|
chain *structs.CompiledDiscoveryChain,
|
2020-04-16 21:00:48 +00:00
|
|
|
chainEndpoints map[string]structs.CheckServiceNodes,
|
2019-07-02 03:10:51 +00:00
|
|
|
cfgSnap *proxycfg.ConfigSnapshot,
|
2021-02-26 22:23:15 +00:00
|
|
|
) ([]*envoy_cluster_v3.Cluster, error) {
|
2019-08-22 20:11:56 +00:00
|
|
|
if chain == nil {
|
2020-02-03 14:26:47 +00:00
|
|
|
return nil, fmt.Errorf("cannot create upstream cluster without discovery chain for %s", upstream.Identifier())
|
2019-08-22 20:11:56 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 11:48:48 +00:00
|
|
|
cfg, err := ParseUpstreamConfigNoDefaults(upstream.Config)
|
|
|
|
if err != nil {
|
|
|
|
// Don't hard fail on a config typo, just warn. The parse func returns
|
|
|
|
// default config if there is an error so it's safe to continue.
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Warn("failed to parse", "upstream", upstream.Identifier(),
|
|
|
|
"error", err)
|
2019-07-08 11:48:48 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
var escapeHatchCluster *envoy_cluster_v3.Cluster
|
2019-08-22 20:11:56 +00:00
|
|
|
if cfg.ClusterJSON != "" {
|
|
|
|
if chain.IsDefault() {
|
|
|
|
// If you haven't done anything to setup the discovery chain, then
|
|
|
|
// you can use the envoy_cluster_json escape hatch.
|
|
|
|
escapeHatchCluster, err = makeClusterFromUserConfig(cfg.ClusterJSON)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
} else {
|
2020-08-28 20:27:40 +00:00
|
|
|
s.Logger.Warn("ignoring escape hatch setting, because a discovery chain is configured for",
|
2020-01-28 23:50:41 +00:00
|
|
|
"discovery chain", chain.ServiceName, "upstream", upstream.Identifier(),
|
|
|
|
"envoy_cluster_json", chain.ServiceName)
|
2019-08-22 20:11:56 +00:00
|
|
|
}
|
2019-07-02 03:10:51 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
var out []*envoy_cluster_v3.Cluster
|
2019-08-02 03:44:05 +00:00
|
|
|
for _, node := range chain.Nodes {
|
|
|
|
if node.Type != structs.DiscoveryGraphNodeTypeResolver {
|
|
|
|
continue
|
|
|
|
}
|
2019-08-05 18:30:35 +00:00
|
|
|
failover := node.Resolver.Failover
|
2019-08-02 20:34:54 +00:00
|
|
|
targetID := node.Resolver.Target
|
|
|
|
|
|
|
|
target := chain.Targets[targetID]
|
2019-07-02 03:10:51 +00:00
|
|
|
|
2019-08-05 18:30:35 +00:00
|
|
|
// Determine if we have to generate the entire cluster differently.
|
|
|
|
failoverThroughMeshGateway := chain.WillFailoverThroughMeshGateway(node)
|
|
|
|
|
2019-08-19 18:03:03 +00:00
|
|
|
sni := target.SNI
|
|
|
|
clusterName := CustomizeClusterName(target.Name, chain)
|
2019-08-02 03:03:34 +00:00
|
|
|
|
2019-08-05 18:30:35 +00:00
|
|
|
if failoverThroughMeshGateway {
|
|
|
|
actualTargetID := firstHealthyTarget(
|
|
|
|
chain.Targets,
|
2020-04-16 21:00:48 +00:00
|
|
|
chainEndpoints,
|
2019-08-05 18:30:35 +00:00
|
|
|
targetID,
|
|
|
|
failover.Targets,
|
|
|
|
)
|
|
|
|
|
|
|
|
if actualTargetID != targetID {
|
|
|
|
actualTarget := chain.Targets[actualTargetID]
|
2019-08-19 18:03:03 +00:00
|
|
|
sni = actualTarget.SNI
|
2019-08-05 18:30:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-28 23:50:41 +00:00
|
|
|
s.Logger.Debug("generating cluster for", "cluster", clusterName)
|
2021-02-26 22:23:15 +00:00
|
|
|
c := &envoy_cluster_v3.Cluster{
|
2019-08-02 03:03:34 +00:00
|
|
|
Name: clusterName,
|
|
|
|
AltStatName: clusterName,
|
2020-06-23 20:19:56 +00:00
|
|
|
ConnectTimeout: ptypes.DurationProto(node.Resolver.ConnectTimeout),
|
2021-02-26 22:23:15 +00:00
|
|
|
ClusterDiscoveryType: &envoy_cluster_v3.Cluster_Type{Type: envoy_cluster_v3.Cluster_EDS},
|
|
|
|
CommonLbConfig: &envoy_cluster_v3.Cluster_CommonLbConfig{
|
|
|
|
HealthyPanicThreshold: &envoy_type_v3.Percent{
|
2019-07-02 03:10:51 +00:00
|
|
|
Value: 0, // disable panic threshold
|
|
|
|
},
|
|
|
|
},
|
2021-02-26 22:23:15 +00:00
|
|
|
EdsClusterConfig: &envoy_cluster_v3.Cluster_EdsClusterConfig{
|
|
|
|
EdsConfig: &envoy_core_v3.ConfigSource{
|
|
|
|
ResourceApiVersion: envoy_core_v3.ApiVersion_V3,
|
|
|
|
ConfigSourceSpecifier: &envoy_core_v3.ConfigSource_Ads{
|
|
|
|
Ads: &envoy_core_v3.AggregatedConfigSource{},
|
2019-07-02 03:10:51 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-02-26 22:23:15 +00:00
|
|
|
CircuitBreakers: &envoy_cluster_v3.CircuitBreakers{
|
2019-12-03 20:13:33 +00:00
|
|
|
Thresholds: makeThresholdsIfNeeded(cfg.Limits),
|
|
|
|
},
|
2020-04-27 18:53:21 +00:00
|
|
|
OutlierDetection: cfg.PassiveHealthCheck.AsOutlierDetection(),
|
2019-07-02 03:10:51 +00:00
|
|
|
}
|
2019-07-08 11:48:48 +00:00
|
|
|
|
2020-09-11 15:21:43 +00:00
|
|
|
var lb *structs.LoadBalancer
|
2020-09-02 15:10:50 +00:00
|
|
|
if node.LoadBalancer != nil {
|
2020-09-11 15:21:43 +00:00
|
|
|
lb = node.LoadBalancer
|
2020-09-02 15:10:50 +00:00
|
|
|
}
|
2020-09-02 21:13:50 +00:00
|
|
|
if err := injectLBToCluster(lb, c); err != nil {
|
2020-09-02 15:10:50 +00:00
|
|
|
return nil, fmt.Errorf("failed to apply load balancer configuration to cluster %q: %v", clusterName, err)
|
2020-08-28 20:27:40 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 11:48:48 +00:00
|
|
|
proto := cfg.Protocol
|
|
|
|
if proto == "" {
|
|
|
|
proto = chain.Protocol
|
|
|
|
}
|
|
|
|
|
|
|
|
if proto == "" {
|
|
|
|
proto = "tcp"
|
|
|
|
}
|
|
|
|
|
|
|
|
if proto == "http2" || proto == "grpc" {
|
2021-02-26 22:23:15 +00:00
|
|
|
c.Http2ProtocolOptions = &envoy_core_v3.Http2ProtocolOptions{}
|
2019-07-02 03:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enable TLS upstream with the configured client certificate.
|
2021-02-26 22:23:15 +00:00
|
|
|
tlsContext := &envoy_tls_v3.UpstreamTlsContext{
|
2020-04-27 22:25:37 +00:00
|
|
|
CommonTlsContext: makeCommonTLSContextFromLeaf(cfgSnap, cfgSnap.Leaf()),
|
2019-08-19 18:03:03 +00:00
|
|
|
Sni: sni,
|
2019-07-02 03:10:51 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 21:00:15 +00:00
|
|
|
transportSocket, err := makeUpstreamTLSTransportSocket(tlsContext)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
c.TransportSocket = transportSocket
|
|
|
|
|
2019-07-02 03:10:51 +00:00
|
|
|
out = append(out, c)
|
|
|
|
}
|
|
|
|
|
2019-08-22 20:11:56 +00:00
|
|
|
if escapeHatchCluster != nil {
|
|
|
|
if len(out) != 1 {
|
|
|
|
return nil, fmt.Errorf("cannot inject escape hatch cluster when discovery chain had no nodes")
|
|
|
|
}
|
|
|
|
defaultCluster := out[0]
|
|
|
|
|
|
|
|
// Overlay what the user provided.
|
2021-02-22 21:00:15 +00:00
|
|
|
escapeHatchCluster.TransportSocket = defaultCluster.TransportSocket
|
2019-08-22 20:11:56 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
out = []*envoy_cluster_v3.Cluster{escapeHatchCluster}
|
2019-08-22 20:11:56 +00:00
|
|
|
}
|
|
|
|
|
2019-07-02 03:10:51 +00:00
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2019-02-19 13:45:33 +00:00
|
|
|
// makeClusterFromUserConfig returns the listener config decoded from an
|
|
|
|
// arbitrary proto3 json format string or an error if it's invalid.
|
|
|
|
//
|
|
|
|
// For now we only support embedding in JSON strings because of the hcl parsing
|
2020-06-09 21:43:05 +00:00
|
|
|
// pain (see Background section in the comment for decode.HookWeakDecodeFromSlice).
|
|
|
|
// This may be fixed in decode.HookWeakDecodeFromSlice in the future.
|
2019-02-19 13:45:33 +00:00
|
|
|
//
|
|
|
|
// When we do that we can support just nesting the config directly into the
|
|
|
|
// JSON/hcl naturally but this is a stop-gap that gets us an escape hatch
|
|
|
|
// immediately. It's also probably not a bad thing to support long-term since
|
|
|
|
// any config generated by other systems will likely be in canonical protobuf
|
|
|
|
// from rather than our slight variant in JSON/hcl.
|
2021-02-26 22:23:15 +00:00
|
|
|
func makeClusterFromUserConfig(configJSON string) (*envoy_cluster_v3.Cluster, error) {
|
|
|
|
// Type field is present so decode it as a types.Any
|
|
|
|
var any any.Any
|
|
|
|
err := jsonpb.UnmarshalString(configJSON, &any)
|
|
|
|
if err != nil {
|
2019-02-19 13:45:33 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
// And then unmarshal the listener again...
|
|
|
|
var c envoy_cluster_v3.Cluster
|
|
|
|
err = proto.Unmarshal(any.Value, &c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-02-19 13:45:33 +00:00
|
|
|
}
|
|
|
|
return &c, err
|
2018-10-03 18:18:55 +00:00
|
|
|
}
|
2019-06-18 00:52:01 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
type gatewayClusterOpts struct {
|
|
|
|
// name for the cluster
|
|
|
|
name string
|
|
|
|
|
|
|
|
// isRemote determines whether the cluster is in a remote DC and we should prefer a WAN address
|
|
|
|
isRemote bool
|
|
|
|
|
|
|
|
// onlyPassing determines whether endpoints that do not have a passing status should be considered unhealthy
|
|
|
|
onlyPassing bool
|
2020-03-17 19:50:14 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
// connectTimeout is the timeout for new network connections to hosts in the cluster
|
|
|
|
connectTimeout time.Duration
|
2020-04-27 22:25:37 +00:00
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
// hostnameEndpoints is a list of endpoints with a hostname as their address
|
|
|
|
hostnameEndpoints structs.CheckServiceNodes
|
|
|
|
}
|
|
|
|
|
2020-06-12 19:46:17 +00:00
|
|
|
// makeGatewayCluster creates an Envoy cluster for a mesh or terminating gateway
|
2021-02-26 22:23:15 +00:00
|
|
|
func (s *Server) makeGatewayCluster(snap *proxycfg.ConfigSnapshot, opts gatewayClusterOpts) *envoy_cluster_v3.Cluster {
|
2020-06-03 21:28:45 +00:00
|
|
|
cfg, err := ParseGatewayConfig(snap.Proxy.Config)
|
2019-06-18 00:52:01 +00:00
|
|
|
if err != nil {
|
|
|
|
// Don't hard fail on a config typo, just warn. The parse func returns
|
|
|
|
// default config if there is an error so it's safe to continue.
|
2020-04-13 16:33:01 +00:00
|
|
|
s.Logger.Warn("failed to parse gateway config", "error", err)
|
2019-06-18 00:52:01 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
if opts.connectTimeout <= 0 {
|
|
|
|
opts.connectTimeout = time.Duration(cfg.ConnectTimeoutMs) * time.Millisecond
|
|
|
|
}
|
2019-06-18 00:52:01 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
cluster := &envoy_cluster_v3.Cluster{
|
2020-06-03 21:28:45 +00:00
|
|
|
Name: opts.name,
|
2020-06-23 20:19:56 +00:00
|
|
|
ConnectTimeout: ptypes.DurationProto(opts.connectTimeout),
|
2020-06-03 21:28:45 +00:00
|
|
|
|
|
|
|
// Having an empty config enables outlier detection with default config.
|
2021-02-26 22:23:15 +00:00
|
|
|
OutlierDetection: &envoy_cluster_v3.OutlierDetection{},
|
2020-03-17 19:50:14 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 21:28:45 +00:00
|
|
|
useEDS := true
|
|
|
|
if len(opts.hostnameEndpoints) > 0 {
|
|
|
|
useEDS = false
|
|
|
|
}
|
|
|
|
|
|
|
|
// If none of the service instances are addressed by a hostname we provide the endpoint IP addresses via EDS
|
|
|
|
if useEDS {
|
2021-02-26 22:23:15 +00:00
|
|
|
cluster.ClusterDiscoveryType = &envoy_cluster_v3.Cluster_Type{Type: envoy_cluster_v3.Cluster_EDS}
|
|
|
|
cluster.EdsClusterConfig = &envoy_cluster_v3.Cluster_EdsClusterConfig{
|
|
|
|
EdsConfig: &envoy_core_v3.ConfigSource{
|
|
|
|
ResourceApiVersion: envoy_core_v3.ApiVersion_V3,
|
|
|
|
ConfigSourceSpecifier: &envoy_core_v3.ConfigSource_Ads{
|
|
|
|
Ads: &envoy_core_v3.AggregatedConfigSource{},
|
2019-06-18 00:52:01 +00:00
|
|
|
},
|
|
|
|
},
|
2020-06-03 21:28:45 +00:00
|
|
|
}
|
|
|
|
return cluster
|
|
|
|
}
|
|
|
|
|
|
|
|
// When a service instance is addressed by a hostname we have Envoy do the DNS resolution
|
|
|
|
// by setting a DNS cluster type and passing the hostname endpoints via CDS.
|
|
|
|
rate := 10 * time.Second
|
2020-06-23 20:19:56 +00:00
|
|
|
cluster.DnsRefreshRate = ptypes.DurationProto(rate)
|
2021-02-26 22:23:15 +00:00
|
|
|
cluster.DnsLookupFamily = envoy_cluster_v3.Cluster_V4_ONLY
|
2020-06-03 21:28:45 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
discoveryType := envoy_cluster_v3.Cluster_Type{Type: envoy_cluster_v3.Cluster_LOGICAL_DNS}
|
2020-06-03 21:28:45 +00:00
|
|
|
if cfg.DNSDiscoveryType == "strict_dns" {
|
2021-02-26 22:23:15 +00:00
|
|
|
discoveryType.Type = envoy_cluster_v3.Cluster_STRICT_DNS
|
2020-04-27 22:25:37 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
cluster.ClusterDiscoveryType = &discoveryType
|
2020-04-27 22:25:37 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
endpoints := make([]*envoy_endpoint_v3.LbEndpoint, 0, 1)
|
2020-06-12 19:46:17 +00:00
|
|
|
uniqueHostnames := make(map[string]bool)
|
2020-06-03 21:28:45 +00:00
|
|
|
|
2020-06-12 19:46:17 +00:00
|
|
|
var (
|
|
|
|
hostname string
|
|
|
|
idx int
|
2021-02-26 22:23:15 +00:00
|
|
|
fallback *envoy_endpoint_v3.LbEndpoint
|
2020-06-12 19:46:17 +00:00
|
|
|
)
|
|
|
|
for i, e := range opts.hostnameEndpoints {
|
|
|
|
addr, port := e.BestAddress(opts.isRemote)
|
|
|
|
uniqueHostnames[addr] = true
|
|
|
|
|
|
|
|
health, weight := calculateEndpointHealthAndWeight(e, opts.onlyPassing)
|
2021-02-26 22:23:15 +00:00
|
|
|
if health == envoy_core_v3.HealthStatus_UNHEALTHY {
|
2020-06-19 19:31:39 +00:00
|
|
|
fallback = makeLbEndpoint(addr, port, health, weight)
|
2020-06-12 19:46:17 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(endpoints) == 0 {
|
|
|
|
endpoints = append(endpoints, makeLbEndpoint(addr, port, health, weight))
|
|
|
|
|
|
|
|
hostname = addr
|
|
|
|
idx = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dc := opts.hostnameEndpoints[idx].Node.Datacenter
|
|
|
|
service := opts.hostnameEndpoints[idx].Service.CompoundServiceName()
|
|
|
|
|
|
|
|
loggerName := logging.TerminatingGateway
|
|
|
|
if snap.Kind == structs.ServiceKindMeshGateway {
|
|
|
|
loggerName = logging.MeshGateway
|
|
|
|
}
|
|
|
|
|
2020-06-19 19:31:39 +00:00
|
|
|
// Fall back to last unhealthy endpoint if none were healthy
|
2020-06-12 19:46:17 +00:00
|
|
|
if len(endpoints) == 0 {
|
2020-06-19 19:31:39 +00:00
|
|
|
s.Logger.Named(loggerName).Warn("upstream service does not contain any healthy instances",
|
|
|
|
"dc", dc, "service", service.String())
|
2020-06-12 19:46:17 +00:00
|
|
|
|
2020-06-19 19:31:39 +00:00
|
|
|
endpoints = append(endpoints, fallback)
|
2020-06-12 19:46:17 +00:00
|
|
|
}
|
|
|
|
if len(uniqueHostnames) > 1 {
|
|
|
|
s.Logger.Named(loggerName).
|
|
|
|
Warn(fmt.Sprintf("service contains instances with more than one unique hostname; only %q be resolved by Envoy", hostname),
|
|
|
|
"dc", dc, "service", service.String())
|
2020-06-03 21:28:45 +00:00
|
|
|
}
|
2020-06-12 19:46:17 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
cluster.LoadAssignment = &envoy_endpoint_v3.ClusterLoadAssignment{
|
2020-06-03 21:28:45 +00:00
|
|
|
ClusterName: cluster.Name,
|
2021-02-26 22:23:15 +00:00
|
|
|
Endpoints: []*envoy_endpoint_v3.LocalityLbEndpoints{
|
2020-06-03 21:28:45 +00:00
|
|
|
{
|
|
|
|
LbEndpoints: endpoints,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return cluster
|
2020-04-27 22:25:37 +00:00
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func makeThresholdsIfNeeded(limits UpstreamLimits) []*envoy_cluster_v3.CircuitBreakers_Thresholds {
|
2019-12-03 20:13:33 +00:00
|
|
|
var empty UpstreamLimits
|
|
|
|
// Make sure to not create any thresholds when passed the zero-value in order
|
|
|
|
// to rely on Envoy defaults
|
|
|
|
if limits == empty {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
threshold := &envoy_cluster_v3.CircuitBreakers_Thresholds{}
|
2019-12-03 20:13:33 +00:00
|
|
|
// Likewise, make sure to not set any threshold values on the zero-value in
|
|
|
|
// order to rely on Envoy defaults
|
|
|
|
if limits.MaxConnections != nil {
|
|
|
|
threshold.MaxConnections = makeUint32Value(*limits.MaxConnections)
|
|
|
|
}
|
|
|
|
if limits.MaxPendingRequests != nil {
|
|
|
|
threshold.MaxPendingRequests = makeUint32Value(*limits.MaxPendingRequests)
|
|
|
|
}
|
|
|
|
if limits.MaxConcurrentRequests != nil {
|
|
|
|
threshold.MaxRequests = makeUint32Value(*limits.MaxConcurrentRequests)
|
|
|
|
}
|
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
return []*envoy_cluster_v3.CircuitBreakers_Thresholds{threshold}
|
2019-12-03 20:13:33 +00:00
|
|
|
}
|
2020-06-03 21:28:45 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func makeLbEndpoint(addr string, port int, health envoy_core_v3.HealthStatus, weight int) *envoy_endpoint_v3.LbEndpoint {
|
|
|
|
return &envoy_endpoint_v3.LbEndpoint{
|
|
|
|
HostIdentifier: &envoy_endpoint_v3.LbEndpoint_Endpoint{
|
|
|
|
Endpoint: &envoy_endpoint_v3.Endpoint{
|
|
|
|
Address: &envoy_core_v3.Address{
|
|
|
|
Address: &envoy_core_v3.Address_SocketAddress{
|
|
|
|
SocketAddress: &envoy_core_v3.SocketAddress{
|
2020-06-03 21:28:45 +00:00
|
|
|
Address: addr,
|
2021-02-26 22:23:15 +00:00
|
|
|
PortSpecifier: &envoy_core_v3.SocketAddress_PortValue{
|
2020-06-03 21:28:45 +00:00
|
|
|
PortValue: uint32(port),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
HealthStatus: health,
|
|
|
|
LoadBalancingWeight: makeUint32Value(weight),
|
|
|
|
}
|
|
|
|
}
|
2020-09-02 21:13:50 +00:00
|
|
|
|
2021-02-26 22:23:15 +00:00
|
|
|
func injectLBToCluster(ec *structs.LoadBalancer, c *envoy_cluster_v3.Cluster) error {
|
2020-09-02 21:13:50 +00:00
|
|
|
if ec == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ec.Policy {
|
|
|
|
case "":
|
|
|
|
return nil
|
|
|
|
case structs.LBPolicyLeastRequest:
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbPolicy = envoy_cluster_v3.Cluster_LEAST_REQUEST
|
2020-09-02 21:13:50 +00:00
|
|
|
|
|
|
|
if ec.LeastRequestConfig != nil {
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbConfig = &envoy_cluster_v3.Cluster_LeastRequestLbConfig_{
|
|
|
|
LeastRequestLbConfig: &envoy_cluster_v3.Cluster_LeastRequestLbConfig{
|
2020-09-02 21:13:50 +00:00
|
|
|
ChoiceCount: &wrappers.UInt32Value{Value: ec.LeastRequestConfig.ChoiceCount},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case structs.LBPolicyRoundRobin:
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbPolicy = envoy_cluster_v3.Cluster_ROUND_ROBIN
|
2020-09-02 21:13:50 +00:00
|
|
|
|
|
|
|
case structs.LBPolicyRandom:
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbPolicy = envoy_cluster_v3.Cluster_RANDOM
|
2020-09-02 21:13:50 +00:00
|
|
|
|
|
|
|
case structs.LBPolicyRingHash:
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbPolicy = envoy_cluster_v3.Cluster_RING_HASH
|
2020-09-02 21:13:50 +00:00
|
|
|
|
|
|
|
if ec.RingHashConfig != nil {
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbConfig = &envoy_cluster_v3.Cluster_RingHashLbConfig_{
|
|
|
|
RingHashLbConfig: &envoy_cluster_v3.Cluster_RingHashLbConfig{
|
2020-09-02 21:13:50 +00:00
|
|
|
MinimumRingSize: &wrappers.UInt64Value{Value: ec.RingHashConfig.MinimumRingSize},
|
|
|
|
MaximumRingSize: &wrappers.UInt64Value{Value: ec.RingHashConfig.MaximumRingSize},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case structs.LBPolicyMaglev:
|
2021-02-26 22:23:15 +00:00
|
|
|
c.LbPolicy = envoy_cluster_v3.Cluster_MAGLEV
|
2020-09-02 21:13:50 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unsupported load balancer policy %q for cluster %q", ec.Policy, c.Name)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|