Files
wireguard-go/src/send.go
T

256 lines
5.1 KiB
Go
Raw Normal View History

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"
)
/* 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.
*/
type QueueOutboundElement struct {
mutex sync.Mutex
2017-06-26 13:14:02 +02:00
packet []byte
nonce uint64
keyPair *KeyPair
}
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-06-28 23:45:45 +02:00
func (peer *Peer) InsertOutbound(elem *QueueOutboundElement) {
2017-06-26 13:14:02 +02:00
for {
select {
2017-06-28 23:45:45 +02:00
case peer.queue.outbound <- elem:
2017-06-26 13:14:02 +02:00
default:
select {
2017-06-28 23:45:45 +02:00
case <-peer.queue.outbound:
2017-06-26 13:14:02 +02:00
default:
}
}
}
}
2017-06-28 23:45:45 +02:00
/* Reads packets from the TUN and inserts
* into nonce queue for peer
2017-06-26 13:14:02 +02:00
*
2017-06-28 23:45:45 +02:00
* Obs. Single instance per TUN device
2017-06-26 13:14:02 +02:00
*/
2017-06-28 23:45:45 +02:00
func (device *Device) RoutineReadFromTUN(tun TUNDevice) {
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-29 14:39:21 +02:00
device.log.Debug.Println("Read")
2017-06-28 23:45:45 +02:00
packet := make([]byte, 1<<16) // TODO: Fix & avoid dynamic allocation
size, err := tun.Read(packet)
if err != nil {
device.log.Error.Println("Failed to read packet from TUN device:", err)
continue
}
packet = packet[:size]
if len(packet) < IPv4headerSize {
device.log.Error.Println("Packet too short, length:", len(packet))
continue
}
// lookup peer
var peer *Peer
switch packet[0] >> 4 {
case IPv4version:
dst := packet[IPv4offsetDst : IPv4offsetDst+net.IPv4len]
peer = device.routingTable.LookupIPv4(dst)
2017-06-29 14:39:21 +02:00
device.log.Debug.Println("New IPv4 packet:", packet, dst)
2017-06-28 23:45:45 +02:00
case IPv6version:
dst := packet[IPv6offsetDst : IPv6offsetDst+net.IPv6len]
peer = device.routingTable.LookupIPv6(dst)
2017-06-29 14:39:21 +02:00
device.log.Debug.Println("New IPv6 packet:", packet, dst)
2017-06-28 23:45:45 +02:00
default:
device.log.Debug.Println("Receieved packet with unknown IP version")
return
}
if peer == nil {
device.log.Debug.Println("No peer configured for IP")
2017-06-29 14:39:21 +02:00
continue
2017-06-28 23:45:45 +02:00
}
// insert into nonce/pre-handshake queue
for {
select {
case peer.queue.nonce <- packet:
default:
select {
case <-peer.queue.nonce:
default:
}
continue
}
break
}
}
}
/* Queues packets when there is no handshake.
* Then assigns nonces to packets sequentially
* and creates "work" structs for workers
*
* TODO: Avoid dynamic allocation of work queue elements
*
* Obs. A single instance per peer
*/
func (peer *Peer) RoutineNonce() {
2017-06-26 22:07:29 +02:00
var packet []byte
var keyPair *KeyPair
2017-06-26 13:14:02 +02:00
for {
2017-06-26 22:07:29 +02:00
// wait for packet
if packet == nil {
2017-06-28 23:45:45 +02:00
select {
case packet = <-peer.queue.nonce:
case <-peer.signal.stopSending:
close(peer.queue.outbound)
return
}
2017-06-26 13:14:02 +02:00
}
2017-06-26 22:07:29 +02:00
// wait for key pair
for keyPair == nil {
2017-06-28 23:45:45 +02:00
peer.signal.newHandshake <- true
2017-06-26 13:14:02 +02:00
select {
case <-peer.keyPairs.newKeyPair:
2017-06-26 22:07:29 +02:00
keyPair = peer.keyPairs.Current()
continue
2017-06-28 23:45:45 +02:00
case <-peer.signal.flushNonceQueue:
peer.FlushNonceQueue()
2017-06-26 22:07:29 +02:00
packet = nil
2017-06-28 23:45:45 +02:00
continue
case <-peer.signal.stopSending:
close(peer.queue.outbound)
return
2017-06-26 22:07:29 +02:00
}
}
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
// process current packet
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
if packet != nil {
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
// create work element
2017-06-26 13:14:02 +02:00
2017-06-28 23:45:45 +02:00
work := new(QueueOutboundElement) // TODO: profile, maybe use pool
2017-06-26 22:07:29 +02:00
work.keyPair = keyPair
work.packet = packet
work.nonce = keyPair.sendNonce
2017-06-28 23:45:45 +02:00
work.mutex.Lock()
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
packet = nil
keyPair.sendNonce += 1
// drop packets until there is space
func() {
2017-06-26 13:14:02 +02:00
for {
select {
2017-06-28 23:45:45 +02:00
case peer.device.queue.encryption <- work:
2017-06-26 22:07:29 +02:00
return
2017-06-26 13:14:02 +02:00
default:
2017-06-28 23:45:45 +02:00
drop := <-peer.device.queue.encryption
2017-06-26 13:14:02 +02:00
drop.packet = nil
2017-06-28 23:45:45 +02:00
drop.mutex.Unlock()
2017-06-26 13:14:02 +02:00
}
}
2017-06-26 22:07:29 +02:00
}()
2017-06-28 23:45:45 +02:00
peer.queue.outbound <- work
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-06-26 22:07:29 +02:00
// pad packet
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
padding := device.mtu - len(work.packet)
if padding < 0 {
2017-06-28 23:45:45 +02:00
// drop
2017-06-26 22:07:29 +02:00
work.packet = nil
2017-06-28 23:45:45 +02:00
work.mutex.Unlock()
2017-06-26 22:07:29 +02:00
}
for n := 0; n < padding; n += 1 {
work.packet = append(work.packet, 0)
}
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
// encrypt
2017-06-26 13:14:02 +02:00
2017-06-26 22:07:29 +02:00
binary.LittleEndian.PutUint64(nonce[4:], work.nonce)
work.packet = work.keyPair.send.Seal(
work.packet[:0],
nonce[:],
work.packet,
nil,
)
2017-06-28 23:45:45 +02:00
work.mutex.Unlock()
}
}
/* Sequentially reads packets from queue and sends to endpoint
*
* Obs. Single instance per peer.
* The routine terminates then the outbound queue is closed.
*/
func (peer *Peer) RoutineSequential() {
for work := range peer.queue.outbound {
work.mutex.Lock()
func() {
peer.mutex.RLock()
defer peer.mutex.RUnlock()
if work.packet == nil {
return
}
if peer.endpoint == nil {
return
}
peer.device.conn.WriteToUDP(work.packet, peer.endpoint)
peer.timer.sendKeepalive.Reset(peer.persistentKeepaliveInterval)
}()
work.mutex.Unlock()
2017-06-26 13:14:02 +02:00
}
}