2019-04-18 15:38:24 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-04-21 11:28:46 +00:00
|
|
|
"fmt"
|
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-08-24 04:36:00 +00:00
|
|
|
|
|
|
|
"github.com/Arceliar/phony"
|
2019-04-18 15:38:24 +00:00
|
|
|
)
|
|
|
|
|
2019-05-29 19:16:17 +00:00
|
|
|
// ConnError implements the net.Error interface
|
2019-04-27 00:31:47 +00:00
|
|
|
type ConnError struct {
|
|
|
|
error
|
|
|
|
timeout bool
|
|
|
|
temporary bool
|
2019-07-17 10:13:53 +00:00
|
|
|
closed bool
|
2019-05-29 19:16:17 +00:00
|
|
|
maxsize int
|
2019-04-27 00:31:47 +00:00
|
|
|
}
|
|
|
|
|
2019-05-29 19:16:17 +00:00
|
|
|
// Timeout returns true if the error relates to a timeout condition on the
|
|
|
|
// connection.
|
2019-04-27 00:31:47 +00:00
|
|
|
func (e *ConnError) Timeout() bool {
|
|
|
|
return e.timeout
|
|
|
|
}
|
|
|
|
|
2019-05-29 19:16:17 +00:00
|
|
|
// Temporary return true if the error is temporary or false if it is a permanent
|
|
|
|
// error condition.
|
2019-04-27 00:31:47 +00:00
|
|
|
func (e *ConnError) Temporary() bool {
|
|
|
|
return e.temporary
|
|
|
|
}
|
|
|
|
|
2019-05-29 19:16:17 +00:00
|
|
|
// PacketTooBig returns in response to sending a packet that is too large, and
|
|
|
|
// if so, the maximum supported packet size that should be used for the
|
|
|
|
// connection.
|
2019-07-27 14:00:09 +00:00
|
|
|
func (e *ConnError) PacketTooBig() bool {
|
|
|
|
return e.maxsize > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// PacketMaximumSize returns the maximum supported packet size. This will only
|
|
|
|
// return a non-zero value if ConnError.PacketTooBig() returns true.
|
|
|
|
func (e *ConnError) PacketMaximumSize() int {
|
|
|
|
if !e.PacketTooBig() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return e.maxsize
|
2019-05-29 19:16:17 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 10:13:53 +00:00
|
|
|
// Closed returns if the session is already closed and is now unusable.
|
|
|
|
func (e *ConnError) Closed() bool {
|
|
|
|
return e.closed
|
|
|
|
}
|
|
|
|
|
2019-04-18 22:38:23 +00:00
|
|
|
type Conn struct {
|
2019-08-25 15:36:09 +00:00
|
|
|
phony.Inbox
|
2019-04-18 22:38:23 +00:00
|
|
|
core *Core
|
2019-08-24 04:36:00 +00:00
|
|
|
readDeadline *time.Time
|
|
|
|
writeDeadline *time.Time
|
2019-04-18 22:38:23 +00:00
|
|
|
nodeID *crypto.NodeID
|
|
|
|
nodeMask *crypto.NodeID
|
2019-04-22 01:38:14 +00:00
|
|
|
session *sessionInfo
|
2019-08-24 05:17:37 +00:00
|
|
|
mtu uint16
|
2019-08-24 06:52:21 +00:00
|
|
|
readCallback func([]byte)
|
|
|
|
readBuffer chan []byte
|
2019-04-26 23:07:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-27 00:31:47 +00:00
|
|
|
// TODO func NewConn() that initializes additional fields as needed
|
2019-04-26 23:07:57 +00:00
|
|
|
func newConn(core *Core, nodeID *crypto.NodeID, nodeMask *crypto.NodeID, session *sessionInfo) *Conn {
|
|
|
|
conn := Conn{
|
2019-08-24 06:52:21 +00:00
|
|
|
core: core,
|
|
|
|
nodeID: nodeID,
|
|
|
|
nodeMask: nodeMask,
|
|
|
|
session: session,
|
|
|
|
readBuffer: make(chan []byte, 1024),
|
2019-04-26 23:07:57 +00:00
|
|
|
}
|
|
|
|
return &conn
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 11:28:46 +00:00
|
|
|
func (c *Conn) String() string {
|
2019-08-24 04:36:00 +00:00
|
|
|
var s string
|
|
|
|
<-c.SyncExec(func() { s = fmt.Sprintf("conn=%p", c) })
|
|
|
|
return s
|
2019-04-21 11:28:46 +00:00
|
|
|
}
|
|
|
|
|
2019-08-25 15:36:09 +00:00
|
|
|
func (c *Conn) setMTU(from phony.Actor, mtu uint16) {
|
|
|
|
c.RecvFrom(from, func() { c.mtu = mtu })
|
2019-08-24 05:17:37 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 03:07:38 +00:00
|
|
|
// This should never be called from the router goroutine, used in the dial functions
|
2019-06-28 23:42:31 +00:00
|
|
|
func (c *Conn) search() error {
|
2019-06-29 17:14:44 +00:00
|
|
|
var sinfo *searchInfo
|
|
|
|
var isIn bool
|
2019-08-24 01:26:15 +00:00
|
|
|
c.core.router.doAdmin(func() { sinfo, isIn = c.core.router.searches.searches[*c.nodeID] })
|
2019-06-28 23:42:31 +00:00
|
|
|
if !isIn {
|
|
|
|
done := make(chan struct{}, 1)
|
|
|
|
var sess *sessionInfo
|
|
|
|
var err error
|
|
|
|
searchCompleted := func(sinfo *sessionInfo, e error) {
|
|
|
|
sess = sinfo
|
|
|
|
err = e
|
|
|
|
// FIXME close can be called multiple times, do a non-blocking send instead
|
|
|
|
select {
|
|
|
|
case done <- struct{}{}:
|
|
|
|
default:
|
2019-04-22 19:06:39 +00:00
|
|
|
}
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
2019-06-29 17:14:44 +00:00
|
|
|
c.core.router.doAdmin(func() {
|
2019-08-24 01:26:15 +00:00
|
|
|
sinfo = c.core.router.searches.newIterSearch(c.nodeID, c.nodeMask, searchCompleted)
|
2019-06-29 17:14:44 +00:00
|
|
|
sinfo.continueSearch()
|
|
|
|
})
|
2019-06-28 23:42:31 +00:00
|
|
|
<-done
|
|
|
|
c.session = sess
|
|
|
|
if c.session == nil && err == nil {
|
2019-06-29 21:10:02 +00:00
|
|
|
panic("search failed but returned no error")
|
2019-04-27 00:31:47 +00:00
|
|
|
}
|
2019-06-29 21:10:02 +00:00
|
|
|
if c.session != nil {
|
|
|
|
c.nodeID = crypto.GetNodeID(&c.session.theirPermPub)
|
|
|
|
for i := range c.nodeMask {
|
|
|
|
c.nodeMask[i] = 0xFF
|
|
|
|
}
|
2019-08-24 05:17:37 +00:00
|
|
|
c.session.conn = c
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
2019-06-28 23:42:31 +00:00
|
|
|
return err
|
2019-04-22 01:38:14 +00:00
|
|
|
} else {
|
2019-06-28 23:42:31 +00:00
|
|
|
return errors.New("search already exists")
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
2019-06-28 23:42:31 +00:00
|
|
|
return nil
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-24 05:17:37 +00:00
|
|
|
// Used in session keep-alive traffic
|
2019-08-04 03:07:38 +00:00
|
|
|
func (c *Conn) doSearch() {
|
|
|
|
routerWork := func() {
|
|
|
|
// Check to see if there is a search already matching the destination
|
2019-08-24 01:26:15 +00:00
|
|
|
sinfo, isIn := c.core.router.searches.searches[*c.nodeID]
|
2019-08-04 03:07:38 +00:00
|
|
|
if !isIn {
|
|
|
|
// Nothing was found, so create a new search
|
|
|
|
searchCompleted := func(sinfo *sessionInfo, e error) {}
|
2019-08-24 01:26:15 +00:00
|
|
|
sinfo = c.core.router.searches.newIterSearch(c.nodeID, c.nodeMask, searchCompleted)
|
2019-08-04 03:07:38 +00:00
|
|
|
c.core.log.Debugf("%s DHT search started: %p", c.String(), sinfo)
|
2019-08-11 18:00:19 +00:00
|
|
|
// Start the search
|
|
|
|
sinfo.continueSearch()
|
2019-08-04 03:07:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-25 15:36:09 +00:00
|
|
|
c.core.router.RecvFrom(c.session, routerWork)
|
2019-08-04 03:07:38 +00:00
|
|
|
}
|
|
|
|
|
2019-08-24 04:36:00 +00:00
|
|
|
func (c *Conn) _getDeadlineCancellation(t *time.Time) (util.Cancellation, bool) {
|
|
|
|
if t != nil {
|
2019-07-18 02:37:45 +00:00
|
|
|
// A deadline is set, so return a Cancellation that uses it
|
2019-08-24 04:36:00 +00:00
|
|
|
c := util.CancellationWithDeadline(c.session.cancel, *t)
|
2019-08-19 23:06:05 +00:00
|
|
|
return c, true
|
2019-07-18 02:37:45 +00:00
|
|
|
} else {
|
2019-08-19 23:06:05 +00:00
|
|
|
// No deadline was set, so just return the existinc cancellation and a dummy value
|
|
|
|
return c.session.cancel, false
|
2019-04-27 00:31:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-24 06:52:21 +00:00
|
|
|
// SetReadCallback sets a callback which will be called whenever a packet is received.
|
|
|
|
func (c *Conn) SetReadCallback(callback func([]byte)) {
|
2019-08-25 15:36:09 +00:00
|
|
|
c.RecvFrom(nil, func() {
|
2019-08-24 06:57:08 +00:00
|
|
|
c.readCallback = callback
|
|
|
|
c._drainReadBuffer()
|
2019-08-24 06:52:21 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) _drainReadBuffer() {
|
|
|
|
if c.readCallback == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case bs := <-c.readBuffer:
|
|
|
|
c.readCallback(bs)
|
2019-08-25 15:36:09 +00:00
|
|
|
c.RecvFrom(nil, c._drainReadBuffer) // In case there's more
|
2019-08-24 06:52:21 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called by the session to pass a new message to the Conn
|
2019-08-25 15:36:09 +00:00
|
|
|
func (c *Conn) recvMsg(from phony.Actor, msg []byte) {
|
|
|
|
c.RecvFrom(from, func() {
|
2019-08-24 06:52:21 +00:00
|
|
|
if c.readCallback != nil {
|
|
|
|
c.readCallback(msg)
|
|
|
|
} else {
|
|
|
|
select {
|
|
|
|
case c.readBuffer <- msg:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-04 20:53:34 +00:00
|
|
|
// Used internally by Read, the caller is responsible for util.PutBytes when they're done.
|
|
|
|
func (c *Conn) ReadNoCopy() ([]byte, error) {
|
2019-08-24 04:36:00 +00:00
|
|
|
var cancel util.Cancellation
|
|
|
|
var doCancel bool
|
|
|
|
<-c.SyncExec(func() { cancel, doCancel = c._getDeadlineCancellation(c.readDeadline) })
|
2019-08-19 23:06:05 +00:00
|
|
|
if doCancel {
|
|
|
|
defer cancel.Cancel(nil)
|
|
|
|
}
|
2019-08-04 07:08:47 +00:00
|
|
|
// Wait for some traffic to come through from the session
|
|
|
|
select {
|
|
|
|
case <-cancel.Finished():
|
|
|
|
if cancel.Error() == util.CancellationTimeoutError {
|
2019-08-04 20:53:34 +00:00
|
|
|
return nil, ConnError{errors.New("read timeout"), true, false, false, 0}
|
2019-08-04 07:08:47 +00:00
|
|
|
} else {
|
2019-08-04 20:53:34 +00:00
|
|
|
return nil, ConnError{errors.New("session closed"), false, false, true, 0}
|
2019-04-19 09:55:15 +00:00
|
|
|
}
|
2019-08-24 06:52:21 +00:00
|
|
|
case bs := <-c.readBuffer:
|
2019-08-04 20:53:34 +00:00
|
|
|
return bs, nil
|
2019-04-18 22:38:23 +00:00
|
|
|
}
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
2019-08-04 20:53:34 +00:00
|
|
|
// Implements net.Conn.Read
|
|
|
|
func (c *Conn) Read(b []byte) (int, error) {
|
|
|
|
bs, err := c.ReadNoCopy()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n := len(bs)
|
|
|
|
if len(bs) > len(b) {
|
|
|
|
n = len(b)
|
|
|
|
err = ConnError{errors.New("read buffer too small for entire packet"), false, true, false, 0}
|
|
|
|
}
|
|
|
|
// Copy results to the output slice and clean up
|
|
|
|
copy(b, bs)
|
|
|
|
util.PutBytes(bs)
|
|
|
|
// Return the number of bytes copied to the slice, along with any error
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
2019-08-24 05:17:37 +00:00
|
|
|
func (c *Conn) _write(msg FlowKeyMessage) error {
|
|
|
|
if len(msg.Message) > int(c.mtu) {
|
|
|
|
return ConnError{errors.New("packet too big"), true, false, false, int(c.mtu)}
|
|
|
|
}
|
2019-08-25 15:36:09 +00:00
|
|
|
c.session.RecvFrom(c, func() {
|
2019-08-24 05:17:37 +00:00
|
|
|
// Send the packet
|
|
|
|
c.session._send(msg)
|
|
|
|
// Session keep-alive, while we wait for the crypto workers from send
|
2019-06-28 23:42:31 +00:00
|
|
|
switch {
|
2019-08-04 20:53:34 +00:00
|
|
|
case time.Since(c.session.time) > 6*time.Second:
|
|
|
|
if c.session.time.Before(c.session.pingTime) && time.Since(c.session.pingTime) > 6*time.Second {
|
2019-06-28 23:42:31 +00:00
|
|
|
// TODO double check that the above condition is correct
|
2019-08-04 03:07:38 +00:00
|
|
|
c.doSearch()
|
2019-06-28 23:42:31 +00:00
|
|
|
} else {
|
2019-08-24 01:05:18 +00:00
|
|
|
c.session.ping(c.session) // TODO send from self if this becomes an actor
|
2019-06-28 23:42:31 +00:00
|
|
|
}
|
2019-08-04 20:53:34 +00:00
|
|
|
case c.session.reset && c.session.pingTime.Before(c.session.time):
|
2019-08-24 01:05:18 +00:00
|
|
|
c.session.ping(c.session) // TODO send from self if this becomes an actor
|
2019-06-28 23:42:31 +00:00
|
|
|
default: // Don't do anything, to keep traffic throttled
|
|
|
|
}
|
2019-08-24 05:17:37 +00:00
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-25 15:36:09 +00:00
|
|
|
// WriteFrom should be called by a phony.Actor, and tells the Conn to send a message.
|
2019-08-24 05:44:02 +00:00
|
|
|
// This is used internaly by WriteNoCopy and Write.
|
|
|
|
// If the callback is called with a non-nil value, then it is safe to reuse the argument FlowKeyMessage.
|
2019-08-25 15:36:09 +00:00
|
|
|
func (c *Conn) WriteFrom(from phony.Actor, msg FlowKeyMessage, callback func(error)) {
|
|
|
|
c.RecvFrom(from, func() {
|
2019-08-24 05:44:02 +00:00
|
|
|
callback(c._write(msg))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteNoCopy is used internally by Write and makes use of WriteFrom under the hood.
|
|
|
|
// The caller must not reuse the argument FlowKeyMessage when a nil error is returned.
|
2019-08-24 05:17:37 +00:00
|
|
|
func (c *Conn) WriteNoCopy(msg FlowKeyMessage) error {
|
|
|
|
var cancel util.Cancellation
|
|
|
|
var doCancel bool
|
|
|
|
<-c.SyncExec(func() { cancel, doCancel = c._getDeadlineCancellation(c.writeDeadline) })
|
|
|
|
var err error
|
|
|
|
select {
|
|
|
|
case <-cancel.Finished():
|
|
|
|
if cancel.Error() == util.CancellationTimeoutError {
|
|
|
|
err = ConnError{errors.New("write timeout"), true, false, false, 0}
|
|
|
|
} else {
|
|
|
|
err = ConnError{errors.New("session closed"), false, false, true, 0}
|
2019-08-04 07:08:47 +00:00
|
|
|
}
|
2019-08-24 05:17:37 +00:00
|
|
|
default:
|
2019-08-24 05:44:02 +00:00
|
|
|
done := make(chan struct{})
|
|
|
|
callback := func(e error) { err = e; close(done) }
|
|
|
|
c.WriteFrom(nil, msg, callback)
|
|
|
|
<-done
|
2019-05-29 19:16:17 +00:00
|
|
|
}
|
2019-08-04 20:53:34 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-24 05:44:02 +00:00
|
|
|
// Write implement the Write function of a net.Conn, and makes use of WriteNoCopy under the hood.
|
2019-08-04 20:53:34 +00:00
|
|
|
func (c *Conn) Write(b []byte) (int, error) {
|
|
|
|
written := len(b)
|
2019-08-07 00:25:55 +00:00
|
|
|
msg := FlowKeyMessage{Message: append(util.GetBytes(), b...)}
|
|
|
|
err := c.WriteNoCopy(msg)
|
2019-08-04 20:53:34 +00:00
|
|
|
if err != nil {
|
2019-08-07 00:25:55 +00:00
|
|
|
util.PutBytes(msg.Message)
|
2019-08-04 20:53:34 +00:00
|
|
|
written = 0
|
|
|
|
}
|
2019-05-29 19:16:17 +00:00
|
|
|
return written, err
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
2019-07-17 20:42:17 +00:00
|
|
|
func (c *Conn) Close() (err error) {
|
2019-08-24 04:36:00 +00:00
|
|
|
<-c.SyncExec(func() {
|
|
|
|
if c.session != nil {
|
|
|
|
// Close the session, if it hasn't been closed already
|
|
|
|
if e := c.session.cancel.Cancel(errors.New("connection closed")); e != nil {
|
|
|
|
err = ConnError{errors.New("close failed, session already closed"), false, false, true, 0}
|
2019-08-26 00:13:47 +00:00
|
|
|
} else {
|
|
|
|
c.session.doRemove()
|
2019-08-24 04:36:00 +00:00
|
|
|
}
|
2019-08-06 00:11:28 +00:00
|
|
|
}
|
2019-08-24 04:36:00 +00:00
|
|
|
})
|
2019-07-17 20:42:17 +00:00
|
|
|
return
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) LocalAddr() crypto.NodeID {
|
2019-08-24 01:53:00 +00:00
|
|
|
return *crypto.GetNodeID(&c.core.boxPub)
|
2019-04-18 15:38:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) RemoteAddr() crypto.NodeID {
|
2019-08-24 06:52:21 +00:00
|
|
|
// TODO warn that this can block while waiting for the Conn actor to run, so don't call it from other actors...
|
2019-08-24 04:36:00 +00:00
|
|
|
var n crypto.NodeID
|
|
|
|
<-c.SyncExec(func() { n = *c.nodeID })
|
|
|
|
return n
|
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 {
|
2019-08-24 06:52:21 +00:00
|
|
|
// TODO warn that this can block while waiting for the Conn actor to run, so don't call it from other actors...
|
2019-08-24 04:36:00 +00:00
|
|
|
<-c.SyncExec(func() { c.readDeadline = &t })
|
2019-04-18 15:38:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) SetWriteDeadline(t time.Time) error {
|
2019-08-24 06:52:21 +00:00
|
|
|
// TODO warn that this can block while waiting for the Conn actor to run, so don't call it from other actors...
|
2019-08-24 04:36:00 +00:00
|
|
|
<-c.SyncExec(func() { c.writeDeadline = &t })
|
2019-04-18 15:38:24 +00:00
|
|
|
return nil
|
|
|
|
}
|