Files
wireguard-go/src/peer.go
T

99 lines
2.5 KiB
Go
Raw Normal View History

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-30 14:41:08 +02:00
id uint
2017-06-04 21:48:15 +02:00
mutex sync.RWMutex
2017-06-26 22:07:29 +02:00
endpoint *net.UDPAddr
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-06-28 23:45:45 +02:00
tx_bytes uint64
rx_bytes uint64
time struct {
2017-06-30 14:41:08 +02:00
lastSend time.Time // last send message
lastHandshake time.Time // last completed handshake
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
flushNonceQueue chan struct{} // (size 1) : empty queued packets
stop chan struct{} // (size 0) : close to stop all goroutines for peer
2017-06-28 23:45:45 +02:00
}
timer struct {
2017-06-30 14:41:08 +02:00
sendKeepalive *time.Timer
handshakeTimeout *time.Timer
2017-06-28 23:45:45 +02:00
}
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 {
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-06-24 15:34:17 +02:00
peer.device = device
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-30 14:41:08 +02:00
peer.timer.sendKeepalive = StoppedTimer()
// assign id for debugging
device.mutex.Lock()
peer.id = device.idCounter
device.idCounter += 1
2017-06-26 13:14:02 +02:00
// map public key
_, ok := device.peers[pk]
if ok {
panic(errors.New("bug: adding existing peer"))
}
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-06-30 14:41:08 +02:00
// prepare signaling
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)
peer.signal.handshakeCompleted = make(chan struct{}, 1)
peer.signal.flushNonceQueue = make(chan struct{}, 1)
// outbound pipeline
2017-06-28 23:45:45 +02:00
go peer.RoutineNonce()
go peer.RoutineHandshakeInitiator()
2017-06-30 14:41:08 +02:00
go peer.RoutineSequentialSender()
2017-06-28 23:45:45 +02:00
2017-06-30 14:41:08 +02:00
return peer
2017-05-30 22:36:49 +02:00
}
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
}