100 lines
2.5 KiB
Go
100 lines
2.5 KiB
Go
package main // import "github.com/costela/wesher"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/cenkalti/backoff"
|
|
"github.com/costela/wesher/etchosts"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var version = "dev"
|
|
|
|
func main() {
|
|
config, err := loadConfig()
|
|
if err != nil {
|
|
logrus.Fatal(err)
|
|
}
|
|
if config.Version {
|
|
fmt.Println(version)
|
|
os.Exit(0)
|
|
}
|
|
logLevel, err := logrus.ParseLevel(config.LogLevel)
|
|
if err != nil {
|
|
logrus.WithError(err).Fatal("could not parse loglevel")
|
|
}
|
|
logrus.SetLevel(logLevel)
|
|
|
|
wg, err := newWGConfig(config.Interface, config.WireguardPort)
|
|
if err != nil {
|
|
logrus.WithError(err).Fatal("could not instantiate wireguard controller")
|
|
}
|
|
|
|
cluster, err := newCluster(config, wg)
|
|
if err != nil {
|
|
logrus.WithError(err).Fatal("could not create cluster")
|
|
}
|
|
|
|
nodec, errc := cluster.members() // avoid deadlocks by starting before join
|
|
if err := backoff.RetryNotify(
|
|
func() error { return cluster.join(config.Join) },
|
|
backoff.NewExponentialBackOff(),
|
|
func(err error, dur time.Duration) {
|
|
logrus.WithError(err).Errorf("could not join cluster, retrying in %s", dur)
|
|
},
|
|
); err != nil {
|
|
logrus.WithError(err).Fatal("could not join cluster")
|
|
}
|
|
|
|
incomingSigs := make(chan os.Signal, 1)
|
|
signal.Notify(incomingSigs, syscall.SIGTERM, os.Interrupt)
|
|
logrus.Debug("waiting for cluster events")
|
|
for {
|
|
select {
|
|
case nodes := <-nodec:
|
|
logrus.Info("cluster members:\n")
|
|
for _, node := range nodes {
|
|
logrus.Infof("\taddr: %s, overlay: %s, pubkey: %s", node.Addr, node.OverlayAddr, node.PubKey)
|
|
}
|
|
if err := wg.setUpInterface(nodes); err != nil {
|
|
logrus.WithError(err).Error("could not up interface")
|
|
wg.downInterface()
|
|
}
|
|
if !config.NoEtcHosts {
|
|
if err := writeToEtcHosts(nodes); err != nil {
|
|
logrus.WithError(err).Error("could not write hosts entries")
|
|
}
|
|
}
|
|
case errs := <-errc:
|
|
logrus.WithError(errs).Error("could not receive node info")
|
|
case <-incomingSigs:
|
|
logrus.Info("terminating...")
|
|
cluster.leave()
|
|
if !config.NoEtcHosts {
|
|
if err := writeToEtcHosts(nil); err != nil {
|
|
logrus.WithError(err).Error("could not remove stale hosts entries")
|
|
}
|
|
}
|
|
if err := wg.downInterface(); err != nil {
|
|
logrus.WithError(err).Error("could not down interface")
|
|
}
|
|
os.Exit(0)
|
|
}
|
|
}
|
|
}
|
|
|
|
func writeToEtcHosts(nodes []node) error {
|
|
hosts := make(map[string][]string, len(nodes))
|
|
for _, n := range nodes {
|
|
hosts[n.OverlayAddr.IP.String()] = []string{n.Name}
|
|
}
|
|
hostsFile := &etchosts.EtcHosts{
|
|
Logger: logrus.StandardLogger(),
|
|
}
|
|
return hostsFile.WriteEntries(hosts)
|
|
}
|