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

102 lines
2.2 KiB
Go
Raw Normal View History

package main
import (
2023-09-28 17:55:37 +02:00
"log"
"os"
"os/signal"
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() {
if len(os.Args) != 2 {
logging.Log.WriteErrorf("Need to provide configuration.yaml")
return
}
conf, err := conf.ParseConfiguration(os.Args[1])
2023-09-19 14:45:49 +02:00
if err != nil {
logging.Log.WriteInfof("Could not parse configuration")
return
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)
2023-11-03 16:24:18 +01:00
syncScheduler := sync.NewSyncScheduler(ctrlServer, syncRequester)
timestampScheduler := timestamp.NewTimestampScheduler(ctrlServer)
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
closeResources := func() {
logging.Log.WriteInfof("Closing resources")
syncScheduler.Stop()
timestampScheduler.Stop()
ctrlServer.Close()
client.Close()
}
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
for range c {
closeResources()
os.Exit(0)
}
}()
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
go closeResources()
}