Files
wireguard-go/src/peer.go
T

173 lines
4.9 KiB
Go
Raw Normal View History

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"
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
)
type Peer struct {
2017-06-30 14:41:08 +02:00
id uint
2017-06-04 21:48:15 +02:00
mutex sync.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-10-16 21:33:47 +02:00
endpoint struct {
set bool // has a known endpoint been discovered
value Endpoint // source / destination cache
}
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 {
2017-07-08 23:51:26 +02:00
mutex sync.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-06-30 14:41:08 +02:00
newKeyPair chan struct{} // (size 1) : a new key pair was generated
handshakeBegin chan struct{} // (size 1) : request that a new handshake be started ("queue handshake")
handshakeCompleted chan struct{} // (size 1) : handshake completed
2017-08-07 15:25:04 +02:00
handshakeReset chan struct{} // (size 1) : reset handshake negotiation state
2017-06-30 14:41:08 +02:00
flushNonceQueue chan struct{} // (size 1) : empty queued packets
2017-07-08 23:51:26 +02:00
messageSend chan struct{} // (size 1) : a message was send to the peer
messageReceived chan struct{} // (size 1) : an authenticated message was received
2017-06-30 14:41:08 +02:00
stop chan struct{} // (size 0) : close to stop all goroutines for peer
2017-06-28 23:45:45 +02:00
}
timer struct {
2017-09-20 09:26:08 +02:00
// state related to WireGuard timers
2017-07-13 14:32:40 +02:00
keepalivePersistent *time.Timer // set for persistent keepalives
keepalivePassive *time.Timer // set upon recieving messages
2017-07-27 23:45:37 +02:00
newHandshake *time.Timer // begin a new handshake (after Keepalive + RekeyTimeout)
zeroAllKeys *time.Timer // zero all key material (after RejectAfterTime*3)
2017-08-07 15:25:04 +02:00
handshakeDeadline *time.Timer // Current handshake must be completed
2017-07-27 23:45:37 +02:00
pendingKeepalivePassive bool
pendingNewHandshake bool
pendingZeroAllKeys bool
2017-09-20 09:26:08 +02:00
needAnotherKeepalive bool
sendLastMinuteHandshake 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
}
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) {
2017-06-26 13:14:02 +02:00
// create peer
2017-06-24 15:34:17 +02:00
2017-06-30 14:41:08 +02:00
peer := new(Peer)
2017-06-24 15:34:17 +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
2017-07-08 23:51:26 +02:00
peer.timer.keepalivePersistent = NewStoppedTimer()
2017-07-27 23:45:37 +02:00
peer.timer.keepalivePassive = NewStoppedTimer()
peer.timer.newHandshake = NewStoppedTimer()
2017-07-08 23:51:26 +02:00
peer.timer.zeroAllKeys = NewStoppedTimer()
2017-06-30 14:41:08 +02:00
// assign id for debugging
device.mutex.Lock()
peer.id = device.idCounter
device.idCounter += 1
2017-06-26 13:14:02 +02:00
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-26 13:14:02 +02:00
// map public key
_, 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-26 13:14:02 +02:00
device.mutex.Unlock()
// precompute DH
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
2017-10-16 21:33:47 +02:00
// reset endpoint
peer.endpoint.set = false
peer.endpoint.value.ClearDst()
peer.endpoint.value.ClearSrc()
2017-07-01 23:29:22 +02:00
// prepare queuing
2017-07-06 15:43:55 +02:00
peer.queue.nonce = make(chan *QueueOutboundElement, QueueOutboundSize)
2017-07-01 23:29:22 +02:00
peer.queue.outbound = make(chan *QueueOutboundElement, QueueOutboundSize)
2017-07-06 15:43:55 +02:00
peer.queue.inbound = make(chan *QueueInboundElement, QueueInboundSize)
2017-07-01 23:29:22 +02:00
2017-07-08 23:51:26 +02:00
// prepare signaling & routines
2017-06-28 23:45:45 +02:00
2017-06-30 14:41:08 +02:00
peer.signal.stop = make(chan struct{})
peer.signal.newKeyPair = make(chan struct{}, 1)
peer.signal.handshakeBegin = make(chan struct{}, 1)
2017-08-07 15:25:04 +02:00
peer.signal.handshakeReset = make(chan struct{}, 1)
2017-06-30 14:41:08 +02:00
peer.signal.handshakeCompleted = make(chan struct{}, 1)
peer.signal.flushNonceQueue = make(chan struct{}, 1)
2017-06-28 23:45:45 +02:00
go peer.RoutineNonce()
2017-07-08 23:51:26 +02:00
go peer.RoutineTimerHandler()
2017-06-28 23:45:45 +02:00
go peer.RoutineHandshakeInitiator()
2017-06-30 14:41:08 +02:00
go peer.RoutineSequentialSender()
2017-07-01 23:29:22 +02:00
go peer.RoutineSequentialReceiver()
2017-06-28 23:45:45 +02:00
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()
peer.mutex.RLock()
defer peer.mutex.RUnlock()
if !peer.endpoint.set {
return errors.New("No known endpoint for peer")
}
return peer.device.net.bind.Send(buffer, &peer.endpoint.value)
}
2017-10-16 21:33:47 +02:00
/* Returns a short string identification for logging
*/
2017-07-13 14:32:40 +02:00
func (peer *Peer) String() string {
2017-10-16 21:33:47 +02:00
if !peer.endpoint.set {
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-10-16 21:33:47 +02:00
peer.endpoint.value.DstToString(),
2017-07-13 14:32:40 +02:00
base64.StdEncoding.EncodeToString(peer.handshake.remoteStatic[:]),
)
}
2017-06-28 23:45:45 +02:00
func (peer *Peer) Close() {
2017-06-30 14:41:08 +02:00
close(peer.signal.stop)
2017-06-28 23:45:45 +02:00
}