2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-17 22:58:54 +00:00
|
|
|
*
|
2019-01-02 00:55:51 +00:00
|
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
2018-05-17 22:58:54 +00:00
|
|
|
*/
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
package tun
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-05-24 13:29:16 +00:00
|
|
|
"git.zx2c4.com/wireguard-go/rwcancel"
|
2018-05-17 22:58:54 +00:00
|
|
|
"golang.org/x/net/ipv6"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
"net"
|
|
|
|
"os"
|
2018-05-24 13:29:16 +00:00
|
|
|
"syscall"
|
2018-05-17 22:58:54 +00:00
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
// _TUNSIFHEAD, value derived from sys/net/{if_tun,ioccom}.h
|
|
|
|
// const _TUNSIFHEAD = ((0x80000000) | (((4) & ((1 << 13) - 1) ) << 16) | (uint32(byte('t')) << 8) | (96))
|
|
|
|
const _TUNSIFHEAD = 0x80047460
|
|
|
|
const _TUNSIFMODE = 0x8004745e
|
|
|
|
const _TUNSIFPID = 0x2000745f
|
|
|
|
|
|
|
|
// Iface status string max len
|
|
|
|
const _IFSTATMAX = 800
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
const SIZEOF_UINTPTR = 4 << (^uintptr(0) >> 32 & 1)
|
|
|
|
|
|
|
|
// structure for iface requests with a pointer
|
|
|
|
type ifreq_ptr struct {
|
|
|
|
Name [unix.IFNAMSIZ]byte
|
|
|
|
Data uintptr
|
|
|
|
Pad0 [24 - SIZEOF_UINTPTR]byte
|
|
|
|
}
|
|
|
|
|
2018-05-17 22:58:54 +00:00
|
|
|
// Structure for iface mtu get/set ioctls
|
|
|
|
type ifreq_mtu struct {
|
2018-05-21 15:27:18 +00:00
|
|
|
Name [unix.IFNAMSIZ]byte
|
2018-05-17 22:58:54 +00:00
|
|
|
MTU uint32
|
|
|
|
Pad0 [12]byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// Structure for interface status request ioctl
|
|
|
|
type ifstat struct {
|
2018-05-21 15:27:18 +00:00
|
|
|
IfsName [unix.IFNAMSIZ]byte
|
2018-05-17 22:58:54 +00:00
|
|
|
Ascii [_IFSTATMAX]byte
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
type nativeTun struct {
|
2018-05-21 15:27:18 +00:00
|
|
|
name string
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile *os.File
|
|
|
|
fd uintptr
|
2018-05-21 15:27:18 +00:00
|
|
|
rwcancel *rwcancel.RWCancel
|
|
|
|
events chan TUNEvent
|
|
|
|
errors chan error
|
|
|
|
routeSocket int
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) routineRouteListener(tunIfindex int) {
|
2018-05-21 15:27:18 +00:00
|
|
|
var (
|
|
|
|
statusUp bool
|
|
|
|
statusMTU int
|
|
|
|
)
|
|
|
|
|
|
|
|
defer close(tun.events)
|
|
|
|
|
|
|
|
data := make([]byte, os.Getpagesize())
|
|
|
|
for {
|
2018-05-24 13:29:16 +00:00
|
|
|
retry:
|
2018-05-21 15:27:18 +00:00
|
|
|
n, err := unix.Read(tun.routeSocket, data)
|
|
|
|
if err != nil {
|
2018-05-24 13:29:16 +00:00
|
|
|
if errno, ok := err.(syscall.Errno); ok && errno == syscall.EINTR {
|
|
|
|
goto retry
|
|
|
|
}
|
2018-05-21 15:27:18 +00:00
|
|
|
tun.errors <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n < 14 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if data[3 /* type */] != unix.RTM_IFINFO {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ifindex := int(*(*uint16)(unsafe.Pointer(&data[12 /* ifindex */])))
|
|
|
|
if ifindex != tunIfindex {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
iface, err := net.InterfaceByIndex(ifindex)
|
|
|
|
if err != nil {
|
|
|
|
tun.errors <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Up / Down event
|
|
|
|
up := (iface.Flags & net.FlagUp) != 0
|
|
|
|
if up != statusUp && up {
|
|
|
|
tun.events <- TUNEventUp
|
|
|
|
}
|
|
|
|
if up != statusUp && !up {
|
|
|
|
tun.events <- TUNEventDown
|
|
|
|
}
|
|
|
|
statusUp = up
|
|
|
|
|
|
|
|
// MTU changes
|
|
|
|
if iface.MTU != statusMTU {
|
|
|
|
tun.events <- TUNEventMTUUpdate
|
|
|
|
}
|
|
|
|
statusMTU = iface.MTU
|
|
|
|
}
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
func tunName(fd uintptr) (string, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
//Terrible hack to make up for freebsd not having a TUNGIFNAME
|
|
|
|
|
|
|
|
//First, make sure the tun pid matches this proc's pid
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(fd),
|
|
|
|
uintptr(_TUNSIFPID),
|
|
|
|
uintptr(0),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
2018-05-21 15:27:18 +00:00
|
|
|
return "", fmt.Errorf("failed to set tun device PID: %s", errno.Error())
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Open iface control socket
|
|
|
|
|
|
|
|
confd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
defer unix.Close(confd)
|
|
|
|
|
2018-05-17 22:58:54 +00:00
|
|
|
procPid := os.Getpid()
|
|
|
|
|
|
|
|
//Try to find interface with matching PID
|
|
|
|
for i := 1; ; i++ {
|
|
|
|
iface, _ := net.InterfaceByIndex(i)
|
|
|
|
if err != nil || iface == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Structs for getting data in and out of SIOCGIFSTATUS ioctl
|
|
|
|
var ifstatus ifstat
|
2018-05-21 15:27:18 +00:00
|
|
|
copy(ifstatus.IfsName[:], iface.Name)
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
// Make the syscall to get the status string
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(confd),
|
|
|
|
uintptr(unix.SIOCGIFSTATUS),
|
|
|
|
uintptr(unsafe.Pointer(&ifstatus)),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
nullStr := ifstatus.Ascii[:]
|
|
|
|
i := bytes.IndexByte(nullStr, 0)
|
|
|
|
if i < 1 {
|
|
|
|
continue
|
|
|
|
}
|
2018-05-21 15:27:18 +00:00
|
|
|
statStr := string(nullStr[:i])
|
2018-05-17 22:58:54 +00:00
|
|
|
var pidNum int = 0
|
|
|
|
|
|
|
|
// Finally get the owning PID
|
|
|
|
// Format string taken from sys/net/if_tun.c
|
|
|
|
_, err := fmt.Sscanf(statStr, "\tOpened by PID %d\n", &pidNum)
|
|
|
|
if err != nil {
|
2018-05-21 15:27:18 +00:00
|
|
|
continue
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if pidNum == procPid {
|
2018-05-21 15:27:18 +00:00
|
|
|
return iface.Name, nil
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy a named system interface
|
2018-05-21 15:27:18 +00:00
|
|
|
func tunDestroy(name string) error {
|
2018-05-17 22:58:54 +00:00
|
|
|
// open control socket
|
|
|
|
var fd int
|
|
|
|
|
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
// do ioctl call
|
|
|
|
|
|
|
|
var ifr [32]byte
|
|
|
|
copy(ifr[:], name)
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(fd),
|
|
|
|
uintptr(unix.SIOCIFDESTROY),
|
|
|
|
uintptr(unsafe.Pointer(&ifr[0])),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
2018-05-21 15:27:18 +00:00
|
|
|
return fmt.Errorf("failed to destroy interface %s: %s", name, errno.Error())
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func CreateTUN(name string, mtu int) (TUNDevice, error) {
|
2018-05-21 15:27:18 +00:00
|
|
|
if len(name) > unix.IFNAMSIZ-1 {
|
|
|
|
return nil, errors.New("interface name too long")
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if interface already exists
|
|
|
|
iface, _ := net.InterfaceByName(name)
|
|
|
|
if iface != nil {
|
2018-05-21 15:27:18 +00:00
|
|
|
return nil, fmt.Errorf("interface %s already exists", name)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile, err := os.OpenFile("/dev/tun", unix.O_RDWR, 0)
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-10-17 19:26:53 +00:00
|
|
|
tunfd := tunFile.Fd()
|
2018-05-21 15:27:18 +00:00
|
|
|
assignedName, err := tunName(tunfd)
|
2018-05-17 22:58:54 +00:00
|
|
|
if err != nil {
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile.Close()
|
2018-05-17 22:58:54 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable ifhead mode, otherwise tun will complain if it gets a non-AF_INET packet
|
|
|
|
ifheadmode := 1
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(tunfd),
|
|
|
|
uintptr(_TUNSIFHEAD),
|
|
|
|
uintptr(unsafe.Pointer(&ifheadmode)),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
2018-05-21 15:27:18 +00:00
|
|
|
return nil, fmt.Errorf("error %s", errno.Error())
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rename tun interface
|
2018-05-21 15:27:18 +00:00
|
|
|
|
2018-05-17 22:58:54 +00:00
|
|
|
// Open control socket
|
2018-05-21 15:27:18 +00:00
|
|
|
confd, err := unix.Socket(
|
2018-05-17 22:58:54 +00:00
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
defer unix.Close(confd)
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
// set up struct for iface rename
|
2018-05-21 15:27:18 +00:00
|
|
|
var newnp [unix.IFNAMSIZ]byte
|
2018-05-17 22:58:54 +00:00
|
|
|
copy(newnp[:], name)
|
|
|
|
|
|
|
|
var ifr ifreq_ptr
|
2018-05-21 15:27:18 +00:00
|
|
|
copy(ifr.Name[:], assignedName)
|
2018-05-17 22:58:54 +00:00
|
|
|
ifr.Data = uintptr(unsafe.Pointer(&newnp[0]))
|
|
|
|
|
|
|
|
//do actual ioctl to rename iface
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
2018-05-21 15:27:18 +00:00
|
|
|
uintptr(confd),
|
2018-05-17 22:58:54 +00:00
|
|
|
uintptr(unix.SIOCSIFNAME),
|
|
|
|
uintptr(unsafe.Pointer(&ifr)),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile.Close()
|
2018-05-21 15:27:18 +00:00
|
|
|
tunDestroy(name)
|
|
|
|
return nil, fmt.Errorf("failed to rename %s to %s: %s", assignedName, name, errno.Error())
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 19:26:53 +00:00
|
|
|
return CreateTUNFromFile(tunFile, mtu)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func CreateTUNFromFile(file *os.File, mtu int) (TUNDevice, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
tun := &nativeTun{
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile: file,
|
|
|
|
fd: file.Fd(),
|
|
|
|
events: make(chan TUNEvent, 10),
|
|
|
|
errors: make(chan error, 1),
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
name, err := tun.Name()
|
|
|
|
if err != nil {
|
2018-10-17 19:26:53 +00:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 15:27:18 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
tunIfindex, err := func() (int, error) {
|
|
|
|
iface, err := net.InterfaceByName(name)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
return iface.Index, nil
|
|
|
|
}()
|
|
|
|
if err != nil {
|
2018-10-17 19:26:53 +00:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 15:27:18 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2018-10-17 19:26:53 +00:00
|
|
|
tun.rwcancel, err = rwcancel.NewRWCancel(int(tun.fd))
|
2018-05-17 22:58:54 +00:00
|
|
|
if err != nil {
|
2018-10-17 19:26:53 +00:00
|
|
|
tun.tunFile.Close()
|
2018-05-17 22:58:54 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-05-21 15:27:18 +00:00
|
|
|
tun.routeSocket, err = unix.Socket(unix.AF_ROUTE, unix.SOCK_RAW, unix.AF_UNSPEC)
|
|
|
|
if err != nil {
|
2018-10-17 19:26:53 +00:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 15:27:18 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
go tun.routineRouteListener(tunIfindex)
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
err = tun.setMTU(mtu)
|
2018-05-17 22:58:54 +00:00
|
|
|
if err != nil {
|
|
|
|
tun.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tun, nil
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) Name() (string, error) {
|
2018-10-17 19:26:53 +00:00
|
|
|
name, err := tunName(tun.fd)
|
2018-05-17 22:58:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
tun.name = name
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) File() *os.File {
|
2018-10-17 19:26:53 +00:00
|
|
|
return tun.tunFile
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) Events() chan TUNEvent {
|
2018-05-17 22:58:54 +00:00
|
|
|
return tun.events
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) doRead(buff []byte, offset int) (int, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
select {
|
|
|
|
case err := <-tun.errors:
|
|
|
|
return 0, err
|
|
|
|
default:
|
|
|
|
buff := buff[offset-4:]
|
2018-10-17 19:26:53 +00:00
|
|
|
n, err := tun.tunFile.Read(buff[:])
|
2018-05-17 22:58:54 +00:00
|
|
|
if n < 4 {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return n - 4, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) Read(buff []byte, offset int) (int, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
for {
|
|
|
|
n, err := tun.doRead(buff, offset)
|
2018-05-24 13:29:16 +00:00
|
|
|
if err == nil || !rwcancel.RetryAfterError(err) {
|
2018-05-17 22:58:54 +00:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
if !tun.rwcancel.ReadyRead() {
|
|
|
|
return 0, errors.New("tun device closed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) Write(buff []byte, offset int) (int, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
// reserve space for header
|
|
|
|
|
|
|
|
buff = buff[offset-4:]
|
|
|
|
|
|
|
|
// add packet information header
|
|
|
|
|
|
|
|
buff[0] = 0x00
|
|
|
|
buff[1] = 0x00
|
|
|
|
buff[2] = 0x00
|
|
|
|
|
|
|
|
if buff[4]>>4 == ipv6.Version {
|
|
|
|
buff[3] = unix.AF_INET6
|
|
|
|
} else {
|
|
|
|
buff[3] = unix.AF_INET
|
|
|
|
}
|
|
|
|
|
|
|
|
// write
|
|
|
|
|
2018-10-17 19:26:53 +00:00
|
|
|
return tun.tunFile.Write(buff)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) Close() error {
|
2018-05-21 15:27:18 +00:00
|
|
|
var err4 error
|
2018-05-17 22:58:54 +00:00
|
|
|
err1 := tun.rwcancel.Cancel()
|
2018-10-17 19:26:53 +00:00
|
|
|
err2 := tun.tunFile.Close()
|
2018-05-21 15:27:18 +00:00
|
|
|
err3 := tunDestroy(tun.name)
|
|
|
|
if tun.routeSocket != -1 {
|
2018-05-21 23:26:47 +00:00
|
|
|
unix.Shutdown(tun.routeSocket, unix.SHUT_RDWR)
|
2018-05-21 15:27:18 +00:00
|
|
|
err4 = unix.Close(tun.routeSocket)
|
|
|
|
tun.routeSocket = -1
|
|
|
|
} else if tun.events != nil {
|
|
|
|
close(tun.events)
|
|
|
|
}
|
2018-05-17 22:58:54 +00:00
|
|
|
if err1 != nil {
|
|
|
|
return err1
|
|
|
|
}
|
|
|
|
if err2 != nil {
|
|
|
|
return err2
|
|
|
|
}
|
2018-05-21 15:27:18 +00:00
|
|
|
if err3 != nil {
|
|
|
|
return err3
|
|
|
|
}
|
|
|
|
return err4
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) setMTU(n int) error {
|
2018-05-17 22:58:54 +00:00
|
|
|
// open datagram socket
|
|
|
|
|
|
|
|
var fd int
|
|
|
|
|
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
// do ioctl call
|
|
|
|
|
|
|
|
var ifr ifreq_mtu
|
|
|
|
copy(ifr.Name[:], tun.name)
|
|
|
|
ifr.MTU = uint32(n)
|
|
|
|
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(fd),
|
|
|
|
uintptr(unix.SIOCSIFMTU),
|
|
|
|
uintptr(unsafe.Pointer(&ifr)),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
2018-05-21 15:27:18 +00:00
|
|
|
return fmt.Errorf("failed to set MTU on %s", tun.name)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-23 00:10:54 +00:00
|
|
|
func (tun *nativeTun) MTU() (int, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
// open datagram socket
|
|
|
|
|
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
// do ioctl call
|
|
|
|
var ifr ifreq_mtu
|
|
|
|
copy(ifr.Name[:], tun.name)
|
|
|
|
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(fd),
|
|
|
|
uintptr(unix.SIOCGIFMTU),
|
|
|
|
uintptr(unsafe.Pointer(&ifr)),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
2018-05-21 15:27:18 +00:00
|
|
|
return 0, fmt.Errorf("failed to get MTU on %s", tun.name)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 16:33:50 +00:00
|
|
|
return int(*(*int32)(unsafe.Pointer(&ifr.MTU))), nil
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|