2017-05-30 20:36:49 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-10-08 20:03:32 +00:00
|
|
|
"golang.org/x/net/ipv4"
|
|
|
|
"golang.org/x/net/ipv6"
|
2017-06-28 21:45:45 +00:00
|
|
|
"runtime"
|
2017-05-30 20:36:49 +00:00
|
|
|
"sync"
|
2017-07-15 14:27:59 +00:00
|
|
|
"sync/atomic"
|
2017-08-11 14:18:20 +00:00
|
|
|
"time"
|
2017-05-30 20:36:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Device struct {
|
2017-06-30 12:41:08 +00:00
|
|
|
log *Logger // collection of loggers for levels
|
|
|
|
idCounter uint // for assigning debug ids to peers
|
|
|
|
fwMark uint32
|
2017-08-11 14:18:20 +00:00
|
|
|
tun struct {
|
|
|
|
device TUNDevice
|
|
|
|
isUp AtomicBool
|
|
|
|
mtu int32
|
|
|
|
}
|
|
|
|
pool struct {
|
2017-07-14 12:25:18 +00:00
|
|
|
messageBuffers sync.Pool
|
|
|
|
}
|
|
|
|
net struct {
|
2017-08-22 15:22:45 +00:00
|
|
|
mutex sync.RWMutex
|
2017-10-08 20:03:32 +00:00
|
|
|
bind UDPBind
|
2017-10-07 20:35:23 +00:00
|
|
|
port uint16
|
2017-09-21 01:09:57 +00:00
|
|
|
fwmark uint32
|
2017-06-30 12:41:08 +00:00
|
|
|
}
|
2017-06-28 21:45:45 +00:00
|
|
|
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 {
|
2017-10-08 20:03:32 +00:00
|
|
|
stop chan struct{}
|
|
|
|
updateBind chan struct{}
|
2017-06-28 21:45:45 +00:00
|
|
|
}
|
2017-08-11 14:18:20 +00:00
|
|
|
underLoadUntil atomic.Value
|
|
|
|
ratelimiter Ratelimiter
|
|
|
|
peers map[NoisePublicKey]*Peer
|
2017-08-14 15:09:25 +00:00
|
|
|
mac CookieChecker
|
2017-06-01 19:31:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +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-11 14:18:20 +00:00
|
|
|
func (device *Device) IsUnderLoad() bool {
|
|
|
|
|
|
|
|
// check if currently under load
|
|
|
|
|
|
|
|
now := time.Now()
|
|
|
|
underLoad := len(device.queue.handshake) >= UnderLoadQueueSize
|
|
|
|
if underLoad {
|
|
|
|
device.underLoadUntil.Store(now.Add(time.Second))
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if recently under load
|
|
|
|
|
|
|
|
until := device.underLoadUntil.Load().(time.Time)
|
|
|
|
return until.After(now)
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// remove peers with matching public keys
|
2017-08-04 14:15:53 +00:00
|
|
|
|
|
|
|
publicKey := sk.publicKey()
|
2017-08-07 13:25:04 +00:00
|
|
|
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) {
|
2017-08-07 13:25:04 +00:00
|
|
|
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
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
rmKey := device.privateKey.IsZero()
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
for key, peer := range device.peers {
|
2017-06-24 13:34:17 +00:00
|
|
|
h := &peer.handshake
|
|
|
|
h.mutex.Lock()
|
2017-08-07 13:25:04 +00:00
|
|
|
if rmKey {
|
2017-08-04 14:15:53 +00:00
|
|
|
h.precomputedStaticStatic = [NoisePublicKeySize]byte{}
|
|
|
|
} else {
|
|
|
|
h.precomputedStaticStatic = device.privateKey.sharedSecret(h.remoteStatic)
|
2017-08-07 13:25:04 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-07-14 12:25:18 +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)
|
|
|
|
}
|
|
|
|
|
2017-06-30 12:41:08 +00:00
|
|
|
func NewDevice(tun TUNDevice, logLevel int) *Device {
|
2017-06-28 21:45:45 +00:00
|
|
|
device := new(Device)
|
|
|
|
|
2017-06-24 13:34:17 +00:00
|
|
|
device.mutex.Lock()
|
|
|
|
defer device.mutex.Unlock()
|
|
|
|
|
2017-08-11 14:18:20 +00:00
|
|
|
device.log = NewLogger(logLevel, "("+tun.Name()+") ")
|
2017-06-24 13:34:17 +00:00
|
|
|
device.peers = make(map[NoisePublicKey]*Peer)
|
2017-08-11 14:18:20 +00:00
|
|
|
device.tun.device = tun
|
2017-10-07 20:35:23 +00:00
|
|
|
|
2017-06-24 13:34:17 +00:00
|
|
|
device.indices.Init()
|
2017-07-11 16:48:29 +00:00
|
|
|
device.ratelimiter.Init()
|
2017-10-07 20:35:23 +00:00
|
|
|
|
2017-06-24 13:34:17 +00:00
|
|
|
device.routingTable.Reset()
|
2017-08-11 14:18:20 +00:00
|
|
|
device.underLoadUntil.Store(time.Time{})
|
2017-06-30 12:41:08 +00:00
|
|
|
|
2017-10-07 20:35:23 +00:00
|
|
|
// setup buffer pool
|
2017-07-14 12:25:18 +00:00
|
|
|
|
|
|
|
device.pool.messageBuffers = sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return new([MaxMessageSize]byte)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-06-30 12:41:08 +00:00
|
|
|
// 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{})
|
2017-06-30 12:41:08 +00:00
|
|
|
|
2017-06-28 21:45:45 +00:00
|
|
|
// 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-06-28 21:45:45 +00:00
|
|
|
}
|
2017-10-07 20:35:23 +00:00
|
|
|
go device.RoutineReadFromTUN()
|
2017-08-07 13:25:04 +00:00
|
|
|
go device.RoutineTUNEventReader()
|
2017-07-11 16:48:29 +00:00
|
|
|
go device.ratelimiter.RoutineGarbageCollector(device.signal.stop)
|
2017-10-08 20:03:32 +00:00
|
|
|
go device.RoutineReceiveIncomming(ipv4.Version)
|
|
|
|
go device.RoutineReceiveIncomming(ipv6.Version)
|
2017-06-28 21:45:45 +00:00
|
|
|
return device
|
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()
|
2017-08-07 13:25:04 +00:00
|
|
|
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)
|
2017-06-29 12:39:21 +00:00
|
|
|
peer.Close()
|
2017-06-30 12:41:08 +00:00
|
|
|
peer.mutex.Unlock()
|
2017-06-01 19:31:30 +00:00
|
|
|
}
|
2017-05-30 20:36:49 +00:00
|
|
|
}
|
2017-06-30 12:41:08 +00:00
|
|
|
|
|
|
|
func (device *Device) Close() {
|
|
|
|
device.RemoveAllPeers()
|
2017-07-01 21:29:22 +00:00
|
|
|
close(device.signal.stop)
|
2017-10-16 19:33:47 +00:00
|
|
|
CloseUDPListener(device)
|
2017-07-13 12:32:40 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 10:14:38 +00:00
|
|
|
func (device *Device) WaitChannel() chan struct{} {
|
|
|
|
return device.signal.stop
|
2017-06-30 12:41:08 +00:00
|
|
|
}
|