mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
740 lines
24 KiB
Go
740 lines
24 KiB
Go
package machine
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"net"
|
|
"net/netip"
|
|
"slices"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/cenkalti/backoff/v4"
|
|
"github.com/psviderski/uncloud/internal/machine/api/pb"
|
|
"github.com/psviderski/uncloud/internal/machine/caddyconfig"
|
|
"github.com/psviderski/uncloud/internal/machine/constants"
|
|
"github.com/psviderski/uncloud/internal/machine/corromigrate"
|
|
"github.com/psviderski/uncloud/internal/machine/corroservice"
|
|
"github.com/psviderski/uncloud/internal/machine/dns"
|
|
"github.com/psviderski/uncloud/internal/machine/docker"
|
|
"github.com/psviderski/uncloud/internal/machine/firewall"
|
|
"github.com/psviderski/uncloud/internal/machine/metrics"
|
|
"github.com/psviderski/uncloud/internal/machine/network"
|
|
"github.com/psviderski/uncloud/internal/machine/store"
|
|
"github.com/psviderski/unregistry"
|
|
"golang.org/x/sync/errgroup"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// clusterController is the main controller for the machine that is a cluster member. It manages components such as
|
|
// the WireGuard network, API server listening the WireGuard network, Corrosion service, Docker network and containers,
|
|
// and others.
|
|
type clusterController struct {
|
|
// machine is the parent machine.
|
|
machine *Machine
|
|
state *State
|
|
store *store.Store
|
|
|
|
wgnet *network.WireGuardNetwork
|
|
endpointChanges <-chan network.EndpointChangeEvent
|
|
|
|
server *grpc.Server
|
|
corroService corroservice.Service
|
|
// corrosionDir is the disk path that holds the Corrosion config and data.
|
|
// TODO: remove in 0.22 assuming all pre 0.20 clusters upgraded their pre-v1 Corrosion.
|
|
corrosionDir string
|
|
dockerCtrl *docker.Controller
|
|
// dockerReady is signalled when Docker is configured and ready for containers.
|
|
dockerReady chan<- struct{}
|
|
// clusterReady is signalled when the cluster controller has finished initializing all components.
|
|
clusterReady chan<- struct{}
|
|
caddyconfigCtrl *caddyconfig.Controller
|
|
|
|
// dnsServer is the embedded internal DNS server for the cluster listening on the machine IP.
|
|
dnsServer *dns.Server
|
|
dnsResolver *dns.ClusterResolver
|
|
// unregistry is the embedded container registry that uses the local Docker (containerd) image store as its backend.
|
|
unregistry *unregistry.Registry
|
|
|
|
metricsServer *metrics.Server
|
|
|
|
// stopped is a channel that is closed when the controller is stopped.
|
|
stopped chan struct{}
|
|
}
|
|
|
|
func newClusterController(
|
|
machine *Machine,
|
|
store *store.Store,
|
|
server *grpc.Server,
|
|
corroService corroservice.Service,
|
|
corrosionDir string,
|
|
dockerService *docker.Service,
|
|
dockerReady chan<- struct{},
|
|
clusterReady chan<- struct{},
|
|
caddyfileCtrl *caddyconfig.Controller,
|
|
dnsServer *dns.Server,
|
|
dnsResolver *dns.ClusterResolver,
|
|
unregistry *unregistry.Registry,
|
|
metricsServer *metrics.Server,
|
|
) (*clusterController, error) {
|
|
slog.Info("Starting WireGuard network.")
|
|
wgnet, err := network.NewWireGuardNetwork()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("create WireGuard network: %w", err)
|
|
}
|
|
endpointChanges := wgnet.WatchEndpoints()
|
|
|
|
return &clusterController{
|
|
machine: machine,
|
|
state: machine.state,
|
|
store: store,
|
|
wgnet: wgnet,
|
|
endpointChanges: endpointChanges,
|
|
server: server,
|
|
corroService: corroService,
|
|
corrosionDir: corrosionDir,
|
|
dockerCtrl: docker.NewController(machine.state.ID, dockerService, store),
|
|
dockerReady: dockerReady,
|
|
clusterReady: clusterReady,
|
|
caddyconfigCtrl: caddyfileCtrl,
|
|
dnsServer: dnsServer,
|
|
dnsResolver: dnsResolver,
|
|
unregistry: unregistry,
|
|
metricsServer: metricsServer,
|
|
stopped: make(chan struct{}),
|
|
}, nil
|
|
}
|
|
|
|
func (cc *clusterController) Run(ctx context.Context) error {
|
|
defer close(cc.stopped)
|
|
|
|
if err := firewall.ConfigureIptablesChains(network.MachineIP(cc.state.Network.Subnet),
|
|
cc.state.Network.EffectiveWireGuardPort()); err != nil {
|
|
return fmt.Errorf("configure iptables chains: %w", err)
|
|
}
|
|
|
|
if err := cc.ensureDockerNetwork(ctx); err != nil {
|
|
return err
|
|
}
|
|
slog.Info("Docker network configured.")
|
|
|
|
if err := cc.wgnet.Configure(*cc.state.Network); err != nil {
|
|
return fmt.Errorf("configure WireGuard network: %w", err)
|
|
}
|
|
slog.Info("WireGuard network configured.")
|
|
|
|
if cc.corroService.Running() {
|
|
// Corrosion service was running before the WireGuard network was configured so we need to restart it.
|
|
slog.Info("Restarting corrosion service to apply new configuration with WireGuard network.")
|
|
if err := cc.corroService.Restart(ctx); err != nil {
|
|
return fmt.Errorf("restart corrosion service: %w", err)
|
|
}
|
|
slog.Info("Corrosion service restarted.")
|
|
} else {
|
|
slog.Info("Starting corrosion service.")
|
|
if err := cc.corroService.Start(ctx); err != nil {
|
|
return fmt.Errorf("start corrosion service: %w", err)
|
|
}
|
|
slog.Info("Corrosion service started.")
|
|
}
|
|
|
|
// Apply the seed to finish Corrosion migrations from 0.x to 2026.5.14 (upstream v1.0.0) if applicable.
|
|
if err := corromigrate.ApplySeedIfPresent(ctx, cc.corrosionDir, cc.store); err != nil {
|
|
return fmt.Errorf("apply corrosion migration seed: %w", err)
|
|
}
|
|
|
|
errGroup, ctx := errgroup.WithContext(ctx)
|
|
|
|
// Start the WireGuard control loop before waiting for store sync. This ensures endpoint rotation happens
|
|
// while waiting, allowing Corrosion to connect to peers.
|
|
errGroup.Go(func() error {
|
|
if err := cc.wgnet.Run(ctx); err != nil {
|
|
return fmt.Errorf("WireGuard network failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// Watch for WireGuard peer endpoint changes and update the machine state accordingly.
|
|
errGroup.Go(func() error {
|
|
cc.handleEndpointChanges(ctx)
|
|
return nil
|
|
})
|
|
|
|
// Start the network API server. Assume the management IP can't be changed when the network is running.
|
|
apiAddr := net.JoinHostPort(cc.state.Network.ManagementIP.String(), strconv.Itoa(constants.MachineAPIPort))
|
|
listener, err := net.Listen("tcp", apiAddr)
|
|
if err != nil {
|
|
return fmt.Errorf("listen API port: %w", err)
|
|
}
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting network API server.", "addr", apiAddr)
|
|
if err := cc.server.Serve(listener); err != nil {
|
|
return fmt.Errorf("network API server failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// Wait for the store database to sync to the minimum version before starting store-dependent components.
|
|
// This prevents issues with using partially replicated data when the machine just joined the cluster,
|
|
// e.g., an empty machine list causing WireGuard peer misconfiguration.
|
|
if err = cc.waitStoreSync(ctx); err != nil {
|
|
return fmt.Errorf("wait initial cluster store sync: %w", err)
|
|
}
|
|
|
|
// Check if waitStoreSync exited because the context was cancelled. Return early in that case.
|
|
if ctx.Err() != nil {
|
|
cc.stopAPIServer()
|
|
|
|
err := errGroup.Wait()
|
|
if corroErr := cc.stopCorrosion(); corroErr != nil {
|
|
err = errors.Join(err, corroErr)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Republish this machine's info from local state (the source of truth) to the cluster store. This keeps the
|
|
// store consistent with the actual machine state on every start.
|
|
if err = cc.syncMachineInfo(ctx); err != nil {
|
|
return fmt.Errorf("sync machine info to cluster store: %w", err)
|
|
}
|
|
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting metrics server.")
|
|
if err := cc.metricsServer.Run(ctx); err != nil {
|
|
return fmt.Errorf("metrics server failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting embedded DNS resolver.")
|
|
if err := cc.dnsResolver.Run(ctx); err != nil {
|
|
return fmt.Errorf("embedded DNS resolver failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// The Docker network must be created before starting the DNS server because it listens on the machine IP.
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting embedded DNS server.")
|
|
if err := cc.dnsServer.Run(ctx); err != nil {
|
|
return fmt.Errorf("embedded DNS server failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
// Synchronise Docker containers to the cluster store.
|
|
errGroup.Go(func() error {
|
|
slog.Info("Watching Docker containers and syncing them to cluster store.")
|
|
return cc.syncDockerContainers(ctx)
|
|
})
|
|
|
|
// Handle machine changes in the cluster. Handling machine and endpoint changes should be done
|
|
// in separate goroutines to avoid a deadlock when reconfiguring the network.
|
|
errGroup.Go(func() error {
|
|
if err := cc.handleMachineChanges(ctx); err != nil {
|
|
return fmt.Errorf("handle new machines: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting caddyconfig controller.")
|
|
if err := cc.caddyconfigCtrl.Run(ctx); err != nil {
|
|
return fmt.Errorf("caddyconfig controller failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
if cc.unregistry != nil {
|
|
errGroup.Go(func() error {
|
|
slog.Info("Starting unregistry server.")
|
|
if err := cc.unregistry.ListenAndServe(); err != nil {
|
|
return fmt.Errorf("unregistry server failed: %w", err)
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// Signal that the cluster controller has finished starting all components.
|
|
close(cc.clusterReady)
|
|
slog.Info("Cluster controller finished starting all components.")
|
|
// Wait for the context to be done and stop all servers and controllers.
|
|
<-ctx.Done()
|
|
|
|
cc.stopAPIServer()
|
|
|
|
// Stop the unregistry server with a timeout if it was started.
|
|
if cc.unregistry != nil {
|
|
unregTimeout := 30 * time.Second
|
|
slog.Info("Stopping unregistry server.", "timeout", unregTimeout)
|
|
unregCtx, cancel := context.WithTimeout(context.Background(), unregTimeout)
|
|
defer cancel()
|
|
|
|
if err = cc.unregistry.Shutdown(unregCtx); err != nil {
|
|
return fmt.Errorf("unregistry server forced to shutdown: %w", err)
|
|
}
|
|
slog.Info("Unregistry server stopped.")
|
|
}
|
|
|
|
// Wait for all controllers to finish.
|
|
err = errGroup.Wait()
|
|
|
|
// Stop Corrosion after all controllers depending on it and API server are stopped.
|
|
if corroErr := cc.stopCorrosion(); corroErr != nil {
|
|
err = errors.Join(err, corroErr)
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
// stopAPIServer gracefully stops the network API server with a timeout.
|
|
func (cc *clusterController) stopAPIServer() {
|
|
timeout := 10 * time.Second
|
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
|
defer cancel()
|
|
|
|
stopped := make(chan struct{})
|
|
go func() {
|
|
slog.Info("Stopping network API server.")
|
|
cc.server.GracefulStop()
|
|
close(stopped)
|
|
}()
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
slog.Warn("Network API server graceful stop timed out, forcing stop.", "timeout", timeout)
|
|
cc.server.Stop()
|
|
case <-stopped:
|
|
}
|
|
|
|
slog.Info("Network API server stopped.")
|
|
}
|
|
|
|
// stopCorrosion stops the Corrosion service with a timeout.
|
|
func (cc *clusterController) stopCorrosion() error {
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
if err := cc.corroService.Stop(ctx); err != nil {
|
|
return fmt.Errorf("stop corrosion service: %w", err)
|
|
}
|
|
slog.Info("Corrosion service stopped.")
|
|
|
|
return nil
|
|
}
|
|
|
|
// ensureDockerNetwork ensures that the Docker network is configured and ready for containers.
|
|
func (cc *clusterController) ensureDockerNetwork(ctx context.Context) error {
|
|
if err := cc.dockerCtrl.WaitDaemonReady(ctx); err != nil {
|
|
return fmt.Errorf("wait for Docker daemon: %w", err)
|
|
}
|
|
|
|
if err := cc.dockerCtrl.EnsureUncloudNetwork(
|
|
ctx,
|
|
cc.state.Network.Subnet,
|
|
cc.state.Network.EffectiveMTU(),
|
|
cc.dnsServer.ListenAddr(),
|
|
); err != nil {
|
|
return fmt.Errorf("ensure Docker network: %w", err)
|
|
}
|
|
|
|
// Signal that Docker is ready for containers.
|
|
close(cc.dockerReady)
|
|
|
|
return nil
|
|
}
|
|
|
|
// handleEndpointChanges watches for WireGuard peer endpoint changes and persists them to the machine state.
|
|
func (cc *clusterController) handleEndpointChanges(ctx context.Context) {
|
|
for {
|
|
select {
|
|
case e, ok := <-cc.endpointChanges:
|
|
if !ok {
|
|
// The channel was closed, stop watching for changes.
|
|
cc.endpointChanges = nil
|
|
return
|
|
}
|
|
|
|
cc.state.mu.Lock()
|
|
for i := range cc.state.Network.Peers {
|
|
if cc.state.Network.Peers[i].PublicKey.Equal(e.PublicKey) {
|
|
cc.state.Network.Peers[i].Endpoint = &e.Endpoint
|
|
break
|
|
}
|
|
}
|
|
if err := cc.state.Save(); err != nil {
|
|
slog.Error("Failed to save machine state.", "err", err)
|
|
}
|
|
cc.state.mu.Unlock()
|
|
|
|
slog.Debug("Preserved endpoint change in the machine state.",
|
|
"public_key", e.PublicKey, "endpoint", e.Endpoint)
|
|
case <-ctx.Done():
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// waitStoreSync blocks until the local store version >= state.MinStoreVersion and any known gaps are synced.
|
|
// No-op when MinStoreVersion is empty. Clears state.MinStoreVersion when reached.
|
|
func (cc *clusterController) waitStoreSync(ctx context.Context) error {
|
|
target := cc.state.MinStoreVersion
|
|
if len(target) == 0 {
|
|
return nil
|
|
}
|
|
|
|
slog.Info("Waiting for the initial cluster store sync.", "actors", len(target))
|
|
|
|
ticker := time.NewTicker(500 * time.Millisecond)
|
|
defer ticker.Stop()
|
|
// Periodic warning to surface stuck NAT/connectivity issues without aborting.
|
|
warnInterval := 5 * time.Minute
|
|
warnTimer := time.NewTimer(warnInterval)
|
|
defer warnTimer.Stop()
|
|
|
|
var (
|
|
lastLagging int
|
|
lastErrLogTime time.Time
|
|
)
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil
|
|
case <-warnTimer.C:
|
|
local, err := cc.store.Version(ctx)
|
|
if err == nil {
|
|
slog.Error("Cluster store sync still pending. Check connectivity to peers.",
|
|
"lagging_actors", laggingActors(local, target))
|
|
} else {
|
|
slog.Error("Cluster store sync still pending. Check connectivity to peers.", "err", err)
|
|
}
|
|
warnTimer.Reset(warnInterval)
|
|
case <-ticker.C:
|
|
local, err := cc.store.Version(ctx)
|
|
if err != nil {
|
|
// Throttle error logs to once every 5 seconds.
|
|
if time.Since(lastErrLogTime) >= 5*time.Second {
|
|
slog.Error("Failed to get the cluster store version, retrying.", "err", err)
|
|
lastErrLogTime = time.Now()
|
|
}
|
|
continue
|
|
}
|
|
|
|
lagging := laggingActors(local, target)
|
|
if len(lagging) == 0 {
|
|
// Per-actor max doesn't imply contiguous apply: corrosion can buffer X:N before
|
|
// X:N-1 arrives and track the gap separately. Wait for any remaining gaps to be synced.
|
|
if err := cc.waitKnownMissingChanges(ctx); err != nil {
|
|
return fmt.Errorf("wait for known missing changes: %w", err)
|
|
}
|
|
// If the context was cancelled mid-gap-fill, don't persist a "synced" state.
|
|
if ctx.Err() != nil {
|
|
return nil
|
|
}
|
|
|
|
// Clear MinStoreVersion so next restart doesn't wait for sync.
|
|
cc.state.mu.Lock()
|
|
cc.state.MinStoreVersion = nil
|
|
err = cc.state.Save()
|
|
cc.state.mu.Unlock()
|
|
if err != nil {
|
|
return fmt.Errorf("save machine state after the initial cluster store sync: %w", err)
|
|
}
|
|
|
|
slog.Info("Cluster store completed the initial sync.", "actors", len(target))
|
|
return nil
|
|
}
|
|
|
|
if len(lagging) != lastLagging {
|
|
slog.Info("Syncing cluster store.", "lagging_actors", lagging)
|
|
lastLagging = len(lagging)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// laggingActors returns target actors whose local version is below the required value, as [have, need].
|
|
func laggingActors(local, target map[string]int64) map[string][2]int64 {
|
|
lagging := make(map[string][2]int64)
|
|
for actor, need := range target {
|
|
if have := local[actor]; have < need {
|
|
lagging[actor] = [2]int64{have, need}
|
|
}
|
|
}
|
|
return lagging
|
|
}
|
|
|
|
// waitKnownMissingChanges polls the store until all known missing changes have been synced.
|
|
func (cc *clusterController) waitKnownMissingChanges(ctx context.Context) error {
|
|
ticker := time.NewTicker(1 * time.Second)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil
|
|
case <-ticker.C:
|
|
changes, err := cc.store.KnownMissingChanges(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("query known missing changes from cluster store: %w", err)
|
|
}
|
|
|
|
if len(changes) == 0 {
|
|
slog.Debug("All known missing changes have been synced to the cluster store.")
|
|
return nil
|
|
}
|
|
|
|
slog.Debug("Waiting for known missing changes to be synced to the cluster store.", "remaining",
|
|
len(changes))
|
|
}
|
|
}
|
|
}
|
|
|
|
// syncMachineInfo republishes this machine's info from local state to the cluster store. The local state is the
|
|
// source of truth for the machine's own MachineInfo.
|
|
func (cc *clusterController) syncMachineInfo(ctx context.Context) error {
|
|
if err := cc.backfillMachineState(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
info := cc.machine.Info()
|
|
if err := cc.store.UpdateMachine(ctx, info); err != nil {
|
|
if errors.Is(err, store.ErrMachineNotFound) {
|
|
// This should not happen but let's try to recreate it.
|
|
if createErr := cc.store.CreateMachine(ctx, info); createErr != nil {
|
|
return fmt.Errorf("create machine in store: %w", createErr)
|
|
}
|
|
return nil
|
|
}
|
|
return fmt.Errorf("update machine in store: %w", err)
|
|
}
|
|
|
|
slog.Info("Synced machine info to cluster store.", "id", info.Id, "name", info.Name)
|
|
return nil
|
|
}
|
|
|
|
// backfillMachineState backfills legacy local state that predates local ownership of endpoints/public IP
|
|
// (implemented in 0.20) from the cluster store.
|
|
func (cc *clusterController) backfillMachineState(ctx context.Context) error {
|
|
cc.state.mu.Lock()
|
|
defer cc.state.mu.Unlock()
|
|
|
|
if len(cc.state.Network.Endpoints) > 0 && cc.state.PublicIP.IsValid() {
|
|
return nil
|
|
}
|
|
|
|
existing, err := cc.store.GetMachine(ctx, cc.state.ID)
|
|
if err != nil {
|
|
if errors.Is(err, store.ErrMachineNotFound) {
|
|
// No existing row to backfill from. syncMachineInfo will create it.
|
|
return nil
|
|
}
|
|
return fmt.Errorf("get machine from store: %w", err)
|
|
}
|
|
|
|
changed := false
|
|
if len(cc.state.Network.Endpoints) == 0 {
|
|
if endpoints := endpointsToAddrPorts(existing.Network.GetEndpoints()); len(endpoints) > 0 {
|
|
cc.state.Network.Endpoints = endpoints
|
|
changed = true
|
|
}
|
|
}
|
|
if !cc.state.PublicIP.IsValid() && existing.PublicIp != nil {
|
|
if ip, _ := existing.PublicIp.ToAddr(); ip.IsValid() {
|
|
cc.state.PublicIP = ip
|
|
changed = true
|
|
}
|
|
}
|
|
if changed {
|
|
if err = cc.state.Save(); err != nil {
|
|
return fmt.Errorf("save backfilled machine state: %w", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// syncDockerContainers watches local Docker containers and syncs them to the cluster store.
|
|
// TODO: move this to the Docker controller.
|
|
func (cc *clusterController) syncDockerContainers(ctx context.Context) error {
|
|
// Retry to watch and sync containers until the context is done.
|
|
boff := backoff.WithContext(backoff.NewExponentialBackOff(
|
|
backoff.WithInitialInterval(100*time.Millisecond),
|
|
backoff.WithMaxInterval(5*time.Second),
|
|
backoff.WithMaxElapsedTime(0),
|
|
), ctx)
|
|
watchAndSync := func() error {
|
|
if wErr := cc.dockerCtrl.WatchAndSyncContainers(ctx); wErr != nil {
|
|
slog.Error("Failed to watch and sync containers to cluster store, retrying.", "err", wErr)
|
|
return wErr
|
|
}
|
|
return nil
|
|
}
|
|
if err := backoff.Retry(watchAndSync, boff); err != nil {
|
|
if errors.Is(err, context.Canceled) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("watch and sync containers to cluster store: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// handleMachineChanges subscribes to machine changes in the cluster and reconfigures the network peers accordingly
|
|
// when changes occur.
|
|
func (cc *clusterController) handleMachineChanges(ctx context.Context) error {
|
|
for {
|
|
// Retry to subscribe to machine changes indefinitely until the context is done.
|
|
boff := backoff.WithContext(backoff.NewExponentialBackOff(
|
|
backoff.WithInitialInterval(1*time.Second),
|
|
backoff.WithMaxInterval(60*time.Second),
|
|
backoff.WithMaxElapsedTime(0),
|
|
), ctx)
|
|
|
|
var (
|
|
machines []*pb.MachineInfo
|
|
changes <-chan struct{}
|
|
err error
|
|
)
|
|
subscribe := func() error {
|
|
if machines, changes, err = cc.store.SubscribeMachines(ctx); err != nil {
|
|
slog.Info("Failed to subscribe to machine changes, retrying.", "err", err)
|
|
}
|
|
return err
|
|
}
|
|
if err = backoff.Retry(subscribe, boff); err != nil {
|
|
if errors.Is(err, context.Canceled) {
|
|
return nil
|
|
}
|
|
slog.Error("Unexpected error while retrying to subscribe to machine changes.", "err", err)
|
|
continue
|
|
}
|
|
slog.Info("Subscribed to machine changes in the cluster to reconfigure network peers.")
|
|
|
|
// The machine store may be empty when a machine first joins the cluster, before store synchronization
|
|
// completes. Skip configuration now and apply it when the store changes are received.
|
|
// TODO: remove this check after ensuring the store is actually synced to the latest known state at this point.
|
|
// See TODO in waitStoreSync.
|
|
if len(machines) > 0 {
|
|
slog.Info("Reconfiguring network peers with the current machines.", "machines", len(machines))
|
|
if err = cc.configurePeers(machines); err != nil {
|
|
slog.Error("Failed to configure peers.", "err", err)
|
|
}
|
|
}
|
|
// For simplicity, reconfigure all peers on any change.
|
|
for {
|
|
select {
|
|
// TODO: test when Corrosion fails and the subscription fails to resubscribe (after 1 minute). It seems
|
|
// the changes channel will be closed and this will become a busy loop. Perhaps, the outer for loop should
|
|
// be reworked as well.
|
|
case <-changes:
|
|
slog.Info("Cluster machines changed, reconfiguring network peers.")
|
|
if machines, err = cc.store.ListMachines(ctx); err != nil {
|
|
slog.Error("Failed to list machines.", "err", err)
|
|
continue
|
|
}
|
|
// Skip reconfiguration if the machines list is empty. This can happen when joining the cluster.
|
|
// Corrosion can notifies about table changes before the data is fully replicated.
|
|
// Reconfiguring with an empty list would remove all peers and lock this machine out of the cluster.
|
|
// See https://github.com/psviderski/uncloud/issues/155.
|
|
if len(machines) == 0 {
|
|
slog.Debug("Skipping peer reconfiguration: machines list in store is empty.")
|
|
continue
|
|
}
|
|
if err = cc.configurePeers(machines); err != nil {
|
|
slog.Error("Failed to configure peers.", "err", err)
|
|
}
|
|
case <-ctx.Done():
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (cc *clusterController) configurePeers(machines []*pb.MachineInfo) error {
|
|
if len(machines) == 0 {
|
|
return fmt.Errorf("no machines to configure peers")
|
|
}
|
|
|
|
cc.state.mu.RLock()
|
|
currentPeerEndpoints := make(map[string]*netip.AddrPort, len(cc.state.Network.Peers))
|
|
for _, p := range cc.state.Network.Peers {
|
|
currentPeerEndpoints[p.PublicKey.String()] = p.Endpoint
|
|
}
|
|
cc.state.mu.RUnlock()
|
|
|
|
// Construct the list of peers from the machine configurations ensuring that the current endpoint is preserved.
|
|
peers := make([]network.PeerConfig, 0, len(machines)-1)
|
|
for _, m := range machines {
|
|
// Skip the current machine.
|
|
if m.Id == cc.state.ID {
|
|
continue
|
|
}
|
|
if err := m.Network.Validate(); err != nil {
|
|
slog.Error("Invalid machine network configuration.", "machine", m.Name, "err", err)
|
|
continue
|
|
}
|
|
// Ignore errors as they are already validated.
|
|
subnet, _ := m.Network.Subnet.ToPrefix()
|
|
manageIP, _ := m.Network.ManagementIp.ToAddr()
|
|
endpoints := make([]netip.AddrPort, len(m.Network.Endpoints))
|
|
for i, ep := range m.Network.Endpoints {
|
|
addrPort, _ := ep.ToAddrPort()
|
|
endpoints[i] = addrPort
|
|
}
|
|
peer := network.PeerConfig{
|
|
Subnet: &subnet,
|
|
ManagementIP: manageIP,
|
|
AllEndpoints: endpoints,
|
|
PublicKey: m.Network.PublicKey,
|
|
}
|
|
|
|
currentEndpoint := currentPeerEndpoints[peer.PublicKey.String()]
|
|
if currentEndpoint != nil && slices.Contains(endpoints, *currentEndpoint) {
|
|
peer.Endpoint = currentEndpoint
|
|
} else if len(endpoints) > 0 {
|
|
peer.Endpoint = &endpoints[0]
|
|
}
|
|
|
|
peers = append(peers, peer)
|
|
}
|
|
|
|
// Preserve the new list of peers in the machine state.
|
|
cc.state.mu.Lock()
|
|
cc.state.Network.Peers = peers
|
|
err := cc.state.Save()
|
|
cc.state.mu.Unlock()
|
|
if err != nil {
|
|
return fmt.Errorf("save machine state: %w", err)
|
|
}
|
|
|
|
cc.state.mu.RLock()
|
|
defer cc.state.mu.RUnlock()
|
|
if err = cc.wgnet.Configure(*cc.state.Network); err != nil {
|
|
return fmt.Errorf("configure network peers: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Cleanup cleans up the cluster resources such as the WireGuard network, iptables rules, Docker network and containers.
|
|
func (cc *clusterController) Cleanup() error {
|
|
// Wait for the controller to stop before cleaning up.
|
|
<-cc.stopped
|
|
|
|
var errs []error
|
|
if err := cc.dockerCtrl.Cleanup(); err != nil {
|
|
errs = append(errs, fmt.Errorf("cleanup Docker resources: %w", err))
|
|
}
|
|
if err := cc.wgnet.Cleanup(); err != nil {
|
|
errs = append(errs, fmt.Errorf("cleanup WireGuard network: %w", err))
|
|
}
|
|
if err := firewall.CleanupIptablesChains(); err != nil {
|
|
errs = append(errs, fmt.Errorf("cleanup iptables chains: %w", err))
|
|
}
|
|
|
|
return errors.Join(errs...)
|
|
}
|