2019-01-04 17:14:40 +00:00
|
|
|
package yggdrasil
|
|
|
|
|
|
|
|
import (
|
2020-05-08 23:23:48 +01:00
|
|
|
"bytes"
|
2019-01-31 23:29:18 +00:00
|
|
|
"encoding/hex"
|
2019-01-05 12:06:45 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2019-02-24 14:48:16 -06:00
|
|
|
"io"
|
2019-01-31 23:18:02 +00:00
|
|
|
"net"
|
2019-03-04 22:45:35 +00:00
|
|
|
"net/url"
|
2019-01-31 23:18:02 +00:00
|
|
|
"strings"
|
2019-01-04 17:23:37 +00:00
|
|
|
"sync"
|
2019-03-04 17:09:48 +00:00
|
|
|
|
2019-01-21 23:08:50 -06:00
|
|
|
//"sync/atomic"
|
2019-01-05 12:06:45 +00:00
|
|
|
"time"
|
2019-01-04 17:23:37 +00:00
|
|
|
|
2019-01-31 23:18:02 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/address"
|
2019-01-04 17:23:37 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
2019-01-22 21:16:41 -06:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2019-08-24 16:27:12 -05:00
|
|
|
|
|
|
|
"github.com/Arceliar/phony"
|
2019-01-04 17:14:40 +00:00
|
|
|
)
|
|
|
|
|
2019-01-19 00:14:10 +00:00
|
|
|
type link struct {
|
2019-08-25 12:10:59 -05:00
|
|
|
core *Core
|
|
|
|
mutex sync.RWMutex // protects interfaces below
|
|
|
|
interfaces map[linkInfo]*linkInterface
|
|
|
|
tcp tcp // TCP interface support
|
2019-09-19 19:15:59 -05:00
|
|
|
stopped chan struct{}
|
2019-02-02 22:18:55 -06:00
|
|
|
// TODO timeout (to remove from switch), read from config.ReadTimeout
|
2019-01-22 21:16:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
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-21 21:27:52 -06:00
|
|
|
type linkInterfaceMsgIO interface {
|
|
|
|
readMsg() ([]byte, error)
|
2019-08-18 12:17:54 -05:00
|
|
|
writeMsgs([][]byte) (int, error)
|
2019-01-21 21:27:52 -06:00
|
|
|
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-08-26 18:37:38 -05:00
|
|
|
name string
|
|
|
|
link *link
|
|
|
|
peer *peer
|
2020-05-08 23:23:48 +01:00
|
|
|
options linkOptions
|
2019-08-26 18:37:38 -05:00
|
|
|
msgIO linkInterfaceMsgIO
|
|
|
|
info linkInfo
|
|
|
|
incoming bool
|
|
|
|
force bool
|
|
|
|
closed chan struct{}
|
|
|
|
reader linkReader // Reads packets, notifies this linkInterface, passes packets to switch
|
|
|
|
writer linkWriter // Writes packets, notifies this linkInterface
|
|
|
|
phony.Inbox // Protects the below
|
|
|
|
sendTimer *time.Timer // Fires to signal that sending is blocked
|
|
|
|
keepAliveTimer *time.Timer // Fires to send keep-alive traffic
|
|
|
|
stallTimer *time.Timer // Fires to signal that no incoming traffic (including keep-alive) has been seen
|
|
|
|
closeTimer *time.Timer // Fires when the link has been idle so long we need to close it
|
|
|
|
inSwitch bool // True if the switch is tracking this link
|
|
|
|
stalled bool // True if we haven't been receiving any response traffic
|
2019-11-24 18:24:17 -06:00
|
|
|
unstalled bool // False if an idle notification to the switch hasn't been sent because we stalled (or are first starting up)
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 23:23:48 +01:00
|
|
|
type linkOptions struct {
|
2020-05-09 00:43:19 +01:00
|
|
|
pinnedCurve25519Keys []crypto.BoxPubKey
|
|
|
|
pinnedEd25519Keys []crypto.SigPubKey
|
2020-05-08 23:23:48 +01: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-22 21:16:41 -06:00
|
|
|
l.interfaces = make(map[linkInfo]*linkInterface)
|
2019-01-04 17:23:37 +00:00
|
|
|
l.mutex.Unlock()
|
2019-09-19 19:15:59 -05:00
|
|
|
l.stopped = make(chan struct{})
|
2019-01-04 17:14:40 +00:00
|
|
|
|
2019-03-04 17:09:48 +00:00
|
|
|
if err := l.tcp.init(l); err != nil {
|
|
|
|
c.log.Errorln("Failed to start TCP interface")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-01-04 17:23:37 +00:00
|
|
|
return nil
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-28 19:31:04 +01:00
|
|
|
func (l *link) reconfigure() {
|
|
|
|
l.tcp.reconfigure()
|
2019-08-25 12:10:59 -05:00
|
|
|
}
|
|
|
|
|
2019-03-04 22:45:35 +00:00
|
|
|
func (l *link) call(uri string, sintf string) error {
|
|
|
|
u, err := url.Parse(uri)
|
|
|
|
if err != nil {
|
2019-09-18 15:01:19 +01:00
|
|
|
return fmt.Errorf("peer %s is not correctly formatted (%s)", uri, err)
|
2019-03-04 22:45:35 +00:00
|
|
|
}
|
|
|
|
pathtokens := strings.Split(strings.Trim(u.Path, "/"), "/")
|
2020-05-08 23:23:48 +01:00
|
|
|
tcpOpts := tcpOptions{}
|
2020-05-09 00:43:19 +01:00
|
|
|
if pubkeys, ok := u.Query()["curve25519"]; ok && len(pubkeys) > 0 {
|
|
|
|
for _, pubkey := range pubkeys {
|
|
|
|
if boxPub, err := hex.DecodeString(pubkey); err != nil {
|
|
|
|
var boxPubKey crypto.BoxPubKey
|
|
|
|
copy(boxPubKey[:], boxPub)
|
|
|
|
tcpOpts.pinnedCurve25519Keys = append(
|
|
|
|
tcpOpts.pinnedCurve25519Keys, boxPubKey,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pubkeys, ok := u.Query()["ed25519"]; ok && len(pubkeys) > 0 {
|
|
|
|
for _, pubkey := range pubkeys {
|
|
|
|
if sigPub, err := hex.DecodeString(pubkey); err != nil {
|
|
|
|
var sigPubKey crypto.SigPubKey
|
|
|
|
copy(sigPubKey[:], sigPub)
|
|
|
|
tcpOpts.pinnedEd25519Keys = append(
|
|
|
|
tcpOpts.pinnedEd25519Keys, sigPubKey,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 23:23:48 +01:00
|
|
|
}
|
2019-03-04 22:45:35 +00:00
|
|
|
switch u.Scheme {
|
|
|
|
case "tcp":
|
2020-05-08 23:23:48 +01:00
|
|
|
l.tcp.call(u.Host, tcpOpts, sintf)
|
2019-03-04 22:45:35 +00:00
|
|
|
case "socks":
|
2020-05-08 23:23:48 +01:00
|
|
|
tcpOpts.socksProxyAddr = u.Host
|
|
|
|
l.tcp.call(pathtokens[0], tcpOpts, sintf)
|
2019-10-23 17:26:35 +01:00
|
|
|
case "tls":
|
2020-05-08 23:23:48 +01:00
|
|
|
tcpOpts.upgrade = l.tcp.tls.forDialer
|
|
|
|
l.tcp.call(u.Host, tcpOpts, sintf)
|
2019-03-04 22:45:35 +00:00
|
|
|
default:
|
|
|
|
return errors.New("unknown call scheme: " + u.Scheme)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *link) listen(uri string) error {
|
|
|
|
u, err := url.Parse(uri)
|
|
|
|
if err != nil {
|
2019-09-18 15:01:19 +01:00
|
|
|
return fmt.Errorf("listener %s is not correctly formatted (%s)", uri, err)
|
2019-03-04 22:45:35 +00:00
|
|
|
}
|
|
|
|
switch u.Scheme {
|
|
|
|
case "tcp":
|
2019-10-23 17:26:35 +01:00
|
|
|
_, err := l.tcp.listen(u.Host, nil)
|
|
|
|
return err
|
|
|
|
case "tls":
|
|
|
|
_, err := l.tcp.listen(u.Host, l.tcp.tls.forListener)
|
2019-03-06 11:06:13 +00:00
|
|
|
return err
|
2019-03-04 22:45:35 +00:00
|
|
|
default:
|
|
|
|
return errors.New("unknown listen scheme: " + u.Scheme)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 23:23:48 +01:00
|
|
|
func (l *link) create(msgIO linkInterfaceMsgIO, name, linkType, local, remote string, incoming, force bool, options linkOptions) (*linkInterface, error) {
|
2019-11-29 11:45:02 +02:00
|
|
|
// Technically anything unique would work for names, but let's pick something human readable, just for debugging
|
2019-01-19 00:14:10 +00:00
|
|
|
intf := linkInterface{
|
2020-05-08 23:23:48 +01:00
|
|
|
name: name,
|
|
|
|
link: l,
|
|
|
|
options: options,
|
|
|
|
msgIO: msgIO,
|
2019-01-22 21:16:41 -06:00
|
|
|
info: linkInfo{
|
|
|
|
linkType: linkType,
|
|
|
|
local: local,
|
|
|
|
remote: remote,
|
|
|
|
},
|
2019-02-01 00:02:17 +00:00
|
|
|
incoming: incoming,
|
|
|
|
force: force,
|
2019-01-04 17:23:37 +00:00
|
|
|
}
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.writer.intf = &intf
|
|
|
|
intf.reader.intf = &intf
|
|
|
|
intf.reader.err = make(chan error)
|
2019-01-19 12:19:24 +00:00
|
|
|
return &intf, nil
|
|
|
|
}
|
|
|
|
|
2019-09-18 16:32:22 +01:00
|
|
|
func (l *link) stop() error {
|
2019-09-19 19:15:59 -05:00
|
|
|
close(l.stopped)
|
2019-09-18 16:32:22 +01:00
|
|
|
if err := l.tcp.stop(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-21 23:08:50 -06: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)
|
2019-02-26 21:07:56 -06:00
|
|
|
var err error
|
|
|
|
if !util.FuncTimeout(func() { err = intf.msgIO._sendMetaBytes(metaBytes) }, 30*time.Second) {
|
|
|
|
return errors.New("timeout on metadata send")
|
|
|
|
}
|
2019-01-21 23:08:50 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-02-26 21:07:56 -06:00
|
|
|
if !util.FuncTimeout(func() { metaBytes, err = intf.msgIO._recvMetaBytes() }, 30*time.Second) {
|
|
|
|
return errors.New("timeout on metadata recv")
|
|
|
|
}
|
2019-01-21 23:08:50 -06:00
|
|
|
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 {
|
2019-01-27 20:56:10 +00:00
|
|
|
intf.link.core.log.Errorln("Failed to connect to node: " + intf.name + " version: " + fmt.Sprintf("%d.%d", meta.ver, meta.minorVer))
|
2019-01-21 23:08:50 -06:00
|
|
|
return errors.New("failed to connect: wrong version")
|
|
|
|
}
|
2020-05-08 23:23:48 +01:00
|
|
|
// Check if the remote side matches the keys we expected. This is a bit of a weak
|
|
|
|
// check - in future versions we really should check a signature or something like that.
|
2020-05-09 00:43:19 +01:00
|
|
|
if pinned := intf.options.pinnedCurve25519Keys; len(pinned) > 0 {
|
|
|
|
allowed := false
|
|
|
|
for _, key := range pinned {
|
|
|
|
allowed = allowed || (bytes.Compare(key[:], meta.box[:]) == 0)
|
|
|
|
}
|
|
|
|
if !allowed {
|
|
|
|
intf.link.core.log.Errorf("Failed to connect to node: %q sent curve25519 key that does not match pinned keys", intf.name)
|
|
|
|
return fmt.Errorf("failed to connect: host sent curve25519 key that does not match pinned keys")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pinned := intf.options.pinnedEd25519Keys; len(pinned) > 0 {
|
|
|
|
allowed := false
|
|
|
|
for _, key := range pinned {
|
|
|
|
allowed = allowed || (bytes.Compare(key[:], meta.sig[:]) == 0)
|
2020-05-08 23:23:48 +01:00
|
|
|
}
|
|
|
|
if !allowed {
|
2020-05-09 00:43:19 +01:00
|
|
|
intf.link.core.log.Errorf("Failed to connect to node: %q sent ed25519 key that does not match pinned keys", intf.name)
|
|
|
|
return fmt.Errorf("failed to connect: host sent ed25519 key that does not match pinned keys")
|
2020-05-08 23:23:48 +01:00
|
|
|
}
|
|
|
|
}
|
2019-01-31 23:29:18 +00:00
|
|
|
// Check if we're authorized to connect to this key / IP
|
2019-03-12 15:01:27 +00:00
|
|
|
if intf.incoming && !intf.force && !intf.link.core.peers.isAllowedEncryptionPublicKey(&meta.box) {
|
2019-03-12 16:03:02 +00:00
|
|
|
intf.link.core.log.Warnf("%s connection from %s forbidden: AllowedEncryptionPublicKeys does not contain key %s",
|
2019-01-31 23:47:20 +00:00
|
|
|
strings.ToUpper(intf.info.linkType), intf.info.remote, hex.EncodeToString(meta.box[:]))
|
|
|
|
intf.msgIO.close()
|
|
|
|
return nil
|
2019-01-31 23:29:18 +00:00
|
|
|
}
|
2019-01-22 21:16:41 -06: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-22 21:53:39 -06:00
|
|
|
// That lets them do things like close connections on its own, avoid printing a connection message in the first place, etc.
|
2019-01-27 20:56:10 +00:00
|
|
|
intf.link.core.log.Debugln("DEBUG: found existing interface for", intf.name)
|
2019-01-22 21:53:39 -06:00
|
|
|
intf.msgIO.close()
|
2019-08-13 18:49:49 -05:00
|
|
|
if !intf.incoming {
|
|
|
|
// Block outgoing connection attempts until the existing connection closes
|
|
|
|
<-oldIntf.closed
|
|
|
|
}
|
2019-01-22 21:16:41 -06:00
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
intf.closed = make(chan struct{})
|
|
|
|
intf.link.interfaces[intf.info] = intf
|
2019-01-22 21:48:43 -06:00
|
|
|
defer func() {
|
|
|
|
intf.link.mutex.Lock()
|
|
|
|
delete(intf.link.interfaces, intf.info)
|
|
|
|
intf.link.mutex.Unlock()
|
2019-08-25 22:55:17 -05:00
|
|
|
close(intf.closed)
|
2019-01-22 21:48:43 -06:00
|
|
|
}()
|
2019-01-27 20:56:10 +00:00
|
|
|
intf.link.core.log.Debugln("DEBUG: registered interface for", intf.name)
|
2019-01-22 21:16:41 -06:00
|
|
|
}
|
|
|
|
intf.link.mutex.Unlock()
|
|
|
|
// Create peer
|
2019-01-21 23:08:50 -06:00
|
|
|
shared := crypto.GetSharedKey(myLinkPriv, &meta.link)
|
2019-03-04 20:33:08 +00:00
|
|
|
intf.peer = intf.link.core.peers.newPeer(&meta.box, &meta.sig, shared, intf, func() { intf.msgIO.close() })
|
2019-01-21 23:08:50 -06:00
|
|
|
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)
|
|
|
|
}()
|
2019-08-18 12:17:54 -05:00
|
|
|
intf.peer.out = func(msgs [][]byte) {
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.writer.sendFrom(intf.peer, msgs, false)
|
|
|
|
}
|
|
|
|
intf.peer.linkOut = func(bs []byte) {
|
|
|
|
intf.writer.sendFrom(intf.peer, [][]byte{bs}, true)
|
2019-01-21 23:08:50 -06:00
|
|
|
}
|
2019-02-01 00:02:17 +00:00
|
|
|
themAddr := address.AddrForNodeID(crypto.GetNodeID(&intf.info.box))
|
|
|
|
themAddrString := net.IP(themAddr[:]).String()
|
|
|
|
themString := fmt.Sprintf("%s@%s", themAddrString, intf.info.remote)
|
2019-01-31 23:18:02 +00:00
|
|
|
intf.link.core.log.Infof("Connected %s: %s, source %s",
|
2019-02-03 15:50:25 -06:00
|
|
|
strings.ToUpper(intf.info.linkType), themString, intf.info.local)
|
2019-08-25 22:55:17 -05:00
|
|
|
// Start things
|
2019-08-25 17:00:02 -05:00
|
|
|
go intf.peer.start()
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.reader.Act(nil, intf.reader._read)
|
2019-08-25 22:55:17 -05:00
|
|
|
// Wait for the reader to finish
|
2019-09-19 19:15:59 -05:00
|
|
|
// TODO find a way to do this without keeping live goroutines around
|
|
|
|
done := make(chan struct{})
|
|
|
|
defer close(done)
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
case <-intf.link.stopped:
|
|
|
|
intf.msgIO.close()
|
|
|
|
case <-done:
|
|
|
|
}
|
|
|
|
}()
|
2019-08-25 22:55:17 -05:00
|
|
|
err = <-intf.reader.err
|
2019-09-19 19:15:59 -05:00
|
|
|
// TODO don't report an error if it's just a 'use of closed network connection'
|
2019-08-25 22:55:17 -05:00
|
|
|
if err != nil {
|
2019-02-24 14:48:16 -06:00
|
|
|
intf.link.core.log.Infof("Disconnected %s: %s, source %s; error: %s",
|
|
|
|
strings.ToUpper(intf.info.linkType), themString, intf.info.local, err)
|
2019-08-25 22:55:17 -05:00
|
|
|
} else {
|
2019-02-24 14:48:16 -06:00
|
|
|
intf.link.core.log.Infof("Disconnected %s: %s, source %s",
|
|
|
|
strings.ToUpper(intf.info.linkType), themString, intf.info.local)
|
|
|
|
}
|
2019-02-24 12:59:30 -06:00
|
|
|
return err
|
2019-01-21 23:08:50 -06:00
|
|
|
}
|
2019-08-25 22:19:20 -05:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
const (
|
2019-08-26 18:37:38 -05:00
|
|
|
sendTime = 1 * time.Second // How long to wait before deciding a send is blocked
|
|
|
|
keepAliveTime = 2 * time.Second // How long to wait before sending a keep-alive response if we have no real traffic to send
|
|
|
|
stallTime = 6 * time.Second // How long to wait for response traffic before deciding the connection has stalled
|
|
|
|
closeTime = 2 * switch_timeout // How long to wait before closing the link
|
2019-08-25 22:19:20 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// notify the intf that we're currently sending
|
|
|
|
func (intf *linkInterface) notifySending(size int, isLinkTraffic bool) {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(&intf.writer, func() {
|
2019-08-26 00:38:14 -05:00
|
|
|
if !isLinkTraffic {
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.inSwitch = false
|
|
|
|
}
|
2019-08-26 18:37:38 -05:00
|
|
|
intf.sendTimer = time.AfterFunc(sendTime, intf.notifyBlockedSend)
|
|
|
|
intf._cancelStallTimer()
|
2019-08-25 22:55:17 -05:00
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
2019-09-24 18:28:13 -05:00
|
|
|
// called by an AfterFunc if we seem to be blocked in a send syscall for a long time
|
|
|
|
func (intf *linkInterface) _notifySyscall() {
|
|
|
|
intf.link.core.switchTable.Act(intf, func() {
|
|
|
|
intf.link.core.switchTable._sendingIn(intf.peer.port)
|
|
|
|
})
|
2019-09-24 18:01:35 -05:00
|
|
|
}
|
|
|
|
|
2019-08-25 22:19:20 -05:00
|
|
|
// we just sent something, so cancel any pending timer to send keep-alive traffic
|
2019-08-26 18:37:38 -05:00
|
|
|
func (intf *linkInterface) _cancelStallTimer() {
|
|
|
|
if intf.stallTimer != nil {
|
|
|
|
intf.stallTimer.Stop()
|
|
|
|
intf.stallTimer = nil
|
|
|
|
}
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
2019-09-25 17:53:25 -05:00
|
|
|
// This gets called from a time.AfterFunc, and notifies the switch that we appear
|
|
|
|
// to have gotten blocked on a write, so the switch should start routing traffic
|
|
|
|
// through other links, if alternatives exist
|
2019-08-25 22:19:20 -05:00
|
|
|
func (intf *linkInterface) notifyBlockedSend() {
|
2019-09-25 17:53:25 -05:00
|
|
|
intf.Act(nil, func() {
|
2019-08-25 22:55:17 -05:00
|
|
|
if intf.sendTimer != nil {
|
|
|
|
//As far as we know, we're still trying to send, and the timer fired.
|
2019-08-25 22:19:20 -05:00
|
|
|
intf.link.core.switchTable.blockPeer(intf.peer.port)
|
2019-08-25 22:55:17 -05:00
|
|
|
}
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// notify the intf that we've finished sending, returning the peer to the switch
|
|
|
|
func (intf *linkInterface) notifySent(size int, isLinkTraffic bool) {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(&intf.writer, func() {
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.sendTimer.Stop()
|
|
|
|
intf.sendTimer = nil
|
|
|
|
if !isLinkTraffic {
|
|
|
|
intf._notifySwitch()
|
|
|
|
}
|
|
|
|
if size > 0 && intf.stallTimer == nil {
|
|
|
|
intf.stallTimer = time.AfterFunc(stallTime, intf.notifyStalled)
|
|
|
|
}
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Notify the switch that we're ready for more traffic, assuming we're not in a stalled state
|
|
|
|
func (intf *linkInterface) _notifySwitch() {
|
2019-11-24 18:24:17 -06:00
|
|
|
if !intf.inSwitch {
|
|
|
|
if intf.stalled {
|
|
|
|
intf.unstalled = false
|
|
|
|
} else {
|
|
|
|
intf.inSwitch = true
|
|
|
|
intf.link.core.switchTable.Act(intf, func() {
|
|
|
|
intf.link.core.switchTable._idleIn(intf.peer.port)
|
|
|
|
})
|
|
|
|
}
|
2019-08-25 22:55:17 -05:00
|
|
|
}
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the peer as stalled, to prevent them from returning to the switch until a read succeeds
|
|
|
|
func (intf *linkInterface) notifyStalled() {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(nil, func() { // Sent from a time.AfterFunc
|
2019-08-25 22:55:17 -05:00
|
|
|
if intf.stallTimer != nil {
|
2019-08-26 18:37:38 -05:00
|
|
|
intf.stallTimer.Stop()
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.stallTimer = nil
|
|
|
|
intf.stalled = true
|
2019-08-25 22:19:20 -05:00
|
|
|
intf.link.core.switchTable.blockPeer(intf.peer.port)
|
2019-08-25 22:55:17 -05:00
|
|
|
}
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// reset the close timer
|
2019-08-26 18:37:38 -05:00
|
|
|
func (intf *linkInterface) notifyReading() {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(&intf.reader, func() {
|
2019-08-25 22:55:17 -05:00
|
|
|
if intf.closeTimer != nil {
|
|
|
|
intf.closeTimer.Stop()
|
|
|
|
}
|
|
|
|
intf.closeTimer = time.AfterFunc(closeTime, func() { intf.msgIO.close() })
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// wake up the link if it was stalled, and (if size > 0) prepare to send keep-alive traffic
|
2019-08-26 18:37:38 -05:00
|
|
|
func (intf *linkInterface) notifyRead(size int) {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(&intf.reader, func() {
|
2019-08-25 22:55:17 -05:00
|
|
|
if intf.stallTimer != nil {
|
|
|
|
intf.stallTimer.Stop()
|
|
|
|
intf.stallTimer = nil
|
|
|
|
}
|
|
|
|
intf.stalled = false
|
2019-11-24 18:24:17 -06:00
|
|
|
if !intf.unstalled {
|
|
|
|
intf._notifySwitch()
|
2019-11-24 18:53:58 -06:00
|
|
|
intf.unstalled = true
|
2019-11-24 18:24:17 -06:00
|
|
|
}
|
2019-08-26 18:37:38 -05:00
|
|
|
if size > 0 && intf.stallTimer == nil {
|
|
|
|
intf.stallTimer = time.AfterFunc(keepAliveTime, intf.notifyDoKeepAlive)
|
2019-08-25 22:55:17 -05:00
|
|
|
}
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to send keep-alive traffic now
|
|
|
|
func (intf *linkInterface) notifyDoKeepAlive() {
|
2019-08-27 19:43:54 -05:00
|
|
|
intf.Act(nil, func() { // Sent from a time.AfterFunc
|
2019-08-26 18:37:38 -05:00
|
|
|
if intf.stallTimer != nil {
|
|
|
|
intf.stallTimer.Stop()
|
|
|
|
intf.stallTimer = nil
|
2019-08-25 22:55:17 -05:00
|
|
|
intf.writer.sendFrom(nil, [][]byte{nil}, true) // Empty keep-alive traffic
|
|
|
|
}
|
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
type linkWriter struct {
|
2019-08-25 22:55:17 -05:00
|
|
|
phony.Inbox
|
|
|
|
intf *linkInterface
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w *linkWriter) sendFrom(from phony.Actor, bss [][]byte, isLinkTraffic bool) {
|
2019-08-27 19:43:54 -05:00
|
|
|
w.Act(from, func() {
|
2019-08-25 22:55:17 -05:00
|
|
|
var size int
|
|
|
|
for _, bs := range bss {
|
|
|
|
size += len(bs)
|
|
|
|
}
|
|
|
|
w.intf.notifySending(size, isLinkTraffic)
|
2019-09-25 17:53:25 -05:00
|
|
|
// start a timer that will fire if we get stuck in writeMsgs for an oddly long time
|
2019-09-24 18:28:13 -05:00
|
|
|
var once sync.Once
|
|
|
|
timer := time.AfterFunc(time.Millisecond, func() {
|
2019-09-25 17:53:25 -05:00
|
|
|
// 1 ms is kind of arbitrary
|
|
|
|
// the rationale is that this should be very long compared to a syscall
|
|
|
|
// but it's still short compared to end-to-end latency or human perception
|
2019-09-24 18:28:13 -05:00
|
|
|
once.Do(func() {
|
|
|
|
w.intf.Act(nil, w.intf._notifySyscall)
|
|
|
|
})
|
|
|
|
})
|
2019-08-25 22:55:17 -05:00
|
|
|
w.intf.msgIO.writeMsgs(bss)
|
2019-09-24 18:28:13 -05:00
|
|
|
// Make sure we either stop the timer from doing anything or wait until it's done
|
|
|
|
once.Do(func() { timer.Stop() })
|
2019-08-25 22:55:17 -05:00
|
|
|
w.intf.notifySent(size, isLinkTraffic)
|
2019-08-25 23:24:18 -05:00
|
|
|
// Cleanup
|
|
|
|
for _, bs := range bss {
|
|
|
|
util.PutBytes(bs)
|
|
|
|
}
|
2019-08-25 22:55:17 -05:00
|
|
|
})
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
type linkReader struct {
|
2019-08-25 22:55:17 -05:00
|
|
|
phony.Inbox
|
|
|
|
intf *linkInterface
|
|
|
|
err chan error
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *linkReader) _read() {
|
2019-08-26 18:37:38 -05:00
|
|
|
r.intf.notifyReading()
|
2019-08-25 22:55:17 -05:00
|
|
|
msg, err := r.intf.msgIO.readMsg()
|
2019-08-26 18:37:38 -05:00
|
|
|
r.intf.notifyRead(len(msg))
|
2019-08-25 22:55:17 -05:00
|
|
|
if len(msg) > 0 {
|
|
|
|
r.intf.peer.handlePacketFrom(r, msg)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
if err != io.EOF {
|
|
|
|
r.err <- err
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|
2019-08-25 22:55:17 -05:00
|
|
|
close(r.err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Now try to read again
|
2019-08-27 19:43:54 -05:00
|
|
|
r.Act(nil, r._read)
|
2019-08-25 22:19:20 -05:00
|
|
|
}
|