wireguard-go/tun/tun_windows.go

285 lines
6.5 KiB
Go
Raw Normal View History

2019-02-04 16:29:52 +00:00
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2018-2019 WireGuard LLC. All Rights Reserved.
*/
package tun
import (
"errors"
"os"
"sync"
"unsafe"
2019-02-04 16:29:52 +00:00
"golang.org/x/sys/windows"
"golang.zx2c4.com/wireguard/tun/wintun"
2019-02-04 16:29:52 +00:00
)
const (
packetExchangeMax uint32 = 256 // Number of packets that may be written at a time
packetExchangeAlignment uint32 = 16 // Number of bytes packets are aligned to in exchange buffers
packetSizeMax uint32 = 0xf000 - packetExchangeAlignment // Maximum packet size
packetExchangeSize uint32 = 0x100000 // Exchange buffer size (defaults to 1MiB)
2019-02-04 16:29:52 +00:00
)
type exchgBufRead struct {
data [packetExchangeSize]byte
offset uint32
avail uint32
}
type exchgBufWrite struct {
data [packetExchangeSize]byte
offset uint32
packetNum uint32
}
type NativeTun struct {
2019-03-18 08:42:00 +00:00
wt *wintun.Wintun
tunName string
tunFile *os.File
tunLock sync.Mutex
rdBuff *exchgBufRead
wrBuff *exchgBufWrite
events chan TUNEvent
errors chan error
forcedMtu int
2019-02-04 16:29:52 +00:00
}
func packetAlign(size uint32) uint32 {
return (size + (packetExchangeAlignment - 1)) &^ (packetExchangeAlignment - 1)
2019-02-04 16:29:52 +00:00
}
//
// CreateTUN creates a Wintun adapter with the given name. Should a Wintun
// adapter with the same name exist, it is reused.
//
2019-02-04 16:29:52 +00:00
func CreateTUN(ifname string) (TUNDevice, error) {
// Does an interface with this name already exist?
wt, err := wintun.GetInterface(ifname, 0)
if wt == nil {
// Interface does not exist or an error occured. Create one.
wt, _, err = wintun.CreateInterface("WireGuard Tunnel Adapter", 0)
if err != nil {
return nil, errors.New("Creating Wintun adapter failed: " + err.Error())
}
} else if err != nil {
// Foreign interface with the same name found.
// We could create a Wintun interface under a temporary name. But, should our
// proces die without deleting this interface first, the interface would remain
// orphaned.
return nil, err
}
err = wt.SetInterfaceName(ifname)
if err != nil {
wt.DeleteInterface(0)
return nil, errors.New("Setting interface name failed: " + err.Error())
}
2019-02-07 17:24:28 +00:00
err = wt.FlushInterface()
if err != nil {
wt.DeleteInterface(0)
return nil, errors.New("Flushing interface failed: " + err.Error())
2019-02-07 17:24:28 +00:00
}
2019-03-18 08:42:00 +00:00
return &NativeTun{
wt: wt,
tunName: wt.DataFileName(),
rdBuff: &exchgBufRead{},
wrBuff: &exchgBufWrite{},
events: make(chan TUNEvent, 10),
errors: make(chan error, 1),
forcedMtu: 1500,
}, nil
2019-02-04 16:29:52 +00:00
}
2019-03-18 08:42:00 +00:00
func (tun *NativeTun) openTUN() {
2019-02-04 16:29:52 +00:00
for {
2019-03-18 08:42:00 +00:00
file, err := os.OpenFile(tun.tunName, os.O_RDWR, 0)
2019-02-04 16:29:52 +00:00
if err != nil {
2019-03-18 08:42:00 +00:00
continue
2019-02-04 16:29:52 +00:00
}
tun.tunFile = file
}
}
func (tun *NativeTun) closeTUN() (err error) {
2019-02-04 16:29:52 +00:00
if tun.tunFile != nil {
2019-03-18 08:42:00 +00:00
tun.tunLock.Lock()
defer tun.tunLock.Unlock()
if tun.tunFile == nil {
return
2019-02-04 16:29:52 +00:00
}
2019-03-18 08:42:00 +00:00
t := tun.tunFile
2019-02-04 16:29:52 +00:00
tun.tunFile = nil
2019-03-18 08:42:00 +00:00
err = t.Close()
2019-02-04 16:29:52 +00:00
}
return
}
2019-03-18 08:42:00 +00:00
func (tun *NativeTun) getTUN() (*os.File, error) {
if tun.tunFile == nil {
tun.tunLock.Lock()
defer tun.tunLock.Unlock()
if tun.tunFile != nil {
return tun.tunFile, nil
}
2019-03-18 08:42:00 +00:00
tun.openTUN()
}
2019-03-18 08:42:00 +00:00
return tun.tunFile, nil
}
func (tun *NativeTun) Name() (string, error) {
return tun.wt.GetInterfaceName()
2019-02-04 16:29:52 +00:00
}
func (tun *NativeTun) File() *os.File {
2019-02-04 16:29:52 +00:00
return nil
}
func (tun *NativeTun) Events() chan TUNEvent {
2019-02-04 16:29:52 +00:00
return tun.events
}
func (tun *NativeTun) Close() error {
2019-03-18 08:42:00 +00:00
err1 := tun.closeTUN()
2019-02-04 16:29:52 +00:00
if tun.events != nil {
close(tun.events)
}
2019-03-18 08:42:00 +00:00
_, _, err2 := tun.wt.DeleteInterface(0)
if err1 == nil {
err1 = err2
}
2019-03-18 08:42:00 +00:00
return err1
2019-02-04 16:29:52 +00:00
}
func (tun *NativeTun) MTU() (int, error) {
return tun.forcedMtu, nil
}
//TODO: This is a temporary hack. We really need to be monitoring the interface in real time and adapting to MTU changes.
func (tun *NativeTun) ForceMtu(mtu int) {
tun.forcedMtu = mtu
2019-02-04 16:29:52 +00:00
}
func (tun *NativeTun) Read(buff []byte, offset int) (int, error) {
2019-02-04 16:29:52 +00:00
select {
case err := <-tun.errors:
return 0, err
default:
}
2019-02-04 16:29:52 +00:00
for {
if tun.rdBuff.offset+packetExchangeAlignment <= tun.rdBuff.avail {
// Get packet from the exchange buffer.
packet := tun.rdBuff.data[tun.rdBuff.offset:]
size := *(*uint32)(unsafe.Pointer(&packet[0]))
pSize := packetAlign(packetExchangeAlignment + size)
if packetSizeMax < size || tun.rdBuff.avail < tun.rdBuff.offset+pSize {
// Invalid packet size.
tun.rdBuff.avail = 0
continue
2019-02-04 16:29:52 +00:00
}
2019-03-18 08:42:00 +00:00
packet = packet[packetExchangeAlignment : packetExchangeAlignment+size]
2019-02-04 16:29:52 +00:00
// Copy data.
2019-03-18 08:42:00 +00:00
copy(buff[offset:], packet)
tun.rdBuff.offset += pSize
return int(size), nil
}
// Get TUN data pipe.
2019-03-18 08:42:00 +00:00
file, err := tun.getTUN()
if err != nil {
return 0, err
}
// Fill queue.
n, err := file.Read(tun.rdBuff.data[:])
if err != nil {
2019-03-18 08:42:00 +00:00
if pe, ok := err.(*os.PathError); ok && pe.Err == os.ErrClosed {
return 0, err
}
// TUN interface stopped, failed, etc. Retry.
tun.rdBuff.avail = 0
tun.closeTUN()
continue
}
tun.rdBuff.offset = 0
tun.rdBuff.avail = uint32(n)
2019-02-04 16:29:52 +00:00
}
}
2019-02-07 03:08:05 +00:00
// Note: flush() and putTunPacket() assume the caller comes only from a single thread; there's no locking.
func (tun *NativeTun) flush() error {
// Get TUN data pipe.
2019-03-18 08:42:00 +00:00
file, err := tun.getTUN()
if err != nil {
return err
}
2019-02-04 16:29:52 +00:00
// Flush write buffer.
_, err = file.Write(tun.wrBuff.data[:tun.wrBuff.offset])
tun.wrBuff.packetNum = 0
tun.wrBuff.offset = 0
2019-02-04 16:29:52 +00:00
if err != nil {
// TUN interface stopped, failed, etc. Drop.
tun.closeTUN()
2019-02-04 16:29:52 +00:00
return err
}
return nil
}
func (tun *NativeTun) putTunPacket(buff []byte) error {
size := uint32(len(buff))
2019-02-04 16:29:52 +00:00
if size == 0 {
2019-02-05 13:06:25 +00:00
return errors.New("Empty packet")
2019-02-04 16:29:52 +00:00
}
if size > packetSizeMax {
2019-02-05 13:06:25 +00:00
return errors.New("Packet too big")
2019-02-04 16:29:52 +00:00
}
pSize := packetAlign(packetExchangeAlignment + size)
2019-02-04 16:29:52 +00:00
if tun.wrBuff.packetNum >= packetExchangeMax || tun.wrBuff.offset+pSize >= packetExchangeSize {
// Exchange buffer is full -> flush first.
2019-02-04 16:29:52 +00:00
err := tun.flush()
if err != nil {
return err
}
}
// Write packet to the exchange buffer.
packet := tun.wrBuff.data[tun.wrBuff.offset : tun.wrBuff.offset+pSize]
*(*uint32)(unsafe.Pointer(&packet[0])) = size
2019-03-18 08:42:00 +00:00
packet = packet[packetExchangeAlignment : packetExchangeAlignment+size]
copy(packet, buff)
2019-02-04 16:29:52 +00:00
tun.wrBuff.packetNum++
tun.wrBuff.offset += pSize
2019-02-04 16:29:52 +00:00
return nil
}
func (tun *NativeTun) Write(buff []byte, offset int) (int, error) {
2019-02-04 16:29:52 +00:00
err := tun.putTunPacket(buff[offset:])
if err != nil {
return 0, err
}
// Flush write buffer.
return len(buff) - offset, tun.flush()
}
2019-02-28 23:11:12 +00:00
//
// GUID returns Windows adapter instance ID.
//
2019-02-28 23:11:12 +00:00
func (tun *NativeTun) GUID() windows.GUID {
return *(*windows.GUID)(tun.wt)
2019-03-03 03:04:41 +00:00
}