2023-10-10 21:14:40 +02:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
2023-10-23 19:13:08 +02:00
|
|
|
"io"
|
2023-10-10 21:14:40 +02:00
|
|
|
"time"
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
"github.com/tim-beatham/smegmesh/pkg/conf"
|
|
|
|
"github.com/tim-beatham/smegmesh/pkg/conn"
|
2024-01-02 00:55:50 +01:00
|
|
|
logging "github.com/tim-beatham/smegmesh/pkg/log"
|
|
|
|
"github.com/tim-beatham/smegmesh/pkg/mesh"
|
|
|
|
"github.com/tim-beatham/smegmesh/pkg/rpc"
|
2023-10-10 21:14:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// SyncRequester: coordinates the syncing of meshes
|
|
|
|
type SyncRequester interface {
|
2023-10-24 17:00:46 +02:00
|
|
|
GetMesh(meshId string, ifName string, port int, endPoint string) error
|
2023-12-07 02:44:54 +01:00
|
|
|
SyncMesh(meshid string, meshNode mesh.MeshNode) error
|
2023-10-10 21:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type SyncRequesterImpl struct {
|
2024-01-04 14:10:08 +01:00
|
|
|
manager mesh.MeshManager
|
|
|
|
connectionManager conn.ConnectionManager
|
|
|
|
configuration *conf.DaemonConfiguration
|
|
|
|
errorHdlr SyncErrorHandler
|
2023-10-10 21:14:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetMesh: Retrieves the local state of the mesh at the endpoint
|
2023-10-24 17:00:46 +02:00
|
|
|
func (s *SyncRequesterImpl) GetMesh(meshId string, ifName string, port int, endPoint string) error {
|
2024-01-04 14:10:08 +01:00
|
|
|
peerConnection, err := s.connectionManager.GetConnection(endPoint)
|
2023-10-10 21:14:40 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := peerConnection.GetClient()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c := rpc.NewSyncServiceClient(client)
|
|
|
|
|
2023-10-24 01:12:38 +02:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
|
2023-10-10 21:14:40 +02:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
reply, err := c.GetConf(ctx, &rpc.GetConfRequest{MeshId: meshId})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
err = s.manager.AddMesh(&mesh.AddMeshParams{
|
2023-10-28 17:38:25 +02:00
|
|
|
MeshId: meshId,
|
|
|
|
WgPort: port,
|
|
|
|
MeshBytes: reply.Mesh,
|
|
|
|
})
|
2023-10-10 21:14:40 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
// handleErr: handleGrpc errors
|
2023-12-07 02:44:54 +01:00
|
|
|
func (s *SyncRequesterImpl) handleErr(meshId, pubKey string, err error) error {
|
|
|
|
ok := s.errorHdlr.Handle(meshId, pubKey, err)
|
2023-10-20 18:35:02 +02:00
|
|
|
|
|
|
|
if ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-10-10 21:14:40 +02:00
|
|
|
// SyncMesh: Proactively send a sync request to the other mesh
|
2023-12-07 02:44:54 +01:00
|
|
|
func (s *SyncRequesterImpl) SyncMesh(meshId string, meshNode mesh.MeshNode) error {
|
|
|
|
endpoint := meshNode.GetHostEndpoint()
|
|
|
|
pubKey, _ := meshNode.GetPublicKey()
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
peerConnection, err := s.connectionManager.GetConnection(endpoint)
|
2023-10-10 21:14:40 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := peerConnection.GetClient()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
mesh := s.manager.GetMesh(meshId)
|
2023-10-10 21:14:40 +02:00
|
|
|
|
|
|
|
if mesh == nil {
|
|
|
|
return errors.New("mesh does not exist")
|
|
|
|
}
|
|
|
|
|
|
|
|
c := rpc.NewSyncServiceClient(client)
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
syncTimeOut := float64(s.configuration.SyncTime) * float64(time.Second)
|
2023-11-06 10:54:06 +01:00
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(syncTimeOut))
|
2023-10-10 21:14:40 +02:00
|
|
|
defer cancel()
|
|
|
|
|
2023-11-06 10:54:06 +01:00
|
|
|
err = s.syncMesh(mesh, ctx, c)
|
2023-10-10 21:14:40 +02:00
|
|
|
|
|
|
|
if err != nil {
|
2023-12-31 13:17:16 +01:00
|
|
|
s.handleErr(meshId, pubKey.String(), err)
|
2023-10-10 21:14:40 +02:00
|
|
|
}
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
logging.Log.WriteInfof("synced with node: %s meshId: %s\n", endpoint, meshId)
|
2023-12-31 13:17:16 +01:00
|
|
|
return err
|
2023-10-10 21:14:40 +02:00
|
|
|
}
|
2023-10-20 13:41:06 +02:00
|
|
|
|
2023-11-06 10:54:06 +01:00
|
|
|
func (s *SyncRequesterImpl) syncMesh(mesh mesh.MeshProvider, ctx context.Context, client rpc.SyncServiceClient) error {
|
2023-10-23 19:13:08 +02:00
|
|
|
stream, err := client.SyncMesh(ctx)
|
|
|
|
|
|
|
|
syncer := mesh.GetSyncer()
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
msg, moreMessages := syncer.GenerateMessage()
|
|
|
|
|
2023-10-26 17:53:12 +02:00
|
|
|
err := stream.Send(&rpc.SyncMeshRequest{MeshId: mesh.GetMeshId(), Changes: msg})
|
2023-10-23 19:13:08 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
in, err := stream.Recv()
|
|
|
|
|
|
|
|
if err != nil && err != io.EOF {
|
2024-01-04 14:10:08 +01:00
|
|
|
logging.Log.WriteInfof("stream recv error: %s\n", err.Error())
|
2023-10-23 19:13:08 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != io.EOF && len(in.Changes) != 0 {
|
|
|
|
err = syncer.RecvMessage(in.Changes)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2024-01-04 14:10:08 +01:00
|
|
|
logging.Log.WriteInfof("syncer recv error: %s\n", err.Error())
|
2023-10-23 19:13:08 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !moreMessages {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-24 17:00:46 +02:00
|
|
|
syncer.Complete()
|
2023-10-23 19:13:08 +02:00
|
|
|
stream.CloseSend()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-01-04 14:10:08 +01:00
|
|
|
type NewSyncRequesterParams struct {
|
|
|
|
MeshManager mesh.MeshManager
|
|
|
|
ConnectionManager conn.ConnectionManager
|
|
|
|
Configuration *conf.DaemonConfiguration
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewSyncRequester(params NewSyncRequesterParams) SyncRequester {
|
|
|
|
errorHdlr := NewSyncErrorHandler(params.MeshManager, params.ConnectionManager)
|
|
|
|
return &SyncRequesterImpl{manager: params.MeshManager,
|
|
|
|
connectionManager: params.ConnectionManager,
|
|
|
|
configuration: params.Configuration,
|
|
|
|
errorHdlr: errorHdlr,
|
|
|
|
}
|
2023-10-20 13:41:06 +02:00
|
|
|
}
|