|
@@ -2,13 +2,20 @@ package ncutils
|
|
|
|
|
|
import (
|
|
import (
|
|
"context"
|
|
"context"
|
|
|
|
+ "fmt"
|
|
|
|
+ "golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
|
"log"
|
|
"log"
|
|
"os/exec"
|
|
"os/exec"
|
|
|
|
+ "strconv"
|
|
"strings"
|
|
"strings"
|
|
"syscall"
|
|
"syscall"
|
|
"time"
|
|
"time"
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+func RunCmdFormatted(command string, printerr bool) (string, error) {
|
|
|
|
+ return "", nil
|
|
|
|
+}
|
|
|
|
+
|
|
// Runs Commands for FreeBSD
|
|
// Runs Commands for FreeBSD
|
|
func RunCmd(command string, printerr bool) (string, error) {
|
|
func RunCmd(command string, printerr bool) (string, error) {
|
|
args := strings.Fields(command)
|
|
args := strings.Fields(command)
|
|
@@ -27,3 +34,39 @@ func RunCmd(command string, printerr bool) (string, error) {
|
|
}
|
|
}
|
|
return string(out), err
|
|
return string(out), err
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// CreateUserSpaceConf - creates a user space WireGuard conf
|
|
|
|
+func CreateUserSpaceConf(address string, privatekey string, listenPort string, mtu int32, fwmark int32, perskeepalive int32, peers []wgtypes.PeerConfig) (string, error) {
|
|
|
|
+ peersString, err := parsePeers(perskeepalive, peers)
|
|
|
|
+ var listenPortString string
|
|
|
|
+ var fwmarkString string
|
|
|
|
+ if mtu <= 0 {
|
|
|
|
+ mtu = 1280
|
|
|
|
+ }
|
|
|
|
+ if listenPort != "" {
|
|
|
|
+ listenPortString += "ListenPort = " + listenPort
|
|
|
|
+ }
|
|
|
|
+ if fwmark != 0 {
|
|
|
|
+ fwmarkString += "FWMark = " + strconv.Itoa(int(fwmark))
|
|
|
|
+ }
|
|
|
|
+ if err != nil {
|
|
|
|
+ return "", err
|
|
|
|
+ }
|
|
|
|
+ config := fmt.Sprintf(`[Interface]
|
|
|
|
+Address = %s
|
|
|
|
+PrivateKey = %s
|
|
|
|
+MTU = %s
|
|
|
|
+%s
|
|
|
|
+%s
|
|
|
|
+
|
|
|
|
+%s
|
|
|
|
+
|
|
|
|
+`,
|
|
|
|
+ address+"/32",
|
|
|
|
+ privatekey,
|
|
|
|
+ strconv.Itoa(int(mtu)),
|
|
|
|
+ listenPortString,
|
|
|
|
+ fwmarkString,
|
|
|
|
+ peersString)
|
|
|
|
+ return config, nil
|
|
|
|
+}
|