2017-05-30 22:36:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-06-26 13:14:02 +02:00
|
|
|
"errors"
|
2017-06-01 21:31:30 +02:00
|
|
|
"net"
|
2017-05-30 22:36:49 +02:00
|
|
|
"sync"
|
2017-06-04 21:48:15 +02:00
|
|
|
"time"
|
2017-05-30 22:36:49 +02:00
|
|
|
)
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
const ()
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-05-30 22:36:49 +02:00
|
|
|
type Peer struct {
|
2017-06-04 21:48:15 +02:00
|
|
|
mutex sync.RWMutex
|
2017-06-26 22:07:29 +02:00
|
|
|
endpoint *net.UDPAddr
|
2017-06-24 15:34:17 +02:00
|
|
|
persistentKeepaliveInterval time.Duration // 0 = disabled
|
2017-06-26 13:14:02 +02:00
|
|
|
keyPairs KeyPairs
|
2017-06-24 15:34:17 +02:00
|
|
|
handshake Handshake
|
|
|
|
device *Device
|
2017-06-28 23:45:45 +02:00
|
|
|
tx_bytes uint64
|
|
|
|
rx_bytes uint64
|
|
|
|
time struct {
|
|
|
|
lastSend time.Time // last send message
|
|
|
|
}
|
|
|
|
signal struct {
|
|
|
|
newHandshake chan bool
|
|
|
|
flushNonceQueue chan bool // empty queued packets
|
|
|
|
stopSending chan bool // stop sending pipeline
|
|
|
|
stopInitiator chan bool // stop initiator timer
|
|
|
|
}
|
|
|
|
timer struct {
|
|
|
|
sendKeepalive time.Timer
|
|
|
|
handshakeTimeout time.Timer
|
|
|
|
}
|
|
|
|
queue struct {
|
|
|
|
nonce chan []byte // nonce / pre-handshake queue
|
|
|
|
outbound chan *QueueOutboundElement // sequential ordering of work
|
|
|
|
}
|
|
|
|
mac MacStatePeer
|
2017-06-24 15:34:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (device *Device) NewPeer(pk NoisePublicKey) *Peer {
|
|
|
|
var peer Peer
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
// create peer
|
|
|
|
|
|
|
|
peer.mutex.Lock()
|
|
|
|
peer.device = device
|
2017-06-26 22:07:29 +02:00
|
|
|
peer.keyPairs.Init()
|
2017-06-27 17:33:06 +02:00
|
|
|
peer.mac.Init(pk)
|
2017-06-28 23:45:45 +02:00
|
|
|
peer.queue.outbound = make(chan *QueueOutboundElement, QueueOutboundSize)
|
|
|
|
peer.queue.nonce = make(chan []byte, QueueOutboundSize)
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
// map public key
|
|
|
|
|
|
|
|
device.mutex.Lock()
|
2017-06-26 13:14:02 +02:00
|
|
|
_, ok := device.peers[pk]
|
|
|
|
if ok {
|
|
|
|
panic(errors.New("bug: adding existing peer"))
|
|
|
|
}
|
2017-06-24 15:34:17 +02:00
|
|
|
device.peers[pk] = &peer
|
|
|
|
device.mutex.Unlock()
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
// precompute DH
|
2017-06-24 15:34:17 +02:00
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
handshake := &peer.handshake
|
|
|
|
handshake.mutex.Lock()
|
|
|
|
handshake.remoteStatic = pk
|
|
|
|
handshake.precomputedStaticStatic = device.privateKey.sharedSecret(handshake.remoteStatic)
|
|
|
|
handshake.mutex.Unlock()
|
2017-06-24 15:34:17 +02:00
|
|
|
peer.mutex.Unlock()
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
// start workers
|
|
|
|
|
|
|
|
peer.signal.stopSending = make(chan bool, 1)
|
|
|
|
peer.signal.stopInitiator = make(chan bool, 1)
|
|
|
|
peer.signal.newHandshake = make(chan bool, 1)
|
|
|
|
peer.signal.flushNonceQueue = make(chan bool, 1)
|
|
|
|
|
|
|
|
go peer.RoutineNonce()
|
|
|
|
go peer.RoutineHandshakeInitiator()
|
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
return &peer
|
2017-05-30 22:36:49 +02:00
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
|
|
|
|
func (peer *Peer) Close() {
|
|
|
|
peer.signal.stopSending <- true
|
|
|
|
peer.signal.stopInitiator <- true
|
|
|
|
}
|