wireguard-go/src/device.go

88 lines
1.8 KiB
Go
Raw Normal View History

package main
import (
2017-06-26 11:14:02 +00:00
"log"
"net"
"sync"
)
type Device struct {
2017-06-26 11:14:02 +00:00
mtu int
source *net.UDPAddr // UDP source address
conn *net.UDPConn // UDP "connection"
2017-06-26 11:14:02 +00:00
mutex sync.RWMutex
peers map[NoisePublicKey]*Peer
indices IndexTable
privateKey NoisePrivateKey
publicKey NoisePublicKey
fwMark uint32
listenPort uint16
routingTable RoutingTable
logger log.Logger
queueWorkOutbound chan *OutboundWorkQueueElement
2017-06-01 19:31:30 +00:00
}
2017-06-24 13:34:17 +00:00
func (device *Device) SetPrivateKey(sk NoisePrivateKey) {
device.mutex.Lock()
defer device.mutex.Unlock()
// update key material
device.privateKey = sk
device.publicKey = sk.publicKey()
// do precomputations
for _, peer := range device.peers {
h := &peer.handshake
h.mutex.Lock()
h.precomputedStaticStatic = device.privateKey.sharedSecret(h.remoteStatic)
h.mutex.Unlock()
2017-06-23 11:41:59 +00:00
}
}
2017-06-24 13:34:17 +00:00
func (device *Device) Init() {
device.mutex.Lock()
defer device.mutex.Unlock()
device.peers = make(map[NoisePublicKey]*Peer)
device.indices.Init()
device.listenPort = 0
device.routingTable.Reset()
}
func (device *Device) LookupPeer(pk NoisePublicKey) *Peer {
device.mutex.RLock()
defer device.mutex.RUnlock()
return device.peers[pk]
}
func (device *Device) RemovePeer(key NoisePublicKey) {
device.mutex.Lock()
defer device.mutex.Unlock()
peer, ok := device.peers[key]
2017-06-01 19:31:30 +00:00
if !ok {
return
}
peer.mutex.Lock()
2017-06-24 13:34:17 +00:00
device.routingTable.RemovePeer(peer)
delete(device.peers, key)
2017-06-01 19:31:30 +00:00
}
2017-06-24 13:34:17 +00:00
func (device *Device) RemoveAllAllowedIps(peer *Peer) {
2017-06-01 19:31:30 +00:00
}
2017-06-24 13:34:17 +00:00
func (device *Device) RemoveAllPeers() {
device.mutex.Lock()
defer device.mutex.Unlock()
2017-06-01 19:31:30 +00:00
2017-06-24 13:34:17 +00:00
for key, peer := range device.peers {
2017-06-01 19:31:30 +00:00
peer.mutex.Lock()
2017-06-24 13:34:17 +00:00
device.routingTable.RemovePeer(peer)
delete(device.peers, key)
2017-06-01 19:31:30 +00:00
peer.mutex.Unlock()
}
}