2018-01-24 10:59:01 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import water "github.com/songgao/water"
|
|
|
|
import "os/exec"
|
|
|
|
import "strings"
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// This is to catch Windows platforms
|
|
|
|
|
|
|
|
func (tun *tunDevice) setup(ifname string, addr string, mtu int) error {
|
|
|
|
config := water.Config{DeviceType: water.TAP}
|
|
|
|
config.PlatformSpecificParams.ComponentID = "tap0901"
|
|
|
|
config.PlatformSpecificParams.Network = "169.254.0.1/32"
|
|
|
|
iface, err := water.New(config)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-01-25 03:14:26 +00:00
|
|
|
// Disable/enable the interface to resets its configuration (invalidating iface)
|
|
|
|
cmd := exec.Command("netsh", "interface", "set", "interface", iface.Name(), "admin=DISABLED")
|
|
|
|
tun.core.log.Printf("netsh command: %v", strings.Join(cmd.Args, " "))
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
tun.core.log.Printf("Windows netsh failed: %v.", err)
|
|
|
|
tun.core.log.Println(string(output))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
cmd = exec.Command("netsh", "interface", "set", "interface", iface.Name(), "admin=ENABLED")
|
|
|
|
tun.core.log.Printf("netsh command: %v", strings.Join(cmd.Args, " "))
|
|
|
|
output, err = cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
tun.core.log.Printf("Windows netsh failed: %v.", err)
|
|
|
|
tun.core.log.Println(string(output))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Get a new iface
|
|
|
|
iface, err = water.New(config)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2018-01-24 10:59:01 +00:00
|
|
|
tun.iface = iface
|
|
|
|
tun.mtu = mtu
|
|
|
|
return tun.setupAddress(addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tun *tunDevice) setupAddress(addr string) error {
|
|
|
|
// Set address
|
|
|
|
// addr = strings.TrimRight(addr, "/8")
|
2018-01-25 03:14:26 +00:00
|
|
|
cmd := exec.Command("netsh", "interface", "ipv6", "add", "address",
|
2018-01-24 22:37:08 +00:00
|
|
|
fmt.Sprintf("interface=%s", tun.iface.Name()),
|
2018-01-25 03:14:26 +00:00
|
|
|
fmt.Sprintf("addr=%s", addr),
|
|
|
|
"store=active")
|
2018-01-24 10:59:01 +00:00
|
|
|
tun.core.log.Printf("netsh command: %v", strings.Join(cmd.Args, " "))
|
|
|
|
output, err := cmd.CombinedOutput()
|
|
|
|
if err != nil {
|
|
|
|
tun.core.log.Printf("Windows netsh failed: %v.", err)
|
|
|
|
tun.core.log.Println(string(output))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|