2017-12-29 04:16:20 +00: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?
|
|
|
|
|
2018-06-09 22:46:19 +00:00
|
|
|
// TCP connections start with a metadata exchange.
|
|
|
|
// It involves exchanging version numbers and crypto keys
|
|
|
|
// See version.go for version metadata format
|
|
|
|
|
2018-06-12 22:50:08 +00:00
|
|
|
import (
|
2019-01-13 18:08:41 +00:00
|
|
|
"context"
|
2018-06-12 22:50:08 +00:00
|
|
|
"fmt"
|
2018-06-21 15:39:43 +00:00
|
|
|
"math/rand"
|
2018-06-12 22:50:08 +00:00
|
|
|
"net"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/net/proxy"
|
2018-12-15 02:49:18 +00:00
|
|
|
|
2019-03-04 18:41:32 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2018-06-12 22:50:08 +00:00
|
|
|
)
|
2017-12-29 04:16:20 +00:00
|
|
|
|
2019-01-19 00:14:10 +00:00
|
|
|
const default_timeout = 6 * time.Second
|
|
|
|
const tcp_ping_interval = (default_timeout * 2 / 3)
|
2017-12-29 04:16:20 +00:00
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// The TCP listener and information about active TCP connections, to avoid duplication.
|
2019-03-04 17:52:57 +00:00
|
|
|
type tcp struct {
|
2019-03-06 11:06:13 +00:00
|
|
|
link *link
|
|
|
|
reconfigure chan chan error
|
|
|
|
mutex sync.Mutex // Protecting the below
|
|
|
|
listeners map[string]*tcpListener
|
|
|
|
calls map[string]struct{}
|
|
|
|
conns map[linkInfo](chan struct{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type tcpListener struct {
|
2019-03-06 12:07:33 +00:00
|
|
|
listener net.Listener
|
2019-03-06 11:06:13 +00:00
|
|
|
stop chan bool
|
2017-12-29 04:16:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-15 00:15:35 +00:00
|
|
|
// Wrapper function to set additional options for specific connection types.
|
2019-03-04 17:52:57 +00:00
|
|
|
func (t *tcp) setExtraOptions(c net.Conn) {
|
2018-12-15 00:15:35 +00:00
|
|
|
switch sock := c.(type) {
|
|
|
|
case *net.TCPConn:
|
|
|
|
sock.SetNoDelay(true)
|
|
|
|
// TODO something for socks5
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// Returns the address of the listener.
|
2019-03-04 17:52:57 +00:00
|
|
|
func (t *tcp) getAddr() *net.TCPAddr {
|
2019-03-04 18:47:40 +00: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()
|
2019-03-04 23:16:46 +00:00
|
|
|
defer t.mutex.Unlock()
|
2019-03-06 12:07:33 +00:00
|
|
|
for _, l := range t.listeners {
|
|
|
|
return l.listener.Addr().(*net.TCPAddr)
|
2019-03-04 17:52:57 +00:00
|
|
|
}
|
|
|
|
return nil
|
2018-05-27 21:13:37 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// Initializes the struct.
|
2019-03-04 17:52:57 +00:00
|
|
|
func (t *tcp) init(l *link) error {
|
|
|
|
t.link = l
|
|
|
|
t.reconfigure = make(chan chan error, 1)
|
2019-03-04 18:47:40 +00:00
|
|
|
t.mutex.Lock()
|
|
|
|
t.calls = make(map[string]struct{})
|
2019-03-04 20:33:08 +00:00
|
|
|
t.conns = make(map[linkInfo](chan struct{}))
|
2019-03-06 11:06:13 +00:00
|
|
|
t.listeners = make(map[string]*tcpListener)
|
2019-03-04 18:47:40 +00:00
|
|
|
t.mutex.Unlock()
|
2019-03-04 17:52:57 +00:00
|
|
|
|
2018-12-30 15:21:09 +00:00
|
|
|
go func() {
|
|
|
|
for {
|
2019-03-04 17:52:57 +00:00
|
|
|
e := <-t.reconfigure
|
|
|
|
t.link.core.configMutex.RLock()
|
2019-03-04 18:41:32 +00:00
|
|
|
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 17:52:57 +00:00
|
|
|
t.link.core.configMutex.RUnlock()
|
2019-03-04 18:47:40 +00:00
|
|
|
if len(added) > 0 || len(deleted) > 0 {
|
2019-03-06 16:40:48 +00:00
|
|
|
for _, a := range added {
|
|
|
|
if a[:6] != "tcp://" {
|
2019-03-04 18:41:32 +00:00
|
|
|
continue
|
|
|
|
}
|
2019-03-06 16:40:48 +00:00
|
|
|
if _, err := t.listen(a[6:]); err != nil {
|
2019-03-04 18:41:32 +00:00
|
|
|
e <- err
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 16:40:48 +00:00
|
|
|
for _, d := range deleted {
|
|
|
|
if d[:6] != "tcp://" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
t.mutex.Lock()
|
|
|
|
if listener, ok := t.listeners[d[6:]]; ok {
|
|
|
|
t.mutex.Unlock()
|
|
|
|
listener.stop <- true
|
|
|
|
} else {
|
|
|
|
t.mutex.Unlock()
|
|
|
|
}
|
2019-03-04 18:41:32 +00:00
|
|
|
}
|
|
|
|
e <- nil
|
2019-01-15 08:51:19 +00:00
|
|
|
} else {
|
|
|
|
e <- nil
|
2018-12-30 15:21:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-03-04 17:52:57 +00: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
|
|
|
|
}
|
2019-03-06 11:06:13 +00:00
|
|
|
if _, err := t.listen(listenaddr[6:]); err != nil {
|
2019-03-04 17:52:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2018-12-30 15:21:09 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 12:07:33 +00:00
|
|
|
func (t *tcp) listen(listenaddr string) (*tcpListener, error) {
|
2018-12-30 15:21:09 +00:00
|
|
|
var err error
|
|
|
|
|
2019-01-13 18:08:41 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
lc := net.ListenConfig{
|
2019-03-04 17:52:57 +00:00
|
|
|
Control: t.tcpContext,
|
2019-01-13 18:08:41 +00:00
|
|
|
}
|
2019-03-04 17:52:57 +00:00
|
|
|
listener, err := lc.Listen(ctx, "tcp", listenaddr)
|
2018-04-19 14:30:40 +00:00
|
|
|
if err == nil {
|
2019-03-06 11:06:13 +00:00
|
|
|
l := tcpListener{
|
2019-03-06 12:07:33 +00:00
|
|
|
listener: listener,
|
|
|
|
stop: make(chan bool),
|
2019-03-06 11:06:13 +00:00
|
|
|
}
|
2019-03-06 16:40:48 +00:00
|
|
|
go t.listener(&l, listenaddr)
|
2019-03-06 12:07:33 +00:00
|
|
|
return &l, nil
|
2018-01-04 22:37:51 +00:00
|
|
|
}
|
2018-05-27 21:13:37 +00:00
|
|
|
|
2019-03-06 11:06:13 +00:00
|
|
|
return nil, err
|
2017-12-29 04:16:20 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// Runs the listener, which spawns off goroutines for incoming connections.
|
2019-03-06 12:07:33 +00:00
|
|
|
func (t *tcp) listener(l *tcpListener, listenaddr string) {
|
|
|
|
if l == nil {
|
2019-03-04 17:52:57 +00:00
|
|
|
return
|
|
|
|
}
|
2019-03-06 12:07:33 +00:00
|
|
|
// Track the listener so that we can find it again in future
|
|
|
|
t.mutex.Lock()
|
2019-03-09 00:51:07 +00:00
|
|
|
if _, isIn := t.listeners[listenaddr]; isIn {
|
|
|
|
t.mutex.Unlock()
|
|
|
|
l.listener.Close()
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
t.listeners[listenaddr] = l
|
|
|
|
t.mutex.Unlock()
|
|
|
|
}
|
2019-03-06 12:07:33 +00:00
|
|
|
// And here we go!
|
2019-03-04 20:33:08 +00:00
|
|
|
accepted := make(chan bool)
|
2019-03-08 10:26:46 +00:00
|
|
|
defer func() {
|
|
|
|
t.link.core.log.Infoln("Stopping TCP listener on:", l.listener.Addr().String())
|
|
|
|
l.listener.Close()
|
|
|
|
t.mutex.Lock()
|
|
|
|
delete(t.listeners, listenaddr)
|
|
|
|
t.mutex.Unlock()
|
|
|
|
}()
|
2019-03-06 12:07:33 +00:00
|
|
|
t.link.core.log.Infoln("Listening for TCP on:", l.listener.Addr().String())
|
2018-01-04 22:37:51 +00:00
|
|
|
for {
|
2019-03-04 18:41:32 +00:00
|
|
|
var sock net.Conn
|
|
|
|
var err error
|
2019-03-06 12:07:33 +00:00
|
|
|
// Listen in a separate goroutine, as that way it does not block us from
|
|
|
|
// receiving "stop" events
|
2019-03-04 18:41:32 +00:00
|
|
|
go func() {
|
2019-03-06 12:07:33 +00:00
|
|
|
sock, err = l.listener.Accept()
|
2019-03-04 18:41:32 +00:00
|
|
|
accepted <- true
|
|
|
|
}()
|
2019-03-06 12:07:33 +00:00
|
|
|
// Wait for either an accepted connection, or a message telling us to stop
|
|
|
|
// the TCP listener
|
2018-12-30 15:21:09 +00:00
|
|
|
select {
|
2019-03-04 18:41:32 +00:00
|
|
|
case <-accepted:
|
|
|
|
if err != nil {
|
|
|
|
t.link.core.log.Errorln("Failed to accept connection:", err)
|
|
|
|
return
|
|
|
|
}
|
2019-03-08 10:26:46 +00:00
|
|
|
go t.handler(sock, true, nil)
|
2019-03-06 12:07:33 +00:00
|
|
|
case <-l.stop:
|
2018-12-30 15:21:09 +00:00
|
|
|
return
|
2018-01-04 22:37:51 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-29 04:16:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 21:11:16 +00:00
|
|
|
// Checks if we already are calling this address
|
2019-03-04 17:52:57 +00:00
|
|
|
func (t *tcp) isAlreadyCalling(saddr string) bool {
|
|
|
|
t.mutex.Lock()
|
|
|
|
defer t.mutex.Unlock()
|
|
|
|
_, isIn := t.calls[saddr]
|
2018-12-30 21:11:16 +00:00
|
|
|
return isIn
|
|
|
|
}
|
|
|
|
|
2018-06-10 23:03:28 +00:00
|
|
|
// 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.
|
2019-03-04 22:45:35 +00:00
|
|
|
func (t *tcp) call(saddr string, options interface{}, sintf string) {
|
2018-01-04 22:37:51 +00:00
|
|
|
go func() {
|
2018-09-25 17:05:57 +00:00
|
|
|
callname := saddr
|
|
|
|
if sintf != "" {
|
|
|
|
callname = fmt.Sprintf("%s/%s", saddr, sintf)
|
|
|
|
}
|
2019-03-04 17:52:57 +00:00
|
|
|
if t.isAlreadyCalling(callname) {
|
2018-06-14 14:11:34 +00:00
|
|
|
return
|
|
|
|
}
|
2019-03-04 17:52:57 +00:00
|
|
|
t.mutex.Lock()
|
|
|
|
t.calls[callname] = struct{}{}
|
|
|
|
t.mutex.Unlock()
|
2018-12-30 21:11:16 +00:00
|
|
|
defer func() {
|
|
|
|
// Block new calls for a little while, to mitigate livelock scenarios
|
2019-01-19 00:14:10 +00:00
|
|
|
time.Sleep(default_timeout)
|
2018-12-30 21:11:16 +00:00
|
|
|
time.Sleep(time.Duration(rand.Intn(1000)) * time.Millisecond)
|
2019-03-04 17:52:57 +00:00
|
|
|
t.mutex.Lock()
|
|
|
|
delete(t.calls, callname)
|
|
|
|
t.mutex.Unlock()
|
2018-12-30 21:11:16 +00:00
|
|
|
}()
|
2018-06-14 14:11:34 +00:00
|
|
|
var conn net.Conn
|
|
|
|
var err error
|
2019-03-04 22:45:35 +00:00
|
|
|
socksaddr, issocks := options.(string)
|
|
|
|
if issocks {
|
2018-09-25 18:46:06 +00:00
|
|
|
if sintf != "" {
|
|
|
|
return
|
|
|
|
}
|
2019-03-08 10:26:46 +00:00
|
|
|
dialerdst, er := net.ResolveTCPAddr("tcp", socksaddr)
|
|
|
|
if er != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-06-14 14:21:35 +00:00
|
|
|
var dialer proxy.Dialer
|
2019-03-08 10:26:46 +00:00
|
|
|
dialer, err = proxy.SOCKS5("tcp", dialerdst.String(), nil, proxy.Direct)
|
2018-06-14 14:21:35 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-06-14 14:11:34 +00:00
|
|
|
conn, err = dialer.Dial("tcp", saddr)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn = &wrappedConn{
|
|
|
|
c: conn,
|
|
|
|
raddr: &wrappedAddr{
|
|
|
|
network: "tcp",
|
|
|
|
addr: saddr,
|
|
|
|
},
|
|
|
|
}
|
2019-03-08 10:26:46 +00:00
|
|
|
t.handler(conn, false, dialerdst.String())
|
2018-06-14 14:11:34 +00:00
|
|
|
} else {
|
2019-01-13 18:08:41 +00:00
|
|
|
dialer := net.Dialer{
|
2019-03-04 17:52:57 +00:00
|
|
|
Control: t.tcpContext,
|
2019-01-13 18:08:41 +00:00
|
|
|
}
|
2018-09-25 14:32:45 +00:00
|
|
|
if sintf != "" {
|
|
|
|
ief, err := net.InterfaceByName(sintf)
|
2018-10-04 11:26:08 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
2019-01-16 14:52:27 +00:00
|
|
|
}
|
|
|
|
if ief.Flags&net.FlagUp == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
addrs, err := ief.Addrs()
|
|
|
|
if err == nil {
|
|
|
|
dst, err := net.ResolveTCPAddr("tcp", saddr)
|
|
|
|
if err != nil {
|
2018-09-27 11:14:55 +00:00
|
|
|
return
|
2018-09-25 18:46:06 +00:00
|
|
|
}
|
2019-01-16 14:52:27 +00:00
|
|
|
for addrindex, addr := range addrs {
|
|
|
|
src, _, err := net.ParseCIDR(addr.String())
|
2018-09-25 14:32:45 +00:00
|
|
|
if err != nil {
|
2019-01-16 14:52:27 +00:00
|
|
|
continue
|
2018-09-25 14:32:45 +00:00
|
|
|
}
|
2019-01-17 23:06:59 +00: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,
|
2018-09-25 14:32:45 +00:00
|
|
|
}
|
2019-01-17 23:06:59 +00:00
|
|
|
break
|
2018-09-25 14:32:45 +00:00
|
|
|
}
|
2019-01-16 14:52:27 +00:00
|
|
|
}
|
|
|
|
if dialer.LocalAddr == nil {
|
|
|
|
return
|
2018-09-25 14:32:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-16 14:52:27 +00:00
|
|
|
|
2018-09-25 14:32:45 +00:00
|
|
|
conn, err = dialer.Dial("tcp", saddr)
|
2018-01-04 22:37:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2019-03-08 10:26:46 +00:00
|
|
|
t.handler(conn, false, nil)
|
2018-01-04 22:37:51 +00:00
|
|
|
}
|
|
|
|
}()
|
2017-12-29 04:16:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-08 10:26:46 +00:00
|
|
|
func (t *tcp) handler(sock net.Conn, incoming bool, options interface{}) {
|
2019-01-22 05:08:50 +00:00
|
|
|
defer sock.Close()
|
2019-03-04 17:52:57 +00:00
|
|
|
t.setExtraOptions(sock)
|
2019-01-22 05:08:50 +00:00
|
|
|
stream := stream{}
|
2019-01-23 15:16:22 +00:00
|
|
|
stream.init(sock)
|
2019-01-23 03:16:41 +00:00
|
|
|
local, _, _ := net.SplitHostPort(sock.LocalAddr().String())
|
|
|
|
remote, _, _ := net.SplitHostPort(sock.RemoteAddr().String())
|
2019-02-01 00:02:17 +00:00
|
|
|
remotelinklocal := net.ParseIP(remote).IsLinkLocalUnicast()
|
2019-03-08 10:26:46 +00:00
|
|
|
var name string
|
|
|
|
var proto string
|
|
|
|
if socksaddr, issocks := options.(string); issocks {
|
|
|
|
name = "socks://" + socksaddr + "/" + sock.RemoteAddr().String()
|
|
|
|
proto = "socks"
|
|
|
|
} else {
|
|
|
|
name = "tcp://" + sock.RemoteAddr().String()
|
|
|
|
proto = "tcp"
|
|
|
|
}
|
|
|
|
link, err := t.link.core.link.create(&stream, name, proto, local, remote, incoming, remotelinklocal)
|
2019-01-22 05:08:50 +00:00
|
|
|
if err != nil {
|
2019-03-04 17:52:57 +00:00
|
|
|
t.link.core.log.Println(err)
|
2019-01-22 05:08:50 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
2019-03-04 17:52:57 +00:00
|
|
|
t.link.core.log.Debugln("DEBUG: starting handler for", name)
|
2019-01-23 03:48:43 +00:00
|
|
|
err = link.handler()
|
2019-03-04 17:52:57 +00:00
|
|
|
t.link.core.log.Debugln("DEBUG: stopped handler for", name, err)
|
2019-01-22 05:08:50 +00:00
|
|
|
}
|