2017-07-06 10:48:37 +00:00
|
|
|
package metadata
|
2016-02-20 01:26:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
2017-03-21 23:36:44 +00:00
|
|
|
"regexp"
|
2016-02-20 01:26:45 +00:00
|
|
|
"strconv"
|
2017-08-14 14:36:07 +00:00
|
|
|
"strings"
|
2016-02-20 01:26:45 +00:00
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2017-03-21 23:36:44 +00:00
|
|
|
"github.com/hashicorp/go-version"
|
2016-02-20 01:26:45 +00:00
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
)
|
|
|
|
|
2016-03-27 00:58:12 +00:00
|
|
|
// Key is used in maps and for equality tests. A key is based on endpoints.
|
|
|
|
type Key struct {
|
2016-03-28 19:53:19 +00:00
|
|
|
name string
|
2016-03-27 00:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Equal compares two Key objects
|
|
|
|
func (k *Key) Equal(x *Key) bool {
|
2016-03-28 19:53:19 +00:00
|
|
|
return k.name == x.name
|
2016-03-27 00:58:12 +00:00
|
|
|
}
|
|
|
|
|
2016-03-30 00:39:19 +00:00
|
|
|
// Server is used to return details of a consul server
|
|
|
|
type Server struct {
|
2020-03-09 20:59:02 +00:00
|
|
|
Name string // <node>.<dc>
|
|
|
|
ShortName string // <node>
|
2017-08-14 14:36:07 +00:00
|
|
|
ID string
|
|
|
|
Datacenter string
|
|
|
|
Segment string
|
|
|
|
Port int
|
2017-08-30 01:27:47 +00:00
|
|
|
SegmentAddrs map[string]string
|
2017-08-14 14:36:07 +00:00
|
|
|
SegmentPorts map[string]int
|
|
|
|
WanJoinPort int
|
|
|
|
Bootstrap bool
|
|
|
|
Expect int
|
|
|
|
Build version.Version
|
|
|
|
Version int
|
|
|
|
RaftVersion int
|
|
|
|
Addr net.Addr
|
|
|
|
Status serf.MemberStatus
|
2020-11-17 15:53:57 +00:00
|
|
|
ReadReplica bool
|
2018-10-19 16:04:07 +00:00
|
|
|
ACLs structs.ACLMode
|
2020-01-29 18:21:38 +00:00
|
|
|
FeatureFlags map[string]int
|
2017-05-10 21:25:48 +00:00
|
|
|
|
|
|
|
// If true, use TLS when connecting to this server
|
|
|
|
UseTLS bool
|
2016-02-20 01:26:45 +00:00
|
|
|
}
|
|
|
|
|
2016-03-27 00:58:12 +00:00
|
|
|
// Key returns the corresponding Key
|
2016-03-30 00:39:19 +00:00
|
|
|
func (s *Server) Key() *Key {
|
2016-03-27 00:58:12 +00:00
|
|
|
return &Key{
|
2016-03-28 19:53:19 +00:00
|
|
|
name: s.Name,
|
2016-03-27 00:58:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 00:39:19 +00:00
|
|
|
// String returns a string representation of Server
|
|
|
|
func (s *Server) String() string {
|
2016-03-27 08:32:04 +00:00
|
|
|
var addrStr, networkStr string
|
2016-03-27 02:30:04 +00:00
|
|
|
if s.Addr != nil {
|
2016-03-27 08:32:04 +00:00
|
|
|
addrStr = s.Addr.String()
|
|
|
|
networkStr = s.Addr.Network()
|
2016-03-27 02:30:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 18:37:25 +00:00
|
|
|
return fmt.Sprintf("%s (Addr: %s/%s) (DC: %s)", s.Name, networkStr, addrStr, s.Datacenter)
|
2016-02-20 01:26:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-21 23:36:44 +00:00
|
|
|
var versionFormat = regexp.MustCompile(`\d+\.\d+\.\d+`)
|
|
|
|
|
2016-03-30 00:39:19 +00:00
|
|
|
// IsConsulServer returns true if a serf member is a consul server
|
|
|
|
// agent. Returns a bool and a pointer to the Server.
|
|
|
|
func IsConsulServer(m serf.Member) (bool, *Server) {
|
2016-02-20 01:26:45 +00:00
|
|
|
if m.Tags["role"] != "consul" {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
datacenter := m.Tags["dc"]
|
2017-08-14 14:36:07 +00:00
|
|
|
segment := m.Tags["segment"]
|
2016-02-20 01:26:45 +00:00
|
|
|
_, bootstrap := m.Tags["bootstrap"]
|
2017-05-10 21:25:48 +00:00
|
|
|
_, useTLS := m.Tags["use_tls"]
|
|
|
|
|
2016-02-20 01:26:45 +00:00
|
|
|
expect := 0
|
2018-01-28 18:40:13 +00:00
|
|
|
expectStr, ok := m.Tags["expect"]
|
2016-02-20 01:26:45 +00:00
|
|
|
var err error
|
|
|
|
if ok {
|
2018-01-28 18:40:13 +00:00
|
|
|
expect, err = strconv.Atoi(expectStr)
|
2016-02-20 01:26:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
portStr := m.Tags["port"]
|
|
|
|
port, err := strconv.Atoi(portStr)
|
2016-02-20 01:26:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:04:07 +00:00
|
|
|
var acls structs.ACLMode
|
|
|
|
if aclMode, ok := m.Tags["acls"]; ok {
|
|
|
|
acls = structs.ACLMode(aclMode)
|
|
|
|
} else {
|
|
|
|
acls = structs.ACLModeUnknown
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
segmentAddrs := make(map[string]string)
|
|
|
|
segmentPorts := make(map[string]int)
|
2020-01-29 18:21:38 +00:00
|
|
|
featureFlags := make(map[string]int)
|
2017-08-14 14:36:07 +00:00
|
|
|
for name, value := range m.Tags {
|
2017-09-01 00:39:46 +00:00
|
|
|
if strings.HasPrefix(name, "sl_") {
|
|
|
|
addr, port, err := net.SplitHostPort(value)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
2018-01-28 18:40:13 +00:00
|
|
|
segmentPort, err := strconv.Atoi(port)
|
2017-08-14 14:36:07 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
2017-09-01 00:39:46 +00:00
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
segmentName := strings.TrimPrefix(name, "sl_")
|
|
|
|
segmentAddrs[segmentName] = addr
|
|
|
|
segmentPorts[segmentName] = segmentPort
|
2020-01-29 18:21:38 +00:00
|
|
|
} else if strings.HasPrefix(name, "ft_") {
|
|
|
|
featureName := strings.TrimPrefix(name, "ft_")
|
|
|
|
featureState, err := strconv.Atoi(value)
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
featureFlags[featureName] = featureState
|
2017-08-14 14:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
buildVersion, err := Build(&m)
|
2017-03-21 23:36:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
wanJoinPort := 0
|
|
|
|
wanJoinPortStr, ok := m.Tags["wan_join_port"]
|
2017-03-15 19:26:54 +00:00
|
|
|
if ok {
|
2018-01-28 18:40:13 +00:00
|
|
|
wanJoinPort, err = strconv.Atoi(wanJoinPortStr)
|
2017-03-15 19:26:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
vsnStr := m.Tags["vsn"]
|
|
|
|
vsn, err := strconv.Atoi(vsnStr)
|
2016-02-20 01:26:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:40:13 +00:00
|
|
|
raftVsn := 0
|
2018-01-28 18:48:21 +00:00
|
|
|
raftVsnStr, ok := m.Tags["raft_vsn"]
|
2017-03-14 17:43:43 +00:00
|
|
|
if ok {
|
2018-01-28 18:48:21 +00:00
|
|
|
raftVsn, err = strconv.Atoi(raftVsnStr)
|
2017-03-14 17:43:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
2017-02-22 20:53:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 00:41:36 +00:00
|
|
|
// Check if the server is a non voter
|
2020-11-17 15:53:57 +00:00
|
|
|
// DEPRECATED - remove looking for the nonvoter tag eventually once we don't have to support
|
|
|
|
// read replicas running v1.8.x and below.
|
2018-09-20 00:41:36 +00:00
|
|
|
_, nonVoter := m.Tags["nonvoter"]
|
2020-11-17 15:53:57 +00:00
|
|
|
_, readReplica := m.Tags["read_replica"]
|
2018-09-20 00:41:36 +00:00
|
|
|
|
2016-02-20 01:26:45 +00:00
|
|
|
addr := &net.TCPAddr{IP: m.Addr, Port: port}
|
|
|
|
|
2016-03-30 00:39:19 +00:00
|
|
|
parts := &Server{
|
2017-08-14 14:36:07 +00:00
|
|
|
Name: m.Name,
|
2020-03-09 20:59:02 +00:00
|
|
|
ShortName: strings.TrimSuffix(m.Name, "."+datacenter),
|
2017-08-14 14:36:07 +00:00
|
|
|
ID: m.Tags["id"],
|
|
|
|
Datacenter: datacenter,
|
|
|
|
Segment: segment,
|
|
|
|
Port: port,
|
2018-01-28 18:40:13 +00:00
|
|
|
SegmentAddrs: segmentAddrs,
|
|
|
|
SegmentPorts: segmentPorts,
|
2018-01-28 18:48:21 +00:00
|
|
|
WanJoinPort: wanJoinPort,
|
2017-08-14 14:36:07 +00:00
|
|
|
Bootstrap: bootstrap,
|
|
|
|
Expect: expect,
|
|
|
|
Addr: addr,
|
2018-01-28 18:40:13 +00:00
|
|
|
Build: *buildVersion,
|
2017-08-14 14:36:07 +00:00
|
|
|
Version: vsn,
|
2018-01-28 18:40:13 +00:00
|
|
|
RaftVersion: raftVsn,
|
2017-08-14 14:36:07 +00:00
|
|
|
Status: m.Status,
|
|
|
|
UseTLS: useTLS,
|
2020-11-17 15:53:57 +00:00
|
|
|
// DEPRECATED - remove nonVoter check once support for that tag is removed
|
|
|
|
ReadReplica: nonVoter || readReplica,
|
2018-10-19 16:04:07 +00:00
|
|
|
ACLs: acls,
|
2020-01-29 18:21:38 +00:00
|
|
|
FeatureFlags: featureFlags,
|
2016-02-20 01:26:45 +00:00
|
|
|
}
|
|
|
|
return true, parts
|
|
|
|
}
|