mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
"github.com/wiretrustee/wiretrustee/connection"
|
|
sig "github.com/wiretrustee/wiretrustee/signal"
|
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
"os"
|
|
)
|
|
|
|
var (
|
|
upCmd = &cobra.Command{
|
|
Use: "up",
|
|
Short: "start wiretrustee",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
InitLog(logLevel)
|
|
|
|
config, _ := Read(configPath)
|
|
|
|
myKey, err := wgtypes.ParseKey(config.PrivateKey)
|
|
if err != nil {
|
|
log.Errorf("failed parsing Wireguard key %s: [%s]", config.PrivateKey, err.Error())
|
|
os.Exit(ExitSetupFailed)
|
|
}
|
|
|
|
ctx := context.Background()
|
|
signalClient, err := sig.NewClient(ctx, config.SignalAddr, myKey)
|
|
if err != nil {
|
|
log.Errorf("error while connecting to the Signal Exchange Service %s: %s", config.SignalAddr, err)
|
|
os.Exit(ExitSetupFailed)
|
|
}
|
|
//todo proper close handling
|
|
defer func() { signalClient.Close() }()
|
|
|
|
iFaceBlackList := make(map[string]struct{})
|
|
for i := 0; i < len(config.IFaceBlackList); i += 2 {
|
|
iFaceBlackList[config.IFaceBlackList[i]] = struct{}{}
|
|
}
|
|
engine := connection.NewEngine(signalClient, config.StunTurnURLs, config.WgIface, config.WgAddr, iFaceBlackList)
|
|
|
|
err = engine.Start(myKey, config.Peers)
|
|
if err != nil {
|
|
log.Errorf("error while starting the engine: %s", err)
|
|
os.Exit(ExitSetupFailed)
|
|
}
|
|
//signalClient.WaitConnected()
|
|
|
|
SetupCloseHandler()
|
|
select {}
|
|
},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
}
|