wireguard-go/src/device.go

232 lines
5.3 KiB
Go
Raw Normal View History

package main
import (
"net"
"runtime"
"sync"
"sync/atomic"
)
type Device struct {
mtu int32
2017-08-04 14:15:53 +00:00
tun TUNDevice
log *Logger // collection of loggers for levels
idCounter uint // for assigning debug ids to peers
fwMark uint32
pool struct {
// pools objects for reuse
messageBuffers sync.Pool
}
net struct {
// seperate for performance reasons
mutex sync.RWMutex
addr *net.UDPAddr // UDP source address
conn *net.UDPConn // UDP "connection"
}
mutex sync.RWMutex
privateKey NoisePrivateKey
publicKey NoisePublicKey
routingTable RoutingTable
indices IndexTable
queue struct {
2017-07-01 21:29:22 +00:00
encryption chan *QueueOutboundElement
decryption chan *QueueInboundElement
handshake chan QueueHandshakeElement
}
signal struct {
stop chan struct{} // halts all go routines
newUDPConn chan struct{} // a net.conn was set
}
isUp int32 // atomic bool: interface is up
underLoad int32 // atomic bool: device is under load
ratelimiter Ratelimiter
peers map[NoisePublicKey]*Peer
mac MACStateDevice
2017-06-01 19:31:30 +00:00
}
/* Warning:
* The caller must hold the device mutex (write lock)
*/
func removePeerUnsafe(device *Device, key NoisePublicKey) {
peer, ok := device.peers[key]
if !ok {
return
}
peer.mutex.Lock()
device.routingTable.RemovePeer(peer)
delete(device.peers, key)
peer.Close()
}
2017-08-04 14:15:53 +00:00
func (device *Device) SetPrivateKey(sk NoisePrivateKey) error {
2017-06-24 13:34:17 +00:00
device.mutex.Lock()
defer device.mutex.Unlock()
// remove peers with matching public keys
2017-08-04 14:15:53 +00:00
publicKey := sk.publicKey()
for key, peer := range device.peers {
2017-08-04 14:15:53 +00:00
h := &peer.handshake
h.mutex.RLock()
if h.remoteStatic.Equals(publicKey) {
removePeerUnsafe(device, key)
2017-08-04 14:15:53 +00:00
}
h.mutex.RUnlock()
}
2017-06-24 13:34:17 +00:00
// update key material
device.privateKey = sk
2017-08-04 14:15:53 +00:00
device.publicKey = publicKey
device.mac.Init(publicKey)
2017-06-24 13:34:17 +00:00
2017-06-27 15:33:06 +00:00
// do DH precomputations
2017-06-24 13:34:17 +00:00
rmKey := device.privateKey.IsZero()
2017-08-04 14:15:53 +00:00
for key, peer := range device.peers {
2017-06-24 13:34:17 +00:00
h := &peer.handshake
h.mutex.Lock()
if rmKey {
2017-08-04 14:15:53 +00:00
h.precomputedStaticStatic = [NoisePublicKeySize]byte{}
} else {
h.precomputedStaticStatic = device.privateKey.sharedSecret(h.remoteStatic)
if isZero(h.precomputedStaticStatic[:]) {
removePeerUnsafe(device, key)
}
2017-08-04 14:15:53 +00:00
}
2017-06-24 13:34:17 +00:00
h.mutex.Unlock()
2017-06-23 11:41:59 +00:00
}
2017-08-04 14:15:53 +00:00
return nil
2017-06-23 11:41:59 +00:00
}
func (device *Device) GetMessageBuffer() *[MaxMessageSize]byte {
return device.pool.messageBuffers.Get().(*[MaxMessageSize]byte)
}
func (device *Device) PutMessageBuffer(msg *[MaxMessageSize]byte) {
device.pool.messageBuffers.Put(msg)
}
func NewDevice(tun TUNDevice, logLevel int) *Device {
device := new(Device)
2017-06-24 13:34:17 +00:00
device.mutex.Lock()
defer device.mutex.Unlock()
2017-08-04 14:15:53 +00:00
device.tun = tun
device.log = NewLogger(logLevel)
2017-06-24 13:34:17 +00:00
device.peers = make(map[NoisePublicKey]*Peer)
device.indices.Init()
device.ratelimiter.Init()
2017-06-24 13:34:17 +00:00
device.routingTable.Reset()
// listen
device.net.mutex.Lock()
device.net.conn, _ = net.ListenUDP("udp", device.net.addr)
addr := device.net.conn.LocalAddr()
device.net.addr, _ = net.ResolveUDPAddr(addr.Network(), addr.String())
device.net.mutex.Unlock()
// setup pools
device.pool.messageBuffers = sync.Pool{
New: func() interface{} {
return new([MaxMessageSize]byte)
},
}
// create queues
2017-07-01 21:29:22 +00:00
device.queue.handshake = make(chan QueueHandshakeElement, QueueHandshakeSize)
2017-07-07 11:47:09 +00:00
device.queue.encryption = make(chan *QueueOutboundElement, QueueOutboundSize)
2017-07-01 21:29:22 +00:00
device.queue.decryption = make(chan *QueueInboundElement, QueueInboundSize)
// prepare signals
device.signal.stop = make(chan struct{})
device.signal.newUDPConn = make(chan struct{}, 1)
// start workers
for i := 0; i < runtime.NumCPU(); i += 1 {
go device.RoutineEncryption()
2017-07-01 21:29:22 +00:00
go device.RoutineDecryption()
go device.RoutineHandshake()
}
2017-07-08 21:51:26 +00:00
2017-07-08 07:23:10 +00:00
go device.RoutineBusyMonitor()
2017-08-04 14:15:53 +00:00
go device.RoutineReadFromTUN()
go device.RoutineTUNEventReader()
2017-07-01 21:29:22 +00:00
go device.RoutineReceiveIncomming()
go device.ratelimiter.RoutineGarbageCollector(device.signal.stop)
2017-07-08 21:51:26 +00:00
return device
2017-06-24 13:34:17 +00:00
}
func (device *Device) RoutineTUNEventReader() {
events := device.tun.Events()
logError := device.log.Error
2017-07-17 14:16:18 +00:00
for event := range events {
if event&TUNEventMTUUpdate != 0 {
mtu, err := device.tun.MTU()
if err != nil {
logError.Println("Failed to load updated MTU of device:", err)
} else {
if mtu+MessageTransportSize > MaxMessageSize {
mtu = MaxMessageSize - MessageTransportSize
}
atomic.StoreInt32(&device.mtu, int32(mtu))
}
}
2017-07-17 14:16:18 +00:00
if event&TUNEventUp != 0 {
println("handle 1")
atomic.StoreInt32(&device.isUp, AtomicTrue)
updateUDPConn(device)
println("handle 2", device.net.conn)
}
2017-07-17 14:16:18 +00:00
if event&TUNEventDown != 0 {
atomic.StoreInt32(&device.isUp, AtomicFalse)
closeUDPConn(device)
2017-07-17 14:16:18 +00:00
}
}
}
2017-06-24 13:34:17 +00:00
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()
removePeerUnsafe(device, key)
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
delete(device.peers, key)
peer.Close()
peer.mutex.Unlock()
2017-06-01 19:31:30 +00:00
}
}
func (device *Device) Close() {
device.RemoveAllPeers()
2017-07-01 21:29:22 +00:00
close(device.signal.stop)
}
2017-08-01 10:14:38 +00:00
func (device *Device) WaitChannel() chan struct{} {
return device.signal.stop
}