yggdrasil-go/src/yggdrasil/tcp.go

311 lines
8.0 KiB
Go
Raw Normal View History

2017-12-29 07:16:20 +03:00
package yggdrasil
// This sends packets to peers using TCP as a transport
// It's generally better tested than the UDP implementation
// Using it regularly is insane, but I find TCP easier to test/debug with it
// Updating and optimizing the UDP version is a higher priority
// TODO:
// Something needs to make sure we're getting *valid* packets
// Could be used to DoS (connect, give someone else's keys, spew garbage)
// I guess the "peer" part should watch for link packets, disconnect?
// TCP connections start with a metadata exchange.
// It involves exchanging version numbers and crypto keys
// See version.go for version metadata format
2018-06-13 01:50:08 +03:00
import (
2019-01-13 21:08:41 +03:00
"context"
"errors"
2018-06-13 01:50:08 +03:00
"fmt"
2018-06-21 18:39:43 +03:00
"math/rand"
2018-06-13 01:50:08 +03:00
"net"
"sync"
"time"
"golang.org/x/net/proxy"
"github.com/yggdrasil-network/yggdrasil-go/src/util"
2018-06-13 01:50:08 +03:00
)
2017-12-29 07:16:20 +03:00
const default_timeout = 6 * time.Second
const tcp_ping_interval = (default_timeout * 2 / 3)
2017-12-29 07:16:20 +03:00
// The TCP listener and information about active TCP connections, to avoid duplication.
2019-03-04 20:52:57 +03:00
type tcp struct {
link *link
reconfigure chan chan error
mutex sync.Mutex // Protecting the below
listeners map[string]net.Listener
listenerstops map[string]chan bool
calls map[string]struct{}
conns map[linkInfo](chan struct{})
2017-12-29 07:16:20 +03:00
}
// Wrapper function to set additional options for specific connection types.
2019-03-04 20:52:57 +03:00
func (t *tcp) setExtraOptions(c net.Conn) {
switch sock := c.(type) {
case *net.TCPConn:
sock.SetNoDelay(true)
// TODO something for socks5
default:
}
}
// Returns the address of the listener.
2019-03-04 20:52:57 +03:00
func (t *tcp) getAddr() *net.TCPAddr {
2019-03-04 21:47:40 +03:00
// TODO: Fix this, because this will currently only give a single address
// to multicast.go, which obviously is not great, but right now multicast.go
// doesn't have the ability to send more than one address in a packet either
t.mutex.Lock()
defer t.mutex.Unlock()
2019-03-04 20:52:57 +03:00
for _, listener := range t.listeners {
return listener.Addr().(*net.TCPAddr)
}
return nil
2018-05-28 00:13:37 +03:00
}
// Initializes the struct.
2019-03-04 20:52:57 +03:00
func (t *tcp) init(l *link) error {
t.link = l
t.reconfigure = make(chan chan error, 1)
2019-03-04 21:47:40 +03:00
t.mutex.Lock()
t.calls = make(map[string]struct{})
t.conns = make(map[linkInfo](chan struct{}))
2019-03-04 21:47:40 +03:00
t.listeners = make(map[string]net.Listener)
t.listenerstops = make(map[string]chan bool)
t.mutex.Unlock()
2019-03-04 20:52:57 +03:00
2018-12-30 18:21:09 +03:00
go func() {
for {
2019-03-04 20:52:57 +03:00
e := <-t.reconfigure
t.link.core.configMutex.RLock()
added := util.Difference(t.link.core.config.Listen, t.link.core.configOld.Listen)
deleted := util.Difference(t.link.core.configOld.Listen, t.link.core.config.Listen)
2019-03-04 20:52:57 +03:00
t.link.core.configMutex.RUnlock()
2019-03-04 21:47:40 +03:00
if len(added) > 0 || len(deleted) > 0 {
for _, add := range added {
if add[:6] != "tcp://" {
e <- errors.New("unknown scheme: " + add)
continue
}
if err := t.listen(add[6:]); err != nil {
e <- err
continue
}
}
for _, delete := range deleted {
t.link.core.log.Warnln("Removing listener", delete, "not currently implemented")
}
e <- nil
2019-01-15 11:51:19 +03:00
} else {
e <- nil
2018-12-30 18:21:09 +03:00
}
}
}()
2019-03-04 20:52:57 +03:00
t.link.core.configMutex.RLock()
defer t.link.core.configMutex.RUnlock()
for _, listenaddr := range t.link.core.config.Listen {
if listenaddr[:6] != "tcp://" {
continue
}
if err := t.listen(listenaddr[6:]); err != nil {
return err
}
}
return nil
2018-12-30 18:21:09 +03:00
}
2019-03-04 20:52:57 +03:00
func (t *tcp) listen(listenaddr string) error {
2018-12-30 18:21:09 +03:00
var err error
2019-01-13 21:08:41 +03:00
ctx := context.Background()
lc := net.ListenConfig{
2019-03-04 20:52:57 +03:00
Control: t.tcpContext,
2019-01-13 21:08:41 +03:00
}
2019-03-04 20:52:57 +03:00
listener, err := lc.Listen(ctx, "tcp", listenaddr)
2018-04-19 17:30:40 +03:00
if err == nil {
2019-03-04 20:52:57 +03:00
t.mutex.Lock()
t.listeners[listenaddr] = listener
t.listenerstops[listenaddr] = make(chan bool, 1)
2019-03-04 20:52:57 +03:00
t.mutex.Unlock()
go t.listener(listenaddr)
2018-12-30 18:21:09 +03:00
return nil
2018-01-05 01:37:51 +03:00
}
2018-05-28 00:13:37 +03:00
return err
2017-12-29 07:16:20 +03:00
}
// Runs the listener, which spawns off goroutines for incoming connections.
2019-03-04 20:52:57 +03:00
func (t *tcp) listener(listenaddr string) {
2019-03-04 21:47:40 +03:00
t.mutex.Lock()
listener, ok1 := t.listeners[listenaddr]
2019-03-04 21:47:40 +03:00
listenerstop, ok2 := t.listenerstops[listenaddr]
t.mutex.Unlock()
if !ok1 || !ok2 {
2019-03-04 20:52:57 +03:00
t.link.core.log.Errorln("Tried to start TCP listener for", listenaddr, "which doesn't exist")
return
}
reallistenaddr := listener.Addr().String()
2019-03-04 20:52:57 +03:00
defer listener.Close()
t.link.core.log.Infoln("Listening for TCP on:", reallistenaddr)
accepted := make(chan bool)
2018-01-05 01:37:51 +03:00
for {
var sock net.Conn
var err error
go func() {
sock, err = listener.Accept()
accepted <- true
}()
2018-12-30 18:21:09 +03:00
select {
case <-accepted:
if err != nil {
t.link.core.log.Errorln("Failed to accept connection:", err)
return
}
go t.handler(sock, true)
2019-03-04 21:47:40 +03:00
case <-listenerstop:
t.link.core.log.Errorln("Stopping TCP listener on:", reallistenaddr)
2018-12-30 18:21:09 +03:00
return
2018-01-05 01:37:51 +03:00
}
}
2017-12-29 07:16:20 +03:00
}
// Checks if we already are calling this address
2019-03-04 20:52:57 +03:00
func (t *tcp) isAlreadyCalling(saddr string) bool {
t.mutex.Lock()
defer t.mutex.Unlock()
_, isIn := t.calls[saddr]
return isIn
}
// Checks if a connection already exists.
// If not, it adds it to the list of active outgoing calls (to block future attempts) and dials the address.
// If the dial is successful, it launches the handler.
// When finished, it removes the outgoing call, so reconnection attempts can be made later.
// This all happens in a separate goroutine that it spawns.
func (t *tcp) call(saddr string, options interface{}, sintf string) {
2018-01-05 01:37:51 +03:00
go func() {
callname := saddr
if sintf != "" {
callname = fmt.Sprintf("%s/%s", saddr, sintf)
}
2019-03-04 20:52:57 +03:00
if t.isAlreadyCalling(callname) {
2018-06-14 17:11:34 +03:00
return
}
2019-03-04 20:52:57 +03:00
t.mutex.Lock()
t.calls[callname] = struct{}{}
t.mutex.Unlock()
defer func() {
// Block new calls for a little while, to mitigate livelock scenarios
time.Sleep(default_timeout)
time.Sleep(time.Duration(rand.Intn(1000)) * time.Millisecond)
2019-03-04 20:52:57 +03:00
t.mutex.Lock()
delete(t.calls, callname)
t.mutex.Unlock()
}()
2018-06-14 17:11:34 +03:00
var conn net.Conn
var err error
socksaddr, issocks := options.(string)
if issocks {
2018-09-25 21:46:06 +03:00
if sintf != "" {
return
}
var dialer proxy.Dialer
dialer, err = proxy.SOCKS5("tcp", socksaddr, nil, proxy.Direct)
if err != nil {
return
}
2018-06-14 17:11:34 +03:00
conn, err = dialer.Dial("tcp", saddr)
if err != nil {
return
}
conn = &wrappedConn{
c: conn,
raddr: &wrappedAddr{
network: "tcp",
addr: saddr,
},
}
} else {
2019-01-13 21:08:41 +03:00
dialer := net.Dialer{
2019-03-04 20:52:57 +03:00
Control: t.tcpContext,
2019-01-13 21:08:41 +03:00
}
if sintf != "" {
ief, err := net.InterfaceByName(sintf)
if err != nil {
return
}
if ief.Flags&net.FlagUp == 0 {
return
}
addrs, err := ief.Addrs()
if err == nil {
dst, err := net.ResolveTCPAddr("tcp", saddr)
if err != nil {
return
2018-09-25 21:46:06 +03:00
}
for addrindex, addr := range addrs {
src, _, err := net.ParseCIDR(addr.String())
if err != nil {
continue
}
2019-01-18 02:06:59 +03:00
if src.Equal(dst.IP) {
continue
}
if !src.IsGlobalUnicast() && !src.IsLinkLocalUnicast() {
continue
}
bothglobal := src.IsGlobalUnicast() == dst.IP.IsGlobalUnicast()
bothlinklocal := src.IsLinkLocalUnicast() == dst.IP.IsLinkLocalUnicast()
if !bothglobal && !bothlinklocal {
continue
}
if (src.To4() != nil) != (dst.IP.To4() != nil) {
continue
}
if bothglobal || bothlinklocal || addrindex == len(addrs)-1 {
dialer.LocalAddr = &net.TCPAddr{
IP: src,
Port: 0,
Zone: sintf,
}
2019-01-18 02:06:59 +03:00
break
}
}
if dialer.LocalAddr == nil {
return
}
}
}
conn, err = dialer.Dial("tcp", saddr)
2018-01-05 01:37:51 +03:00
if err != nil {
return
}
}
2019-03-04 20:52:57 +03:00
t.handler(conn, false)
2018-01-05 01:37:51 +03:00
}()
2017-12-29 07:16:20 +03:00
}
2019-03-04 20:52:57 +03:00
func (t *tcp) handler(sock net.Conn, incoming bool) {
defer sock.Close()
2019-03-04 20:52:57 +03:00
t.setExtraOptions(sock)
stream := stream{}
2019-01-23 18:16:22 +03:00
stream.init(sock)
local, _, _ := net.SplitHostPort(sock.LocalAddr().String())
remote, _, _ := net.SplitHostPort(sock.RemoteAddr().String())
remotelinklocal := net.ParseIP(remote).IsLinkLocalUnicast()
name := "tcp://" + sock.RemoteAddr().String()
2019-03-04 20:52:57 +03:00
link, err := t.link.core.link.create(&stream, name, "tcp", local, remote, incoming, remotelinklocal)
if err != nil {
2019-03-04 20:52:57 +03:00
t.link.core.log.Println(err)
panic(err)
}
2019-03-04 20:52:57 +03:00
t.link.core.log.Debugln("DEBUG: starting handler for", name)
2019-01-23 06:48:43 +03:00
err = link.handler()
2019-03-04 20:52:57 +03:00
t.link.core.log.Debugln("DEBUG: stopped handler for", name, err)
}