yggdrasil-go/src/tuntap/tun_linux.go

61 lines
1.5 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
tun.mtu = getSupportedMTU(mtu, iftapmode)
// 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
}