1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2024-11-15 01:05:15 +01:00
wireguard-go/src/peer.go

59 lines
1.2 KiB
Go
Raw Normal View History

package main
import (
2017-06-26 13:14:02 +02:00
"errors"
2017-06-01 21:31:30 +02:00
"net"
"sync"
"time"
)
2017-06-26 13:14:02 +02:00
const (
OutboundQueueSize = 64
)
type Peer struct {
mutex sync.RWMutex
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-26 13:14:02 +02:00
queueInbound chan []byte
queueOutbound chan *OutboundWorkQueueElement
queueOutboundRouting chan []byte
2017-06-27 17:33:06 +02:00
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
peer.keyPairs.Init()
2017-06-27 17:33:06 +02:00
peer.mac.Init(pk)
2017-06-26 13:14:02 +02:00
peer.queueOutbound = make(chan *OutboundWorkQueueElement, OutboundQueueSize)
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()
return &peer
}