yggdrasil-go/src/tuntap/tun_linux.go

69 lines
1.9 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"
2018-06-13 01:50:08 +03:00
water "github.com/yggdrasil-network/water"
)
2018-06-13 00:45:53 +03:00
// Configures the TAP adapter with the correct IPv6 address and MTU.
func (tun *TunAdapter) setup(ifname string, iftapmode bool, addr string, mtu int) error {
var config water.Config
if iftapmode {
config = water.Config{DeviceType: water.TAP}
} else {
config = water.Config{DeviceType: water.TUN}
}
2018-01-05 01:37:51 +03:00
if ifname != "" && ifname != "auto" {
config.Name = ifname
}
iface, err := water.New(config)
2018-01-05 01:37:51 +03:00
if err != nil {
panic(err)
}
tun.iface = iface
2018-03-03 15:30:54 +03:00
tun.mtu = getSupportedMTU(mtu)
2018-07-19 12:01:12 +03:00
// The following check is specific to Linux, as the TAP driver only supports
// an MTU of 65535-14 to make room for the ethernet headers. This makes sure
// that the MTU gets rounded down to 65521 instead of causing a panic.
if iftapmode {
if tun.mtu > 65535-tun_ETHER_HEADER_LENGTH {
2018-07-21 07:02:25 +03:00
tun.mtu = 65535 - tun_ETHER_HEADER_LENGTH
2018-07-19 12:01:12 +03:00
}
}
// Friendly output
tun.log.Infof("Interface name: %s", tun.iface.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 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-08-14 21:32:40 +03:00
nlintf, err := netlink.LinkByName(tun.iface.Name())
if err != nil {
return err
}
2019-08-14 21:32:40 +03:00
if err := netlink.AddrAdd(nlintf, nladdr); err != nil {
return err
}
2019-08-14 21:32:40 +03:00
if err := netlink.LinkSetMTU(nlintf, 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
}
return nil
2017-12-29 07:16:20 +03:00
}