yggdrasil-go/src/tuntap/tun_linux.go

58 lines
1.4 KiB
Go
Raw Normal View History

2019-01-02 21:05:54 +03:00
// +build !mobile
package tuntap
2017-12-29 07:16:20 +03:00
// The linux platform specific tun parts
2018-06-13 01:50:08 +03:00
import (
2019-08-14 21:32:40 +03:00
"github.com/vishvananda/netlink"
wgtun "golang.zx2c4.com/wireguard/tun"
2018-06-13 01:50:08 +03:00
)
// Configures the TUN adapter with the correct IPv6 address and MTU.
func (tun *TunAdapter) setup(ifname string, addr string, mtu MTU) error {
if ifname == "auto" {
ifname = "\000"
}
iface, err := wgtun.CreateTUN(ifname, int(mtu))
2018-01-05 01:37:51 +03:00
if err != nil {
panic(err)
}
tun.iface = iface
if mtu, err := iface.MTU(); err == nil {
tun.mtu = getSupportedMTU(MTU(mtu))
} else {
tun.mtu = 0
}
2018-01-05 01:37:51 +03:00
return tun.setupAddress(addr)
}
2018-06-13 00:45:53 +03:00
// Configures the TAP adapter with the correct IPv6 address and MTU. Netlink
// is used to do this, so there is not a hard requirement on "ip" or "ifconfig"
// to exist on the system, but this will fail if Netlink is not present in the
// kernel (it nearly always is).
func (tun *TunAdapter) setupAddress(addr string) error {
2019-08-14 21:32:40 +03:00
nladdr, err := netlink.ParseAddr(addr)
if err != nil {
return err
}
2019-11-22 21:39:27 +03:00
nlintf, err := netlink.LinkByName(tun.Name())
if err != nil {
return err
}
2019-08-14 21:32:40 +03:00
if err := netlink.AddrAdd(nlintf, nladdr); err != nil {
return err
}
if err := netlink.LinkSetMTU(nlintf, int(tun.mtu)); err != nil {
2018-01-05 01:37:51 +03:00
return err
}
2019-08-14 21:32:40 +03:00
if err := netlink.LinkSetUp(nlintf); err != nil {
2018-01-05 01:37:51 +03:00
return err
}
// Friendly output
2019-11-22 21:39:27 +03:00
tun.log.Infof("Interface name: %s", tun.Name())
tun.log.Infof("Interface IPv6: %s", addr)
tun.log.Infof("Interface MTU: %d", tun.mtu)
2018-01-05 01:37:51 +03:00
return nil
2017-12-29 07:16:20 +03:00
}