From e3eae3bc0149d4f2b7f5d008783b35ceb8c1c027 Mon Sep 17 00:00:00 2001 From: Brady OBrien Date: Fri, 25 May 2018 20:43:22 -0500 Subject: A bit more messing with tun_dragonfly --- tun/tun_dragonfly.go | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tun/tun_dragonfly.go b/tun/tun_dragonfly.go index 6d9608b..ecf4f24 100644 --- a/tun/tun_dragonfly.go +++ b/tun/tun_dragonfly.go @@ -23,6 +23,8 @@ import ( const _TUNSIFHEAD = 0x80047460 const _TUNSIFMODE = 0x8004745e const _TUNSIFPID = 0x2000745f +const _FIONBIO = 0x8004667e +const _FIOASYNC = 0x8004667d // Iface status string max len const _IFSTATMAX = 800 @@ -269,9 +271,19 @@ func CreateTUN(name string, mtu int) (TUNDevice, error) { return nil, err } + var errno syscall.Errno; + + ifbiomode := 1 + _, _, errno = unix.Syscall( + unix.SYS_IOCTL, + uintptr(tunfd), + uintptr(_FIOASYNC), + uintptr(unsafe.Pointer(&ifbiomode)), + ) + // Enable ifhead mode, otherwise tun will complain if it gets a non-AF_INET packet ifheadmode := 1 - _, _, errno := unix.Syscall( + _, _, errno = unix.Syscall( unix.SYS_IOCTL, uintptr(tunfd), uintptr(_TUNSIFHEAD), @@ -390,7 +402,7 @@ func (tun *nativeTun) doRead(buff []byte, offset int) (int, error) { default: buff := buff[offset-4:] n, err := tun.fd.Read(buff[:]) - if n < 4 { + if n < 4 && n > 0{ return 0, err } return n - 4, err -- cgit v1.2.3-59-g8ed1b