2019-01-02 18:05:54 +00:00
|
|
|
// +build !mobile
|
|
|
|
|
2019-03-28 00:30:25 +00:00
|
|
|
package tuntap
|
2017-12-28 22:16:20 -06:00
|
|
|
|
|
|
|
// The linux platform specific tun parts
|
|
|
|
|
2018-06-12 17:50:08 -05:00
|
|
|
import (
|
2019-08-14 19:32:40 +01:00
|
|
|
"github.com/vishvananda/netlink"
|
2018-01-04 22:34:17 +00:00
|
|
|
|
2018-06-12 17:50:08 -05:00
|
|
|
water "github.com/yggdrasil-network/water"
|
|
|
|
)
|
2018-03-03 16:41:36 -06:00
|
|
|
|
2018-06-12 22:45:53 +01:00
|
|
|
// Configures the TAP adapter with the correct IPv6 address and MTU.
|
2019-03-28 00:30:25 +00:00
|
|
|
func (tun *TunAdapter) setup(ifname string, iftapmode bool, addr string, mtu int) error {
|
2018-02-11 21:45:44 +00:00
|
|
|
var config water.Config
|
|
|
|
if iftapmode {
|
|
|
|
config = water.Config{DeviceType: water.TAP}
|
|
|
|
} else {
|
|
|
|
config = water.Config{DeviceType: water.TUN}
|
|
|
|
}
|
2018-01-04 22:37:51 +00:00
|
|
|
if ifname != "" && ifname != "auto" {
|
|
|
|
config.Name = ifname
|
|
|
|
}
|
2018-01-04 22:34:17 +00:00
|
|
|
iface, err := water.New(config)
|
2018-01-04 22:37:51 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
tun.iface = iface
|
2019-11-19 14:20:11 +00:00
|
|
|
tun.mtu = getSupportedMTU(mtu, iftapmode)
|
2018-07-19 10:15:26 +01:00
|
|
|
// Friendly output
|
2019-04-20 16:32:27 +01:00
|
|
|
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-04 22:37:51 +00:00
|
|
|
return tun.setupAddress(addr)
|
2018-01-04 22:34:17 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 22:45:53 +01: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).
|
2019-03-28 00:30:25 +00:00
|
|
|
func (tun *TunAdapter) setupAddress(addr string) error {
|
2019-08-14 19:32:40 +01:00
|
|
|
nladdr, err := netlink.ParseAddr(addr)
|
2018-03-03 16:41:36 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-14 19:32:40 +01:00
|
|
|
nlintf, err := netlink.LinkByName(tun.iface.Name())
|
2018-03-03 16:41:36 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-08-14 19:32:40 +01:00
|
|
|
if err := netlink.AddrAdd(nlintf, nladdr); err != nil {
|
2018-03-03 16:41:36 -06:00
|
|
|
return err
|
|
|
|
}
|
2019-08-14 19:32:40 +01:00
|
|
|
if err := netlink.LinkSetMTU(nlintf, tun.mtu); err != nil {
|
2018-01-04 22:37:51 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-08-14 19:32:40 +01:00
|
|
|
if err := netlink.LinkSetUp(nlintf); err != nil {
|
2018-01-04 22:37:51 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2017-12-28 22:16:20 -06:00
|
|
|
}
|