nebula/overlay/tun_windows.go

59 lines
1.3 KiB
Go
Raw Permalink Normal View History

2021-10-21 23:24:11 +02:00
//go:build !e2e_testing
2021-03-31 17:26:35 +02:00
// +build !e2e_testing
2021-11-11 23:37:29 +01:00
package overlay
2019-11-19 18:00:20 +01:00
import (
"fmt"
"net"
2021-11-08 19:36:31 +01:00
"os"
"path/filepath"
"runtime"
"syscall"
2019-11-19 18:00:20 +01:00
2021-03-26 15:46:30 +01:00
"github.com/sirupsen/logrus"
2019-11-19 18:00:20 +01:00
)
func newTunFromFd(_ *logrus.Logger, _ int, _ *net.IPNet, _ int, _ []Route, _ int) (Device, error) {
return nil, fmt.Errorf("newTunFromFd not supported in Windows")
}
func newTun(l *logrus.Logger, deviceName string, cidr *net.IPNet, defaultMTU int, routes []Route, _ int, _ bool) (Device, error) {
2021-11-08 19:36:31 +01:00
useWintun := true
if err := checkWinTunExists(); err != nil {
2021-11-08 19:36:31 +01:00
l.WithError(err).Warn("Check Wintun driver failed, fallback to wintap driver")
useWintun = false
2019-11-19 18:00:20 +01:00
}
2021-11-08 19:36:31 +01:00
if useWintun {
device, err := newWinTun(l, deviceName, cidr, defaultMTU, routes)
2021-11-08 19:36:31 +01:00
if err != nil {
return nil, fmt.Errorf("create Wintun interface failed, %w", err)
}
return device, nil
}
device, err := newWaterTun(l, cidr, defaultMTU, routes)
if err != nil {
return nil, fmt.Errorf("create wintap driver failed, %w", err)
}
return device, nil
2019-11-19 18:00:20 +01:00
}
2021-11-08 19:36:31 +01:00
func checkWinTunExists() error {
myPath, err := os.Executable()
if err != nil {
return err
}
2021-11-08 19:36:31 +01:00
arch := runtime.GOARCH
switch arch {
case "386":
//NOTE: wintun bundles 386 as x86
arch = "x86"
}
2021-11-08 19:36:31 +01:00
_, err = syscall.LoadDLL(filepath.Join(filepath.Dir(myPath), "dist", "windows", "wintun", "bin", arch, "wintun.dll"))
2019-11-19 18:00:20 +01:00
return err
}