2018-05-03 15:04:00 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
2017-06-26 13:14:02 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-05-07 22:27:03 +02:00
|
|
|
"bytes"
|
2017-06-26 22:07:29 +02:00
|
|
|
"encoding/binary"
|
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
2017-07-13 14:32:40 +02:00
|
|
|
"golang.org/x/net/ipv4"
|
|
|
|
"golang.org/x/net/ipv6"
|
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
|
|
|
)
|
|
|
|
|
2017-12-01 23:37:26 +01:00
|
|
|
/* Outbound flow
|
2017-06-26 13:14:02 +02:00
|
|
|
*
|
|
|
|
* 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-12-01 23:37:26 +01:00
|
|
|
* The functions in this file occur (roughly) in the order in
|
|
|
|
* which the packets are processed.
|
|
|
|
*
|
|
|
|
* Locking, Producers and Consumers
|
|
|
|
*
|
|
|
|
* The order of packets (per peer) must be maintained,
|
|
|
|
* but encryption of packets happen out-of-order:
|
|
|
|
*
|
|
|
|
* The sequential consumers will attempt to take the lock,
|
2017-07-13 14:32:40 +02:00
|
|
|
* workers release lock when they have completed work (encryption) on the packet.
|
2017-07-06 15:43:55 +02:00
|
|
|
*
|
|
|
|
* If the element is inserted into the "encryption queue",
|
2017-12-01 23:37:26 +01:00
|
|
|
* the content is preceded by enough "junk" to contain the transport header
|
2017-07-07 13:47:09 +02:00
|
|
|
* (to allow the construction of transport messages in-place)
|
2017-06-28 23:45:45 +02:00
|
|
|
*/
|
2017-12-01 23:37:26 +01:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
type QueueOutboundElement struct {
|
2017-07-08 23:51:26 +02:00
|
|
|
dropped int32
|
2017-06-28 23:45:45 +02:00
|
|
|
mutex sync.Mutex
|
2017-07-14 14:25:18 +02:00
|
|
|
buffer *[MaxMessageSize]byte // slice holding the packet data
|
2017-09-09 15:03:01 +02:00
|
|
|
packet []byte // slice of "buffer" (always!)
|
2017-07-14 14:25:18 +02:00
|
|
|
nonce uint64 // nonce for encryption
|
2018-05-13 19:50:58 +02:00
|
|
|
keypair *Keypair // keypair for encryption
|
2017-07-14 14:25:18 +02:00
|
|
|
peer *Peer // related peer
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
|
2017-07-06 15:43:55 +02:00
|
|
|
func (device *Device) NewOutboundElement() *QueueOutboundElement {
|
2017-07-14 14:25:18 +02:00
|
|
|
return &QueueOutboundElement{
|
|
|
|
dropped: AtomicFalse,
|
|
|
|
buffer: device.pool.messageBuffers.Get().(*[MaxMessageSize]byte),
|
|
|
|
}
|
2017-07-06 15:43:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (elem *QueueOutboundElement) Drop() {
|
2017-07-08 23:51:26 +02:00
|
|
|
atomic.StoreInt32(&elem.dropped, AtomicTrue)
|
2017-07-06 15:43:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (elem *QueueOutboundElement) IsDropped() bool {
|
2017-07-08 23:51:26 +02:00
|
|
|
return atomic.LoadInt32(&elem.dropped) == AtomicTrue
|
2017-07-06 15:43:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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-07-08 23:51:26 +02:00
|
|
|
func addToEncryptionQueue(
|
|
|
|
queue chan *QueueOutboundElement,
|
|
|
|
element *QueueOutboundElement,
|
|
|
|
) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case queue <- element:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
select {
|
|
|
|
case old := <-queue:
|
2017-08-25 14:53:23 +02:00
|
|
|
// drop & release to potential consumer
|
2017-07-08 23:51:26 +02:00
|
|
|
old.Drop()
|
|
|
|
old.mutex.Unlock()
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:27:03 +02:00
|
|
|
/* Queues a keepalive if no packets are queued for peer
|
|
|
|
*/
|
|
|
|
func (peer *Peer) SendKeepalive() bool {
|
2018-05-15 13:29:52 +02:00
|
|
|
if len(peer.queue.nonce) != 0 || peer.queue.packetInNonceQueueIsAwaitingKey || !peer.isRunning.Get() {
|
2018-05-07 22:27:03 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
elem := peer.device.NewOutboundElement()
|
|
|
|
elem.packet = nil
|
|
|
|
select {
|
|
|
|
case peer.queue.nonce <- elem:
|
|
|
|
peer.device.log.Debug.Println(peer, ": Sending keepalive packet")
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) SendHandshakeInitiation(isRetry bool) error {
|
|
|
|
if !isRetry {
|
|
|
|
peer.timers.handshakeAttempts = 0
|
|
|
|
}
|
|
|
|
|
2018-05-13 23:14:43 +02:00
|
|
|
peer.handshake.mutex.RLock()
|
|
|
|
if time.Now().Sub(peer.handshake.lastSentHandshake) < RekeyTimeout {
|
|
|
|
peer.handshake.mutex.RUnlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
peer.handshake.mutex.RUnlock()
|
|
|
|
|
|
|
|
peer.handshake.mutex.Lock()
|
|
|
|
if time.Now().Sub(peer.handshake.lastSentHandshake) < RekeyTimeout {
|
|
|
|
peer.handshake.mutex.Unlock()
|
2018-05-07 22:27:03 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-05-13 23:14:43 +02:00
|
|
|
peer.handshake.lastSentHandshake = time.Now()
|
|
|
|
peer.handshake.mutex.Unlock()
|
2018-05-07 22:27:03 +02:00
|
|
|
|
2018-05-13 23:14:43 +02:00
|
|
|
peer.device.log.Debug.Println(peer, ": Sending handshake initiation")
|
2018-05-07 22:27:03 +02:00
|
|
|
|
|
|
|
msg, err := peer.device.CreateMessageInitiation(peer)
|
|
|
|
if err != nil {
|
2018-05-13 23:14:43 +02:00
|
|
|
peer.device.log.Error.Println(peer, ": Failed to create initiation message:", err)
|
2018-05-07 22:27:03 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var buff [MessageInitiationSize]byte
|
|
|
|
writer := bytes.NewBuffer(buff[:0])
|
|
|
|
binary.Write(writer, binary.LittleEndian, msg)
|
|
|
|
packet := writer.Bytes()
|
2018-05-13 23:14:43 +02:00
|
|
|
peer.cookieGenerator.AddMacs(packet)
|
2018-05-07 22:27:03 +02:00
|
|
|
|
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
2018-05-13 23:14:43 +02:00
|
|
|
|
|
|
|
err = peer.SendBuffer(packet)
|
|
|
|
if err != nil {
|
|
|
|
peer.device.log.Error.Println(peer, ": Failed to send handshake initiation", err)
|
|
|
|
}
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.timersHandshakeInitiated()
|
2018-05-13 23:14:43 +02:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) SendHandshakeResponse() error {
|
|
|
|
peer.handshake.mutex.Lock()
|
|
|
|
peer.handshake.lastSentHandshake = time.Now()
|
|
|
|
peer.handshake.mutex.Unlock()
|
|
|
|
|
|
|
|
peer.device.log.Debug.Println(peer, ": Sending handshake response")
|
|
|
|
|
|
|
|
response, err := peer.device.CreateMessageResponse(peer)
|
|
|
|
if err != nil {
|
|
|
|
peer.device.log.Error.Println(peer, ": Failed to create response message:", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var buff [MessageResponseSize]byte
|
|
|
|
writer := bytes.NewBuffer(buff[:0])
|
|
|
|
binary.Write(writer, binary.LittleEndian, response)
|
|
|
|
packet := writer.Bytes()
|
|
|
|
peer.cookieGenerator.AddMacs(packet)
|
|
|
|
|
|
|
|
err = peer.BeginSymmetricSession()
|
|
|
|
if err != nil {
|
|
|
|
peer.device.log.Error.Println(peer, ": Failed to derive keypair:", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
peer.timersSessionDerived()
|
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
|
|
|
|
|
|
|
err = peer.SendBuffer(packet)
|
|
|
|
if err != nil {
|
|
|
|
peer.device.log.Error.Println(peer, ": Failed to send handshake response", err)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (device *Device) SendHandshakeCookie(initiatingElem *QueueHandshakeElement) error {
|
|
|
|
|
|
|
|
device.log.Debug.Println("Sending cookie reply to:", initiatingElem.endpoint.DstToString())
|
|
|
|
|
|
|
|
sender := binary.LittleEndian.Uint32(initiatingElem.packet[4:8])
|
|
|
|
reply, err := device.cookieChecker.CreateReply(initiatingElem.packet, sender, initiatingElem.endpoint.DstToBytes())
|
|
|
|
if err != nil {
|
|
|
|
device.log.Error.Println("Failed to create cookie reply:", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var buff [MessageCookieReplySize]byte
|
|
|
|
writer := bytes.NewBuffer(buff[:0])
|
|
|
|
binary.Write(writer, binary.LittleEndian, reply)
|
|
|
|
device.net.bind.Send(writer.Bytes(), initiatingElem.endpoint)
|
|
|
|
if err != nil {
|
|
|
|
device.log.Error.Println("Failed to send cookie reply:", err)
|
|
|
|
}
|
|
|
|
return err
|
2018-05-07 22:27:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) keepKeyFreshSending() {
|
2018-05-13 23:14:43 +02:00
|
|
|
keypair := peer.keypairs.Current()
|
|
|
|
if keypair == nil {
|
2018-05-07 22:27:03 +02:00
|
|
|
return
|
|
|
|
}
|
2018-05-13 23:14:43 +02:00
|
|
|
nonce := atomic.LoadUint64(&keypair.sendNonce)
|
|
|
|
if nonce > RekeyAfterMessages || (keypair.isInitiator && time.Now().Sub(keypair.created) > RekeyAfterTime) {
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.SendHandshakeInitiation(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
2017-08-04 16:15:53 +02:00
|
|
|
func (device *Device) RoutineReadFromTUN() {
|
2017-07-13 14:32:40 +02:00
|
|
|
|
2017-08-25 14:53:23 +02:00
|
|
|
elem := device.NewOutboundElement()
|
2017-07-06 15:43:55 +02:00
|
|
|
|
2017-07-13 14:32:40 +02:00
|
|
|
logDebug := device.log.Debug
|
|
|
|
logError := device.log.Error
|
|
|
|
|
2018-05-01 16:59:13 +02:00
|
|
|
defer func() {
|
|
|
|
logDebug.Println("Routine: TUN reader - stopped")
|
|
|
|
}()
|
|
|
|
|
|
|
|
logDebug.Println("Routine: TUN reader - started")
|
2017-07-13 14:32:40 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
for {
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-08-25 14:53:23 +02:00
|
|
|
// read packet
|
2017-07-06 15:43:55 +02:00
|
|
|
|
2017-12-04 21:39:06 +01:00
|
|
|
offset := MessageTransportHeaderSize
|
|
|
|
size, err := device.tun.device.Read(elem.buffer[:], offset)
|
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
if err != nil {
|
2017-07-13 14:32:40 +02:00
|
|
|
logError.Println("Failed to read packet from TUN device:", err)
|
|
|
|
device.Close()
|
|
|
|
return
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-07-13 14:32:40 +02:00
|
|
|
|
2017-08-25 14:53:23 +02:00
|
|
|
if size == 0 || size > MaxContentSize {
|
2017-06-28 23:45:45 +02:00
|
|
|
continue
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-12-04 21:39:06 +01:00
|
|
|
elem.packet = elem.buffer[offset : offset+size]
|
2017-08-04 16:15:53 +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-07-13 14:32:40 +02:00
|
|
|
case ipv4.Version:
|
2017-08-04 16:15:53 +02:00
|
|
|
if len(elem.packet) < ipv4.HeaderLen {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-06 15:43:55 +02:00
|
|
|
dst := elem.packet[IPv4offsetDst : IPv4offsetDst+net.IPv4len]
|
2018-05-13 23:14:43 +02:00
|
|
|
peer = device.allowedips.LookupIPv4(dst)
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-07-13 14:32:40 +02:00
|
|
|
case ipv6.Version:
|
2017-08-04 16:15:53 +02:00
|
|
|
if len(elem.packet) < ipv6.HeaderLen {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-06 15:43:55 +02:00
|
|
|
dst := elem.packet[IPv6offsetDst : IPv6offsetDst+net.IPv6len]
|
2018-05-13 23:14:43 +02:00
|
|
|
peer = device.allowedips.LookupIPv6(dst)
|
2017-06-26 13:14:02 +02:00
|
|
|
|
|
|
|
default:
|
2017-12-01 23:37:26 +01:00
|
|
|
logDebug.Println("Received packet with unknown IP version")
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if peer == nil {
|
2017-06-29 14:39:21 +02:00
|
|
|
continue
|
2017-06-28 23:45:45 +02:00
|
|
|
}
|
2017-07-13 14:32:40 +02:00
|
|
|
|
2017-06-28 23:45:45 +02:00
|
|
|
// insert into nonce/pre-handshake queue
|
|
|
|
|
2018-01-26 22:52:32 +01:00
|
|
|
if peer.isRunning.Get() {
|
2018-05-07 22:27:03 +02:00
|
|
|
if peer.queue.packetInNonceQueueIsAwaitingKey {
|
|
|
|
peer.SendHandshakeInitiation(false)
|
|
|
|
}
|
2018-01-26 22:52:32 +01:00
|
|
|
addToOutboundQueue(peer.queue.nonce, elem)
|
|
|
|
elem = device.NewOutboundElement()
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:27:03 +02:00
|
|
|
func (peer *Peer) FlushNonceQueue() {
|
|
|
|
select {
|
|
|
|
case peer.signals.flushNonceQueue <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
* 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() {
|
2018-05-13 18:23:40 +02:00
|
|
|
var keypair *Keypair
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
device := peer.device
|
2017-07-07 13:47:09 +02:00
|
|
|
logDebug := device.log.Debug
|
2018-02-04 19:18:44 +01:00
|
|
|
|
|
|
|
defer func() {
|
2018-05-05 02:20:52 +02:00
|
|
|
logDebug.Println(peer, ": Routine: nonce worker - stopped")
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.queue.packetInNonceQueueIsAwaitingKey = false
|
2018-05-05 06:09:30 +02:00
|
|
|
peer.routines.stopping.Done()
|
2018-02-04 19:18:44 +01:00
|
|
|
}()
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2018-02-02 16:40:14 +01:00
|
|
|
peer.routines.starting.Done()
|
2018-05-05 02:20:52 +02:00
|
|
|
logDebug.Println(peer, ": Routine: nonce worker - started")
|
2018-02-02 16:40:14 +01:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
for {
|
|
|
|
NextPacket:
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.queue.packetInNonceQueueIsAwaitingKey = false
|
2018-05-05 22:07:58 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
select {
|
2018-05-05 22:07:58 +02:00
|
|
|
case <-peer.routines.stop:
|
2017-09-09 15:03:01 +02:00
|
|
|
return
|
2017-06-30 14:41:08 +02:00
|
|
|
|
2018-05-01 16:59:13 +02:00
|
|
|
case elem, ok := <-peer.queue.nonce:
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
// wait for key pair
|
|
|
|
|
|
|
|
for {
|
2018-05-13 18:23:40 +02:00
|
|
|
keypair = peer.keypairs.Current()
|
|
|
|
if keypair != nil && keypair.sendNonce < RejectAfterMessages {
|
|
|
|
if time.Now().Sub(keypair.created) < RejectAfterTime {
|
2017-06-30 14:41:08 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.queue.packetInNonceQueueIsAwaitingKey = true
|
2017-09-09 15:03:01 +02:00
|
|
|
|
2018-05-07 22:27:03 +02:00
|
|
|
select {
|
|
|
|
case <-peer.signals.newKeypairArrived:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
peer.SendHandshakeInitiation(false)
|
2017-11-30 23:22:40 +01:00
|
|
|
|
2018-05-13 19:50:58 +02:00
|
|
|
logDebug.Println(peer, ": Awaiting keypair")
|
2017-06-26 22:07:29 +02:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
select {
|
2018-05-07 22:27:03 +02:00
|
|
|
case <-peer.signals.newKeypairArrived:
|
2018-05-13 19:50:58 +02:00
|
|
|
logDebug.Println(peer, ": Obtained awaited keypair")
|
2018-05-07 22:27:03 +02:00
|
|
|
case <-peer.signals.flushNonceQueue:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-peer.queue.nonce:
|
|
|
|
default:
|
|
|
|
goto NextPacket
|
|
|
|
}
|
|
|
|
}
|
2018-05-05 22:07:58 +02:00
|
|
|
case <-peer.routines.stop:
|
2017-06-30 14:41:08 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.queue.packetInNonceQueueIsAwaitingKey = false
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
// populate work element
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
elem.peer = peer
|
2018-05-13 18:23:40 +02:00
|
|
|
elem.nonce = atomic.AddUint64(&keypair.sendNonce, 1) - 1
|
2018-05-07 22:27:03 +02:00
|
|
|
// double check in case of race condition added by future code
|
|
|
|
if elem.nonce >= RejectAfterMessages {
|
|
|
|
goto NextPacket
|
|
|
|
}
|
2018-05-13 18:23:40 +02:00
|
|
|
elem.keypair = keypair
|
2017-09-09 15:03:01 +02:00
|
|
|
elem.dropped = AtomicFalse
|
|
|
|
elem.mutex.Lock()
|
2017-07-06 15:43:55 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
// add to parallel and sequential queue
|
2017-07-06 15:43:55 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
addToEncryptionQueue(device.queue.encryption, elem)
|
|
|
|
addToOutboundQueue(peer.queue.outbound, elem)
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
2017-09-09 15:03:01 +02:00
|
|
|
}
|
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-07-17 16:16:18 +02:00
|
|
|
|
2017-06-26 22:07:29 +02:00
|
|
|
var nonce [chacha20poly1305.NonceSize]byte
|
2017-07-17 16:16:18 +02:00
|
|
|
|
|
|
|
logDebug := device.log.Debug
|
2018-05-01 16:59:13 +02:00
|
|
|
|
|
|
|
defer func() {
|
|
|
|
logDebug.Println("Routine: encryption worker - stopped")
|
2018-05-05 06:09:30 +02:00
|
|
|
device.state.stopping.Done()
|
2018-05-01 16:59:13 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
logDebug.Println("Routine: encryption worker - started")
|
2017-07-17 16:16:18 +02:00
|
|
|
|
|
|
|
for {
|
|
|
|
|
|
|
|
// fetch next element
|
|
|
|
|
|
|
|
select {
|
2018-05-07 22:27:03 +02:00
|
|
|
case <-device.signals.stop:
|
2017-07-17 16:16:18 +02:00
|
|
|
return
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2018-05-01 16:59:13 +02:00
|
|
|
case elem, ok := <-device.queue.encryption:
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
// check if dropped
|
|
|
|
|
|
|
|
if elem.IsDropped() {
|
|
|
|
continue
|
|
|
|
}
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
// populate header fields
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
header := elem.buffer[:MessageTransportHeaderSize]
|
2017-06-26 13:14:02 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
fieldType := header[0:4]
|
|
|
|
fieldReceiver := header[4:8]
|
|
|
|
fieldNonce := header[8:16]
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
binary.LittleEndian.PutUint32(fieldType, MessageTransportType)
|
2018-05-13 18:23:40 +02:00
|
|
|
binary.LittleEndian.PutUint32(fieldReceiver, elem.keypair.remoteIndex)
|
2017-09-09 15:03:01 +02:00
|
|
|
binary.LittleEndian.PutUint64(fieldNonce, elem.nonce)
|
2017-07-15 16:27:59 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
// pad content to multiple of 16
|
2017-07-15 16:27:59 +02:00
|
|
|
|
2017-09-09 15:03:01 +02:00
|
|
|
mtu := int(atomic.LoadInt32(&device.tun.mtu))
|
|
|
|
rem := len(elem.packet) % PaddingMultiple
|
|
|
|
if rem > 0 {
|
|
|
|
for i := 0; i < PaddingMultiple-rem && len(elem.packet) < mtu; i++ {
|
|
|
|
elem.packet = append(elem.packet, 0)
|
|
|
|
}
|
2017-08-04 16:15:53 +02:00
|
|
|
}
|
2017-07-02 15:28:38 +02:00
|
|
|
|
2017-09-20 09:26:08 +02:00
|
|
|
// encrypt content and release to consumer
|
2017-09-09 15:03:01 +02:00
|
|
|
|
|
|
|
binary.LittleEndian.PutUint64(nonce[4:], elem.nonce)
|
2018-05-13 18:23:40 +02:00
|
|
|
elem.packet = elem.keypair.send.Seal(
|
2017-09-20 09:26:08 +02:00
|
|
|
header,
|
|
|
|
nonce[:],
|
|
|
|
elem.packet,
|
|
|
|
nil,
|
|
|
|
)
|
2017-09-09 15:03:01 +02:00
|
|
|
elem.mutex.Unlock()
|
|
|
|
}
|
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() {
|
2018-01-13 09:00:37 +01:00
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
device := peer.device
|
|
|
|
|
2017-07-08 23:51:26 +02:00
|
|
|
logDebug := device.log.Debug
|
|
|
|
|
2018-04-18 20:29:48 +02:00
|
|
|
defer func() {
|
2018-05-05 02:20:52 +02:00
|
|
|
logDebug.Println(peer, ": Routine: sequential sender - stopped")
|
2018-05-05 06:09:30 +02:00
|
|
|
peer.routines.stopping.Done()
|
2018-04-18 20:29:48 +02:00
|
|
|
}()
|
|
|
|
|
2018-05-05 02:20:52 +02:00
|
|
|
logDebug.Println(peer, ": Routine: sequential sender - started")
|
2018-05-01 16:59:13 +02:00
|
|
|
|
2018-01-13 09:00:37 +01:00
|
|
|
peer.routines.starting.Done()
|
|
|
|
|
2017-06-30 14:41:08 +02:00
|
|
|
for {
|
|
|
|
select {
|
2017-11-30 23:22:40 +01:00
|
|
|
|
2018-05-05 22:07:58 +02:00
|
|
|
case <-peer.routines.stop:
|
2017-06-30 14:41:08 +02:00
|
|
|
return
|
2017-07-13 14:32:40 +02:00
|
|
|
|
2018-04-18 20:29:48 +02:00
|
|
|
case elem, ok := <-peer.queue.outbound:
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-07-17 16:16:18 +02:00
|
|
|
elem.mutex.Lock()
|
2017-07-27 23:45:37 +02:00
|
|
|
if elem.IsDropped() {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 23:51:26 +02:00
|
|
|
|
2017-07-27 23:45:37 +02:00
|
|
|
// send message and return buffer to pool
|
2017-07-14 14:25:18 +02:00
|
|
|
|
2017-07-27 23:45:37 +02:00
|
|
|
length := uint64(len(elem.packet))
|
2017-10-16 21:33:47 +02:00
|
|
|
err := peer.SendBuffer(elem.packet)
|
2017-07-27 23:45:37 +02:00
|
|
|
device.PutMessageBuffer(elem.buffer)
|
|
|
|
if err != nil {
|
2018-05-05 02:20:52 +02:00
|
|
|
logDebug.Println("Failed to send authenticated packet to peer", peer)
|
2017-07-27 23:45:37 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
atomic.AddUint64(&peer.stats.txBytes, length)
|
2017-07-18 15:22:56 +02:00
|
|
|
|
2017-07-27 23:45:37 +02:00
|
|
|
// update timers
|
2017-07-17 16:16:18 +02:00
|
|
|
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
2017-07-27 23:45:37 +02:00
|
|
|
if len(elem.packet) != MessageKeepaliveSize {
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.timersDataSent()
|
2017-07-27 23:45:37 +02:00
|
|
|
}
|
2018-05-07 22:27:03 +02:00
|
|
|
peer.keepKeyFreshSending()
|
2017-06-30 14:41:08 +02:00
|
|
|
}
|
2017-06-26 13:14:02 +02:00
|
|
|
}
|
|
|
|
}
|