2017-05-30 22:36:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-07-13 14:32:40 +02:00
|
|
|
"encoding/base64"
|
2017-06-26 13:14:02 +02:00
|
|
|
"errors"
|
2017-07-13 14:32:40 +02:00
|
|
|
"fmt"
|
2018-01-26 22:52:32 +01:00
|
|
|
"github.com/sasha-s/go-deadlock"
|
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
|
|
|
)
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
const (
|
|
|
|
PeerRoutineNumber = 4
|
|
|
|
)
|
|
|
|
|
2017-05-30 22:36:49 +02:00
|
|
|
type Peer struct {
|
2017-06-30 14:41:08 +02:00
|
|
|
id uint
|
2018-01-26 22:52:32 +01:00
|
|
|
isRunning AtomicBool
|
|
|
|
mutex deadlock.RWMutex
|
2017-06-30 14:41:08 +02:00
|
|
|
persistentKeepaliveInterval uint64
|
2017-06-26 13:14:02 +02:00
|
|
|
keyPairs KeyPairs
|
2017-06-24 15:34:17 +02:00
|
|
|
handshake Handshake
|
|
|
|
device *Device
|
2017-11-18 23:34:02 +01:00
|
|
|
endpoint Endpoint
|
|
|
|
stats struct {
|
2017-07-18 15:22:56 +02:00
|
|
|
txBytes uint64 // bytes send to peer (endpoint)
|
|
|
|
rxBytes uint64 // bytes received from peer
|
|
|
|
lastHandshakeNano int64 // nano seconds since epoch
|
|
|
|
}
|
|
|
|
time struct {
|
2018-01-26 22:52:32 +01:00
|
|
|
mutex deadlock.RWMutex
|
2017-06-30 14:41:08 +02:00
|
|
|
lastSend time.Time // last send message
|
|
|
|
lastHandshake time.Time // last completed handshake
|
2017-07-08 23:51:26 +02:00
|
|
|
nextKeepalive time.Time
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
|
|
|
signal struct {
|
2017-11-30 23:22:40 +01:00
|
|
|
newKeyPair Signal // size 1, new key pair was generated
|
|
|
|
handshakeCompleted Signal // size 1, handshake completed
|
|
|
|
handshakeBegin Signal // size 1, begin new handshake begin
|
|
|
|
flushNonceQueue Signal // size 1, empty queued packets
|
|
|
|
messageSend Signal // size 1, message was send to peer
|
|
|
|
messageReceived Signal // size 1, authenticated message recv
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
|
|
|
timer struct {
|
2017-09-20 09:26:08 +02:00
|
|
|
// state related to WireGuard timers
|
|
|
|
|
2017-11-30 23:22:40 +01:00
|
|
|
keepalivePersistent Timer // set for persistent keepalives
|
|
|
|
keepalivePassive Timer // set upon recieving messages
|
|
|
|
zeroAllKeys Timer // zero all key material
|
2017-12-29 17:42:09 +01:00
|
|
|
handshakeNew Timer // begin a new handshake (stale)
|
2017-11-30 23:22:40 +01:00
|
|
|
handshakeDeadline Timer // complete handshake timeout
|
|
|
|
handshakeTimeout Timer // current handshake message timeout
|
2017-07-27 23:45:37 +02:00
|
|
|
|
2017-09-20 09:26:08 +02:00
|
|
|
sendLastMinuteHandshake bool
|
2017-11-30 23:22:40 +01:00
|
|
|
needAnotherKeepalive bool
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
|
|
|
queue struct {
|
2017-07-06 15:43:55 +02:00
|
|
|
nonce chan *QueueOutboundElement // nonce / pre-handshake queue
|
2017-06-28 23:45:45 +02:00
|
|
|
outbound chan *QueueOutboundElement // sequential ordering of work
|
2017-07-01 23:29:22 +02:00
|
|
|
inbound chan *QueueInboundElement // sequential ordering of work
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2018-01-13 09:00:37 +01:00
|
|
|
routines struct {
|
2018-01-26 22:52:32 +01:00
|
|
|
mutex deadlock.Mutex // held when stopping / starting routines
|
2018-01-13 09:00:37 +01:00
|
|
|
starting sync.WaitGroup // routines pending start
|
|
|
|
stopping sync.WaitGroup // routines pending stop
|
|
|
|
stop Signal // size 0, stop all goroutines in peer
|
|
|
|
}
|
2017-08-14 17:09:25 +02:00
|
|
|
mac CookieGenerator
|
2017-06-24 15:34:17 +02:00
|
|
|
}
|
|
|
|
|
2017-08-07 15:25:04 +02:00
|
|
|
func (device *Device) NewPeer(pk NoisePublicKey) (*Peer, error) {
|
2018-01-26 22:52:32 +01:00
|
|
|
|
|
|
|
if device.isClosed.Get() {
|
|
|
|
return nil, errors.New("Device closed")
|
|
|
|
}
|
|
|
|
|
|
|
|
device.mutex.Lock()
|
|
|
|
defer device.mutex.Unlock()
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
// create peer
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
peer := new(Peer)
|
2017-06-26 13:14:02 +02:00
|
|
|
peer.mutex.Lock()
|
2017-06-30 14:41:08 +02:00
|
|
|
defer peer.mutex.Unlock()
|
2017-07-01 23:29:22 +02:00
|
|
|
|
2017-06-27 17:33:06 +02:00
|
|
|
peer.mac.Init(pk)
|
2017-07-01 23:29:22 +02:00
|
|
|
peer.device = device
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.isRunning.Set(false)
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.timer.zeroAllKeys = NewTimer()
|
2017-11-30 23:22:40 +01:00
|
|
|
peer.timer.keepalivePersistent = NewTimer()
|
|
|
|
peer.timer.keepalivePassive = NewTimer()
|
2017-12-29 17:42:09 +01:00
|
|
|
peer.timer.handshakeNew = NewTimer()
|
2017-11-30 23:22:40 +01:00
|
|
|
peer.timer.handshakeDeadline = NewTimer()
|
|
|
|
peer.timer.handshakeTimeout = NewTimer()
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// assign id for debugging
|
2017-06-24 15:34:17 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
peer.id = device.idCounter
|
|
|
|
device.idCounter += 1
|
|
|
|
|
2017-08-07 15:25:04 +02:00
|
|
|
// check if over limit
|
|
|
|
|
|
|
|
if len(device.peers) >= MaxPeers {
|
|
|
|
return nil, errors.New("Too many peers")
|
|
|
|
}
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// map public key
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
_, ok := device.peers[pk]
|
|
|
|
if ok {
|
2017-08-07 15:25:04 +02:00
|
|
|
return nil, errors.New("Adding existing peer")
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
device.peers[pk] = peer
|
2017-06-24 15:34:17 +02:00
|
|
|
|
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
|
2017-11-30 23:22:40 +01:00
|
|
|
handshake.precomputedStaticStatic =
|
|
|
|
device.privateKey.sharedSecret(handshake.remoteStatic)
|
2017-06-26 13:14:02 +02:00
|
|
|
handshake.mutex.Unlock()
|
2017-06-24 15:34:17 +02:00
|
|
|
|
2017-10-16 21:33:47 +02:00
|
|
|
// reset endpoint
|
|
|
|
|
2017-11-18 23:34:02 +01:00
|
|
|
peer.endpoint = nil
|
2017-10-16 21:33:47 +02:00
|
|
|
|
2017-07-08 23:51:26 +02:00
|
|
|
// prepare signaling & routines
|
2017-06-30 14:41:08 +02:00
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
peer.routines.mutex.Lock()
|
|
|
|
peer.routines.stop = NewSignal()
|
|
|
|
peer.routines.mutex.Unlock()
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
// start peer
|
|
|
|
|
|
|
|
peer.device.state.mutex.Lock()
|
|
|
|
if peer.device.isUp.Get() {
|
|
|
|
peer.Start()
|
|
|
|
}
|
|
|
|
peer.device.state.mutex.Unlock()
|
|
|
|
|
2017-08-07 15:25:04 +02:00
|
|
|
return peer, nil
|
2017-05-30 22:36:49 +02:00
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2017-10-27 10:43:37 +02:00
|
|
|
func (peer *Peer) SendBuffer(buffer []byte) error {
|
|
|
|
peer.device.net.mutex.RLock()
|
|
|
|
defer peer.device.net.mutex.RUnlock()
|
2017-12-29 17:42:09 +01:00
|
|
|
|
2017-10-27 10:43:37 +02:00
|
|
|
peer.mutex.RLock()
|
|
|
|
defer peer.mutex.RUnlock()
|
2017-12-29 17:42:09 +01:00
|
|
|
|
2017-11-18 23:34:02 +01:00
|
|
|
if peer.endpoint == nil {
|
2017-10-27 10:43:37 +02:00
|
|
|
return errors.New("No known endpoint for peer")
|
|
|
|
}
|
2017-12-29 17:42:09 +01:00
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
if peer.device.net.bind == nil {
|
|
|
|
return errors.New("No bind")
|
|
|
|
}
|
|
|
|
|
2017-11-18 23:34:02 +01:00
|
|
|
return peer.device.net.bind.Send(buffer, peer.endpoint)
|
2017-10-27 10:43:37 +02:00
|
|
|
}
|
|
|
|
|
2017-12-29 17:42:09 +01:00
|
|
|
/* Returns a short string identifier for logging
|
2017-10-16 21:33:47 +02:00
|
|
|
*/
|
2017-07-13 14:32:40 +02:00
|
|
|
func (peer *Peer) String() string {
|
2017-11-18 23:34:02 +01:00
|
|
|
if peer.endpoint == nil {
|
2017-10-16 21:33:47 +02:00
|
|
|
return fmt.Sprintf(
|
|
|
|
"peer(%d unknown %s)",
|
|
|
|
peer.id,
|
|
|
|
base64.StdEncoding.EncodeToString(peer.handshake.remoteStatic[:]),
|
|
|
|
)
|
|
|
|
}
|
2017-07-13 14:32:40 +02:00
|
|
|
return fmt.Sprintf(
|
|
|
|
"peer(%d %s %s)",
|
|
|
|
peer.id,
|
2017-11-18 23:34:02 +01:00
|
|
|
peer.endpoint.DstToString(),
|
2017-07-13 14:32:40 +02:00
|
|
|
base64.StdEncoding.EncodeToString(peer.handshake.remoteStatic[:]),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
func (peer *Peer) Start() {
|
|
|
|
|
|
|
|
peer.routines.mutex.Lock()
|
|
|
|
defer peer.routines.mutex.Lock()
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.device.log.Debug.Println("Starting:", peer.String())
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
// stop & wait for ungoing routines (if any)
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.isRunning.Set(false)
|
2018-01-13 09:00:37 +01:00
|
|
|
peer.routines.stop.Broadcast()
|
|
|
|
peer.routines.starting.Wait()
|
|
|
|
peer.routines.stopping.Wait()
|
2017-12-29 17:42:09 +01:00
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
// prepare queues
|
|
|
|
|
|
|
|
peer.signal.newKeyPair = NewSignal()
|
|
|
|
peer.signal.handshakeBegin = NewSignal()
|
|
|
|
peer.signal.handshakeCompleted = NewSignal()
|
|
|
|
peer.signal.flushNonceQueue = NewSignal()
|
|
|
|
|
|
|
|
peer.queue.nonce = make(chan *QueueOutboundElement, QueueOutboundSize)
|
|
|
|
peer.queue.outbound = make(chan *QueueOutboundElement, QueueOutboundSize)
|
|
|
|
peer.queue.inbound = make(chan *QueueInboundElement, QueueInboundSize)
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
// reset signal and start (new) routines
|
2017-12-29 17:42:09 +01:00
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
peer.routines.stop = NewSignal()
|
|
|
|
peer.routines.starting.Add(PeerRoutineNumber)
|
|
|
|
peer.routines.stopping.Add(PeerRoutineNumber)
|
2017-12-29 17:42:09 +01:00
|
|
|
|
|
|
|
go peer.RoutineNonce()
|
2018-01-13 09:00:37 +01:00
|
|
|
go peer.RoutineTimerHandler()
|
2017-12-29 17:42:09 +01:00
|
|
|
go peer.RoutineSequentialSender()
|
|
|
|
go peer.RoutineSequentialReceiver()
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
peer.routines.starting.Wait()
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.isRunning.Set(true)
|
2017-12-29 17:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) Stop() {
|
2018-01-13 09:00:37 +01:00
|
|
|
|
|
|
|
peer.routines.mutex.Lock()
|
|
|
|
defer peer.routines.mutex.Lock()
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.device.log.Debug.Println("Stopping:", peer.String())
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
// stop & wait for ungoing routines (if any)
|
|
|
|
|
|
|
|
peer.routines.stop.Broadcast()
|
|
|
|
peer.routines.starting.Wait()
|
|
|
|
peer.routines.stopping.Wait()
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
// close queues
|
|
|
|
|
|
|
|
close(peer.queue.nonce)
|
|
|
|
close(peer.queue.outbound)
|
|
|
|
close(peer.queue.inbound)
|
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
// reset signal (to handle repeated stopping)
|
|
|
|
|
|
|
|
peer.routines.stop = NewSignal()
|
2018-01-26 22:52:32 +01:00
|
|
|
peer.isRunning.Set(false)
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|