2019-04-18 15:38:24 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
|
|
|
"errors"
|
2019-04-19 19:10:41 +00:00
|
|
|
"sync/atomic"
|
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
|
|
|
|
session *sessionInfo
|
|
|
|
readDeadline time.Time
|
|
|
|
writeDeadline time.Time
|
2019-04-19 22:30:43 +00:00
|
|
|
expired bool
|
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)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if sinfo != nil {
|
|
|
|
c.session = sinfo
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
c.core.log.Debugln("Starting search for", hex.EncodeToString(c.nodeID[:]))
|
|
|
|
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
|
|
|
}
|
|
|
|
var sinfo *sessionInfo
|
|
|
|
var isIn bool
|
|
|
|
switch {
|
|
|
|
case !isIn || !sinfo.init:
|
|
|
|
doSearch()
|
|
|
|
case time.Since(sinfo.time) > 6*time.Second:
|
|
|
|
if sinfo.time.Before(sinfo.pingTime) && time.Since(sinfo.pingTime) > 6*time.Second {
|
|
|
|
doSearch()
|
|
|
|
} else {
|
|
|
|
now := time.Now()
|
|
|
|
if !sinfo.time.Before(sinfo.pingTime) {
|
|
|
|
sinfo.pingTime = now
|
|
|
|
}
|
|
|
|
if time.Since(sinfo.pingSend) > time.Second {
|
|
|
|
sinfo.pingSend = now
|
2019-04-18 22:38:23 +00:00
|
|
|
c.core.sessions.sendPingPong(sinfo, false)
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) Read(b []byte) (int, error) {
|
2019-04-19 22:30:43 +00:00
|
|
|
if c.expired {
|
|
|
|
return 0, errors.New("session is closed")
|
|
|
|
}
|
2019-04-18 22:38:23 +00:00
|
|
|
if c.session == nil {
|
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-18 23:33:54 +00:00
|
|
|
if !c.session.init {
|
2019-04-19 21:57:52 +00:00
|
|
|
return 0, errors.New("waiting for remote side to accept")
|
2019-04-18 23:33:54 +00:00
|
|
|
}
|
2019-04-19 09:55:15 +00:00
|
|
|
select {
|
|
|
|
case p, ok := <-c.session.recv:
|
|
|
|
if !ok {
|
2019-04-19 22:30:43 +00:00
|
|
|
c.expired = true
|
|
|
|
return 0, errors.New("session is closed")
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
|
|
|
defer util.PutBytes(p.Payload)
|
2019-04-19 20:23:15 +00:00
|
|
|
err := func() error {
|
|
|
|
c.session.theirNonceMutex.Lock()
|
|
|
|
defer c.session.theirNonceMutex.Unlock()
|
|
|
|
if !c.session.nonceIsOK(&p.Nonce) {
|
|
|
|
return errors.New("packet dropped due to invalid nonce")
|
|
|
|
}
|
|
|
|
bs, isOK := crypto.BoxOpen(&c.session.sharedSesKey, p.Payload, &p.Nonce)
|
|
|
|
if !isOK {
|
|
|
|
util.PutBytes(bs)
|
|
|
|
return errors.New("packet dropped due to decryption failure")
|
|
|
|
}
|
2019-04-19 22:47:11 +00:00
|
|
|
copy(b, bs)
|
|
|
|
if len(bs) < len(b) {
|
|
|
|
b = b[:len(bs)]
|
|
|
|
}
|
2019-04-19 20:23:15 +00:00
|
|
|
c.session.updateNonce(&p.Nonce)
|
|
|
|
c.session.time = time.Now()
|
|
|
|
return nil
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
2019-04-19 19:10:41 +00:00
|
|
|
atomic.AddUint64(&c.session.bytesRecvd, uint64(len(b)))
|
2019-04-19 09:55:15 +00:00
|
|
|
return len(b), nil
|
|
|
|
case <-c.session.closed:
|
2019-04-19 22:30:43 +00:00
|
|
|
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-19 22:30:43 +00:00
|
|
|
if c.expired {
|
|
|
|
return 0, errors.New("session is closed")
|
|
|
|
}
|
2019-04-18 22:38:23 +00:00
|
|
|
if c.session == nil {
|
|
|
|
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
|
|
|
}
|
|
|
|
defer util.PutBytes(b)
|
|
|
|
if !c.session.init {
|
|
|
|
// To prevent using empty session keys
|
2019-04-19 21:57:52 +00:00
|
|
|
return 0, errors.New("waiting for remote side to accept")
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
|
|
|
// code isn't multithreaded so appending to this is safe
|
|
|
|
coords := c.session.coords
|
|
|
|
// Prepare the payload
|
2019-04-19 19:10:41 +00:00
|
|
|
c.session.myNonceMutex.Lock()
|
2019-04-18 22:38:23 +00:00
|
|
|
payload, nonce := crypto.BoxSeal(&c.session.sharedSesKey, b, &c.session.myNonce)
|
2019-04-19 19:10:41 +00:00
|
|
|
c.session.myNonceMutex.Unlock()
|
2019-04-18 22:38:23 +00:00
|
|
|
defer util.PutBytes(payload)
|
|
|
|
p := wire_trafficPacket{
|
|
|
|
Coords: coords,
|
|
|
|
Handle: c.session.theirHandle,
|
|
|
|
Nonce: *nonce,
|
|
|
|
Payload: payload,
|
|
|
|
}
|
|
|
|
packet := p.encode()
|
2019-04-19 19:10:41 +00:00
|
|
|
atomic.AddUint64(&c.session.bytesSent, uint64(len(b)))
|
2019-04-19 09:55:15 +00:00
|
|
|
select {
|
|
|
|
case c.session.send <- packet:
|
|
|
|
case <-c.session.closed:
|
2019-04-19 22:30:43 +00:00
|
|
|
c.expired = true
|
|
|
|
return len(b), errors.New("session is closed")
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
2019-04-18 23:07:26 +00:00
|
|
|
c.session.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 {
|
|
|
|
return *crypto.GetNodeID(&c.session.theirPermPub)
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|