yggdrasil-go/src/tuntap/conn.go

173 lines
3.7 KiB
Go
Raw Normal View History

package tuntap
import (
"errors"
"time"
"github.com/yggdrasil-network/yggdrasil-go/src/address"
"github.com/yggdrasil-network/yggdrasil-go/src/util"
"github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil"
2019-05-29 22:16:17 +03:00
"golang.org/x/net/icmp"
"golang.org/x/net/ipv6"
)
2019-07-17 12:12:10 +03:00
const tunConnTimeout = 2 * time.Minute
type tunConn struct {
tun *TunAdapter
conn *yggdrasil.Conn
addr address.Address
snet address.Subnet
send chan []byte
stop chan struct{}
alive chan struct{}
}
func (s *tunConn) close() {
s.tun.mutex.Lock()
defer s.tun.mutex.Unlock()
s._close_nomutex()
}
func (s *tunConn) _close_nomutex() {
s.conn.Close()
delete(s.tun.addrToConn, s.addr)
delete(s.tun.subnetToConn, s.snet)
func() {
defer func() { recover() }()
close(s.stop) // Closes reader/writer goroutines
}()
func() {
defer func() { recover() }()
close(s.alive) // Closes timeout goroutine
}()
}
func (s *tunConn) reader() error {
select {
case _, ok := <-s.stop:
if !ok {
return errors.New("session was already closed")
}
default:
}
2019-07-17 12:12:10 +03:00
s.tun.log.Debugln("Starting conn reader for", s)
2019-07-17 13:13:53 +03:00
defer s.tun.log.Debugln("Stopping conn reader for", s)
var n int
var err error
read := make(chan bool)
b := make([]byte, 65535)
2019-07-17 12:12:10 +03:00
go func() {
s.tun.log.Debugln("Starting conn reader helper for", s)
2019-07-17 13:13:53 +03:00
defer s.tun.log.Debugln("Stopping conn reader helper for", s)
2019-07-17 12:12:10 +03:00
for {
s.conn.SetReadDeadline(time.Now().Add(tunConnTimeout))
if n, err = s.conn.Read(b); err != nil {
s.tun.log.Errorln(s.conn.String(), "TUN/TAP conn read error:", err)
2019-07-17 12:12:10 +03:00
if e, eok := err.(yggdrasil.ConnError); eok {
2019-07-17 13:13:53 +03:00
s.tun.log.Debugln("Conn reader helper", s, "error:", e)
2019-07-17 12:12:10 +03:00
switch {
case e.Temporary():
2019-07-17 13:13:53 +03:00
fallthrough
case e.Timeout():
2019-07-17 12:12:10 +03:00
read <- false
continue
2019-07-17 13:13:53 +03:00
case e.Closed():
2019-07-17 12:12:10 +03:00
fallthrough
default:
s.close()
return
}
}
2019-07-17 12:12:10 +03:00
read <- false
}
read <- true
2019-07-17 12:12:10 +03:00
}
}()
for {
select {
case r, ok := <-read:
if r && n > 0 {
bs := append(util.GetBytes(), b[:n]...)
select {
case s.tun.send <- bs:
default:
util.PutBytes(bs)
}
}
if ok {
s.stillAlive() // TODO? Only stay alive if we read >0 bytes?
}
case <-s.stop:
return nil
}
}
}
func (s *tunConn) writer() error {
select {
case _, ok := <-s.stop:
if !ok {
return errors.New("session was already closed")
}
default:
}
2019-07-17 12:12:10 +03:00
s.tun.log.Debugln("Starting conn writer for", s)
2019-07-17 13:13:53 +03:00
defer s.tun.log.Debugln("Stopping conn writer for", s)
for {
select {
case <-s.stop:
return nil
case b, ok := <-s.send:
if !ok {
return errors.New("send closed")
}
// TODO write timeout and close
if _, err := s.conn.Write(b); err != nil {
2019-05-29 22:16:17 +03:00
e, eok := err.(yggdrasil.ConnError)
if !eok {
s.tun.log.Errorln(s.conn.String(), "TUN/TAP generic write error:", err)
} else if ispackettoobig, maxsize := e.PacketTooBig(); ispackettoobig {
// TODO: This currently isn't aware of IPv4 for CKR
ptb := &icmp.PacketTooBig{
MTU: int(maxsize),
Data: b[:900],
}
if packet, err := CreateICMPv6(b[8:24], b[24:40], ipv6.ICMPTypePacketTooBig, 0, ptb); err == nil {
s.tun.send <- packet
}
} else {
s.tun.log.Errorln(s.conn.String(), "TUN/TAP conn write error:", err)
}
}
util.PutBytes(b)
s.stillAlive()
}
}
}
func (s *tunConn) stillAlive() {
select {
case s.alive <- struct{}{}:
default:
}
}
func (s *tunConn) checkForTimeouts() error {
2019-07-17 12:12:10 +03:00
timer := time.NewTimer(tunConnTimeout)
defer util.TimerStop(timer)
defer s.close()
for {
select {
case _, ok := <-s.alive:
if !ok {
return errors.New("connection closed")
}
util.TimerStop(timer)
2019-07-17 12:12:10 +03:00
timer.Reset(tunConnTimeout)
case <-timer.C:
return errors.New("timed out")
}
}
}