2019-01-04 17:14:40 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import (
|
2019-01-05 12:06:45 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-01-04 17:23:37 +00:00
|
|
|
"sync"
|
2019-01-22 05:08:50 +00:00
|
|
|
//"sync/atomic"
|
2019-01-05 12:06:45 +00:00
|
|
|
"time"
|
2019-01-04 17:23:37 +00:00
|
|
|
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
2019-01-23 03:16:41 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2019-01-04 17:14:40 +00:00
|
|
|
)
|
|
|
|
|
2019-01-19 00:14:10 +00:00
|
|
|
type link struct {
|
2019-01-04 17:23:37 +00:00
|
|
|
core *Core
|
|
|
|
mutex sync.RWMutex // protects interfaces below
|
2019-01-23 03:16:41 +00:00
|
|
|
interfaces map[linkInfo]*linkInterface
|
|
|
|
}
|
|
|
|
|
|
|
|
type linkInfo struct {
|
|
|
|
box crypto.BoxPubKey // Their encryption key
|
|
|
|
sig crypto.SigPubKey // Their signing key
|
|
|
|
linkType string // Type of link, e.g. TCP, AWDL
|
|
|
|
local string // Local name or address
|
|
|
|
remote string // Remote name or address
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 03:27:52 +00:00
|
|
|
type linkInterfaceMsgIO interface {
|
|
|
|
readMsg() ([]byte, error)
|
|
|
|
writeMsg([]byte) (int, error)
|
|
|
|
close() error
|
|
|
|
// These are temporary workarounds to stream semantics
|
|
|
|
_sendMetaBytes([]byte) error
|
|
|
|
_recvMetaBytes() ([]byte, error)
|
|
|
|
}
|
|
|
|
|
2019-01-19 00:14:10 +00:00
|
|
|
type linkInterface struct {
|
2019-01-23 03:16:41 +00:00
|
|
|
name string
|
|
|
|
link *link
|
|
|
|
peer *peer
|
|
|
|
msgIO linkInterfaceMsgIO
|
|
|
|
info linkInfo
|
|
|
|
closed chan struct{}
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-19 00:14:10 +00:00
|
|
|
func (l *link) init(c *Core) error {
|
2019-01-04 17:23:37 +00:00
|
|
|
l.core = c
|
|
|
|
l.mutex.Lock()
|
2019-01-23 03:16:41 +00:00
|
|
|
l.interfaces = make(map[linkInfo]*linkInterface)
|
2019-01-04 17:23:37 +00:00
|
|
|
l.mutex.Unlock()
|
2019-01-04 17:14:40 +00:00
|
|
|
|
2019-01-19 12:19:24 +00:00
|
|
|
if err := l.core.awdl.init(c); err != nil {
|
|
|
|
l.core.log.Println("Failed to start AWDL interface")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-01-04 17:23:37 +00:00
|
|
|
return nil
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 03:16:41 +00:00
|
|
|
func (l *link) create(msgIO linkInterfaceMsgIO, name, linkType, local, remote string) (*linkInterface, error) {
|
|
|
|
// Technically anything unique would work for names, but lets pick something human readable, just for debugging
|
2019-01-19 00:14:10 +00:00
|
|
|
intf := linkInterface{
|
2019-01-22 05:08:50 +00:00
|
|
|
name: name,
|
|
|
|
link: l,
|
|
|
|
msgIO: msgIO,
|
2019-01-23 03:16:41 +00:00
|
|
|
info: linkInfo{
|
|
|
|
linkType: linkType,
|
|
|
|
local: local,
|
|
|
|
remote: remote,
|
|
|
|
},
|
2019-01-04 17:23:37 +00:00
|
|
|
}
|
2019-01-23 03:16:41 +00:00
|
|
|
//l.interfaces[intf.name] = &intf
|
2019-01-22 05:08:50 +00:00
|
|
|
//go intf.start()
|
2019-01-19 12:19:24 +00:00
|
|
|
return &intf, nil
|
|
|
|
}
|
|
|
|
|
2019-01-22 05:08:50 +00:00
|
|
|
func (intf *linkInterface) handler() error {
|
|
|
|
// TODO split some of this into shorter functions, so it's easier to read, and for the FIXME duplicate peer issue mentioned later
|
|
|
|
myLinkPub, myLinkPriv := crypto.NewBoxKeys()
|
|
|
|
meta := version_getBaseMetadata()
|
|
|
|
meta.box = intf.link.core.boxPub
|
|
|
|
meta.sig = intf.link.core.sigPub
|
|
|
|
meta.link = *myLinkPub
|
|
|
|
metaBytes := meta.encode()
|
|
|
|
// TODO timeouts on send/recv (goroutine for send/recv, channel select w/ timer)
|
|
|
|
err := intf.msgIO._sendMetaBytes(metaBytes)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
metaBytes, err = intf.msgIO._recvMetaBytes()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
meta = version_metadata{}
|
|
|
|
if !meta.decode(metaBytes) || !meta.check() {
|
|
|
|
return errors.New("failed to decode metadata")
|
|
|
|
}
|
|
|
|
base := version_getBaseMetadata()
|
|
|
|
if meta.ver > base.ver || meta.ver == base.ver && meta.minorVer > base.minorVer {
|
|
|
|
intf.link.core.log.Println("Failed to connect to node: " + intf.name + " version: " + fmt.Sprintf("%d.%d", meta.ver, meta.minorVer))
|
|
|
|
return errors.New("failed to connect: wrong version")
|
|
|
|
}
|
2019-01-23 03:16:41 +00:00
|
|
|
// Check if we already have a link to this node
|
|
|
|
intf.info.box = meta.box
|
|
|
|
intf.info.sig = meta.sig
|
|
|
|
intf.link.mutex.Lock()
|
|
|
|
if oldIntf, isIn := intf.link.interfaces[intf.info]; isIn {
|
|
|
|
intf.link.mutex.Unlock()
|
|
|
|
// FIXME we should really return an error and let the caller block instead
|
2019-01-23 03:53:39 +00:00
|
|
|
// That lets them do things like close connections on its own, avoid printing a connection message in the first place, etc.
|
2019-01-23 03:16:41 +00:00
|
|
|
intf.link.core.log.Println("DEBUG: found existing interface for", intf.name)
|
2019-01-23 03:53:39 +00:00
|
|
|
intf.msgIO.close()
|
2019-01-23 03:16:41 +00:00
|
|
|
<-oldIntf.closed
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
intf.closed = make(chan struct{})
|
|
|
|
intf.link.interfaces[intf.info] = intf
|
2019-01-23 03:48:43 +00:00
|
|
|
defer func() {
|
|
|
|
intf.link.mutex.Lock()
|
|
|
|
delete(intf.link.interfaces, intf.info)
|
|
|
|
intf.link.mutex.Unlock()
|
|
|
|
close(intf.closed)
|
|
|
|
}()
|
2019-01-23 03:16:41 +00:00
|
|
|
intf.link.core.log.Println("DEBUG: registered interface for", intf.name)
|
|
|
|
}
|
|
|
|
intf.link.mutex.Unlock()
|
|
|
|
// Create peer
|
2019-01-22 05:08:50 +00:00
|
|
|
shared := crypto.GetSharedKey(myLinkPriv, &meta.link)
|
|
|
|
intf.peer = intf.link.core.peers.newPeer(&meta.box, &meta.sig, shared, intf.name)
|
|
|
|
if intf.peer == nil {
|
|
|
|
return errors.New("failed to create peer")
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
// More cleanup can go here
|
|
|
|
intf.link.core.peers.removePeer(intf.peer.port)
|
|
|
|
}()
|
|
|
|
// Finish setting up the peer struct
|
|
|
|
out := make(chan []byte, 1)
|
|
|
|
defer close(out)
|
|
|
|
intf.peer.out = func(msg []byte) {
|
|
|
|
defer func() { recover() }()
|
|
|
|
out <- msg
|
|
|
|
}
|
2019-01-23 00:24:15 +00:00
|
|
|
intf.peer.linkOut = make(chan []byte, 1)
|
2019-01-22 05:08:50 +00:00
|
|
|
intf.peer.close = func() { intf.msgIO.close() }
|
|
|
|
go intf.peer.linkLoop()
|
|
|
|
// Start the writer
|
|
|
|
go func() {
|
|
|
|
interval := 4 * time.Second
|
|
|
|
timer := time.NewTimer(interval)
|
|
|
|
clearTimer := func() {
|
|
|
|
if !timer.Stop() {
|
2019-01-23 03:48:43 +00:00
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
default:
|
|
|
|
}
|
2019-01-22 05:08:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
defer clearTimer()
|
|
|
|
for {
|
|
|
|
// First try to send any link protocol traffic
|
|
|
|
select {
|
|
|
|
case msg := <-intf.peer.linkOut:
|
|
|
|
intf.msgIO.writeMsg(msg)
|
|
|
|
continue
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
// No protocol traffic to send, so reset the timer
|
|
|
|
clearTimer()
|
|
|
|
timer.Reset(interval)
|
|
|
|
// Now block until something is ready or the timer triggers keepalive traffic
|
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
intf.msgIO.writeMsg(nil)
|
|
|
|
case msg := <-intf.peer.linkOut:
|
|
|
|
intf.msgIO.writeMsg(msg)
|
|
|
|
case msg, ok := <-out:
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
intf.msgIO.writeMsg(msg)
|
2019-01-23 03:16:41 +00:00
|
|
|
util.PutBytes(msg)
|
2019-01-22 05:08:50 +00:00
|
|
|
if true {
|
|
|
|
// TODO *don't* do this if we're not reading any traffic
|
|
|
|
// In such a case, the reader is responsible for resetting it the next time we read something
|
|
|
|
intf.link.core.switchTable.idleIn <- intf.peer.port
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
intf.link.core.switchTable.idleIn <- intf.peer.port // notify switch that we're idle
|
|
|
|
// Run reader loop
|
|
|
|
for {
|
|
|
|
msg, err := intf.msgIO.readMsg()
|
|
|
|
if len(msg) > 0 {
|
|
|
|
intf.peer.handlePacket(msg)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
return nil
|
|
|
|
}
|