2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-03 13:04:00 +00:00
|
|
|
*
|
2020-05-02 08:08:26 +00:00
|
|
|
* Copyright (C) 2017-2020 WireGuard LLC. All Rights Reserved.
|
2018-05-03 13:04:00 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-03 03:04:41 +00:00
|
|
|
package device
|
2017-07-01 21:29:22 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
2021-01-08 13:25:37 +00:00
|
|
|
"errors"
|
2017-07-01 21:29:22 +00:00
|
|
|
"net"
|
2018-05-01 14:59:13 +00:00
|
|
|
"strconv"
|
2017-07-01 21:29:22 +00:00
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
2019-05-14 07:09:52 +00:00
|
|
|
|
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
|
|
|
"golang.org/x/net/ipv4"
|
|
|
|
"golang.org/x/net/ipv6"
|
2021-01-08 13:25:37 +00:00
|
|
|
|
2019-11-07 16:13:05 +00:00
|
|
|
"golang.zx2c4.com/wireguard/conn"
|
2017-07-01 21:29:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type QueueHandshakeElement struct {
|
2017-10-07 20:35:23 +00:00
|
|
|
msgType uint32
|
|
|
|
packet []byte
|
2019-11-07 16:13:05 +00:00
|
|
|
endpoint conn.Endpoint
|
2017-10-07 20:35:23 +00:00
|
|
|
buffer *[MaxMessageSize]byte
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type QueueInboundElement struct {
|
2019-01-03 18:04:00 +00:00
|
|
|
sync.Mutex
|
2017-11-14 15:27:53 +00:00
|
|
|
buffer *[MaxMessageSize]byte
|
|
|
|
packet []byte
|
|
|
|
counter uint64
|
2018-05-13 16:23:40 +00:00
|
|
|
keypair *Keypair
|
2019-11-07 16:13:05 +00:00
|
|
|
endpoint conn.Endpoint
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-04 23:36:21 +00:00
|
|
|
// clearPointers clears elem fields that contain pointers.
|
|
|
|
// This makes the garbage collector's life easier and
|
|
|
|
// avoids accidentally keeping other objects around unnecessarily.
|
|
|
|
// It also reduces the possible collateral damage from use-after-free bugs.
|
|
|
|
func (elem *QueueInboundElement) clearPointers() {
|
|
|
|
elem.buffer = nil
|
|
|
|
elem.packet = nil
|
|
|
|
elem.keypair = nil
|
|
|
|
elem.endpoint = nil
|
|
|
|
}
|
|
|
|
|
2020-12-16 00:00:52 +00:00
|
|
|
func (device *Device) addToHandshakeQueue(queue chan QueueHandshakeElement, elem QueueHandshakeElement) bool {
|
2018-09-16 19:50:58 +00:00
|
|
|
select {
|
2020-12-16 00:00:52 +00:00
|
|
|
case queue <- elem:
|
2018-09-16 19:50:58 +00:00
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
2017-07-07 11:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
/* Called when a new authenticated message has been received
|
|
|
|
*
|
|
|
|
* NOTE: Not thread safe, but called by sequential receiver!
|
|
|
|
*/
|
|
|
|
func (peer *Peer) keepKeyFreshReceiving() {
|
2018-05-20 04:50:07 +00:00
|
|
|
if peer.timers.sentLastMinuteHandshake.Get() {
|
2018-05-07 20:27:03 +00:00
|
|
|
return
|
|
|
|
}
|
2018-05-13 21:14:43 +00:00
|
|
|
keypair := peer.keypairs.Current()
|
2019-06-03 19:46:46 +00:00
|
|
|
if keypair != nil && keypair.isInitiator && time.Since(keypair.created) > (RejectAfterTime-KeepaliveTimeout-RekeyTimeout) {
|
2018-05-20 04:50:07 +00:00
|
|
|
peer.timers.sentLastMinuteHandshake.Set(true)
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.SendHandshakeInitiation(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 22:37:26 +00:00
|
|
|
/* Receives incoming datagrams for the device
|
|
|
|
*
|
|
|
|
* Every time the bind is updated a new routine is started for
|
|
|
|
* IPv4 and IPv6 (separately)
|
|
|
|
*/
|
2019-11-07 16:13:05 +00:00
|
|
|
func (device *Device) RoutineReceiveIncoming(IP int, bind conn.Bind) {
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-07-08 07:23:10 +00:00
|
|
|
logDebug := device.log.Debug
|
2018-05-01 14:59:13 +00:00
|
|
|
defer func() {
|
|
|
|
logDebug.Println("Routine: receive incoming IPv" + strconv.Itoa(IP) + " - stopped")
|
2021-01-12 01:34:02 +00:00
|
|
|
device.queue.decryption.wg.Done()
|
2018-05-20 04:19:29 +00:00
|
|
|
device.net.stopping.Done()
|
2018-05-01 14:59:13 +00:00
|
|
|
}()
|
|
|
|
|
2018-11-01 18:54:25 +00:00
|
|
|
logDebug.Println("Routine: receive incoming IPv" + strconv.Itoa(IP) + " - started")
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// receive datagrams until conn is closed
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
buffer := device.GetMessageBuffer()
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
var (
|
2021-01-08 13:25:37 +00:00
|
|
|
err error
|
|
|
|
size int
|
|
|
|
endpoint conn.Endpoint
|
|
|
|
deathSpiral int
|
2017-11-30 23:03:06 +00:00
|
|
|
)
|
2017-10-07 20:35:23 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
for {
|
|
|
|
switch IP {
|
|
|
|
case ipv4.Version:
|
|
|
|
size, endpoint, err = bind.ReceiveIPv4(buffer[:])
|
|
|
|
case ipv6.Version:
|
|
|
|
size, endpoint, err = bind.ReceiveIPv6(buffer[:])
|
|
|
|
default:
|
2018-01-26 21:52:32 +00:00
|
|
|
panic("invalid IP version")
|
2017-11-30 23:03:06 +00:00
|
|
|
}
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
if err != nil {
|
2018-09-16 19:50:58 +00:00
|
|
|
device.PutMessageBuffer(buffer)
|
2021-01-20 19:04:31 +00:00
|
|
|
if errors.Is(err, conn.NetErrClosed) {
|
2021-01-08 13:25:37 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
device.log.Error.Printf("Failed to receive packet: %v", err)
|
|
|
|
if deathSpiral < 10 {
|
|
|
|
deathSpiral++
|
|
|
|
time.Sleep(time.Second / 3)
|
|
|
|
continue
|
|
|
|
}
|
2017-11-30 23:03:06 +00:00
|
|
|
return
|
|
|
|
}
|
2021-01-08 13:25:37 +00:00
|
|
|
deathSpiral = 0
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
if size < MinMessageSize {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// check size of packet
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
packet := buffer[:size]
|
|
|
|
msgType := binary.LittleEndian.Uint32(packet[:4])
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
var okay bool
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
switch msgType {
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// check if transport
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
case MessageTransportType:
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// check size
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2018-09-20 12:28:53 +00:00
|
|
|
if len(packet) < MessageTransportSize {
|
2017-11-30 23:03:06 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// lookup key pair
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
receiver := binary.LittleEndian.Uint32(
|
|
|
|
packet[MessageTransportOffsetReceiver:MessageTransportOffsetCounter],
|
|
|
|
)
|
2018-05-13 16:23:40 +00:00
|
|
|
value := device.indexTable.Lookup(receiver)
|
|
|
|
keypair := value.keypair
|
|
|
|
if keypair == nil {
|
2017-11-30 23:03:06 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2018-05-13 17:50:58 +00:00
|
|
|
// check keypair expiry
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2018-05-13 16:23:40 +00:00
|
|
|
if keypair.created.Add(RejectAfterTime).Before(time.Now()) {
|
2017-11-30 23:03:06 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// create work element
|
|
|
|
peer := value.peer
|
2018-09-22 04:29:02 +00:00
|
|
|
elem := device.GetInboundElement()
|
|
|
|
elem.packet = packet
|
|
|
|
elem.buffer = buffer
|
|
|
|
elem.keypair = keypair
|
|
|
|
elem.endpoint = endpoint
|
|
|
|
elem.counter = 0
|
2019-01-03 18:04:00 +00:00
|
|
|
elem.Mutex = sync.Mutex{}
|
|
|
|
elem.Lock()
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// add to decryption queues
|
2017-07-06 13:43:55 +00:00
|
|
|
|
2020-11-18 12:53:22 +00:00
|
|
|
peer.queue.RLock()
|
2018-01-26 21:52:32 +00:00
|
|
|
if peer.isRunning.Get() {
|
2021-01-12 01:21:16 +00:00
|
|
|
peer.queue.inbound <- elem
|
|
|
|
device.queue.decryption.c <- elem
|
|
|
|
buffer = device.GetMessageBuffer()
|
2020-12-22 17:52:53 +00:00
|
|
|
} else {
|
|
|
|
device.PutInboundElement(elem)
|
2018-01-26 21:52:32 +00:00
|
|
|
}
|
2020-11-18 12:53:22 +00:00
|
|
|
peer.queue.RUnlock()
|
2017-12-01 22:37:26 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
continue
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
// otherwise it is a fixed size & handshake related packet
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
case MessageInitiationType:
|
|
|
|
okay = len(packet) == MessageInitiationSize
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
case MessageResponseType:
|
|
|
|
okay = len(packet) == MessageResponseSize
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
case MessageCookieReplyType:
|
|
|
|
okay = len(packet) == MessageCookieReplySize
|
2018-05-05 00:20:52 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
logDebug.Println("Received message with unknown type")
|
2017-11-30 23:03:06 +00:00
|
|
|
}
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2017-11-30 23:03:06 +00:00
|
|
|
if okay {
|
2018-09-16 19:50:58 +00:00
|
|
|
if (device.addToHandshakeQueue(
|
2017-11-30 23:03:06 +00:00
|
|
|
device.queue.handshake,
|
|
|
|
QueueHandshakeElement{
|
|
|
|
msgType: msgType,
|
|
|
|
buffer: buffer,
|
|
|
|
packet: packet,
|
|
|
|
endpoint: endpoint,
|
|
|
|
},
|
2018-09-16 19:50:58 +00:00
|
|
|
)) {
|
|
|
|
buffer = device.GetMessageBuffer()
|
|
|
|
}
|
2017-08-07 13:25:04 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (device *Device) RoutineDecryption() {
|
2017-09-09 13:03:01 +00:00
|
|
|
|
2017-07-01 21:29:22 +00:00
|
|
|
var nonce [chacha20poly1305.NonceSize]byte
|
|
|
|
|
2017-07-06 13:43:55 +00:00
|
|
|
logDebug := device.log.Debug
|
2018-05-01 14:59:13 +00:00
|
|
|
defer func() {
|
|
|
|
logDebug.Println("Routine: decryption worker - stopped")
|
2018-05-05 04:09:30 +00:00
|
|
|
device.state.stopping.Done()
|
2018-05-01 14:59:13 +00:00
|
|
|
}()
|
|
|
|
logDebug.Println("Routine: decryption worker - started")
|
2017-07-06 13:43:55 +00:00
|
|
|
|
2021-01-12 01:34:02 +00:00
|
|
|
for elem := range device.queue.decryption.c {
|
|
|
|
// split message into fields
|
|
|
|
counter := elem.packet[MessageTransportOffsetCounter:MessageTransportOffsetContent]
|
|
|
|
content := elem.packet[MessageTransportOffsetContent:]
|
2017-09-09 13:03:01 +00:00
|
|
|
|
2021-01-12 01:34:02 +00:00
|
|
|
// decrypt and release to consumer
|
|
|
|
var err error
|
|
|
|
elem.counter = binary.LittleEndian.Uint64(counter)
|
|
|
|
// copy counter to nonce
|
|
|
|
binary.LittleEndian.PutUint64(nonce[0x4:0xc], elem.counter)
|
|
|
|
elem.packet, err = elem.keypair.receive.Open(
|
|
|
|
content[:0],
|
|
|
|
nonce[:],
|
|
|
|
content,
|
|
|
|
nil,
|
|
|
|
)
|
|
|
|
if err != nil {
|
2021-01-17 17:49:39 +00:00
|
|
|
elem.packet = nil
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
2021-01-12 01:34:02 +00:00
|
|
|
elem.Unlock()
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 22:37:26 +00:00
|
|
|
/* Handles incoming packets related to handshake
|
2017-07-01 21:29:22 +00:00
|
|
|
*/
|
|
|
|
func (device *Device) RoutineHandshake() {
|
|
|
|
|
|
|
|
logInfo := device.log.Info
|
|
|
|
logError := device.log.Error
|
|
|
|
logDebug := device.log.Debug
|
2018-05-01 14:59:13 +00:00
|
|
|
|
2018-09-16 22:43:23 +00:00
|
|
|
var elem QueueHandshakeElement
|
|
|
|
var ok bool
|
|
|
|
|
2018-05-01 14:59:13 +00:00
|
|
|
defer func() {
|
|
|
|
logDebug.Println("Routine: handshake worker - stopped")
|
2018-05-05 04:09:30 +00:00
|
|
|
device.state.stopping.Done()
|
2018-09-16 22:43:23 +00:00
|
|
|
if elem.buffer != nil {
|
|
|
|
device.PutMessageBuffer(elem.buffer)
|
|
|
|
}
|
2018-05-01 14:59:13 +00:00
|
|
|
}()
|
|
|
|
|
|
|
|
logDebug.Println("Routine: handshake worker - started")
|
2017-07-01 21:29:22 +00:00
|
|
|
|
|
|
|
for {
|
2018-09-16 22:43:23 +00:00
|
|
|
if elem.buffer != nil {
|
|
|
|
device.PutMessageBuffer(elem.buffer)
|
2018-09-23 23:52:02 +00:00
|
|
|
elem.buffer = nil
|
2018-09-16 22:43:23 +00:00
|
|
|
}
|
|
|
|
|
2017-07-01 21:29:22 +00:00
|
|
|
select {
|
2018-05-01 14:59:13 +00:00
|
|
|
case elem, ok = <-device.queue.handshake:
|
2018-05-07 20:27:03 +00:00
|
|
|
case <-device.signals.stop:
|
2017-07-01 21:29:22 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-01 14:59:13 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// handle cookie fields and ratelimiting
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
switch elem.msgType {
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
case MessageCookieReplyType:
|
|
|
|
|
2017-08-14 15:09:25 +00:00
|
|
|
// unmarshal packet
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
var reply MessageCookieReply
|
|
|
|
reader := bytes.NewReader(elem.packet)
|
|
|
|
err := binary.Read(reader, binary.LittleEndian, &reply)
|
|
|
|
if err != nil {
|
|
|
|
logDebug.Println("Failed to decode cookie reply")
|
2017-07-08 07:23:10 +00:00
|
|
|
return
|
|
|
|
}
|
2017-08-14 15:09:25 +00:00
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
// lookup peer from index
|
2017-08-14 15:09:25 +00:00
|
|
|
|
2018-05-13 16:23:40 +00:00
|
|
|
entry := device.indexTable.Lookup(reply.Receiver)
|
2018-01-26 21:52:32 +00:00
|
|
|
|
2017-08-14 15:09:25 +00:00
|
|
|
if entry.peer == nil {
|
2018-01-16 13:57:12 +00:00
|
|
|
continue
|
2017-08-14 15:09:25 +00:00
|
|
|
}
|
2018-01-26 21:52:32 +00:00
|
|
|
|
|
|
|
// consume reply
|
|
|
|
|
|
|
|
if peer := entry.peer; peer.isRunning.Get() {
|
2018-12-18 23:35:53 +00:00
|
|
|
logDebug.Println("Receiving cookie response from ", elem.endpoint.DstToString())
|
|
|
|
if !peer.cookieGenerator.ConsumeReply(&reply) {
|
|
|
|
logDebug.Println("Could not decrypt invalid cookie response")
|
|
|
|
}
|
2018-01-26 21:52:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
continue
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
case MessageInitiationType, MessageResponseType:
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
// check mac fields and maybe ratelimit
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
if !device.cookieChecker.CheckMAC1(elem.packet) {
|
2017-08-07 13:25:04 +00:00
|
|
|
logDebug.Println("Received packet with invalid mac1")
|
2018-01-16 13:57:12 +00:00
|
|
|
continue
|
2017-07-08 07:23:10 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 16:25:45 +00:00
|
|
|
// endpoints destination address is the source of the datagram
|
|
|
|
|
2017-08-11 14:18:20 +00:00
|
|
|
if device.IsUnderLoad() {
|
2017-10-08 20:03:32 +00:00
|
|
|
|
|
|
|
// verify MAC2 field
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
if !device.cookieChecker.CheckMAC2(elem.packet, elem.endpoint.DstToBytes()) {
|
|
|
|
device.SendHandshakeCookie(&elem)
|
2017-08-07 13:25:04 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-08-11 14:18:20 +00:00
|
|
|
|
2017-10-08 20:03:32 +00:00
|
|
|
// check ratelimiter
|
|
|
|
|
2018-02-02 15:40:14 +00:00
|
|
|
if !device.rate.limiter.Allow(elem.endpoint.DstIP()) {
|
2017-08-07 13:25:04 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-11 16:48:29 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
default:
|
|
|
|
logError.Println("Invalid packet ended up in the handshake queue")
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2017-12-01 22:37:26 +00:00
|
|
|
// handle handshake initiation/response content
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
switch elem.msgType {
|
|
|
|
case MessageInitiationType:
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// unmarshal
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
var msg MessageInitiation
|
|
|
|
reader := bytes.NewReader(elem.packet)
|
|
|
|
err := binary.Read(reader, binary.LittleEndian, &msg)
|
|
|
|
if err != nil {
|
|
|
|
logError.Println("Failed to decode initiation message")
|
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// consume initiation
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
peer := device.ConsumeMessageInitiation(&msg)
|
|
|
|
if peer == nil {
|
|
|
|
logInfo.Println(
|
2017-12-01 22:37:26 +00:00
|
|
|
"Received invalid initiation message from",
|
2017-10-16 19:33:47 +00:00
|
|
|
elem.endpoint.DstToString(),
|
2017-08-07 13:25:04 +00:00
|
|
|
)
|
|
|
|
continue
|
|
|
|
}
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// update timers
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
|
|
|
peer.timersAnyAuthenticatedPacketReceived()
|
2017-07-07 11:47:09 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// update endpoint
|
2018-05-26 00:59:26 +00:00
|
|
|
peer.SetEndpointFromPacket(elem.endpoint)
|
2017-07-13 19:29:22 +00:00
|
|
|
|
2018-05-21 00:50:39 +00:00
|
|
|
logDebug.Println(peer, "- Received handshake initiation")
|
2019-06-11 16:13:52 +00:00
|
|
|
atomic.AddUint64(&peer.stats.rxBytes, uint64(len(elem.packet)))
|
2018-04-20 05:13:40 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
peer.SendHandshakeResponse()
|
2017-07-14 12:25:18 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
case MessageResponseType:
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// unmarshal
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
var msg MessageResponse
|
|
|
|
reader := bytes.NewReader(elem.packet)
|
|
|
|
err := binary.Read(reader, binary.LittleEndian, &msg)
|
|
|
|
if err != nil {
|
|
|
|
logError.Println("Failed to decode response message")
|
|
|
|
continue
|
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// consume response
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
peer := device.ConsumeMessageResponse(&msg)
|
|
|
|
if peer == nil {
|
|
|
|
logInfo.Println(
|
2018-05-23 17:00:00 +00:00
|
|
|
"Received invalid response message from",
|
2017-10-16 19:33:47 +00:00
|
|
|
elem.endpoint.DstToString(),
|
2017-08-07 13:25:04 +00:00
|
|
|
)
|
|
|
|
continue
|
|
|
|
}
|
2017-07-27 21:45:37 +00:00
|
|
|
|
2017-11-14 15:27:53 +00:00
|
|
|
// update endpoint
|
2018-05-26 00:59:26 +00:00
|
|
|
peer.SetEndpointFromPacket(elem.endpoint)
|
2017-11-14 15:27:53 +00:00
|
|
|
|
2018-05-21 00:50:39 +00:00
|
|
|
logDebug.Println(peer, "- Received handshake response")
|
2019-06-11 16:13:52 +00:00
|
|
|
atomic.AddUint64(&peer.stats.rxBytes, uint64(len(elem.packet)))
|
2017-09-20 07:26:08 +00:00
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
// update timers
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
|
|
|
peer.timersAnyAuthenticatedPacketReceived()
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2018-05-13 17:50:58 +00:00
|
|
|
// derive keypair
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
err = peer.BeginSymmetricSession()
|
|
|
|
|
|
|
|
if err != nil {
|
2018-05-21 00:50:39 +00:00
|
|
|
logError.Println(peer, "- Failed to derive keypair:", err)
|
2018-05-07 20:27:03 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
peer.timersSessionDerived()
|
2018-05-07 20:27:03 +00:00
|
|
|
peer.timersHandshakeComplete()
|
|
|
|
peer.SendKeepalive()
|
|
|
|
select {
|
|
|
|
case peer.signals.newKeypairArrived <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
2017-08-07 13:25:04 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) RoutineSequentialReceiver() {
|
|
|
|
|
|
|
|
device := peer.device
|
2017-07-13 12:32:40 +00:00
|
|
|
logInfo := device.log.Info
|
2017-08-07 13:25:04 +00:00
|
|
|
logError := device.log.Error
|
2017-07-01 21:29:22 +00:00
|
|
|
logDebug := device.log.Debug
|
2018-02-04 18:18:44 +00:00
|
|
|
|
2018-09-16 22:43:23 +00:00
|
|
|
var elem *QueueInboundElement
|
|
|
|
|
2018-04-18 18:29:48 +00:00
|
|
|
defer func() {
|
2018-05-21 00:50:39 +00:00
|
|
|
logDebug.Println(peer, "- Routine: sequential receiver - stopped")
|
2018-05-05 04:09:30 +00:00
|
|
|
peer.routines.stopping.Done()
|
2018-09-22 04:29:02 +00:00
|
|
|
if elem != nil {
|
2021-01-17 17:49:39 +00:00
|
|
|
device.PutMessageBuffer(elem.buffer)
|
2018-09-22 04:29:02 +00:00
|
|
|
device.PutInboundElement(elem)
|
2018-09-16 22:43:23 +00:00
|
|
|
}
|
2018-02-04 18:18:44 +00:00
|
|
|
}()
|
|
|
|
|
2018-05-21 00:50:39 +00:00
|
|
|
logDebug.Println(peer, "- Routine: sequential receiver - started")
|
2018-02-02 15:40:14 +00:00
|
|
|
|
2017-07-01 21:29:22 +00:00
|
|
|
for {
|
2018-09-22 04:29:02 +00:00
|
|
|
if elem != nil {
|
2021-01-17 17:49:39 +00:00
|
|
|
device.PutMessageBuffer(elem.buffer)
|
2018-09-22 04:29:02 +00:00
|
|
|
device.PutInboundElement(elem)
|
2018-09-23 23:52:02 +00:00
|
|
|
elem = nil
|
2018-09-16 22:43:23 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-07-01 13:23:24 +00:00
|
|
|
var elemOk bool
|
|
|
|
select {
|
|
|
|
case <-peer.routines.stop:
|
2017-07-01 21:29:22 +00:00
|
|
|
return
|
2019-07-01 13:23:24 +00:00
|
|
|
case elem, elemOk = <-peer.queue.inbound:
|
|
|
|
if !elemOk {
|
|
|
|
return
|
|
|
|
}
|
2019-03-21 20:43:04 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// wait for decryption
|
|
|
|
elem.Lock()
|
2021-01-17 17:49:39 +00:00
|
|
|
if elem.packet == nil {
|
|
|
|
// decryption failed
|
2019-03-21 20:43:04 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-10 10:09:19 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// check for replay
|
|
|
|
if !elem.keypair.replayFilter.ValidateCounter(elem.counter, RejectAfterMessages) {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 21:51:26 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// update endpoint
|
|
|
|
peer.SetEndpointFromPacket(elem.endpoint)
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// check if using new keypair
|
|
|
|
if peer.ReceivedWithKeypair(elem.keypair) {
|
|
|
|
peer.timersHandshakeComplete()
|
|
|
|
select {
|
|
|
|
case peer.signals.newKeypairArrived <- struct{}{}:
|
|
|
|
default:
|
2017-09-01 12:21:53 +00:00
|
|
|
}
|
2019-03-21 20:43:04 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
peer.keepKeyFreshReceiving()
|
|
|
|
peer.timersAnyAuthenticatedPacketTraversal()
|
|
|
|
peer.timersAnyAuthenticatedPacketReceived()
|
2019-06-11 16:13:52 +00:00
|
|
|
atomic.AddUint64(&peer.stats.rxBytes, uint64(len(elem.packet)+MinMessageSize))
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// check for keepalive
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
if len(elem.packet) == 0 {
|
|
|
|
logDebug.Println(peer, "- Receiving keepalive packet")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
peer.timersDataReceived()
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// verify source and strip padding
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
switch elem.packet[0] >> 4 {
|
|
|
|
case ipv4.Version:
|
2017-07-07 11:47:09 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// strip padding
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
if len(elem.packet) < ipv4.HeaderLen {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
field := elem.packet[IPv4offsetTotalLength : IPv4offsetTotalLength+2]
|
|
|
|
length := binary.BigEndian.Uint16(field)
|
|
|
|
if int(length) > len(elem.packet) || int(length) < ipv4.HeaderLen {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
elem.packet = elem.packet[:length]
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// verify IPv4 source
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
src := elem.packet[IPv4offsetSrc : IPv4offsetSrc+net.IPv4len]
|
|
|
|
if device.allowedips.LookupIPv4(src) != peer {
|
|
|
|
logInfo.Println(
|
|
|
|
"IPv4 packet with disallowed source address from",
|
|
|
|
peer,
|
|
|
|
)
|
|
|
|
continue
|
|
|
|
}
|
2017-07-07 11:47:09 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
case ipv6.Version:
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// strip padding
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
if len(elem.packet) < ipv6.HeaderLen {
|
|
|
|
continue
|
|
|
|
}
|
2017-07-08 07:23:10 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
field := elem.packet[IPv6offsetPayloadLength : IPv6offsetPayloadLength+2]
|
|
|
|
length := binary.BigEndian.Uint16(field)
|
|
|
|
length += ipv6.HeaderLen
|
|
|
|
if int(length) > len(elem.packet) {
|
|
|
|
continue
|
|
|
|
}
|
2017-08-04 14:15:53 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
elem.packet = elem.packet[:length]
|
2017-09-09 13:03:01 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
// verify IPv6 source
|
2017-07-01 21:29:22 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
src := elem.packet[IPv6offsetSrc : IPv6offsetSrc+net.IPv6len]
|
|
|
|
if device.allowedips.LookupIPv6(src) != peer {
|
|
|
|
logInfo.Println(
|
2019-07-01 13:24:50 +00:00
|
|
|
"IPv6 packet with disallowed source address from",
|
2019-03-21 20:43:04 +00:00
|
|
|
peer,
|
|
|
|
)
|
2017-08-07 13:25:04 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-07-13 12:32:40 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
default:
|
|
|
|
logInfo.Println("Packet with invalid IP version from", peer)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// write to tun device
|
2017-08-07 13:25:04 +00:00
|
|
|
|
2019-03-21 20:43:04 +00:00
|
|
|
offset := MessageTransportOffsetContent
|
|
|
|
_, err := device.tun.device.Write(elem.buffer[:offset+len(elem.packet)], offset)
|
2020-09-21 22:17:16 +00:00
|
|
|
if err != nil && !device.isClosed.Get() {
|
|
|
|
logError.Println("Failed to write packet to TUN device:", err)
|
|
|
|
}
|
2019-07-01 13:23:24 +00:00
|
|
|
if len(peer.queue.inbound) == 0 {
|
2020-09-21 22:17:16 +00:00
|
|
|
err := device.tun.device.Flush()
|
2019-07-01 13:23:24 +00:00
|
|
|
if err != nil {
|
|
|
|
peer.device.log.Error.Printf("Unable to flush packets: %v", err)
|
|
|
|
}
|
2019-03-21 20:43:04 +00:00
|
|
|
}
|
2017-07-01 21:29:22 +00:00
|
|
|
}
|
|
|
|
}
|