1
0
forked from extern/smegmesh
smegmesh/cmd/wgmeshd/main.go

70 lines
1.7 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-10-05 18:48:54 +02:00
"github.com/tim-beatham/wgmesh/pkg/ip"
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"
2023-09-19 14:45:49 +02:00
wg "github.com/tim-beatham/wgmesh/pkg/wg"
)
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
}
wgClient, err := wg.CreateClient(conf.IfName, conf.WgPort)
2023-10-01 20:01:35 +02:00
var robinRpc robin.RobinRpc
var robinIpc robin.RobinIpc
var authProvider middleware.AuthRpcProvider
var syncProvider sync.SyncServiceImpl
ctrlServerParams := ctrlserver.NewCtrlServerParams{
WgClient: wgClient,
Conf: conf,
AuthProvider: &authProvider,
CtrlProvider: &robinRpc,
SyncProvider: &syncProvider,
2023-10-01 20:01:35 +02:00
}
ctrlServer, err := ctrlserver.NewCtrlServer(&ctrlServerParams)
authProvider.Manager = ctrlServer.ConnectionServer.JwtManager
syncProvider.Server = ctrlServer
syncRequester := sync.NewSyncRequester(ctrlServer)
syncScheduler := sync.NewSyncScheduler(ctrlServer, syncRequester, 2)
2023-10-05 18:48:54 +02:00
robinIpcParams := robin.RobinIpcParams{
CtrlServer: ctrlServer,
Allocator: &ip.ULABuilder{},
}
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 {
logging.ErrorLog.Fatalln(err.Error())
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()
2023-09-29 16:00:20 +02:00
err = ctrlServer.ConnectionServer.Listen()
2023-10-01 20:01:35 +02:00
if err != nil {
logging.ErrorLog.Fatalln(err.Error())
}
2023-09-20 15:34:34 +02:00
defer wgClient.Close()
defer syncScheduler.Stop()
}