2019-02-04 17:29:52 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018-2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package tun
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"os"
|
2019-02-20 13:12:08 +01:00
|
|
|
"sync"
|
2019-02-22 16:16:14 +01:00
|
|
|
"unsafe"
|
2019-02-04 17:29:52 +01:00
|
|
|
|
|
|
|
"golang.org/x/sys/windows"
|
2019-02-19 18:49:24 +01:00
|
|
|
"golang.zx2c4.com/wireguard/tun/wintun"
|
2019-02-04 17:29:52 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-02-20 19:56:10 +01:00
|
|
|
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
|
2019-02-20 20:13:33 +01:00
|
|
|
packetExchangeSize uint32 = 0x100000 // Exchange buffer size (defaults to 1MiB)
|
2019-02-04 17:29:52 +01:00
|
|
|
)
|
|
|
|
|
2019-02-20 11:41:37 +01:00
|
|
|
type exchgBufRead struct {
|
2019-02-20 20:13:33 +01:00
|
|
|
data [packetExchangeSize]byte
|
2019-02-20 11:41:37 +01:00
|
|
|
offset uint32
|
|
|
|
avail uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
type exchgBufWrite struct {
|
2019-02-20 20:13:33 +01:00
|
|
|
data [packetExchangeSize]byte
|
2019-02-20 11:41:37 +01:00
|
|
|
offset uint32
|
|
|
|
packetNum uint32
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
type NativeTun struct {
|
2019-02-20 13:12:08 +01:00
|
|
|
wt *wintun.Wintun
|
|
|
|
tunName string
|
|
|
|
signalName *uint16
|
|
|
|
tunFile *os.File
|
|
|
|
tunLock sync.Mutex
|
|
|
|
rdBuff *exchgBufRead
|
|
|
|
wrBuff *exchgBufWrite
|
|
|
|
tunDataAvail windows.Handle
|
|
|
|
userClose windows.Handle
|
|
|
|
events chan TUNEvent
|
|
|
|
errors chan error
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
|
2019-02-19 18:49:24 +01:00
|
|
|
func packetAlign(size uint32) uint32 {
|
|
|
|
return (size + (packetExchangeAlignment - 1)) &^ (packetExchangeAlignment - 1)
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func CreateTUN(ifname string) (TUNDevice, error) {
|
2019-02-06 22:30:14 +01:00
|
|
|
// Does an interface with this name already exist?
|
2019-02-07 04:18:27 +01:00
|
|
|
wt, err := wintun.GetInterface(ifname, 0)
|
2019-02-07 22:02:51 +01:00
|
|
|
if wt == nil {
|
2019-02-06 22:30:14 +01:00
|
|
|
// Interface does not exist or an error occured. Create one.
|
2019-02-07 04:18:27 +01:00
|
|
|
wt, _, err = wintun.CreateInterface("WireGuard Tunnel Adapter", 0)
|
2019-02-06 22:30:14 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-07 22:02:51 +01:00
|
|
|
} 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
|
|
|
|
}
|
2019-02-06 22:30:14 +01:00
|
|
|
|
2019-02-07 22:02:51 +01:00
|
|
|
err = wt.SetInterfaceName(ifname)
|
|
|
|
if err != nil {
|
|
|
|
wt.DeleteInterface(0)
|
|
|
|
return nil, err
|
2019-02-06 22:30:14 +01:00
|
|
|
}
|
2019-02-07 22:02:51 +01:00
|
|
|
|
2019-02-07 18:24:28 +01:00
|
|
|
err = wt.FlushInterface()
|
|
|
|
if err != nil {
|
|
|
|
wt.DeleteInterface(0)
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-02-06 22:30:14 +01:00
|
|
|
|
2019-02-07 04:18:27 +01:00
|
|
|
signalNameUTF16, err := windows.UTF16PtrFromString(wt.SignalEventName())
|
2019-02-04 17:29:52 +01:00
|
|
|
if err != nil {
|
2019-02-07 04:18:27 +01:00
|
|
|
wt.DeleteInterface(0)
|
2019-02-04 17:29:52 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create instance.
|
2019-03-01 00:05:57 +01:00
|
|
|
tun := &NativeTun{
|
2019-02-07 04:18:27 +01:00
|
|
|
wt: wt,
|
|
|
|
tunName: wt.DataFileName(),
|
2019-02-04 17:29:52 +01:00
|
|
|
signalName: signalNameUTF16,
|
2019-02-20 11:41:37 +01:00
|
|
|
rdBuff: &exchgBufRead{},
|
|
|
|
wrBuff: &exchgBufWrite{},
|
2019-02-04 17:29:52 +01:00
|
|
|
events: make(chan TUNEvent, 10),
|
|
|
|
errors: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create close event.
|
2019-02-20 13:12:08 +01:00
|
|
|
tun.userClose, err = windows.CreateEvent(nil, 1 /*TRUE*/, 0 /*FALSE*/, nil)
|
2019-02-04 17:29:52 +01:00
|
|
|
if err != nil {
|
2019-02-07 04:18:27 +01:00
|
|
|
wt.DeleteInterface(0)
|
2019-02-04 17:29:52 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tun, nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) openTUN() error {
|
2019-02-04 17:29:52 +01:00
|
|
|
for {
|
|
|
|
// Open interface data pipe.
|
|
|
|
// Data pipe must be opened first, as the interface data available event is created when somebody actually connects to the data pipe.
|
|
|
|
file, err := os.OpenFile(tun.tunName, os.O_RDWR|os.O_SYNC, 0600)
|
|
|
|
if err != nil {
|
|
|
|
// After examining possible error conditions, many arose that were only temporary: windows.ERROR_FILE_NOT_FOUND, "read <filename> closed", etc.
|
|
|
|
// To simplify, we will enter a retry-loop on _any_ error until session is closed by user.
|
2019-02-20 13:12:08 +01:00
|
|
|
switch evt, e := windows.WaitForSingleObject(tun.userClose, 1000); evt {
|
2019-02-04 17:29:52 +01:00
|
|
|
case windows.WAIT_OBJECT_0, windows.WAIT_ABANDONED:
|
|
|
|
return errors.New("TUN closed")
|
|
|
|
case windows.WAIT_TIMEOUT:
|
|
|
|
continue
|
|
|
|
default:
|
2019-02-05 14:06:25 +01:00
|
|
|
return errors.New("Unexpected result from WaitForSingleObject: " + e.Error())
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open interface data available event.
|
|
|
|
event, err := windows.OpenEvent(windows.SYNCHRONIZE, false, tun.signalName)
|
|
|
|
if err != nil {
|
|
|
|
file.Close()
|
2019-02-05 14:06:25 +01:00
|
|
|
return errors.New("Opening interface data ready event failed: " + err.Error())
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tun.tunFile = file
|
2019-02-20 13:12:08 +01:00
|
|
|
tun.tunDataAvail = event
|
2019-02-04 17:29:52 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) closeTUN() (err error) {
|
2019-02-20 13:12:08 +01:00
|
|
|
tun.tunLock.Lock()
|
|
|
|
defer tun.tunLock.Unlock()
|
|
|
|
|
|
|
|
if tun.tunDataAvail != 0 {
|
2019-02-04 17:29:52 +01:00
|
|
|
// Close interface data ready event.
|
2019-02-20 13:12:08 +01:00
|
|
|
e := windows.CloseHandle(tun.tunDataAvail)
|
2019-02-04 17:29:52 +01:00
|
|
|
if err != nil {
|
|
|
|
err = e
|
|
|
|
}
|
|
|
|
|
2019-02-20 13:12:08 +01:00
|
|
|
tun.tunDataAvail = 0
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if tun.tunFile != nil {
|
|
|
|
// Close interface data pipe.
|
|
|
|
e := tun.tunFile.Close()
|
|
|
|
if err != nil {
|
|
|
|
err = e
|
|
|
|
}
|
|
|
|
|
|
|
|
tun.tunFile = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) getTUN() (*os.File, windows.Handle, error) {
|
2019-02-20 13:12:08 +01:00
|
|
|
tun.tunLock.Lock()
|
|
|
|
defer tun.tunLock.Unlock()
|
|
|
|
|
|
|
|
if tun.tunFile == nil || tun.tunDataAvail == 0 {
|
|
|
|
// TUN device is not open (yet).
|
|
|
|
err := tun.openTUN()
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tun.tunFile, tun.tunDataAvail, nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Name() (string, error) {
|
2019-02-07 04:18:27 +01:00
|
|
|
return tun.wt.GetInterfaceName()
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) File() *os.File {
|
2019-02-04 17:29:52 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Events() chan TUNEvent {
|
2019-02-04 17:29:52 +01:00
|
|
|
return tun.events
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Close() error {
|
2019-02-20 13:12:08 +01:00
|
|
|
windows.SetEvent(tun.userClose)
|
|
|
|
err := windows.CloseHandle(tun.userClose)
|
2019-02-04 17:29:52 +01:00
|
|
|
|
|
|
|
e := tun.closeTUN()
|
|
|
|
if err == nil {
|
|
|
|
err = e
|
|
|
|
}
|
|
|
|
|
|
|
|
if tun.events != nil {
|
|
|
|
close(tun.events)
|
|
|
|
}
|
|
|
|
|
2019-02-07 04:18:27 +01:00
|
|
|
_, _, e = tun.wt.DeleteInterface(0)
|
2019-02-06 22:30:14 +01:00
|
|
|
if err == nil {
|
|
|
|
err = e
|
|
|
|
}
|
|
|
|
|
2019-02-04 17:29:52 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) MTU() (int, error) {
|
2019-02-04 17:29:52 +01:00
|
|
|
return 1500, nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Read(buff []byte, offset int) (int, error) {
|
2019-02-04 17:29:52 +01:00
|
|
|
select {
|
|
|
|
case err := <-tun.errors:
|
|
|
|
return 0, err
|
|
|
|
default:
|
2019-02-08 14:31:05 +01:00
|
|
|
}
|
2019-02-04 17:29:52 +01:00
|
|
|
|
2019-02-08 14:31:05 +01:00
|
|
|
for {
|
2019-02-20 19:56:10 +01:00
|
|
|
if tun.rdBuff.offset+packetExchangeAlignment <= tun.rdBuff.avail {
|
2019-02-20 11:41:37 +01:00
|
|
|
// Get packet from the exchange buffer.
|
2019-02-20 20:10:24 +01:00
|
|
|
packet := tun.rdBuff.data[tun.rdBuff.offset:]
|
2019-02-22 16:16:14 +01:00
|
|
|
size := *(*uint32)(unsafe.Pointer(&packet[0]))
|
2019-02-20 19:56:10 +01:00
|
|
|
pSize := packetAlign(packetExchangeAlignment + size)
|
2019-02-20 11:41:37 +01:00
|
|
|
if packetSizeMax < size || tun.rdBuff.avail < tun.rdBuff.offset+pSize {
|
2019-02-08 14:31:05 +01:00
|
|
|
// Invalid packet size.
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.rdBuff.avail = 0
|
2019-02-08 08:48:35 +01:00
|
|
|
continue
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
2019-02-20 20:10:24 +01:00
|
|
|
packet = packet[:pSize]
|
2019-02-04 17:29:52 +01:00
|
|
|
|
2019-02-08 14:31:05 +01:00
|
|
|
// Copy data.
|
2019-02-22 16:11:33 +01:00
|
|
|
copy(buff[offset:], packet[packetExchangeAlignment:packetExchangeAlignment+size])
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.rdBuff.offset += pSize
|
2019-02-19 18:49:24 +01:00
|
|
|
return int(size), nil
|
2019-02-08 14:31:05 +01:00
|
|
|
}
|
|
|
|
|
2019-02-20 13:12:08 +01:00
|
|
|
// Get TUN data ready event.
|
|
|
|
_, tunDataAvail, err := tun.getTUN()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
2019-02-08 14:31:05 +01:00
|
|
|
|
|
|
|
// Wait for user close or interface data.
|
2019-02-20 13:12:08 +01:00
|
|
|
r, err := windows.WaitForMultipleObjects([]windows.Handle{tun.userClose, tunDataAvail}, false, windows.INFINITE)
|
2019-02-08 14:31:05 +01:00
|
|
|
if err != nil {
|
|
|
|
return 0, errors.New("Waiting for data failed: " + err.Error())
|
|
|
|
}
|
|
|
|
switch r {
|
2019-02-20 13:12:08 +01:00
|
|
|
case windows.WAIT_OBJECT_0 + 0, windows.WAIT_ABANDONED + 0:
|
2019-02-08 14:31:05 +01:00
|
|
|
return 0, errors.New("TUN closed")
|
2019-02-20 13:12:08 +01:00
|
|
|
case windows.WAIT_OBJECT_0 + 1:
|
2019-02-08 14:31:05 +01:00
|
|
|
// Data is available.
|
2019-02-20 13:12:08 +01:00
|
|
|
case windows.WAIT_ABANDONED + 1:
|
|
|
|
// TUN stopped.
|
2019-02-08 14:31:05 +01:00
|
|
|
tun.closeTUN()
|
|
|
|
case windows.WAIT_TIMEOUT:
|
|
|
|
// Congratulations, we reached infinity. Let's do it again! :)
|
|
|
|
continue
|
|
|
|
default:
|
|
|
|
return 0, errors.New("unexpected result from WaitForMultipleObjects")
|
|
|
|
}
|
|
|
|
|
2019-02-20 13:12:08 +01:00
|
|
|
// Get TUN data pipe.
|
|
|
|
file, _, err := tun.getTUN()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2019-02-08 14:31:05 +01:00
|
|
|
// Fill queue.
|
2019-02-20 13:12:08 +01:00
|
|
|
n, err := file.Read(tun.rdBuff.data[:])
|
2019-02-19 18:49:24 +01:00
|
|
|
if err != nil {
|
2019-02-20 13:12:08 +01:00
|
|
|
// TUN interface stopped, failed, etc. Retry.
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.rdBuff.avail = 0
|
2019-02-08 14:31:05 +01:00
|
|
|
tun.closeTUN()
|
|
|
|
continue
|
|
|
|
}
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.rdBuff.offset = 0
|
|
|
|
tun.rdBuff.avail = uint32(n)
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-07 04:08:05 +01:00
|
|
|
// Note: flush() and putTunPacket() assume the caller comes only from a single thread; there's no locking.
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) flush() error {
|
2019-02-20 13:12:08 +01:00
|
|
|
// Get TUN data pipe.
|
|
|
|
file, _, err := tun.getTUN()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-04 17:29:52 +01:00
|
|
|
// Flush write buffer.
|
2019-02-20 13:12:08 +01:00
|
|
|
_, err = file.Write(tun.wrBuff.data[:tun.wrBuff.offset])
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.wrBuff.packetNum = 0
|
|
|
|
tun.wrBuff.offset = 0
|
2019-02-04 17:29:52 +01:00
|
|
|
if err != nil {
|
2019-02-20 13:12:08 +01:00
|
|
|
// TUN interface stopped, failed, etc. Drop.
|
|
|
|
tun.closeTUN()
|
2019-02-04 17:29:52 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) putTunPacket(buff []byte) error {
|
2019-02-19 18:49:24 +01:00
|
|
|
size := uint32(len(buff))
|
2019-02-04 17:29:52 +01:00
|
|
|
if size == 0 {
|
2019-02-05 14:06:25 +01:00
|
|
|
return errors.New("Empty packet")
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
2019-02-08 08:55:23 +01:00
|
|
|
if size > packetSizeMax {
|
2019-02-05 14:06:25 +01:00
|
|
|
return errors.New("Packet too big")
|
2019-02-04 17:29:52 +01:00
|
|
|
}
|
2019-02-20 19:56:10 +01:00
|
|
|
pSize := packetAlign(packetExchangeAlignment + size)
|
2019-02-04 17:29:52 +01:00
|
|
|
|
2019-02-20 20:13:33 +01:00
|
|
|
if tun.wrBuff.packetNum >= packetExchangeMax || tun.wrBuff.offset+pSize >= packetExchangeSize {
|
2019-02-19 18:49:24 +01:00
|
|
|
// Exchange buffer is full -> flush first.
|
2019-02-04 17:29:52 +01:00
|
|
|
err := tun.flush()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-19 18:49:24 +01:00
|
|
|
// Write packet to the exchange buffer.
|
2019-02-22 16:11:33 +01:00
|
|
|
packet := tun.wrBuff.data[tun.wrBuff.offset : tun.wrBuff.offset+pSize]
|
2019-02-22 16:16:14 +01:00
|
|
|
*(*uint32)(unsafe.Pointer(&packet[0])) = size
|
2019-02-22 16:11:33 +01:00
|
|
|
copy(packet[packetExchangeAlignment:packetExchangeAlignment+size], buff)
|
2019-02-04 17:29:52 +01:00
|
|
|
|
2019-02-20 11:41:37 +01:00
|
|
|
tun.wrBuff.packetNum++
|
|
|
|
tun.wrBuff.offset += pSize
|
2019-02-04 17:29:52 +01:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:05:57 +01:00
|
|
|
func (tun *NativeTun) Write(buff []byte, offset int) (int, error) {
|
2019-02-04 17:29:52 +01:00
|
|
|
err := tun.putTunPacket(buff[offset:])
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush write buffer.
|
|
|
|
return len(buff) - offset, tun.flush()
|
|
|
|
}
|
2019-03-01 00:11:12 +01:00
|
|
|
|
|
|
|
func (tun *NativeTun) GUID() windows.GUID {
|
|
|
|
return *(*windows.GUID)(tun.wt)
|
2019-03-03 04:04:41 +01:00
|
|
|
}
|