2017-06-04 21:48:15 +02:00
|
|
|
package main
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
/* Implementation of the TUN device interface for linux
|
|
|
|
*/
|
|
|
|
|
2017-06-04 21:48:15 +02:00
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"errors"
|
2017-08-17 00:25:39 +02:00
|
|
|
"fmt"
|
2017-07-20 15:06:24 +02:00
|
|
|
"golang.org/x/sys/unix"
|
2017-08-04 16:15:53 +02:00
|
|
|
"net"
|
2017-06-04 21:48:15 +02:00
|
|
|
"os"
|
|
|
|
"strings"
|
2017-11-29 18:46:31 +01:00
|
|
|
"time"
|
2017-06-04 21:48:15 +02:00
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
// #include <string.h>
|
|
|
|
// #include <unistd.h>
|
|
|
|
// #include <net/if.h>
|
|
|
|
// #include <netinet/in.h>
|
|
|
|
// #include <linux/netlink.h>
|
|
|
|
// #include <linux/rtnetlink.h>
|
|
|
|
//
|
|
|
|
// /* Creates a netlink socket
|
|
|
|
// * listening to the RTMGRP_LINK multicast group
|
|
|
|
// */
|
|
|
|
//
|
|
|
|
// int bind_rtmgrp() {
|
|
|
|
// int nl_sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
|
|
|
// if (nl_sock < 0)
|
|
|
|
// return -1;
|
|
|
|
//
|
|
|
|
// struct sockaddr_nl addr;
|
|
|
|
// memset ((void *) &addr, 0, sizeof (addr));
|
|
|
|
// addr.nl_family = AF_NETLINK;
|
|
|
|
// addr.nl_pid = getpid ();
|
|
|
|
// addr.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV6_IFADDR;
|
|
|
|
//
|
|
|
|
// if (bind(nl_sock, (struct sockaddr *) &addr, sizeof (addr)) < 0)
|
|
|
|
// return -1;
|
|
|
|
//
|
|
|
|
// return nl_sock;
|
|
|
|
// }
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
const (
|
|
|
|
CloneDevicePath = "/dev/net/tun"
|
|
|
|
IFReqSize = unix.IFNAMSIZ + 64
|
|
|
|
)
|
2017-06-04 21:48:15 +02:00
|
|
|
|
|
|
|
type NativeTun struct {
|
2017-08-07 15:25:04 +02:00
|
|
|
fd *os.File
|
2017-08-17 12:58:18 +02:00
|
|
|
index int32 // if index
|
|
|
|
name string // name of interface
|
2017-08-17 00:25:39 +02:00
|
|
|
errors chan error // async error handling
|
2017-08-17 12:58:18 +02:00
|
|
|
events chan TUNEvent // device related events
|
2017-08-17 00:25:39 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 18:26:28 +01:00
|
|
|
func (tun *NativeTun) File() *os.File {
|
|
|
|
return tun.fd
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:46:31 +01:00
|
|
|
func (tun *NativeTun) RoutineHackListener() {
|
|
|
|
/* This is needed for the detection to work accross network namespaces
|
|
|
|
* If you are reading this and know a better method, please get in touch.
|
|
|
|
*/
|
|
|
|
fd := int(tun.fd.Fd())
|
|
|
|
for {
|
|
|
|
_, err := unix.Write(fd, nil)
|
|
|
|
switch err {
|
|
|
|
case unix.EINVAL:
|
|
|
|
tun.events <- TUNEventUp
|
|
|
|
case unix.EIO:
|
|
|
|
tun.events <- TUNEventDown
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
time.Sleep(time.Second / 10)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
func (tun *NativeTun) RoutineNetlinkListener() {
|
2017-11-29 18:46:31 +01:00
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
sock := int(C.bind_rtmgrp())
|
|
|
|
if sock < 0 {
|
|
|
|
tun.errors <- errors.New("Failed to create netlink event listener")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for msg := make([]byte, 1<<16); ; {
|
|
|
|
|
|
|
|
msgn, _, _, _, err := unix.Recvmsg(sock, msg[:], nil, 0)
|
|
|
|
if err != nil {
|
|
|
|
tun.errors <- fmt.Errorf("Failed to receive netlink message: %s", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for remain := msg[:msgn]; len(remain) >= unix.SizeofNlMsghdr; {
|
|
|
|
|
|
|
|
hdr := *(*unix.NlMsghdr)(unsafe.Pointer(&remain[0]))
|
|
|
|
|
|
|
|
if int(hdr.Len) > len(remain) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
switch hdr.Type {
|
|
|
|
case unix.NLMSG_DONE:
|
|
|
|
remain = []byte{}
|
|
|
|
|
|
|
|
case unix.RTM_NEWLINK:
|
|
|
|
info := *(*unix.IfInfomsg)(unsafe.Pointer(&remain[unix.SizeofNlMsghdr]))
|
2017-08-22 14:57:32 +02:00
|
|
|
remain = remain[hdr.Len:]
|
2017-08-17 00:25:39 +02:00
|
|
|
|
2017-08-17 12:58:18 +02:00
|
|
|
if info.Index != tun.index {
|
|
|
|
// not our interface
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
if info.Flags&unix.IFF_RUNNING != 0 {
|
|
|
|
tun.events <- TUNEventUp
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.Flags&unix.IFF_RUNNING == 0 {
|
|
|
|
tun.events <- TUNEventDown
|
|
|
|
}
|
|
|
|
|
2017-08-22 14:57:32 +02:00
|
|
|
tun.events <- TUNEventMTUUpdate
|
2017-08-17 00:25:39 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
remain = remain[hdr.Len:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-07 15:25:04 +02:00
|
|
|
func (tun *NativeTun) isUp() (bool, error) {
|
2017-08-04 16:15:53 +02:00
|
|
|
inter, err := net.InterfaceByName(tun.name)
|
|
|
|
return inter.Flags&net.FlagUp != 0, err
|
|
|
|
}
|
|
|
|
|
2017-06-04 21:48:15 +02:00
|
|
|
func (tun *NativeTun) Name() string {
|
|
|
|
return tun.name
|
|
|
|
}
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
func getDummySock() (int, error) {
|
|
|
|
return unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
|
|
|
0,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-08-17 12:58:18 +02:00
|
|
|
func getIFIndex(name string) (int32, error) {
|
2017-08-17 00:25:39 +02:00
|
|
|
fd, err := getDummySock()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.Close(fd)
|
|
|
|
|
|
|
|
var ifr [IFReqSize]byte
|
|
|
|
copy(ifr[:], name)
|
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
|
|
|
uintptr(fd),
|
|
|
|
uintptr(unix.SIOCGIFINDEX),
|
|
|
|
uintptr(unsafe.Pointer(&ifr[0])),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
|
|
|
return 0, errno
|
|
|
|
}
|
|
|
|
|
2017-09-24 21:35:25 +02:00
|
|
|
index := binary.LittleEndian.Uint32(ifr[unix.IFNAMSIZ:])
|
|
|
|
return toInt32(index), nil
|
2017-08-17 00:25:39 +02:00
|
|
|
}
|
|
|
|
|
2017-07-15 16:27:59 +02:00
|
|
|
func (tun *NativeTun) setMTU(n int) error {
|
|
|
|
|
|
|
|
// open datagram socket
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
2017-07-15 16:27:59 +02:00
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
defer unix.Close(fd)
|
2017-07-18 14:15:29 +02:00
|
|
|
|
2017-07-15 16:27:59 +02:00
|
|
|
// do ioctl call
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
var ifr [IFReqSize]byte
|
2017-07-15 16:27:59 +02:00
|
|
|
copy(ifr[:], tun.name)
|
|
|
|
binary.LittleEndian.PutUint32(ifr[16:20], uint32(n))
|
2017-07-20 15:06:24 +02:00
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
2017-07-15 16:27:59 +02:00
|
|
|
uintptr(fd),
|
2017-07-20 15:06:24 +02:00
|
|
|
uintptr(unix.SIOCSIFMTU),
|
2017-07-15 16:27:59 +02:00
|
|
|
uintptr(unsafe.Pointer(&ifr[0])),
|
|
|
|
)
|
|
|
|
|
|
|
|
if errno != 0 {
|
|
|
|
return errors.New("Failed to set MTU of TUN device")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-07-11 22:48:58 +02:00
|
|
|
func (tun *NativeTun) MTU() (int, error) {
|
|
|
|
|
|
|
|
// open datagram socket
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
fd, err := unix.Socket(
|
|
|
|
unix.AF_INET,
|
|
|
|
unix.SOCK_DGRAM,
|
2017-07-11 22:48:58 +02:00
|
|
|
0,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
defer unix.Close(fd)
|
2017-07-18 14:15:29 +02:00
|
|
|
|
2017-07-11 22:48:58 +02:00
|
|
|
// do ioctl call
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
var ifr [IFReqSize]byte
|
2017-07-11 22:48:58 +02:00
|
|
|
copy(ifr[:], tun.name)
|
2017-07-20 15:06:24 +02:00
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
2017-07-11 22:48:58 +02:00
|
|
|
uintptr(fd),
|
2017-07-20 15:06:24 +02:00
|
|
|
uintptr(unix.SIOCGIFMTU),
|
2017-07-11 22:48:58 +02:00
|
|
|
uintptr(unsafe.Pointer(&ifr[0])),
|
|
|
|
)
|
|
|
|
if errno != 0 {
|
|
|
|
return 0, errors.New("Failed to get MTU of TUN device")
|
|
|
|
}
|
|
|
|
|
|
|
|
// convert result to signed 32-bit int
|
|
|
|
|
|
|
|
val := binary.LittleEndian.Uint32(ifr[16:20])
|
|
|
|
if val >= (1 << 31) {
|
2017-11-17 14:36:08 +01:00
|
|
|
return int(toInt32(val)), nil
|
2017-07-11 22:48:58 +02:00
|
|
|
}
|
|
|
|
return int(val), nil
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (tun *NativeTun) Write(d []byte) (int, error) {
|
|
|
|
return tun.fd.Write(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tun *NativeTun) Read(d []byte) (int, error) {
|
2017-08-17 00:25:39 +02:00
|
|
|
select {
|
|
|
|
case err := <-tun.errors:
|
|
|
|
return 0, err
|
|
|
|
default:
|
|
|
|
return tun.fd.Read(d)
|
|
|
|
}
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-07 15:25:04 +02:00
|
|
|
func (tun *NativeTun) Events() chan TUNEvent {
|
|
|
|
return tun.events
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tun *NativeTun) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-14 18:26:28 +01:00
|
|
|
func CreateTUNFromFile(name string, fd *os.File) (TUNDevice, error) {
|
|
|
|
device := &NativeTun{
|
|
|
|
fd: fd,
|
|
|
|
name: name,
|
|
|
|
events: make(chan TUNEvent, 5),
|
|
|
|
errors: make(chan error, 5),
|
|
|
|
}
|
|
|
|
|
|
|
|
// start event listener
|
|
|
|
|
|
|
|
var err error
|
|
|
|
device.index, err = getIFIndex(device.name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
go device.RoutineNetlinkListener()
|
2017-11-29 18:46:31 +01:00
|
|
|
go device.RoutineHackListener() // cross namespace
|
2017-11-14 18:26:28 +01:00
|
|
|
|
|
|
|
// set default MTU
|
|
|
|
|
|
|
|
return device, device.setMTU(DefaultMTU)
|
|
|
|
}
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
func CreateTUN(name string) (TUNDevice, error) {
|
2017-07-11 22:48:58 +02:00
|
|
|
|
|
|
|
// open clone device
|
|
|
|
|
2017-06-04 21:48:15 +02:00
|
|
|
fd, err := os.OpenFile(CloneDevicePath, os.O_RDWR, 0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-07-15 16:27:59 +02:00
|
|
|
// create new device
|
2017-07-11 22:48:58 +02:00
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
var ifr [IFReqSize]byte
|
2017-07-20 15:06:24 +02:00
|
|
|
var flags uint16 = unix.IFF_TUN | unix.IFF_NO_PI
|
2017-06-04 21:48:15 +02:00
|
|
|
nameBytes := []byte(name)
|
2017-07-20 15:06:24 +02:00
|
|
|
if len(nameBytes) >= unix.IFNAMSIZ {
|
2017-08-17 00:25:39 +02:00
|
|
|
return nil, errors.New("Interface name too long")
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|
|
|
|
copy(ifr[:], nameBytes)
|
|
|
|
binary.LittleEndian.PutUint16(ifr[16:], flags)
|
|
|
|
|
2017-07-20 15:06:24 +02:00
|
|
|
_, _, errno := unix.Syscall(
|
|
|
|
unix.SYS_IOCTL,
|
2017-07-11 22:48:58 +02:00
|
|
|
uintptr(fd.Fd()),
|
2017-07-20 15:06:24 +02:00
|
|
|
uintptr(unix.TUNSETIFF),
|
2017-07-11 22:48:58 +02:00
|
|
|
uintptr(unsafe.Pointer(&ifr[0])),
|
|
|
|
)
|
2017-06-04 21:48:15 +02:00
|
|
|
if errno != 0 {
|
2017-08-17 00:25:39 +02:00
|
|
|
return nil, errno
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|
|
|
|
|
2017-07-11 22:48:58 +02:00
|
|
|
// read (new) name of interface
|
|
|
|
|
2017-06-04 21:48:15 +02:00
|
|
|
newName := string(ifr[:])
|
|
|
|
newName = newName[:strings.Index(newName, "\000")]
|
2017-07-15 16:27:59 +02:00
|
|
|
device := &NativeTun{
|
2017-08-07 15:25:04 +02:00
|
|
|
fd: fd,
|
|
|
|
name: newName,
|
|
|
|
events: make(chan TUNEvent, 5),
|
2017-08-17 00:25:39 +02:00
|
|
|
errors: make(chan error, 5),
|
2017-07-15 16:27:59 +02:00
|
|
|
}
|
|
|
|
|
2017-08-17 12:58:18 +02:00
|
|
|
// start event listener
|
2017-08-17 00:25:39 +02:00
|
|
|
|
|
|
|
device.index, err = getIFIndex(device.name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
go device.RoutineNetlinkListener()
|
2017-11-29 18:46:31 +01:00
|
|
|
go device.RoutineHackListener() // cross namespace
|
2017-08-07 15:25:04 +02:00
|
|
|
|
2017-07-15 16:27:59 +02:00
|
|
|
// set default MTU
|
|
|
|
|
2017-08-17 00:25:39 +02:00
|
|
|
return device, device.setMTU(DefaultMTU)
|
2017-06-04 21:48:15 +02:00
|
|
|
}
|