2017-06-26 13:14:02 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-06-26 22:07:29 +02:00
|
|
|
"encoding/binary"
|
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
2017-06-26 13:14:02 +02:00
|
|
|
"net"
|
|
|
|
"sync"
|
2017-06-30 14:41:08 +02:00
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
2017-06-26 13:14:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
/* Handles outbound flow
|
|
|
|
*
|
|
|
|
* 1. TUN queue
|
2017-06-28 23:45:45 +02:00
|
|
|
* 2. Routing (sequential)
|
|
|
|
* 3. Nonce assignment (sequential)
|
|
|
|
* 4. Encryption (parallel)
|
|
|
|
* 5. Transmission (sequential)
|
2017-06-26 13:14:02 +02:00
|
|
|
*
|
2017-06-28 23:45:45 +02:00
|
|
|
* The order of packets (per peer) is maintained.
|
|
|
|
* The functions in this file occure (roughly) in the order packets are processed.
|
2017-06-26 13:14:02 +02:00
|
|
|
*/
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
/* A work unit
|
|
|
|
*
|
|
|
|
* The sequential consumers will attempt to take the lock,
|
|
|
|
* workers release lock when they have completed work on the packet.
|
2017-07-06 15:43:55 +02:00
|
|
|
*
|
|
|
|
* If the element is inserted into the "encryption queue",
|
|
|
|
* the content is preceeded by enough "junk" to contain the header
|
|
|
|
* (to allow the constuction of transport messages in-place)
|
2017-06-28 23:45:45 +02:00
|
|
|
*/
|
|
|
|
type QueueOutboundElement struct {
|
2017-07-01 23:29:22 +02:00
|
|
|
state uint32
|
2017-06-28 23:45:45 +02:00
|
|
|
mutex sync.Mutex
|
2017-07-06 15:43:55 +02:00
|
|
|
data [MaxMessageSize]byte
|
|
|
|
packet []byte // slice of packet (sending)
|
|
|
|
nonce uint64 // nonce for encryption
|
|
|
|
keyPair *KeyPair // key-pair for encryption
|
|
|
|
peer *Peer // related peer
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
func (peer *Peer) FlushNonceQueue() {
|
|
|
|
elems := len(peer.queue.nonce)
|
|
|
|
for i := 0; i < elems; i += 1 {
|
|
|
|
select {
|
|
|
|
case <-peer.queue.nonce:
|
|
|
|
default:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2017-06-27 17:33:06 +02:00
|
|
|
}
|
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
func (device *Device) NewOutboundElement() *QueueOutboundElement {
|
|
|
|
elem := new(QueueOutboundElement) // TODO: profile, consider sync.Pool
|
|
|
|
return elem
|
|
|
|
}
|
|
|
|
|
|
|
|
func (elem *QueueOutboundElement) Drop() {
|
|
|
|
atomic.StoreUint32(&elem.state, ElementStateDropped)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (elem *QueueOutboundElement) IsDropped() bool {
|
|
|
|
return atomic.LoadUint32(&elem.state) == ElementStateDropped
|
|
|
|
}
|
|
|
|
|
|
|
|
func addToOutboundQueue(
|
|
|
|
queue chan *QueueOutboundElement,
|
|
|
|
element *QueueOutboundElement,
|
|
|
|
) {
|
2017-06-28 23:45:45 +02:00
|
|
|
for {
|
|
|
|
select {
|
2017-07-06 15:43:55 +02:00
|
|
|
case queue <- element:
|
2017-06-30 14:41:08 +02:00
|
|
|
return
|
2017-06-28 23:45:45 +02:00
|
|
|
default:
|
|
|
|
select {
|
2017-07-06 15:43:55 +02:00
|
|
|
case old := <-queue:
|
|
|
|
old.Drop()
|
2017-06-28 23:45:45 +02:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
/* Reads packets from the TUN and inserts
|
|
|
|
* into nonce queue for peer
|
|
|
|
*
|
|
|
|
* Obs. Single instance per TUN device
|
|
|
|
*/
|
|
|
|
func (device *Device) RoutineReadFromTUN(tun TUNDevice) {
|
2017-07-06 15:43:55 +02:00
|
|
|
if tun == nil {
|
|
|
|
// dummy
|
2017-06-30 14:41:08 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
elem := device.NewOutboundElement()
|
|
|
|
|
2017-06-29 14:39:21 +02:00
|
|
|
device.log.Debug.Println("Routine, TUN Reader: started")
|
2017-06-28 23:45:45 +02:00
|
|
|
for {
|
|
|
|
// read packet
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
if elem == nil {
|
|
|
|
elem = device.NewOutboundElement()
|
|
|
|
}
|
|
|
|
|
|
|
|
elem.packet = elem.data[MessageTransportHeaderSize:]
|
|
|
|
size, err := tun.Read(elem.packet)
|
2017-06-28 23:45:45 +02:00
|
|
|
if err != nil {
|
|
|
|
device.log.Error.Println("Failed to read packet from TUN device:", err)
|
|
|
|
continue
|
|
|
|
}
|
2017-07-06 15:43:55 +02:00
|
|
|
elem.packet = elem.packet[:size]
|
|
|
|
if len(elem.packet) < IPv4headerSize {
|
|
|
|
device.log.Error.Println("Packet too short, length:", size)
|
2017-06-28 23:45:45 +02:00
|
|
|
continue
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
// lookup peer
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
var peer *Peer
|
2017-07-06 15:43:55 +02:00
|
|
|
switch elem.packet[0] >> 4 {
|
2017-06-28 23:45:45 +02:00
|
|
|
case IPv4version:
|
2017-07-06 15:43:55 +02:00
|
|
|
dst := elem.packet[IPv4offsetDst : IPv4offsetDst+net.IPv4len]
|
2017-06-28 23:45:45 +02:00
|
|
|
peer = device.routingTable.LookupIPv4(dst)
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
case IPv6version:
|
2017-07-06 15:43:55 +02:00
|
|
|
dst := elem.packet[IPv6offsetDst : IPv6offsetDst+net.IPv6len]
|
2017-06-28 23:45:45 +02:00
|
|
|
peer = device.routingTable.LookupIPv6(dst)
|
2017-06-26 13:14:02 +02:00
|
|
|
|
|
|
|
default:
|
2017-06-28 23:45:45 +02:00
|
|
|
device.log.Debug.Println("Receieved packet with unknown IP version")
|
|
|
|
}
|
|
|
|
|
|
|
|
if peer == nil {
|
2017-06-29 14:39:21 +02:00
|
|
|
continue
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
if peer.endpoint == nil {
|
|
|
|
device.log.Debug.Println("No known endpoint for peer", peer.id)
|
|
|
|
continue
|
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
|
|
|
|
// insert into nonce/pre-handshake queue
|
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
addToOutboundQueue(peer.queue.nonce, elem)
|
|
|
|
elem = nil
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
/* Queues packets when there is no handshake.
|
|
|
|
* Then assigns nonces to packets sequentially
|
|
|
|
* and creates "work" structs for workers
|
2017-06-26 13:14:02 +02:00
|
|
|
*
|
2017-06-28 23:45:45 +02:00
|
|
|
* TODO: Avoid dynamic allocation of work queue elements
|
2017-06-26 13:14:02 +02:00
|
|
|
*
|
2017-06-28 23:45:45 +02:00
|
|
|
* Obs. A single instance per peer
|
2017-06-26 13:14:02 +02:00
|
|
|
*/
|
2017-06-28 23:45:45 +02:00
|
|
|
func (peer *Peer) RoutineNonce() {
|
2017-06-26 22:07:29 +02:00
|
|
|
var keyPair *KeyPair
|
2017-07-06 15:43:55 +02:00
|
|
|
var elem *QueueOutboundElement
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
device := peer.device
|
|
|
|
logger := device.log.Debug
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
logger.Println("Routine, nonce worker, started for peer", peer.id)
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
func() {
|
|
|
|
|
|
|
|
for {
|
|
|
|
NextPacket:
|
|
|
|
|
|
|
|
// wait for packet
|
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
if elem == nil {
|
2017-06-30 14:41:08 +02:00
|
|
|
select {
|
2017-07-06 15:43:55 +02:00
|
|
|
case elem = <-peer.queue.nonce:
|
2017-06-30 14:41:08 +02:00
|
|
|
case <-peer.signal.stop:
|
|
|
|
return
|
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// wait for key pair
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-peer.signal.newKeyPair:
|
|
|
|
default:
|
|
|
|
}
|
2017-06-26 22:07:29 +02:00
|
|
|
|
|
|
|
keyPair = peer.keyPairs.Current()
|
2017-06-30 14:41:08 +02:00
|
|
|
if keyPair != nil && keyPair.sendNonce < RejectAfterMessages {
|
|
|
|
if time.Now().Sub(keyPair.created) < RejectAfterTime {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2017-07-01 23:29:22 +02:00
|
|
|
logger.Println("Key pair:", keyPair)
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
sendSignal(peer.signal.handshakeBegin)
|
|
|
|
logger.Println("Waiting for key-pair, peer", peer.id)
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
select {
|
|
|
|
case <-peer.signal.newKeyPair:
|
|
|
|
logger.Println("Key-pair negotiated for peer", peer.id)
|
|
|
|
goto NextPacket
|
|
|
|
|
|
|
|
case <-peer.signal.flushNonceQueue:
|
|
|
|
logger.Println("Clearing queue for peer", peer.id)
|
|
|
|
peer.FlushNonceQueue()
|
2017-07-06 15:43:55 +02:00
|
|
|
elem = nil
|
2017-06-30 14:41:08 +02:00
|
|
|
goto NextPacket
|
|
|
|
|
|
|
|
case <-peer.signal.stop:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// process current packet
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
if elem != nil {
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// create work element
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
elem.keyPair = keyPair
|
|
|
|
elem.nonce = atomic.AddUint64(&keyPair.sendNonce, 1) - 1
|
|
|
|
elem.peer = peer
|
|
|
|
elem.mutex.Lock()
|
|
|
|
|
|
|
|
// add to parallel processing and sequential consuming queue
|
|
|
|
|
|
|
|
addToOutboundQueue(device.queue.encryption, elem)
|
|
|
|
addToOutboundQueue(peer.queue.outbound, elem)
|
|
|
|
elem = nil
|
2017-06-30 14:41:08 +02:00
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
logger.Println("Routine, nonce worker, stopped for peer", peer.id)
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
/* Encrypts the elements in the queue
|
|
|
|
* and marks them for sequential consumption (by releasing the mutex)
|
2017-06-26 22:07:29 +02:00
|
|
|
*
|
2017-06-28 23:45:45 +02:00
|
|
|
* Obs. One instance per core
|
2017-06-26 22:07:29 +02:00
|
|
|
*/
|
2017-06-28 23:45:45 +02:00
|
|
|
func (device *Device) RoutineEncryption() {
|
2017-06-26 22:07:29 +02:00
|
|
|
var nonce [chacha20poly1305.NonceSize]byte
|
2017-06-28 23:45:45 +02:00
|
|
|
for work := range device.queue.encryption {
|
2017-07-01 23:29:22 +02:00
|
|
|
if work.IsDropped() {
|
|
|
|
continue
|
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
// populate header fields
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
func() {
|
|
|
|
header := work.data[:MessageTransportHeaderSize]
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
fieldType := header[0:4]
|
|
|
|
fieldReceiver := header[4:8]
|
|
|
|
fieldNonce := header[8:16]
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
binary.LittleEndian.PutUint32(fieldType, MessageTransportType)
|
|
|
|
binary.LittleEndian.PutUint32(fieldReceiver, work.keyPair.remoteIndex)
|
|
|
|
binary.LittleEndian.PutUint64(fieldNonce, work.nonce)
|
|
|
|
}()
|
2017-07-02 15:28:38 +02:00
|
|
|
|
|
|
|
// encrypt content
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
func() {
|
|
|
|
binary.LittleEndian.PutUint64(nonce[4:], work.nonce)
|
|
|
|
work.packet = work.keyPair.send.Seal(
|
|
|
|
work.packet[:0],
|
|
|
|
nonce[:],
|
|
|
|
work.packet,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
work.mutex.Unlock()
|
|
|
|
}()
|
2017-06-30 14:41:08 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
// reslice to include header
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
work.packet = work.data[:MessageTransportHeaderSize+len(work.packet)]
|
|
|
|
|
|
|
|
// refresh key if necessary
|
2017-06-30 14:41:08 +02:00
|
|
|
|
|
|
|
work.peer.KeepKeyFreshSending()
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sequentially reads packets from queue and sends to endpoint
|
|
|
|
*
|
|
|
|
* Obs. Single instance per peer.
|
|
|
|
* The routine terminates then the outbound queue is closed.
|
|
|
|
*/
|
2017-06-30 14:41:08 +02:00
|
|
|
func (peer *Peer) RoutineSequentialSender() {
|
|
|
|
logger := peer.device.log.Debug
|
|
|
|
logger.Println("Routine, sequential sender, started for peer", peer.id)
|
|
|
|
|
|
|
|
device := peer.device
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-peer.signal.stop:
|
|
|
|
logger.Println("Routine, sequential sender, stopped for peer", peer.id)
|
|
|
|
return
|
|
|
|
case work := <-peer.queue.outbound:
|
2017-07-01 23:29:22 +02:00
|
|
|
if work.IsDropped() {
|
|
|
|
continue
|
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
work.mutex.Lock()
|
|
|
|
func() {
|
|
|
|
if work.packet == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
peer.mutex.RLock()
|
|
|
|
defer peer.mutex.RUnlock()
|
|
|
|
|
|
|
|
if peer.endpoint == nil {
|
|
|
|
logger.Println("No endpoint for peer:", peer.id)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
device.net.mutex.RLock()
|
|
|
|
defer device.net.mutex.RUnlock()
|
|
|
|
|
|
|
|
if device.net.conn == nil {
|
|
|
|
logger.Println("No source for device")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := device.net.conn.WriteToUDP(work.packet, peer.endpoint)
|
2017-07-01 23:29:22 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2017-06-30 14:41:08 +02:00
|
|
|
atomic.AddUint64(&peer.tx_bytes, uint64(len(work.packet)))
|
|
|
|
|
|
|
|
// shift keep-alive timer
|
|
|
|
|
|
|
|
if peer.persistentKeepaliveInterval != 0 {
|
|
|
|
interval := time.Duration(peer.persistentKeepaliveInterval) * time.Second
|
|
|
|
peer.timer.sendKeepalive.Reset(interval)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
}
|