2019-04-18 15:38:24 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-04-21 11:28:46 +00:00
|
|
|
"fmt"
|
2019-04-20 10:53:38 +00:00
|
|
|
"sync"
|
2019-04-18 15:38:24 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
2019-04-18 22:38:23 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2019-04-18 15:38:24 +00:00
|
|
|
)
|
|
|
|
|
2019-04-18 22:38:23 +00:00
|
|
|
type Conn struct {
|
|
|
|
core *Core
|
|
|
|
nodeID *crypto.NodeID
|
|
|
|
nodeMask *crypto.NodeID
|
2019-04-22 01:38:14 +00:00
|
|
|
recv chan *wire_trafficPacket // Eventually gets attached to session.recv
|
2019-04-20 15:32:27 +00:00
|
|
|
mutex *sync.RWMutex
|
2019-04-22 01:38:14 +00:00
|
|
|
session *sessionInfo
|
|
|
|
readDeadline time.Time // TODO timer
|
|
|
|
writeDeadline time.Time // TODO timer
|
2019-04-19 22:30:43 +00:00
|
|
|
expired bool
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 11:28:46 +00:00
|
|
|
func (c *Conn) String() string {
|
|
|
|
return fmt.Sprintf("c=%p", c)
|
|
|
|
}
|
|
|
|
|
2019-04-18 22:38:23 +00:00
|
|
|
// This method should only be called from the router goroutine
|
|
|
|
func (c *Conn) startSearch() {
|
|
|
|
searchCompleted := func(sinfo *sessionInfo, err error) {
|
|
|
|
if err != nil {
|
|
|
|
c.core.log.Debugln("DHT search failed:", err)
|
2019-04-20 19:22:58 +00:00
|
|
|
c.mutex.Lock()
|
|
|
|
c.expired = true
|
|
|
|
c.mutex.Unlock()
|
2019-04-18 22:38:23 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if sinfo != nil {
|
2019-04-20 15:32:27 +00:00
|
|
|
c.mutex.Lock()
|
2019-04-18 22:38:23 +00:00
|
|
|
c.session = sinfo
|
2019-04-22 01:38:14 +00:00
|
|
|
c.session.recv = c.recv
|
2019-04-20 15:32:27 +00:00
|
|
|
c.nodeID, c.nodeMask = sinfo.theirAddr.GetNodeIDandMask()
|
|
|
|
c.mutex.Unlock()
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-18 15:38:24 +00:00
|
|
|
doSearch := func() {
|
2019-04-18 22:38:23 +00:00
|
|
|
sinfo, isIn := c.core.searches.searches[*c.nodeID]
|
2019-04-18 15:38:24 +00:00
|
|
|
if !isIn {
|
2019-04-18 22:38:23 +00:00
|
|
|
sinfo = c.core.searches.newIterSearch(c.nodeID, c.nodeMask, searchCompleted)
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
2019-04-18 22:38:23 +00:00
|
|
|
c.core.searches.continueSearch(sinfo)
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
2019-04-22 01:38:14 +00:00
|
|
|
c.mutex.RLock()
|
|
|
|
defer c.mutex.RUnlock()
|
|
|
|
if c.session == nil {
|
2019-04-18 15:38:24 +00:00
|
|
|
doSearch()
|
2019-04-22 01:38:14 +00:00
|
|
|
} else {
|
|
|
|
sinfo := c.session // In case c.session is somehow changed meanwhile
|
|
|
|
sinfo.worker <- func() {
|
|
|
|
switch {
|
|
|
|
case !sinfo.init:
|
|
|
|
doSearch()
|
|
|
|
case time.Since(sinfo.time) > 6*time.Second:
|
|
|
|
if sinfo.time.Before(sinfo.pingTime) && time.Since(sinfo.pingTime) > 6*time.Second {
|
|
|
|
// TODO double check that the above condition is correct
|
|
|
|
doSearch()
|
|
|
|
} else {
|
|
|
|
c.core.sessions.ping(sinfo)
|
|
|
|
}
|
|
|
|
default: // Don't do anything, to keep traffic throttled
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) Read(b []byte) (int, error) {
|
2019-04-22 01:38:14 +00:00
|
|
|
err := func() error {
|
|
|
|
c.mutex.RLock()
|
|
|
|
defer c.mutex.RUnlock()
|
|
|
|
if c.expired {
|
|
|
|
return errors.New("session is closed")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2019-04-18 23:33:54 +00:00
|
|
|
}
|
2019-04-19 09:55:15 +00:00
|
|
|
select {
|
2019-04-22 01:38:14 +00:00
|
|
|
// TODO...
|
|
|
|
case p, ok := <-c.recv:
|
2019-04-19 09:55:15 +00:00
|
|
|
if !ok {
|
2019-04-22 01:38:14 +00:00
|
|
|
c.mutex.Lock()
|
2019-04-19 22:30:43 +00:00
|
|
|
c.expired = true
|
2019-04-22 01:38:14 +00:00
|
|
|
c.mutex.Unlock()
|
2019-04-19 22:30:43 +00:00
|
|
|
return 0, errors.New("session is closed")
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
|
|
|
defer util.PutBytes(p.Payload)
|
2019-04-22 01:38:14 +00:00
|
|
|
c.mutex.RLock()
|
|
|
|
sinfo := c.session
|
|
|
|
c.mutex.RUnlock()
|
|
|
|
var err error
|
|
|
|
sinfo.doWorker(func() {
|
|
|
|
if !sinfo.nonceIsOK(&p.Nonce) {
|
|
|
|
err = errors.New("packet dropped due to invalid nonce")
|
|
|
|
return
|
2019-04-19 20:23:15 +00:00
|
|
|
}
|
2019-04-22 01:38:14 +00:00
|
|
|
bs, isOK := crypto.BoxOpen(&sinfo.sharedSesKey, p.Payload, &p.Nonce)
|
2019-04-19 20:23:15 +00:00
|
|
|
if !isOK {
|
|
|
|
util.PutBytes(bs)
|
2019-04-22 01:38:14 +00:00
|
|
|
err = errors.New("packet dropped due to decryption failure")
|
|
|
|
return
|
2019-04-19 20:23:15 +00:00
|
|
|
}
|
2019-04-19 22:47:11 +00:00
|
|
|
copy(b, bs)
|
|
|
|
if len(bs) < len(b) {
|
|
|
|
b = b[:len(bs)]
|
|
|
|
}
|
2019-04-22 01:38:14 +00:00
|
|
|
sinfo.updateNonce(&p.Nonce)
|
|
|
|
sinfo.time = time.Now()
|
|
|
|
sinfo.bytesRecvd += uint64(len(b))
|
|
|
|
})
|
2019-04-19 20:23:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
|
|
|
return len(b), nil
|
2019-04-22 01:38:14 +00:00
|
|
|
//case <-c.recvTimeout:
|
|
|
|
//case <-c.session.closed:
|
|
|
|
// c.expired = true
|
|
|
|
// return len(b), errors.New("session is closed")
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 09:55:15 +00:00
|
|
|
func (c *Conn) Write(b []byte) (bytesWritten int, err error) {
|
2019-04-22 01:38:14 +00:00
|
|
|
var sinfo *sessionInfo
|
|
|
|
err = func() error {
|
|
|
|
c.mutex.RLock()
|
|
|
|
defer c.mutex.RUnlock()
|
|
|
|
if c.expired {
|
|
|
|
return errors.New("session is closed")
|
|
|
|
}
|
|
|
|
sinfo = c.session
|
|
|
|
return nil
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2019-04-19 22:30:43 +00:00
|
|
|
}
|
2019-04-22 01:38:14 +00:00
|
|
|
if sinfo == nil {
|
2019-04-18 22:38:23 +00:00
|
|
|
c.core.router.doAdmin(func() {
|
|
|
|
c.startSearch()
|
|
|
|
})
|
2019-04-19 22:30:43 +00:00
|
|
|
return 0, errors.New("searching for remote side")
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
2019-04-22 01:38:14 +00:00
|
|
|
//defer util.PutBytes(b)
|
|
|
|
var packet []byte
|
|
|
|
sinfo.doWorker(func() {
|
|
|
|
if !sinfo.init {
|
|
|
|
err = errors.New("waiting for remote side to accept " + c.String())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
payload, nonce := crypto.BoxSeal(&sinfo.sharedSesKey, b, &sinfo.myNonce)
|
|
|
|
defer util.PutBytes(payload)
|
|
|
|
p := wire_trafficPacket{
|
|
|
|
Coords: sinfo.coords,
|
|
|
|
Handle: sinfo.theirHandle,
|
|
|
|
Nonce: *nonce,
|
|
|
|
Payload: payload,
|
|
|
|
}
|
|
|
|
packet = p.encode()
|
|
|
|
sinfo.bytesSent += uint64(len(b))
|
|
|
|
})
|
|
|
|
sinfo.core.router.out(packet)
|
2019-04-18 22:38:23 +00:00
|
|
|
return len(b), nil
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) Close() error {
|
2019-04-19 22:30:43 +00:00
|
|
|
c.expired = true
|
2019-04-19 21:57:52 +00:00
|
|
|
c.session.close()
|
2019-04-18 15:38:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) LocalAddr() crypto.NodeID {
|
|
|
|
return *crypto.GetNodeID(&c.session.core.boxPub)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) RemoteAddr() crypto.NodeID {
|
2019-04-20 15:32:27 +00:00
|
|
|
c.mutex.RLock()
|
|
|
|
defer c.mutex.RUnlock()
|
|
|
|
return *c.nodeID
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) SetDeadline(t time.Time) error {
|
|
|
|
c.SetReadDeadline(t)
|
|
|
|
c.SetWriteDeadline(t)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) SetReadDeadline(t time.Time) error {
|
|
|
|
c.readDeadline = t
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
|
|
|
c.writeDeadline = t
|
|
|
|
return nil
|
|
|
|
}
|