2019-01-02 01:55:51 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-18 00:58:54 +02:00
|
|
|
*
|
2021-01-28 17:52:15 +01:00
|
|
|
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
|
2018-05-18 00:58:54 +02:00
|
|
|
*/
|
|
|
|
|
2018-05-23 02:10:54 +02:00
|
|
|
package tun
|
2018-05-18 00:58:54 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"os"
|
2021-02-18 23:53:22 +01:00
|
|
|
"sync"
|
2018-05-24 15:29:16 +02:00
|
|
|
"syscall"
|
2018-05-18 00:58:54 +02:00
|
|
|
"unsafe"
|
2019-05-14 09:09:52 +02:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
2018-05-18 00:58:54 +02:00
|
|
|
)
|
|
|
|
|
2019-04-20 04:29:07 +02:00
|
|
|
const (
|
|
|
|
_TUNSIFHEAD = 0x80047460
|
|
|
|
_TUNSIFMODE = 0x8004745e
|
2021-04-19 04:26:32 +02:00
|
|
|
_TUNGIFNAME = 0x4020745d
|
2021-04-19 23:01:36 +02:00
|
|
|
_TUNSIFPID = 0x2000745f
|
2019-04-20 04:29:07 +02:00
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
_SIOCGIFINFO_IN6 = 0xc048696c
|
|
|
|
_SIOCSIFINFO_IN6 = 0xc048696d
|
|
|
|
_ND6_IFF_AUTO_LINKLOCAL = 0x20
|
|
|
|
_ND6_IFF_NO_DAD = 0x100
|
2019-04-20 04:29:07 +02:00
|
|
|
)
|
2018-05-18 00:58:54 +02:00
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// Iface requests with just the name
|
|
|
|
type ifreqName struct {
|
2021-04-19 04:26:32 +02:00
|
|
|
Name [unix.IFNAMSIZ]byte
|
2021-04-19 22:54:59 +02:00
|
|
|
_ [16]byte
|
2021-04-19 04:26:32 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// Iface requests with a pointer
|
|
|
|
type ifreqPtr struct {
|
2018-05-21 17:27:18 +02:00
|
|
|
Name [unix.IFNAMSIZ]byte
|
|
|
|
Data uintptr
|
2021-04-19 22:54:59 +02:00
|
|
|
_ [16 - unsafe.Sizeof(uintptr(0))]byte
|
2018-05-21 17:27:18 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// Iface requests with MTU
|
|
|
|
type ifreqMtu struct {
|
2018-05-21 17:27:18 +02:00
|
|
|
Name [unix.IFNAMSIZ]byte
|
2018-05-18 00:58:54 +02:00
|
|
|
MTU uint32
|
2021-04-19 22:54:59 +02:00
|
|
|
_ [12]byte
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// ND6 flag manipulation
|
|
|
|
type nd6Req struct {
|
2019-04-20 04:29:07 +02:00
|
|
|
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-03-01 00:05:57 +01:00
|
|
|
type NativeTun struct {
|
2018-05-21 17:27:18 +02:00
|
|
|
name string
|
2018-10-17 21:26:53 +02:00
|
|
|
tunFile *os.File
|
2019-06-10 23:33:40 +02:00
|
|
|
events chan Event
|
2018-05-21 17:27:18 +02:00
|
|
|
errors chan error
|
|
|
|
routeSocket int
|
2021-02-18 23:53:22 +01:00
|
|
|
closeOnce sync.Once
|
2018-05-21 17:27:18 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) routineRouteListener(tunIfindex int) {
|
2018-05-21 17:27:18 +02:00
|
|
|
var (
|
|
|
|
statusUp bool
|
|
|
|
statusMTU int
|
|
|
|
)
|
|
|
|
|
|
|
|
defer close(tun.events)
|
|
|
|
|
|
|
|
data := make([]byte, os.Getpagesize())
|
|
|
|
for {
|
2018-05-24 15:29:16 +02:00
|
|
|
retry:
|
2018-05-21 17:27:18 +02:00
|
|
|
n, err := unix.Read(tun.routeSocket, data)
|
|
|
|
if err != nil {
|
2021-04-19 22:54:59 +02:00
|
|
|
if errors.Is(err, syscall.EINTR) {
|
2018-05-24 15:29:16 +02:00
|
|
|
goto retry
|
|
|
|
}
|
2018-05-21 17:27:18 +02:00
|
|
|
tun.errors <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if n < 14 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-04-19 04:26:32 +02:00
|
|
|
if data[3 /* type */ ] != unix.RTM_IFINFO {
|
2018-05-21 17:27:18 +02:00
|
|
|
continue
|
|
|
|
}
|
2021-04-19 04:26:32 +02:00
|
|
|
ifindex := int(*(*uint16)(unsafe.Pointer(&data[12 /* ifindex */ ])))
|
2018-05-21 17:27:18 +02:00
|
|
|
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 23:33:40 +02:00
|
|
|
tun.events <- EventUp
|
2018-05-21 17:27:18 +02:00
|
|
|
}
|
|
|
|
if up != statusUp && !up {
|
2019-06-10 23:33:40 +02:00
|
|
|
tun.events <- EventDown
|
2018-05-21 17:27:18 +02:00
|
|
|
}
|
|
|
|
statusUp = up
|
|
|
|
|
|
|
|
// MTU changes
|
|
|
|
if iface.MTU != statusMTU {
|
2019-06-10 23:33:40 +02:00
|
|
|
tun.events <- EventMTUUpdate
|
2018-05-21 17:27:18 +02:00
|
|
|
}
|
|
|
|
statusMTU = iface.MTU
|
|
|
|
}
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2018-05-21 17:27:18 +02:00
|
|
|
func tunName(fd uintptr) (string, error) {
|
2021-04-19 22:54:59 +02:00
|
|
|
var ifreq ifreqName
|
2021-04-19 04:26:32 +02:00
|
|
|
_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, _TUNGIFNAME, uintptr(unsafe.Pointer(&ifreq)))
|
|
|
|
if err != 0 {
|
2018-05-18 00:58:54 +02:00
|
|
|
return "", err
|
|
|
|
}
|
2021-04-19 04:26:32 +02:00
|
|
|
return unix.ByteSliceToString(ifreq.Name[:]), nil
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy a named system interface
|
2018-05-21 17:27:18 +02:00
|
|
|
func tunDestroy(name string) error {
|
2021-04-19 22:54:59 +02:00
|
|
|
fd, err := unix.Socket(unix.AF_INET, unix.SOCK_DGRAM, 0)
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
var ifr [32]byte
|
|
|
|
copy(ifr[:], name)
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno := unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(unix.SIOCIFDESTROY), uintptr(unsafe.Pointer(&ifr[0])))
|
2018-05-18 00:58:54 +02:00
|
|
|
if errno != 0 {
|
2021-04-19 22:54:59 +02:00
|
|
|
return fmt.Errorf("failed to destroy interface %s: %w", name, errno)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-10 23:33:40 +02:00
|
|
|
func CreateTUN(name string, mtu int) (Device, error) {
|
2018-05-21 17:27:18 +02:00
|
|
|
if len(name) > unix.IFNAMSIZ-1 {
|
|
|
|
return nil, errors.New("interface name too long")
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if interface already exists
|
|
|
|
iface, _ := net.InterfaceByName(name)
|
|
|
|
if iface != nil {
|
2018-05-21 17:27:18 +02:00
|
|
|
return nil, fmt.Errorf("interface %s already exists", name)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 21:26:53 +02:00
|
|
|
tunFile, err := os.OpenFile("/dev/tun", unix.O_RDWR, 0)
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-27 01:06:43 +01:00
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
tun := NativeTun{tunFile: tunFile}
|
2019-02-27 01:06:43 +01:00
|
|
|
var assignedName string
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
assignedName, err = tunName(fd)
|
|
|
|
})
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
2018-10-17 21:26:53 +02:00
|
|
|
tunFile.Close()
|
2018-05-18 00:58:54 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable ifhead mode, otherwise tun will complain if it gets a non-AF_INET packet
|
|
|
|
ifheadmode := 1
|
2019-02-27 01:06:43 +01:00
|
|
|
var errno syscall.Errno
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno = unix.Syscall(unix.SYS_IOCTL, fd, _TUNSIFHEAD, uintptr(unsafe.Pointer(&ifheadmode)))
|
2019-02-27 01:06:43 +01:00
|
|
|
})
|
2018-05-18 00:58:54 +02:00
|
|
|
|
|
|
|
if errno != 0 {
|
2019-04-20 04:29:07 +02:00
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2021-04-19 22:54:59 +02:00
|
|
|
return nil, fmt.Errorf("unable to put into IFHEAD mode: %w", errno)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// Get out of PTP mode.
|
2021-04-19 04:09:04 +02:00
|
|
|
ifflags := syscall.IFF_BROADCAST | syscall.IFF_MULTICAST
|
2021-03-23 19:41:34 +01:00
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno = unix.Syscall(unix.SYS_IOCTL, fd, uintptr(_TUNSIFMODE), uintptr(unsafe.Pointer(&ifflags)))
|
2021-03-23 19:41:34 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2021-04-19 22:54:59 +02:00
|
|
|
return nil, fmt.Errorf("unable to put into IFF_BROADCAST mode: %w", errno)
|
2021-03-23 19:41:34 +01:00
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
// 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.
|
|
|
|
confd6, err := unix.Socket(unix.AF_INET6, unix.SOCK_DGRAM, 0)
|
2019-04-20 04:29:07 +02:00
|
|
|
if err != nil {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer unix.Close(confd6)
|
2021-04-19 22:54:59 +02:00
|
|
|
var ndireq nd6Req
|
2019-04-20 04:29:07 +02:00
|
|
|
copy(ndireq.Name[:], assignedName)
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno = unix.Syscall(unix.SYS_IOCTL, uintptr(confd6), uintptr(_SIOCGIFINFO_IN6), uintptr(unsafe.Pointer(&ndireq)))
|
2019-04-20 04:29:07 +02:00
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2021-04-19 22:54:59 +02:00
|
|
|
return nil, fmt.Errorf("unable to get nd6 flags for %s: %w", assignedName, errno)
|
2019-04-20 04:29:07 +02:00
|
|
|
}
|
2021-04-19 22:54:59 +02: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)))
|
2019-04-20 04:29:07 +02:00
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
2021-04-19 22:54:59 +02:00
|
|
|
return nil, fmt.Errorf("unable to set nd6 flags for %s: %w", assignedName, errno)
|
2019-04-20 04:29:07 +02:00
|
|
|
}
|
2018-05-18 00:58:54 +02:00
|
|
|
|
2021-03-07 17:21:31 +01:00
|
|
|
if name != "" {
|
2021-04-19 22:54:59 +02:00
|
|
|
confd, err := unix.Socket(unix.AF_INET, unix.SOCK_DGRAM, 0)
|
|
|
|
if err != nil {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer unix.Close(confd)
|
2021-03-07 17:21:31 +01:00
|
|
|
var newnp [unix.IFNAMSIZ]byte
|
|
|
|
copy(newnp[:], name)
|
2021-04-19 22:54:59 +02:00
|
|
|
var ifr ifreqPtr
|
2021-03-07 17:21:31 +01:00
|
|
|
copy(ifr.Name[:], assignedName)
|
|
|
|
ifr.Data = uintptr(unsafe.Pointer(&newnp[0]))
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno = unix.Syscall(unix.SYS_IOCTL, uintptr(confd), uintptr(unix.SIOCSIFNAME), uintptr(unsafe.Pointer(&ifr)))
|
2021-03-07 17:21:31 +01:00
|
|
|
if errno != 0 {
|
|
|
|
tunFile.Close()
|
|
|
|
tunDestroy(assignedName)
|
|
|
|
return nil, fmt.Errorf("Failed to rename %s to %s: %w", assignedName, name, errno)
|
|
|
|
}
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 21:26:53 +02:00
|
|
|
return CreateTUNFromFile(tunFile, mtu)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2019-06-10 23:33:40 +02:00
|
|
|
func CreateTUNFromFile(file *os.File, mtu int) (Device, error) {
|
2019-03-01 00:05:57 +01:00
|
|
|
tun := &NativeTun{
|
2018-10-17 21:26:53 +02:00
|
|
|
tunFile: file,
|
2019-06-10 23:33:40 +02:00
|
|
|
events: make(chan Event, 10),
|
2018-10-17 21:26:53 +02:00
|
|
|
errors: make(chan error, 1),
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2021-04-19 23:01:36 +02:00
|
|
|
var errno syscall.Errno
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
_, _, errno = unix.Syscall(unix.SYS_IOCTL, fd, _TUNSIFPID, uintptr(0))
|
|
|
|
})
|
|
|
|
if errno != 0 {
|
|
|
|
tun.tunFile.Close()
|
|
|
|
return nil, fmt.Errorf("unable to become controlling TUN process: %w", errno)
|
|
|
|
}
|
|
|
|
|
2018-05-21 17:27:18 +02:00
|
|
|
name, err := tun.Name()
|
|
|
|
if err != nil {
|
2018-10-17 21:26:53 +02:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 17:27:18 +02: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 21:26:53 +02:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 17:27:18 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-18 00:58:54 +02:00
|
|
|
|
2018-05-21 17:27:18 +02:00
|
|
|
tun.routeSocket, err = unix.Socket(unix.AF_ROUTE, unix.SOCK_RAW, unix.AF_UNSPEC)
|
|
|
|
if err != nil {
|
2018-10-17 21:26:53 +02:00
|
|
|
tun.tunFile.Close()
|
2018-05-21 17:27:18 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-18 00:58:54 +02:00
|
|
|
|
2018-05-23 02:10:54 +02:00
|
|
|
go tun.routineRouteListener(tunIfindex)
|
2018-05-18 00:58:54 +02:00
|
|
|
|
2018-05-23 02:10:54 +02:00
|
|
|
err = tun.setMTU(mtu)
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
tun.Close()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tun, nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Name() (string, error) {
|
2019-02-27 01:06:43 +01:00
|
|
|
var name string
|
|
|
|
var err error
|
|
|
|
tun.operateOnFd(func(fd uintptr) {
|
|
|
|
name, err = tunName(fd)
|
|
|
|
})
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
tun.name = name
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) File() *os.File {
|
2018-10-17 21:26:53 +02:00
|
|
|
return tun.tunFile
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2019-06-10 23:33:40 +02:00
|
|
|
func (tun *NativeTun) Events() chan Event {
|
2018-05-18 00:58:54 +02:00
|
|
|
return tun.events
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Read(buff []byte, offset int) (int, error) {
|
2018-05-18 00:58:54 +02:00
|
|
|
select {
|
|
|
|
case err := <-tun.errors:
|
|
|
|
return 0, err
|
|
|
|
default:
|
|
|
|
buff := buff[offset-4:]
|
2018-10-17 21:26:53 +02:00
|
|
|
n, err := tun.tunFile.Read(buff[:])
|
2018-05-18 00:58:54 +02:00
|
|
|
if n < 4 {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return n - 4, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
func (tun *NativeTun) Write(buf []byte, offset int) (int, error) {
|
|
|
|
buf = buf[offset-4:]
|
|
|
|
buf[0] = 0x00
|
|
|
|
buf[1] = 0x00
|
|
|
|
buf[2] = 0x00
|
|
|
|
switch buf[4] >> 4 {
|
|
|
|
case 4:
|
|
|
|
buf[3] = unix.AF_INET
|
|
|
|
case 6:
|
|
|
|
buf[3] = unix.AF_INET6
|
|
|
|
default:
|
|
|
|
return 0, unix.EAFNOSUPPORT
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
2021-04-19 22:54:59 +02:00
|
|
|
return tun.tunFile.Write(buf)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2019-03-21 21:43:04 +01:00
|
|
|
func (tun *NativeTun) Flush() error {
|
2019-06-06 23:00:15 +02:00
|
|
|
// TODO: can flushing be implemented by buffering and using sendmmsg?
|
2019-03-21 21:43:04 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Close() error {
|
2021-02-18 23:53:22 +01: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-18 00:58:54 +02: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 01:48:58 +01:00
|
|
|
return err3
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) setMTU(n int) error {
|
2021-04-19 22:54:59 +02:00
|
|
|
fd, err := unix.Socket(unix.AF_INET, unix.SOCK_DGRAM, 0)
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
var ifr ifreqMtu
|
2018-05-18 00:58:54 +02:00
|
|
|
copy(ifr.Name[:], tun.name)
|
|
|
|
ifr.MTU = uint32(n)
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno := unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(unix.SIOCSIFMTU), uintptr(unsafe.Pointer(&ifr)))
|
2018-05-18 00:58:54 +02:00
|
|
|
if errno != 0 {
|
2021-04-19 22:54:59 +02:00
|
|
|
return fmt.Errorf("failed to set MTU on %s: %w", tun.name, errno)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) MTU() (int, error) {
|
2021-04-19 22:54:59 +02:00
|
|
|
fd, err := unix.Socket(unix.AF_INET, unix.SOCK_DGRAM, 0)
|
2018-05-18 00:58:54 +02:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
2021-04-19 22:54:59 +02:00
|
|
|
var ifr ifreqMtu
|
2018-05-18 00:58:54 +02:00
|
|
|
copy(ifr.Name[:], tun.name)
|
2021-04-19 22:54:59 +02:00
|
|
|
_, _, errno := unix.Syscall(unix.SYS_IOCTL, uintptr(fd), uintptr(unix.SIOCGIFMTU), uintptr(unsafe.Pointer(&ifr)))
|
2018-05-18 00:58:54 +02:00
|
|
|
if errno != 0 {
|
2021-04-19 22:54:59 +02:00
|
|
|
return 0, fmt.Errorf("failed to get MTU on %s: %w", tun.name, errno)
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|
2018-05-22 18:33:50 +02:00
|
|
|
return int(*(*int32)(unsafe.Pointer(&ifr.MTU))), nil
|
2018-05-18 00:58:54 +02:00
|
|
|
}
|