2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-17 22:58:54 +00:00
|
|
|
*
|
2021-01-28 16:52:15 +00:00
|
|
|
* Copyright (C) 2017-2021 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"
|
|
|
|
"net"
|
|
|
|
"os"
|
2021-02-18 22:53:22 +00:00
|
|
|
"sync"
|
2018-05-24 13:29:16 +00:00
|
|
|
"syscall"
|
2018-05-17 22:58:54 +00:00
|
|
|
"unsafe"
|
2019-05-14 07:09:52 +00:00
|
|
|
|
|
|
|
"golang.org/x/net/ipv6"
|
|
|
|
"golang.org/x/sys/unix"
|
2018-05-17 22:58:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// _TUNSIFHEAD, value derived from sys/net/{if_tun,ioccom}.h
|
|
|
|
// const _TUNSIFHEAD = ((0x80000000) | (((4) & ((1 << 13) - 1) ) << 16) | (uint32(byte('t')) << 8) | (96))
|
2019-04-20 02:29:07 +00:00
|
|
|
const (
|
|
|
|
_TUNSIFHEAD = 0x80047460
|
|
|
|
_TUNSIFMODE = 0x8004745e
|
|
|
|
_TUNSIFPID = 0x2000745f
|
|
|
|
)
|
|
|
|
|
2019-06-06 21:00:15 +00:00
|
|
|
// TODO: move into x/sys/unix
|
2019-04-20 02:29:07 +00:00
|
|
|
const (
|
|
|
|
SIOCGIFINFO_IN6 = 0xc048696c
|
|
|
|
SIOCSIFINFO_IN6 = 0xc048696d
|
|
|
|
ND6_IFF_AUTO_LINKLOCAL = 0x20
|
|
|
|
ND6_IFF_NO_DAD = 0x100
|
|
|
|
)
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
// 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
|
2019-04-20 02:29:07 +00:00
|
|
|
Pad0 [16 - SIZEOF_UINTPTR]byte
|
2018-05-21 15:27:18 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-04-20 02:29:07 +00:00
|
|
|
// Structures for nd6 flag manipulation
|
|
|
|
type in6_ndireq struct {
|
|
|
|
Name [unix.IFNAMSIZ]byte
|
|
|
|
Linkmtu uint32
|
|
|
|
Maxmtu uint32
|
|
|
|
Basereachable uint32
|
|
|
|
Reachable uint32
|
|
|
|
Retrans uint32
|
|
|
|
Flags uint32
|
|
|
|
Recalctm int
|
|
|
|
Chlim uint8
|
|
|
|
Initialized uint8
|
|
|
|
Randomseed0 [8]byte
|
|
|
|
Randomseed1 [8]byte
|
|
|
|
Randomid [8]byte
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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
|
2019-06-10 21:33:40 +00:00
|
|
|
events chan Event
|
2018-05-21 15:27:18 +00:00
|
|
|
errors chan error
|
|
|
|
routeSocket int
|
2021-02-18 22:53:22 +00:00
|
|
|
closeOnce sync.Once
|
2018-05-21 15:27:18 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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 {
|
2019-06-10 21:33:40 +00:00
|
|
|
tun.events <- EventUp
|
2018-05-21 15:27:18 +00:00
|
|
|
}
|
|
|
|
if up != statusUp && !up {
|
2019-06-10 21:33:40 +00:00
|
|
|
tun.events <- EventDown
|
2018-05-21 15:27:18 +00:00
|
|
|
}
|
|
|
|
statusUp = up
|
|
|
|
|
|
|
|
// MTU changes
|
|
|
|
if iface.MTU != statusMTU {
|
2019-06-10 21:33:40 +00:00
|
|
|
tun.events <- EventMTUUpdate
|
2018-05-21 15:27:18 +00:00
|
|
|
}
|
|
|
|
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 {
|
2019-04-20 02:29:07 +00:00
|
|
|
// Open control socket.
|
2018-05-17 22:58:54 +00:00
|
|
|
var fd int
|
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:40 +00:00
|
|
|
func CreateTUN(name string, mtu int) (Device, 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
|
|
|
|
}
|
2019-02-27 00:06:43 +00:00
|
|
|
|
2019-02-28 23:05:57 +00:00
|
|
|
tun := NativeTun{tunFile: tunFile}
|
2019-02-27 00:06:43 +00:00
|
|
|
var assignedName string
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
assignedName, err = tunName(fd)
|
|
|
|
})
|
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
|
2019-02-27 00:06:43 +00:00
|
|
|
var errno syscall.Errno
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
fd,
|
|
|
|
uintptr(_TUNSIFHEAD),
|
|
|
|
uintptr(unsafe.Pointer(&ifheadmode)),
|
|
|
|
)
|
|
|
|
})
|
2018-05-17 22:58:54 +00:00
|
|
|
|
|
|
|
if errno != 0 {
|
2019-04-20 02:29:07 +00:00
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2020-11-07 20:56:32 +00:00
|
|
|
return nil, fmt.Errorf("Unable to put into IFHEAD mode: %w", errno)
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-23 18:41:34 +00:00
|
|
|
// Get out of PPP mode.
|
|
|
|
ifflags := syscall.IFF_BROADCAST
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
fd,
|
|
|
|
uintptr(_TUNSIFMODE),
|
|
|
|
uintptr(unsafe.Pointer(&ifflags)),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, fmt.Errorf("Unable to put into IFF_BROADCAST mode: %w", errno)
|
|
|
|
}
|
|
|
|
|
2019-04-20 02:29:07 +00:00
|
|
|
// Open control sockets
|
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 {
|
2019-04-20 02:29:07 +00:00
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2018-05-17 22:58:54 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-21 15:27:18 +00:00
|
|
|
defer unix.Close(confd)
|
2019-04-20 02:29:07 +00:00
|
|
|
confd6, err := unix.Socket(
|
|
|
|
unix.AF_INET6,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer unix.Close(confd6)
|
|
|
|
|
|
|
|
// Disable link-local v6, not just because WireGuard doesn't do that anyway, but
|
|
|
|
// also because there are serious races with attaching and detaching LLv6 addresses
|
|
|
|
// in relation to interface lifetime within the FreeBSD kernel.
|
|
|
|
var ndireq in6_ndireq
|
|
|
|
copy(ndireq.Name[:], assignedName)
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(confd6),
|
|
|
|
uintptr(SIOCGIFINFO_IN6),
|
|
|
|
uintptr(unsafe.Pointer(&ndireq)),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2020-11-07 20:56:32 +00:00
|
|
|
return nil, fmt.Errorf("Unable to get nd6 flags for %s: %w", assignedName, errno)
|
2019-04-20 02:29:07 +00:00
|
|
|
}
|
|
|
|
ndireq.Flags = ndireq.Flags &^ ND6_IFF_AUTO_LINKLOCAL
|
|
|
|
ndireq.Flags = ndireq.Flags | ND6_IFF_NO_DAD
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(confd6),
|
|
|
|
uintptr(SIOCSIFINFO_IN6),
|
|
|
|
uintptr(unsafe.Pointer(&ndireq)),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2020-11-07 20:56:32 +00:00
|
|
|
return nil, fmt.Errorf("Unable to set nd6 flags for %s: %w", assignedName, errno)
|
2019-04-20 02:29:07 +00:00
|
|
|
}
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2021-03-07 16:21:31 +00:00
|
|
|
if name != "" {
|
|
|
|
// Rename the interface
|
|
|
|
var newnp [unix.IFNAMSIZ]byte
|
|
|
|
copy(newnp[:], name)
|
|
|
|
var ifr ifreq_ptr
|
|
|
|
copy(ifr.Name[:], assignedName)
|
|
|
|
ifr.Data = uintptr(unsafe.Pointer(&newnp[0]))
|
|
|
|
_, _, errno = unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(confd),
|
|
|
|
uintptr(unix.SIOCSIFNAME),
|
|
|
|
uintptr(unsafe.Pointer(&ifr)),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, fmt.Errorf("Failed to rename %s to %s: %w", assignedName, name, errno)
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:40 +00:00
|
|
|
func CreateTUNFromFile(file *os.File, mtu int) (Device, error) {
|
2018-05-17 22:58:54 +00:00
|
|
|
|
2019-02-28 23:05:57 +00:00
|
|
|
tun := &NativeTun{
|
2018-10-17 19:26:53 +00:00
|
|
|
tunFile: file,
|
2019-06-10 21:33:40 +00:00
|
|
|
events: make(chan Event, 10),
|
2018-10-17 19:26:53 +00:00
|
|
|
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-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
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +00:00
|
|
|
func (tun *NativeTun) Name() (string, error) {
|
2019-02-27 00:06:43 +00:00
|
|
|
var name string
|
|
|
|
var err error
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
name, err = tunName(fd)
|
|
|
|
})
|
2018-05-17 22:58:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
tun.name = name
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:40 +00:00
|
|
|
func (tun *NativeTun) Events() chan Event {
|
2018-05-17 22:58:54 +00:00
|
|
|
return tun.events
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +00:00
|
|
|
func (tun *NativeTun) Read(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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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
|
|
|
}
|
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
func (tun *NativeTun) Flush() error {
|
2019-06-06 21:00:15 +00:00
|
|
|
// TODO: can flushing be implemented by buffering and using sendmmsg?
|
2019-03-21 20:43:04 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +00:00
|
|
|
func (tun *NativeTun) Close() error {
|
2021-02-18 22:53:22 +00:00
|
|
|
var err1, err2, err3 error
|
|
|
|
tun.closeOnce.Do(func() {
|
|
|
|
err1 = tun.tunFile.Close()
|
|
|
|
err2 = tunDestroy(tun.name)
|
|
|
|
if tun.routeSocket != -1 {
|
|
|
|
unix.Shutdown(tun.routeSocket, unix.SHUT_RDWR)
|
|
|
|
err3 = 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
|
|
|
|
}
|
tun: use netpoll instead of rwcancel
The new sysconn function of Go 1.12 makes this possible:
package main
import "log"
import "os"
import "unsafe"
import "time"
import "syscall"
import "sync"
import "golang.org/x/sys/unix"
func main() {
fd, err := os.OpenFile("/dev/net/tun", os.O_RDWR, 0)
if err != nil {
log.Fatal(err)
}
var ifr [unix.IFNAMSIZ + 64]byte
copy(ifr[:], []byte("cheese"))
*(*uint16)(unsafe.Pointer(&ifr[unix.IFNAMSIZ])) = unix.IFF_TUN
var errno syscall.Errno
s, _ := fd.SyscallConn()
s.Control(func(fd uintptr) {
_, _, errno = unix.Syscall(
unix.SYS_IOCTL,
fd,
uintptr(unix.TUNSETIFF),
uintptr(unsafe.Pointer(&ifr[0])),
)
})
if errno != 0 {
log.Fatal(errno)
}
b := [4]byte{}
wait := sync.WaitGroup{}
wait.Add(1)
go func() {
_, err := fd.Read(b[:])
log.Print("Read errored: ", err)
wait.Done()
}()
time.Sleep(time.Second)
log.Print("Closing")
err = fd.Close()
if err != nil {
log.Print("Close errored: " , err)
}
wait.Wait()
log.Print("Exiting")
}
2019-02-27 00:48:58 +00:00
|
|
|
return err3
|
2018-05-17 22:58:54 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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
|
|
|
|
}
|
|
|
|
|
2019-02-28 23:05:57 +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
|
|
|
}
|