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-05 12:06:45 +00:00
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
2019-01-04 17:23:37 +00:00
|
|
|
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
2019-01-05 12:06:45 +00:00
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/util"
|
2019-01-04 17:14:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type awdl struct {
|
2019-01-04 17:23:37 +00:00
|
|
|
core *Core
|
|
|
|
mutex sync.RWMutex // protects interfaces below
|
|
|
|
interfaces map[string]*awdlInterface
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type awdlInterface struct {
|
2019-01-04 17:23:37 +00:00
|
|
|
awdl *awdl
|
2019-01-05 12:06:45 +00:00
|
|
|
fromAWDL chan []byte
|
|
|
|
toAWDL chan []byte
|
2019-01-04 17:23:37 +00:00
|
|
|
shutdown chan bool
|
|
|
|
peer *peer
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *awdl) init(c *Core) error {
|
2019-01-04 17:23:37 +00:00
|
|
|
l.core = c
|
|
|
|
l.mutex.Lock()
|
|
|
|
l.interfaces = make(map[string]*awdlInterface)
|
|
|
|
l.mutex.Unlock()
|
2019-01-04 17:14:40 +00:00
|
|
|
|
2019-01-04 17:23:37 +00:00
|
|
|
return nil
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-05 12:06:45 +00:00
|
|
|
func (l *awdl) create(boxPubKey *crypto.BoxPubKey, sigPubKey *crypto.SigPubKey, name string) (*awdlInterface, error) {
|
2019-01-04 17:23:37 +00:00
|
|
|
shared := crypto.GetSharedKey(&l.core.boxPriv, boxPubKey)
|
|
|
|
intf := awdlInterface{
|
2019-01-05 12:06:45 +00:00
|
|
|
fromAWDL: make(chan []byte, 32),
|
|
|
|
toAWDL: make(chan []byte, 32),
|
2019-01-04 17:23:37 +00:00
|
|
|
shutdown: make(chan bool),
|
|
|
|
peer: l.core.peers.newPeer(boxPubKey, sigPubKey, shared, name),
|
|
|
|
}
|
|
|
|
if intf.peer != nil {
|
|
|
|
l.mutex.Lock()
|
|
|
|
l.interfaces[name] = &intf
|
|
|
|
l.mutex.Unlock()
|
2019-01-05 12:06:45 +00:00
|
|
|
intf.peer.linkOut = make(chan []byte, 1) // protocol traffic
|
2019-01-04 17:23:37 +00:00
|
|
|
intf.peer.out = func(msg []byte) {
|
|
|
|
defer func() { recover() }()
|
2019-01-05 12:06:45 +00:00
|
|
|
intf.toAWDL <- msg
|
|
|
|
} // called by peer.sendPacket()
|
|
|
|
l.core.switchTable.idleIn <- intf.peer.port // notify switch that we're idle
|
2019-01-05 00:52:41 +00:00
|
|
|
intf.peer.close = func() {
|
2019-01-05 12:06:45 +00:00
|
|
|
close(intf.fromAWDL)
|
|
|
|
close(intf.toAWDL)
|
2019-01-05 00:52:41 +00:00
|
|
|
}
|
2019-01-05 12:06:45 +00:00
|
|
|
go intf.handler() // start listening for packets from switch
|
|
|
|
go intf.peer.linkLoop() // start link loop
|
|
|
|
return &intf, nil
|
2019-01-04 17:23:37 +00:00
|
|
|
}
|
2019-01-05 12:06:45 +00:00
|
|
|
return nil, errors.New("l.core.peers.newPeer failed")
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *awdl) getInterface(identity string) *awdlInterface {
|
2019-01-04 17:23:37 +00:00
|
|
|
l.mutex.RLock()
|
|
|
|
defer l.mutex.RUnlock()
|
|
|
|
if intf, ok := l.interfaces[identity]; ok {
|
|
|
|
return intf
|
|
|
|
}
|
|
|
|
return nil
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
2019-01-05 12:06:45 +00:00
|
|
|
func (l *awdl) shutdown(identity string) error {
|
2019-01-04 17:23:37 +00:00
|
|
|
if intf, ok := l.interfaces[identity]; ok {
|
|
|
|
intf.shutdown <- true
|
|
|
|
l.core.peers.removePeer(intf.peer.port)
|
|
|
|
l.mutex.Lock()
|
|
|
|
delete(l.interfaces, identity)
|
|
|
|
l.mutex.Unlock()
|
2019-01-05 12:06:45 +00:00
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
return errors.New(fmt.Sprintf("Interface '%s' doesn't exist or already shutdown", identity))
|
2019-01-04 17:23:37 +00:00
|
|
|
}
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ai *awdlInterface) handler() {
|
2019-01-05 12:06:45 +00:00
|
|
|
send := func(msg []byte) {
|
|
|
|
ai.toAWDL <- msg
|
|
|
|
atomic.AddUint64(&ai.peer.bytesSent, uint64(len(msg)))
|
|
|
|
util.PutBytes(msg)
|
|
|
|
}
|
2019-01-04 17:23:37 +00:00
|
|
|
for {
|
2019-01-05 12:06:45 +00:00
|
|
|
timerInterval := tcp_ping_interval
|
2019-01-04 17:41:03 +00:00
|
|
|
timer := time.NewTimer(timerInterval)
|
2019-01-05 12:06:45 +00:00
|
|
|
defer timer.Stop()
|
2019-01-04 17:23:37 +00:00
|
|
|
select {
|
|
|
|
case p := <-ai.peer.linkOut:
|
2019-01-05 12:06:45 +00:00
|
|
|
send(p)
|
2019-01-04 17:41:03 +00:00
|
|
|
continue
|
|
|
|
default:
|
|
|
|
}
|
2019-01-05 12:06:45 +00:00
|
|
|
timer.Stop()
|
2019-01-04 17:41:03 +00:00
|
|
|
select {
|
|
|
|
case <-timer.C:
|
|
|
|
default:
|
|
|
|
}
|
2019-01-05 12:06:45 +00:00
|
|
|
timer.Reset(timerInterval)
|
2019-01-04 17:41:03 +00:00
|
|
|
select {
|
2019-01-05 12:06:45 +00:00
|
|
|
case _ = <-timer.C:
|
2019-01-05 21:59:07 +00:00
|
|
|
send([]byte{})
|
2019-01-05 12:06:45 +00:00
|
|
|
case p := <-ai.peer.linkOut:
|
|
|
|
send(p)
|
|
|
|
continue
|
|
|
|
case r := <-ai.fromAWDL:
|
2019-01-05 21:59:07 +00:00
|
|
|
//_ = append(util.GetBytes(), r...)
|
2019-01-04 17:23:37 +00:00
|
|
|
ai.peer.handlePacket(r)
|
2019-01-05 12:06:45 +00:00
|
|
|
ai.awdl.core.switchTable.idleIn <- ai.peer.port
|
2019-01-04 17:23:37 +00:00
|
|
|
case <-ai.shutdown:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-01-04 17:14:40 +00:00
|
|
|
}
|