2020-05-07 10:25:58 +02:00
|
|
|
package cluster
|
2019-03-25 01:02:10 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"encoding/base64"
|
|
|
|
"fmt"
|
2020-05-21 17:50:50 +02:00
|
|
|
"net"
|
2019-03-25 01:02:10 +01:00
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
2020-05-07 10:25:58 +02:00
|
|
|
"github.com/costela/wesher/common"
|
2019-03-25 01:02:10 +01:00
|
|
|
"github.com/hashicorp/memberlist"
|
2020-01-31 19:31:50 +01:00
|
|
|
"github.com/mattn/go-isatty"
|
2020-04-19 13:37:49 +02:00
|
|
|
"github.com/pkg/errors"
|
2019-03-25 01:02:10 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2020-05-07 14:33:29 +02:00
|
|
|
// KeyLen is the fixed length of cluster keys, must be checked by callers
|
2020-05-07 10:25:58 +02:00
|
|
|
const KeyLen = 32
|
|
|
|
|
2020-05-07 14:33:29 +02:00
|
|
|
// Cluster represents a running cluster configuration
|
2020-05-07 10:25:58 +02:00
|
|
|
type Cluster struct {
|
2020-05-15 10:17:11 +02:00
|
|
|
name string
|
2019-03-25 01:02:10 +01:00
|
|
|
ml *memberlist.Memberlist
|
2020-05-09 16:34:12 +02:00
|
|
|
mlConfig *memberlist.Config
|
2020-05-10 17:37:06 +02:00
|
|
|
localNode *common.Node
|
2020-05-12 19:10:25 +02:00
|
|
|
LocalName string
|
2020-05-10 16:48:20 +02:00
|
|
|
state *state
|
2019-03-25 01:02:10 +01:00
|
|
|
events chan memberlist.NodeEvent
|
|
|
|
}
|
|
|
|
|
2020-05-07 14:33:29 +02:00
|
|
|
// New is used to create a new Cluster instance
|
|
|
|
// The returned instance is ready to be updated with the local node settings then joined
|
2020-05-15 10:17:11 +02:00
|
|
|
func New(name string, init bool, clusterKey []byte, bindAddr string, bindPort int, useIPAsName bool) (*Cluster, error) {
|
2020-05-10 16:48:20 +02:00
|
|
|
state := &state{}
|
2020-05-06 19:19:55 +02:00
|
|
|
if !init {
|
2020-05-15 10:17:11 +02:00
|
|
|
loadState(state, name)
|
2019-03-27 22:25:14 +01:00
|
|
|
}
|
2019-03-25 01:02:10 +01:00
|
|
|
|
2020-05-06 18:56:27 +02:00
|
|
|
clusterKey, err := computeClusterKey(state, clusterKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
mlConfig := memberlist.DefaultWANConfig()
|
|
|
|
mlConfig.LogOutput = logrus.StandardLogger().WriterLevel(logrus.DebugLevel)
|
|
|
|
mlConfig.SecretKey = clusterKey
|
2019-07-21 23:00:18 +02:00
|
|
|
mlConfig.BindAddr = bindAddr
|
2020-05-06 19:19:55 +02:00
|
|
|
mlConfig.BindPort = bindPort
|
|
|
|
mlConfig.AdvertisePort = bindPort
|
|
|
|
if useIPAsName && bindAddr != "0.0.0.0" {
|
|
|
|
mlConfig.Name = bindAddr
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ml, err := memberlist.Create(mlConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:25:58 +02:00
|
|
|
cluster := Cluster{
|
2020-05-15 10:17:11 +02:00
|
|
|
name: name,
|
2020-05-12 19:10:25 +02:00
|
|
|
ml: ml,
|
|
|
|
mlConfig: mlConfig,
|
|
|
|
LocalName: ml.LocalNode().Name,
|
2019-08-24 20:27:58 +02:00
|
|
|
// The big channel buffer is a work-around for https://github.com/hashicorp/memberlist/issues/23
|
|
|
|
// More than this many simultaneous events will deadlock cluster.members()
|
2020-05-15 10:17:11 +02:00
|
|
|
events: make(chan memberlist.NodeEvent, 100),
|
|
|
|
state: state,
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
return &cluster, nil
|
|
|
|
}
|
|
|
|
|
2020-05-10 17:37:06 +02:00
|
|
|
// Name provides the current cluster name
|
|
|
|
func (c *Cluster) Name() string {
|
|
|
|
return c.localNode.Name
|
|
|
|
}
|
|
|
|
|
2020-05-21 17:50:50 +02:00
|
|
|
// Join tries to join the cluster by contacting provided ips.
|
|
|
|
// If no ip is provided, ips of known nodes are used instead.
|
|
|
|
// Only addresses that are not already members are joined.
|
|
|
|
func (c *Cluster) Join(hosts []string) error {
|
|
|
|
addrs := make([]net.IP, 0, len(hosts))
|
|
|
|
|
|
|
|
// resolve hostnames so we are able to proerly filter out
|
|
|
|
// cluster members later
|
|
|
|
for _, host := range hosts {
|
|
|
|
if addr := net.ParseIP(host); addr != nil {
|
|
|
|
addrs = append(addrs, addr)
|
|
|
|
} else if ips, err := net.LookupIP(host); err == nil {
|
|
|
|
addrs = append(addrs, ips...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add known hosts if necessary
|
2019-03-25 01:02:10 +01:00
|
|
|
if len(addrs) == 0 {
|
|
|
|
for _, n := range c.state.Nodes {
|
2020-05-21 17:50:50 +02:00
|
|
|
addrs = append(addrs, n.Addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// filter out addresses that are already members
|
|
|
|
targets := make([]string, 0, len(addrs))
|
|
|
|
members := c.ml.Members()
|
|
|
|
AddrLoop:
|
|
|
|
for _, addr := range addrs {
|
|
|
|
for _, member := range members {
|
|
|
|
if member.Addr.Equal(addr) {
|
|
|
|
continue AddrLoop
|
|
|
|
}
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
2020-05-21 17:50:50 +02:00
|
|
|
targets = append(targets, addr.String())
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
|
2020-05-21 17:50:50 +02:00
|
|
|
// finally try and join any remaining address
|
|
|
|
if _, err := c.ml.Join(targets); err != nil {
|
2019-03-25 01:02:10 +01:00
|
|
|
return err
|
2020-05-21 17:50:50 +02:00
|
|
|
} else if len(targets) > 0 && c.ml.NumMembers() < 2 {
|
2019-03-25 01:02:10 +01:00
|
|
|
return errors.New("could not join to any of the provided addresses")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-07 14:33:29 +02:00
|
|
|
// Leave saves the current state before leaving, then leaves the cluster
|
2020-05-07 10:25:58 +02:00
|
|
|
func (c *Cluster) Leave() {
|
2020-05-15 10:17:11 +02:00
|
|
|
c.state.save(c.name)
|
2019-03-25 01:02:10 +01:00
|
|
|
c.ml.Leave(10 * time.Second)
|
2020-04-19 13:37:49 +02:00
|
|
|
c.ml.Shutdown() //nolint: errcheck
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:37:06 +02:00
|
|
|
// Update gossips the local node configuration, propagating any change
|
2020-05-12 19:10:25 +02:00
|
|
|
func (c *Cluster) Update(localNode *common.Node) {
|
|
|
|
c.localNode = localNode
|
|
|
|
// wrap in a delegateNode instance for memberlist.Delegate implementation
|
|
|
|
delegate := &delegateNode{c.localNode}
|
|
|
|
c.mlConfig.Conflict = delegate
|
|
|
|
c.mlConfig.Delegate = delegate
|
|
|
|
c.mlConfig.Events = &memberlist.ChannelEventDelegate{Ch: c.events}
|
2020-05-06 19:14:33 +02:00
|
|
|
c.ml.UpdateNode(1 * time.Second) // we currently do not update after creation
|
|
|
|
}
|
|
|
|
|
2020-05-07 14:33:29 +02:00
|
|
|
// Members provides a channel notifying of cluster changes
|
|
|
|
// Everytime a change happens inside the cluster (except for local changes),
|
|
|
|
// the updated list of cluster nodes is pushed to the channel.
|
2020-05-07 10:25:58 +02:00
|
|
|
func (c *Cluster) Members() <-chan []common.Node {
|
|
|
|
changes := make(chan []common.Node)
|
2019-03-25 01:02:10 +01:00
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
event := <-c.events
|
2020-05-12 19:10:25 +02:00
|
|
|
if event.Node.Name == c.LocalName {
|
2019-03-25 01:02:10 +01:00
|
|
|
// ignore events about ourselves
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch event.Event {
|
|
|
|
case memberlist.NodeJoin:
|
|
|
|
logrus.Infof("node %s joined", event.Node)
|
|
|
|
case memberlist.NodeUpdate:
|
|
|
|
logrus.Infof("node %s updated", event.Node)
|
|
|
|
case memberlist.NodeLeave:
|
|
|
|
logrus.Infof("node %s left", event.Node)
|
|
|
|
}
|
|
|
|
|
2020-05-07 10:25:58 +02:00
|
|
|
nodes := make([]common.Node, 0)
|
2019-03-25 01:02:10 +01:00
|
|
|
for _, n := range c.ml.Members() {
|
2020-05-12 19:10:25 +02:00
|
|
|
if n.Name == c.LocalName {
|
2019-03-25 01:02:10 +01:00
|
|
|
continue
|
|
|
|
}
|
2020-05-07 10:25:58 +02:00
|
|
|
nodes = append(nodes, common.Node{
|
2020-05-06 19:27:21 +02:00
|
|
|
Name: n.Name,
|
|
|
|
Addr: n.Addr,
|
|
|
|
Meta: n.Meta,
|
2019-03-25 01:02:10 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
c.state.Nodes = nodes
|
|
|
|
changes <- nodes
|
2020-05-15 10:17:11 +02:00
|
|
|
c.state.save(c.name)
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
}()
|
2020-05-06 19:27:21 +02:00
|
|
|
return changes
|
2019-03-25 01:02:10 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 16:48:20 +02:00
|
|
|
func computeClusterKey(state *state, clusterKey []byte) ([]byte, error) {
|
2020-05-06 18:56:27 +02:00
|
|
|
if len(clusterKey) == 0 {
|
|
|
|
clusterKey = state.ClusterKey
|
|
|
|
}
|
|
|
|
if len(clusterKey) == 0 {
|
2020-05-07 10:25:58 +02:00
|
|
|
clusterKey = make([]byte, KeyLen)
|
2020-05-06 18:56:27 +02:00
|
|
|
_, err := rand.Read(clusterKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-07 09:52:53 +02:00
|
|
|
// TODO: refactor this into subcommand ("showkey"?)
|
2020-05-06 18:56:27 +02:00
|
|
|
if isatty.IsTerminal(os.Stdout.Fd()) {
|
|
|
|
fmt.Printf("new cluster key generated: %s\n", base64.StdEncoding.EncodeToString(clusterKey))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
state.ClusterKey = clusterKey
|
|
|
|
return clusterKey, nil
|
|
|
|
}
|