smegmesh/cmd/wgmeshd/main.go

80 lines
1.9 KiB
Go
Raw Normal View History

package main
import (
2023-09-28 17:55:37 +02:00
"log"
2023-09-19 14:45:49 +02:00
2023-10-01 20:01:35 +02:00
"github.com/tim-beatham/wgmesh/pkg/conf"
ctrlserver "github.com/tim-beatham/wgmesh/pkg/ctrlserver"
2023-09-29 16:00:20 +02:00
"github.com/tim-beatham/wgmesh/pkg/ipc"
logging "github.com/tim-beatham/wgmesh/pkg/log"
2023-10-01 20:01:35 +02:00
"github.com/tim-beatham/wgmesh/pkg/middleware"
2023-09-29 16:00:20 +02:00
"github.com/tim-beatham/wgmesh/pkg/robin"
"github.com/tim-beatham/wgmesh/pkg/sync"
"github.com/tim-beatham/wgmesh/pkg/timestamp"
"golang.zx2c4.com/wireguard/wgctrl"
)
func main() {
conf, err := conf.ParseConfiguration("./configuration.yaml")
2023-09-19 14:45:49 +02:00
if err != nil {
log.Fatalln("Could not parse configuration")
2023-09-19 14:45:49 +02:00
}
client, err := wgctrl.New()
if err != nil {
logging.Log.WriteErrorf("Failed to create wgctrl client")
return
}
2023-10-01 20:01:35 +02:00
var robinRpc robin.WgRpc
var robinIpc robin.IpcHandler
var authProvider middleware.AuthRpcProvider
var syncProvider sync.SyncServiceImpl
ctrlServerParams := ctrlserver.NewCtrlServerParams{
Conf: conf,
AuthProvider: &authProvider,
CtrlProvider: &robinRpc,
SyncProvider: &syncProvider,
Client: client,
2023-10-01 20:01:35 +02:00
}
ctrlServer, err := ctrlserver.NewCtrlServer(&ctrlServerParams)
syncProvider.Server = ctrlServer
syncRequester := sync.NewSyncRequester(ctrlServer)
syncScheduler := sync.NewSyncScheduler(ctrlServer, syncRequester, 2)
timestampScheduler := timestamp.NewTimestampScheduler(ctrlServer, 60)
2023-10-05 18:48:54 +02:00
robinIpcParams := robin.RobinIpcParams{
CtrlServer: ctrlServer,
}
robinRpc.Server = ctrlServer
2023-10-05 18:48:54 +02:00
robinIpc = robin.NewRobinIpc(robinIpcParams)
2023-10-01 20:01:35 +02:00
if err != nil {
2023-10-24 01:12:38 +02:00
logging.Log.WriteErrorf(err.Error())
return
2023-10-01 20:01:35 +02:00
}
2023-09-28 17:55:37 +02:00
log.Println("Running IPC Handler")
go ipc.RunIpcHandler(&robinIpc)
go syncScheduler.Run()
go timestampScheduler.Run()
2023-09-29 16:00:20 +02:00
err = ctrlServer.ConnectionServer.Listen()
2023-10-01 20:01:35 +02:00
if err != nil {
2023-10-24 01:12:38 +02:00
logging.Log.WriteErrorf(err.Error())
return
}
2023-09-20 15:34:34 +02:00
defer syncScheduler.Stop()
defer timestampScheduler.Stop()
2023-10-24 01:12:38 +02:00
defer ctrlServer.Close()
defer client.Close()
}