2021-09-23 04:34:58 -05:00
|
|
|
//go:build !mobile
|
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"
|
2019-11-22 16:43:50 +00:00
|
|
|
wgtun "golang.zx2c4.com/wireguard/tun"
|
2018-06-12 17:50:08 -05:00
|
|
|
)
|
2018-03-03 16:41:36 -06:00
|
|
|
|
2019-11-22 16:43:50 +00:00
|
|
|
// Configures the TUN adapter with the correct IPv6 address and MTU.
|
2021-05-16 20:00:45 +01:00
|
|
|
func (tun *TunAdapter) setup(ifname string, addr string, mtu uint64) error {
|
2019-11-22 20:07:08 +00:00
|
|
|
if ifname == "auto" {
|
|
|
|
ifname = "\000"
|
|
|
|
}
|
2020-01-05 17:27:54 +00:00
|
|
|
iface, err := wgtun.CreateTUN(ifname, int(mtu))
|
2018-01-04 22:37:51 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
tun.iface = iface
|
2019-11-22 16:43:50 +00:00
|
|
|
if mtu, err := iface.MTU(); err == nil {
|
2021-05-16 20:00:45 +01:00
|
|
|
tun.mtu = getSupportedMTU(uint64(mtu))
|
2019-11-22 16:43:50 +00:00
|
|
|
} else {
|
|
|
|
tun.mtu = 0
|
|
|
|
}
|
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-11-22 18:39:27 +00:00
|
|
|
nlintf, err := netlink.LinkByName(tun.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
|
|
|
|
}
|
2020-01-05 17:27:54 +00:00
|
|
|
if err := netlink.LinkSetMTU(nlintf, int(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
|
|
|
|
}
|
2019-11-22 16:43:50 +00:00
|
|
|
// Friendly output
|
2019-11-22 18:39:27 +00:00
|
|
|
tun.log.Infof("Interface name: %s", tun.Name())
|
2019-11-22 16:43:50 +00:00
|
|
|
tun.log.Infof("Interface IPv6: %s", addr)
|
|
|
|
tun.log.Infof("Interface MTU: %d", tun.mtu)
|
2018-01-04 22:37:51 +00:00
|
|
|
return nil
|
2017-12-28 22:16:20 -06:00
|
|
|
}
|