2017-05-30 22:36:49 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-06-26 22:07:29 +02:00
|
|
|
"net"
|
2017-06-28 23:45:45 +02:00
|
|
|
"runtime"
|
2017-05-30 22:36:49 +02:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Device struct {
|
2017-06-30 14:41:08 +02:00
|
|
|
mtu int
|
|
|
|
log *Logger // collection of loggers for levels
|
|
|
|
idCounter uint // for assigning debug ids to peers
|
|
|
|
fwMark uint32
|
2017-07-14 14:25:18 +02:00
|
|
|
pool struct {
|
|
|
|
// pools objects for reuse
|
|
|
|
messageBuffers sync.Pool
|
|
|
|
}
|
|
|
|
net struct {
|
2017-06-30 14:41:08 +02:00
|
|
|
// seperate for performance reasons
|
|
|
|
mutex sync.RWMutex
|
|
|
|
addr *net.UDPAddr // UDP source address
|
|
|
|
conn *net.UDPConn // UDP "connection"
|
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
mutex sync.RWMutex
|
|
|
|
privateKey NoisePrivateKey
|
|
|
|
publicKey NoisePublicKey
|
|
|
|
routingTable RoutingTable
|
|
|
|
indices IndexTable
|
|
|
|
queue struct {
|
2017-07-01 23:29:22 +02:00
|
|
|
encryption chan *QueueOutboundElement
|
|
|
|
decryption chan *QueueInboundElement
|
2017-07-07 13:47:09 +02:00
|
|
|
inbound chan *QueueInboundElement
|
2017-07-01 23:29:22 +02:00
|
|
|
handshake chan QueueHandshakeElement
|
|
|
|
}
|
|
|
|
signal struct {
|
|
|
|
stop chan struct{}
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-07-11 18:48:29 +02:00
|
|
|
underLoad int32 // used as an atomic bool
|
|
|
|
ratelimiter Ratelimiter
|
|
|
|
peers map[NoisePublicKey]*Peer
|
|
|
|
mac MACStateDevice
|
2017-06-01 21:31:30 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
func (device *Device) SetPrivateKey(sk NoisePrivateKey) {
|
|
|
|
device.mutex.Lock()
|
|
|
|
defer device.mutex.Unlock()
|
|
|
|
|
|
|
|
// update key material
|
|
|
|
|
|
|
|
device.privateKey = sk
|
|
|
|
device.publicKey = sk.publicKey()
|
2017-06-27 17:33:06 +02:00
|
|
|
device.mac.Init(device.publicKey)
|
2017-06-24 15:34:17 +02:00
|
|
|
|
2017-06-27 17:33:06 +02:00
|
|
|
// do DH precomputations
|
2017-06-24 15:34:17 +02:00
|
|
|
|
|
|
|
for _, peer := range device.peers {
|
|
|
|
h := &peer.handshake
|
|
|
|
h.mutex.Lock()
|
|
|
|
h.precomputedStaticStatic = device.privateKey.sharedSecret(h.remoteStatic)
|
|
|
|
h.mutex.Unlock()
|
2017-06-23 13:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 14:25:18 +02: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)
|
|
|
|
}
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
func NewDevice(tun TUNDevice, logLevel int) *Device {
|
2017-06-28 23:45:45 +02:00
|
|
|
device := new(Device)
|
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
device.mutex.Lock()
|
|
|
|
defer device.mutex.Unlock()
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
device.log = NewLogger(logLevel)
|
2017-07-11 22:48:58 +02:00
|
|
|
// device.mtu = tun.MTU()
|
2017-06-24 15:34:17 +02:00
|
|
|
device.peers = make(map[NoisePublicKey]*Peer)
|
|
|
|
device.indices.Init()
|
2017-07-11 18:48:29 +02:00
|
|
|
device.ratelimiter.Init()
|
2017-06-24 15:34:17 +02:00
|
|
|
device.routingTable.Reset()
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// 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()
|
|
|
|
|
2017-07-14 14:25:18 +02:00
|
|
|
// setup pools
|
|
|
|
|
|
|
|
device.pool.messageBuffers = sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return new([MaxMessageSize]byte)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// create queues
|
|
|
|
|
2017-07-01 23:29:22 +02:00
|
|
|
device.queue.handshake = make(chan QueueHandshakeElement, QueueHandshakeSize)
|
2017-07-07 13:47:09 +02:00
|
|
|
device.queue.encryption = make(chan *QueueOutboundElement, QueueOutboundSize)
|
2017-07-01 23:29:22 +02:00
|
|
|
device.queue.decryption = make(chan *QueueInboundElement, QueueInboundSize)
|
2017-07-07 13:47:09 +02:00
|
|
|
device.queue.inbound = make(chan *QueueInboundElement, QueueInboundSize)
|
2017-07-01 23:29:22 +02:00
|
|
|
|
|
|
|
// prepare signals
|
|
|
|
|
|
|
|
device.signal.stop = make(chan struct{})
|
2017-06-30 14:41:08 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
// start workers
|
|
|
|
|
|
|
|
for i := 0; i < runtime.NumCPU(); i += 1 {
|
|
|
|
go device.RoutineEncryption()
|
2017-07-01 23:29:22 +02:00
|
|
|
go device.RoutineDecryption()
|
|
|
|
go device.RoutineHandshake()
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2017-07-08 09:23:10 +02:00
|
|
|
go device.RoutineBusyMonitor()
|
2017-07-13 14:32:40 +02:00
|
|
|
go device.RoutineWriteToTUN(tun)
|
2017-06-28 23:45:45 +02:00
|
|
|
go device.RoutineReadFromTUN(tun)
|
2017-07-01 23:29:22 +02:00
|
|
|
go device.RoutineReceiveIncomming()
|
2017-07-11 18:48:29 +02:00
|
|
|
go device.ratelimiter.RoutineGarbageCollector(device.signal.stop)
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
return device
|
2017-06-24 15:34:17 +02: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()
|
|
|
|
|
|
|
|
peer, ok := device.peers[key]
|
2017-06-01 21:31:30 +02:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
peer.mutex.Lock()
|
2017-06-24 15:34:17 +02:00
|
|
|
device.routingTable.RemovePeer(peer)
|
|
|
|
delete(device.peers, key)
|
2017-06-29 14:39:21 +02:00
|
|
|
peer.Close()
|
2017-06-01 21:31:30 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
func (device *Device) RemoveAllPeers() {
|
|
|
|
device.mutex.Lock()
|
|
|
|
defer device.mutex.Unlock()
|
2017-06-01 21:31:30 +02:00
|
|
|
|
2017-06-24 15:34:17 +02:00
|
|
|
for key, peer := range device.peers {
|
2017-06-01 21:31:30 +02:00
|
|
|
peer.mutex.Lock()
|
2017-06-24 15:34:17 +02:00
|
|
|
delete(device.peers, key)
|
2017-06-29 14:39:21 +02:00
|
|
|
peer.Close()
|
2017-06-30 14:41:08 +02:00
|
|
|
peer.mutex.Unlock()
|
2017-06-01 21:31:30 +02:00
|
|
|
}
|
2017-05-30 22:36:49 +02:00
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
|
|
|
|
func (device *Device) Close() {
|
|
|
|
device.RemoveAllPeers()
|
2017-07-01 23:29:22 +02:00
|
|
|
close(device.signal.stop)
|
2017-07-13 14:32:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (device *Device) Wait() {
|
|
|
|
<-device.signal.stop
|
2017-06-30 14:41:08 +02:00
|
|
|
}
|